/**
 * AnyCac Embed Styles
 * Hides header/footer when WooCommerce store is embedded in an iframe
 */

/* Hide common header elements */
header,
.site-header,
.header,
#header,
#masthead,
.wp-block-template-part:first-of-type,
[class*="header"],
[id*="header"] {
    display: none !important;
}

/* Hide common footer elements */
footer,
.site-footer,
.footer,
#footer,
#colophon,
.wp-block-template-part:last-of-type,
[class*="footer"],
[id*="footer"] {
    display: none !important;
}

/* Hide navigation menus */
nav.main-navigation,
.main-nav,
.primary-navigation,
.site-navigation,
#site-navigation {
    display: none !important;
}

/* Hide breadcrumbs */
.woocommerce-breadcrumb,
.breadcrumbs,
.breadcrumb,
[class*="breadcrumb"] {
    display: none !important;
}

/* Hide sidebar */
aside,
.sidebar,
.widget-area,
#secondary {
    display: none !important;
}

/* Make content full width */
.site-content,
.content-area,
#content,
#primary,
main,
.site-main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 1rem !important;
}

/* Remove page title on cart/checkout */
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.page-title,
.entry-header {
    display: none !important;
}

/* Ensure body has no extra margins */
body {
    margin: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
}

/* Hide admin bar if visible */
#wpadminbar {
    display: none !important;
}

html {
    margin-top: 0 !important;
}

/* Hide Woo Blocks empty-cart recommendations ("New in store") */
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-separator,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-heading:not(.wc-block-cart__empty-cart__title),
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-collection {
    display: none !important;
}
