/**
 * Cablab Iframe Styles - Minimal styling for raw iframe
 */

/* Remove any default iframe styling and ensure full width */
.product-customiser iframe {
    width: 100% !important;
    border: none !important;
    margin: 0;
    padding: 0;
}

/* Replicate MyCustomizer layout rules for Cablab products */
.product-customiser {
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Center the product title like MyCustomizer - high specificity */
body.product-type-cablab .product-details,
body.cablab-product-page .product-details,
.single-product.product-type-cablab .product-details {
    text-align: center !important;
}

/* Allow flex wrap for proper layout - high specificity */
body.product-type-cablab .product__top-content,
body.cablab-product-page .product__top-content,
.single-product.product-type-cablab .product__top-content {
    flex-wrap: wrap !important;
}

/* Hide the ::after pseudo-element that causes misalignment - override with maximum specificity */
html body.product-type-cablab .product--amp .product__top-content--amp:after,
html body.cablab-product-page .product--amp .product__top-content--amp:after,
html body.product-type-cablab .product__top-content--amp:after,
html body.cablab-product-page .product__top-content--amp:after,
body.product-type-cablab.single-product .product--amp .product__top-content--amp:after,
body.cablab-product-page.single-product .product--amp .product__top-content--amp:after,
body.product-type-cablab.single-product .product__top-content--amp:after,
body.cablab-product-page.single-product .product__top-content--amp:after {
    display: none !important;
    content: "" !important;
    background: none !important;
    background-color: transparent !important;
    width: 0 !important;
    height: 0 !important;
    position: static !important;
    z-index: -999 !important;
}

/* Body class adjustments */
.cablab-product-page .woocommerce-product-gallery {
    display: none;
}

.cablab-iframe-enabled .woocommerce-product-gallery {
    display: none !important;
}

.cablab-iframe-enabled .product-images {
    display: none;
}

/* Hide product variation gallery plugin elements for Cablab products */
.cablab-iframe-enabled .rtwpvg-images,
.cablab-iframe-enabled .rtwpvg-wrapper,
.cablab-product-page .rtwpvg-images,
.cablab-product-page .rtwpvg-wrapper {
    display: none !important;
}

/* Hide standard WooCommerce images for Cablab products */
.cablab-iframe-enabled .woocommerce-product-gallery__wrapper,
.cablab-iframe-enabled .woocommerce-product-gallery__image,
.cablab-product-page .woocommerce-product-gallery__wrapper,
.cablab-product-page .woocommerce-product-gallery__image {
    display: none !important;
}

/* Hide any product images with Cablab product type class */
.rtwpvg-product-type-cablab {
    display: none !important;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .cablab-iframe-container {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }

    .cablab-notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

/* Print styles */
@media print {
    .cablab-iframe-container {
        display: none;
    }
}

/* Theme compatibility */
.single-product .cablab-iframe-container {
    clear: both;
}

/* WooCommerce layout adjustments */
.woocommerce #content div.product .cablab-iframe-container,
.woocommerce div.product .cablab-iframe-container,
.woocommerce-page #content div.product .cablab-iframe-container,
.woocommerce-page div.product .cablab-iframe-container {
    margin-bottom: 2em;
}

/* Override theme-specific styles if needed */
.cablab-iframe-container iframe {
    max-width: none !important;
    width: 100% !important;
}

/* FINAL OVERRIDE - Simple and effective */
.product-type-cablab .product__top-content--amp::after {
    width: 0px !important;
}