/* Fix: ensure all product cards have dark background */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
ul.products li.product {
    background: #101018 !important;
    color: #ffffff !important;
}

/* Fix: ensure product info is visible below image on out-of-stock items */
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .button {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fix: out-of-stock stamp shouldn't hide product info */
.woocommerce ul.products li.product.outofstock::before {
    top: 35% !important;  /* Moved up so it stays on image only */
    pointer-events: none;
}

/* Fix: ensure image area doesn't extend into info area */
.woocommerce ul.products li.product .product-image,
.woocommerce ul.products li.product a img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #1a1a26;
}

/* Fix: out-of-stock products keep info visible */
.woocommerce ul.products li.product.outofstock {
    opacity: 1 !important;
}
.woocommerce ul.products li.product.outofstock .product-image img {
    opacity: 0.4;
}
.woocommerce ul.products li.product.outofstock .price,
.woocommerce ul.products li.product.outofstock .woocommerce-loop-product__title {
    opacity: 1 !important;
}



/* Hide the orphaned 13th product on homepage */
.home .woocommerce ul.products li.product:nth-child(13) {
    display: none !important;
}

/* Mobile: 2 columns */
@media (max-width: 900px) {
    .home .woocommerce ul.products,
    body.home ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}


/* NUCLEAR: Force every product card and its children to be dark */
.woocommerce ul.products li.product,
.woocommerce ul.products li.product *,
ul.products li.product,
ul.products li.product * {
    background-color: transparent !important;
}

.woocommerce ul.products li.product,
ul.products li.product {
    background-color: #101018 !important;
}

/* Force image containers dark too */
.woocommerce ul.products li.product a,
.woocommerce ul.products li.product .wc-block-grid__product-image,
.woocommerce ul.products li.product img {
    background: #1a1a26 !important;
    background-color: #1a1a26 !important;
}

/* The "white card" issue — when a product has the "featured" class or some other marker */
.woocommerce ul.products li.product.featured,
.woocommerce ul.products li.product.first,
.woocommerce ul.products li.product.last {
    background-color: #101018 !important;
}

/* ========== FORCE 4 COLUMNS ON HOMEPAGE PRODUCT GRID ========== */
.home ul.products,
.home .woocommerce ul.products,
.home .woocommerce-page ul.products,
.home .wc-block-grid__products,
.home .products,
body.home ul.products,
body.page ul.products,
body.page-template-default ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
}

/* Override any column count classes WooCommerce adds */
.home .columns-3 ul.products,
.home ul.products.columns-3,
.home .columns-1 ul.products,
.home .columns-2 ul.products,
.home ul.products[class*="columns-"] {
    grid-template-columns: repeat(4, 1fr) !important;
}

/* Force each product card to take 1 column */
.home ul.products li.product {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

/* Mobile: 2 columns */
@media (max-width: 900px) {
    .home ul.products,
    .home .woocommerce ul.products,
    body.home ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Small phones: 1 column */
@media (max-width: 480px) {
    .home ul.products,
    .home .woocommerce ul.products,
    body.home ul.products {
        grid-template-columns: 1fr !important;
    }
}


/* ========== TARGET THE EXACT ELEMENT ========== */
.home .woocommerce.columns-4 ul.products.columns-4,
.home .woocommerce ul.products.columns-4,
ul.products.columns-4 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
    list-style: none !important;
    padding: 0 !important;
}

.home .woocommerce.columns-4 ul.products.columns-4 li.product,
ul.products.columns-4 li.product {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
}

/* ========== KILL THE WHITE PLACEHOLDER ========== */
.woocommerce ul.products li.product .woocommerce-placeholder,
.woocommerce-placeholder,
img.woocommerce-placeholder {
    background: #1a1a26 !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    opacity: 0.4 !important;
}

/* The link wrapper that's turning white */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    background: transparent !important;
    display: block;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link img {
    background: #1a1a26 !important;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .home .woocommerce.columns-4 ul.products.columns-4,
    .home .woocommerce ul.products.columns-4,
    ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .home .woocommerce.columns-4 ul.products.columns-4,
    ul.products.columns-4 {
        grid-template-columns: 1fr !important;
    }
}


/* ========== KILL PHANTOM FIRST CELL ========== */
.home ul.products::before,
.home .woocommerce ul.products::before,
ul.products.columns-4::before {
    display: none !important;
    content: none !important;
}

.home ul.products::after,
.home .woocommerce ul.products::after,
ul.products.columns-4::after {
    display: none !important;
    content: none !important;
}

/* Force the first product to start in column 1 */
.home ul.products li.product:first-child,
ul.products.columns-4 li.product:first-child {
    grid-column-start: 1 !important;
}

/* Reset any flexbox WooCommerce might be using */
.home .woocommerce ul.products,
ul.products.columns-4 {
    flex-wrap: wrap !important;
}

/* ========== HIDE 13TH PRODUCT FOR CLEAN GRID ========== */
.home .woocommerce ul.products li.product:nth-child(13),
.home ul.products.columns-4 li.product:nth-child(13),
.home ul.products li.product:nth-child(13) {
    display: none !important;
}

/* Make sure first 12 fit in 3 rows of 4 */
.home .woocommerce ul.products,
.home ul.products.columns-4 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

/* Mobile: 2 columns, hide the 13th still */
@media (max-width: 900px) {
    .home .woocommerce ul.products,
    .home ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Phones: 1 column */
@media (max-width: 480px) {
    .home .woocommerce ul.products,
    .home ul.products.columns-4 {
        grid-template-columns: 1fr !important;
    }
    .home .woocommerce ul.products li.product:nth-child(13) {
        display: block !important; /* On 1-column, no orphan issue */
    }
}

/* ========== HERO IMAGE: 16:9 ASPECT RATIO ========== */
.hero-visual {
    aspect-ratio: 16 / 9 !important;
    width: 100%;
    max-width: 100%;
}

.hero-vial-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 24px !important;
}

/* Adjust featured card position for wider hero */
.hero-featured-card {
    top: 16px;
    right: 16px;
    max-width: 200px;
}

/* Mobile adjustments */
@media (max-width: 900px) {
    .hero-visual {
        aspect-ratio: 16 / 9 !important;
        max-width: 100%;
    }
}


/* ========== ROUNDED PRODUCT IMAGES (SINGLE PRODUCT PAGE) ========== */

/* Main product image on the single product page */
.woocommerce div.product .woocommerce-product-gallery__image img,
.woocommerce div.product .woocommerce-product-gallery img,
.woocommerce-product-gallery__wrapper img,
.single-product .wp-post-image,
.single-product .woocommerce-product-gallery img {
    border-radius: 20px !important;
    overflow: hidden !important;
}

.woocommerce div.product .woocommerce-product-gallery__image,
.woocommerce-product-gallery__image {
    border-radius: 20px !important;
    overflow: hidden !important;
}

/* Thumbnail images below main image */
.woocommerce div.product .woocommerce-product-gallery__image--placeholder,
.flex-control-thumbs li img {
    border-radius: 12px !important;
}

/* Also round the product grid card images (shop/homepage) more */
.woocommerce ul.products li.product img,
.woocommerce ul.products li.product .wp-post-image,
.woocommerce ul.products li.product a img {
    border-radius: 16px !important;
}

/* Make sure parent containers don't crop the rounding */
.woocommerce ul.products li.product a,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
    border-radius: 16px;
    overflow: hidden;
}

/* ========== HIDE SKU, CATEGORY, TAGS FROM PRODUCT PAGE ========== */
.single-product .product_meta {
    display: none !important;
}

/* ========== HIDE SHORT DESCRIPTION IN CART & CHECKOUT ========== */
.woocommerce-cart .cart_item .product-name .wc-item-meta,
.woocommerce-cart .cart_item .product-name p,
.woocommerce-cart .product-name .product-short-description,
.woocommerce-checkout .product-name .product-short-description,
.woocommerce-cart-form .product-name > p,
.woocommerce-cart-form .product-name br + *:not(a) {
    display: none !important;
}

/* Specifically target the short description that appears below product name in cart */
.woocommerce-cart table.shop_table .product-name p:not(.product-quantity):not(.variation) {
    display: none !important;
}

/* ========== BRAND GRADIENT FOR CHECKOUT & CART BUTTONS ========== */

/* Proceed to Checkout button */
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce a.checkout-button,
.woocommerce .wc-block-cart__submit-button,
.wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button,
.wp-block-woocommerce-checkout-actions-block .wc-block-components-checkout-place-order-button,
.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-container .wc-block-components-button {
    background: linear-gradient(90deg, #2bb1ff 0%, #9333ea 100%) !important;
    background-image: linear-gradient(90deg, #2bb1ff 0%, #9333ea 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    padding: 16px 32px !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Place Order button (final checkout step) */
.woocommerce #place_order,
button#place_order,
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
    background: linear-gradient(90deg, #2bb1ff 0%, #9333ea 100%) !important;
    background-image: linear-gradient(90deg, #2bb1ff 0%, #9333ea 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    padding: 18px 40px !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    width: 100% !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

/* Hover effect on all gradient buttons */
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce a.checkout-button:hover,
.woocommerce #place_order:hover,
button#place_order:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-button:hover,
.wc-block-components-checkout-place-order-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4) !important;
    opacity: 0.95 !important;
}

/* Ensure button text stays white on hover */
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce a.checkout-button:hover,
.woocommerce #place_order:hover,
button#place_order:hover {
    color: #ffffff !important;
}

/* ========== HIDE SHORT DESCRIPTION IN BLOCK-BASED CART ========== */

/* Newer WooCommerce block cart selectors */
.wc-block-cart-item__product .wc-block-components-product-details,
.wc-block-cart-item__product .wc-block-components-product-metadata,
.wc-block-cart-item__product .wc-block-components-product-metadata__description,
.wc-block-cart .wc-block-cart-item__product p,
.wc-block-cart-item__product-name + p,
.wc-block-cart-item__product-name + .wc-block-components-product-metadata,
.wc-block-cart-items .wc-block-cart-item__product > p,
.wc-block-cart-items .wc-block-cart-item__product div.wc-block-components-product-details,
.wc-block-cart-items .wc-block-cart-item__product .wc-block-components-product-metadata p,
.is-large.wc-block-cart .wc-block-cart-item__product .wc-block-components-product-metadata__description {
    display: none !important;
}

/* Same for checkout page */
.wc-block-checkout .wc-block-cart-item__product .wc-block-components-product-metadata,
.wc-block-checkout .wc-block-cart-item__product p,
.wc-block-components-order-summary .wc-block-components-product-metadata__description,
.wc-block-components-order-summary-item__description p {
    display: none !important;
}

/* Nuclear option — hide any paragraph inside cart item product cells */
.wc-block-cart-item__product p,
.wc-block-components-product-details p,
.wc-block-components-product-metadata p {
    display: none !important;
}

/* ========== TRUST BAR SVG ICON STYLING ========== */
.trust-bar {
    background: linear-gradient(180deg, #0a0a0f 0%, #000000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.trust-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.trust-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(43, 177, 255, 0.08) !important;
    color: #2bb1ff !important;
    border: 1px solid rgba(43, 177, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

.trust-item:hover .trust-icon {
    background: linear-gradient(135deg, rgba(43, 177, 255, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%) !important;
    border-color: rgba(147, 51, 234, 0.4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(43, 177, 255, 0.2) !important;
}

.trust-icon svg {
    width: 18px !important;
    height: 18px !important;
}

/* ========== NAV BAR POLISH ========== */

/* Nav links base styling */
.site-header nav a,
.main-navigation a,
header nav a,
.header nav a {
    position: relative !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    padding: 8px 4px !important;
    transition: color 0.25s ease !important;
}

/* Underline indicator*/
 /* ========== UNIFIED HERO + FEATURE CARDS SECTION ========== */
.unified-hero {
    background: #000;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.unified-hero-intro {
    margin-bottom: 40px;
}

.unified-hero .hero-eyebrow {
    font-size: 12px;
    letter-spacing: 2.5px;
    color: #2bb1ff;
    text-transform: uppercase;
    margin: 0 0 16px;
    font-weight: 500;
}

.unified-hero-title {
    font-size: 44px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 820px;
}

.rotating-word {
    background: linear-gradient(90deg, #2bb1ff 0%, #9333ea 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    min-width: 220px;
    text-align: left;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.unified-hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 620px;
    margin: 0;
    line-height: 1.6;
}

/* ===== LARGE FEATURE CARDS ===== */
.feature-cards-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.feature-card-large {
    position: relative;
    border-radius: 28px;
    padding: 36px;
    height: 280px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.2);
}

.feature-card-purple {
    background: linear-gradient(135deg, #2a1a4a 0%, #4a2870 60%, #6b3aa0 100%);
    border: 1px solid rgba(147, 51, 234, 0.25);
}

.feature-card-blue {
    background: linear-gradient(135deg, #0a2540 0%, #1e4a78 60%, #2a6ba8 100%);
    border: 1px solid rgba(43, 177, 255, 0.25);
}

.feature-card-content {
    position: relative;
    z-index: 2;
}

.feature-card-eyebrow {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.feature-card-eyebrow-blue {
    color: #2bb1ff;
}

.feature-card-title {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    margin: 4px 0 0;
}

.feature-card-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-card-cta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.feature-card-arrow {
    font-size: 18px;
    color: #fff;
}

.feature-card-glow {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-glow-purple {
    background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, transparent 60%);
}

.feature-card-glow-bg-blue {
    position: absolute;
    right: -50px;
    top: -20px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle at center, rgba(43, 177, 255, 0.3) 0%, transparent 65%);
}

.feature-card-vial {
    width: 130px;
    height: 180px;
    border-radius: 18px;
    background: linear-gradient(135deg, #cba3f5 0%, #b5e0ff 50%, #f5b5d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #2a1f4a;
    font-weight: 500;
    letter-spacing: 0.5px;
    transform: rotate(-8deg);
    text-align: center;
    line-height: 1.4;
}

.feature-card-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    padding: 4px 12px;
    background: #fff8d4;
    color: #6b5a00;
    font-size: 12px;
    font-weight: 500;
    border-radius: 999px;
    z-index: 3;
}

/* ===== SMALL FEATURE CARDS ===== */
.feature-cards-small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.feature-card-small {
    background: linear-gradient(135deg, #15151f 0%, #1f1f2e 100%);
    border-radius: 18px;
    padding: 16px 20px;
    height: 80px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card-small:hover {
    transform: translateY(-2px);
}

.feature-card-small-cyan { border: 1px solid rgba(43, 177, 255, 0.15); }
.feature-card-small-pink { border: 1px solid rgba(255, 133, 216, 0.15); }
.feature-card-small-purple { border: 1px solid rgba(147, 51, 234, 0.15); }
.feature-card-small-teal { border: 1px solid rgba(93, 202, 165, 0.15); }

.feature-card-small-cyan:hover { border-color: rgba(43, 177, 255, 0.4); }
.feature-card-small-pink:hover { border-color: rgba(255, 133, 216, 0.4); }
.feature-card-small-purple:hover { border-color: rgba(147, 51, 234, 0.4); }
.feature-card-small-teal:hover { border-color: rgba(93, 202, 165, 0.4); }

.feature-card-small-text {
    flex: 1;
}

.feature-card-small-text p {
    font-size: 15px;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.feature-card-small-vial {
    width: 42px;
    height: 50px;
    border-radius: 10px;
    transform: rotate(-12deg);
}

.feature-card-small-vial-cyan { background: linear-gradient(135deg, #b5d8f5 0%, #d8b5f5 100%); }
.feature-card-small-vial-pink { background: linear-gradient(135deg, #f5d8e8 0%, #f5b5b5 100%); }
.feature-card-small-vial-purple { background: linear-gradient(135deg, #d8b5f5 0%, #b5b5f5 100%); }
.feature-card-small-vial-teal { background: linear-gradient(135deg, #b5e0f5 0%, #c5f5e0 100%); }

.feature-card-small-arrow {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.accent-cyan { color: #2bb1ff; }
.accent-pink { color: #ff85d8; }
.accent-purple { color: #9333ea; }
.accent-teal { color: #5DCAA5; }

/* ===== RESPONSIVE / MOBILE ===== */
@media (max-width: 768px) {
    .unified-hero {
        padding: 40px 20px;
    }

    .unified-hero-title {
        font-size: 32px;
    }

    .feature-cards-large {
        grid-template-columns: 1fr;
    }

    .feature-card-large {
        height: 240px;
        padding: 28px;
    }

    .feature-card-glow {
        width: 200px;
        height: 200px;
    }

    .feature-card-vial {
        width: 90px;
        height: 130px;
    }

    .feature-cards-small {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .unified-hero-title {
        font-size: 26px;
    }

    .rotating-word {
        min-width: 160px;
    }
}

/* ========== FEATURED PRODUCT SHOWCASE ========== */
.featured-showcase {
    background: #000;
    padding: 20px 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-card {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1530 50%, #0a0a14 100%);
    border-radius: 32px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.showcase-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.showcase-glow-top {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(43, 177, 255, 0.15) 0%, transparent 60%);
}

.showcase-glow-bottom {
    bottom: -120px;
    left: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.12) 0%, transparent 60%);
}

.showcase-content {
    position: relative;
    z-index: 2;
}

.showcase-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(90deg, rgba(43, 177, 255, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 999px;
    font-size: 11px;
    color: #2bb1ff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 18px;
}

.showcase-title {
    font-size: 44px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.showcase-category {
    font-size: 13px;
    color: #2bb1ff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 16px;
    font-weight: 500;
}

.showcase-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 24px;
    line-height: 1.6;
}

.showcase-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.showcase-price-strike {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4) !important;
    text-decoration: line-through;
}

.showcase-price-strike .woocommerce-Price-amount,
.showcase-price-strike .amount {
    color: rgba(255, 255, 255, 0.4) !important;
}

.showcase-price-now {
    font-size: 36px;
    color: #fff !important;
    font-weight: 500;
}

.showcase-price-now .woocommerce-Price-amount,
.showcase-price-now .amount {
    color: #fff !important;
}

.showcase-savings {
    font-size: 11px;
    padding: 4px 10px;
    background: linear-gradient(90deg, #2bb1ff 0%, #9333ea 100%);
    color: #fff;
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.showcase-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.showcase-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(90deg, #2bb1ff 0%, #9333ea 100%);
    color: #fff !important;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.showcase-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.showcase-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.showcase-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.showcase-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

.showcase-vial-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
}

.showcase-vial-img {
    position: relative;
    width: 280px;
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(147, 51, 234, 0.3);
    transform: rotate(-4deg);
    transition: transform 0.4s ease;
}

.showcase-vial-img:hover {
    transform: rotate(0deg) scale(1.03);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .featured-showcase {
        padding: 20px 20px 60px;
    }

    .showcase-card {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        gap: 20px;
    }

    .showcase-title {
        font-size: 32px;
    }

    .showcase-visual {
        order: -1;
        min-height: 280px;
    }

    .showcase-vial-img {
        width: 200px;
    }

    .showcase-vial-glow {
        width: 280px;
        height: 280px;
    }

    .showcase-cta-row {
        flex-direction: column;
    }

    .showcase-cta-primary,
    .showcase-cta-secondary {
        justify-content: center;
        width: 100%;
    }
}

/* ========== TRANSPARENT VIAL IMAGES IN FEATURE CARDS ========== */
.feature-card-vial-img {
    width: 220px;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    transform: rotate(-8deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}

.feature-card-large:hover .feature-card-vial-img {
    transform: rotate(-4deg) scale(1.05);
}

/* Blue card vial glow positioning */
.feature-card-glow-blue {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(43, 177, 255, 0.3) 0%, transparent 60%);
}

/* ========== TRANSPARENT VIAL IMAGES IN SMALL CARDS ========== */
.feature-card-small-img {
    width: 52px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.feature-card-small:hover .feature-card-small-img {
    transform: scale(1.08);
}

/* ========== VIAL IMAGES INSIDE COLORED TILES (SMALL CARDS) ========== */
.feature-card-small-vial {
    width: 56px;
    height: 64px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: rotate(0deg);
}

.feature-card-small-img {
    width: 80%;
    height: auto;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.feature-card-small:hover .feature-card-small-img {
    transform: scale(1.1);
}
