/* Hide theme's nasa-first-breadcrumb that duplicates product title */
.nasa-first-breadcrumb {
    display: none !important;
}

/* ========================================
   ARCHIVE/SHOP PAGE - PRODUCT GRID LAYOUT
   Custom archive-product.php template styling
   ======================================== */

/* Archive Page Container */
.woocommerce-products-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.woocommerce-products-archive .container {
    width: 100%;
    max-width: none;
    padding: 0;
}

/* Archive Page Title */
.woocommerce-products-header__title.page-title {
    font-size: 42px;
    font-weight: 600;
    color: var(--text-primary, #1f2937);
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.1;
}

/* Archive Description */
.woocommerce-archive-description {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-muted, #6b7280);
}

/* Full Width Archive Body */
body.archive-product-page,
body.full-width-archive {
    background: var(--bg-secondary, #f8f9fa);
}

body.archive-product-page .site-main,
body.full-width-archive .site-main {
    max-width: none;
    padding: 0;
    background: none;
}

/* Mobile Archive Styles */
@media (max-width: 768px) {
    .woocommerce-products-archive {
        padding: 20px 15px;
    }

    .woocommerce-products-header__title.page-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

/* Products Grid Container - Matches "You May Also Like" Layout */
/* Override parent theme's grid classes */
.woocommerce ul.products,
.woocommerce-page ul.products,
.woocommerce ul.products.grid,
.woocommerce-page ul.products.grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

/* Extra Large Screens - 3 columns */
@media (min-width: 1200px) {

    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .woocommerce ul.products.grid,
    .woocommerce-page ul.products.grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Large Screens - 3 columns */
@media (max-width: 1199px) and (min-width: 992px) {

    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .woocommerce ul.products.grid,
    .woocommerce-page ul.products.grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Tablet - 2 columns */
@media (max-width: 991px) and (min-width: 768px) {

    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .woocommerce ul.products.grid,
    .woocommerce-page ul.products.grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

/* Mobile - 1 column */
@media (max-width: 767px) {

    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .woocommerce ul.products.grid,
    .woocommerce-page ul.products.grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin: 20px 0;
    }
}

/* Archive Product Card - Remove default WooCommerce product card class conflicts */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
}

/* Breadcrumb Styling */
.custom-breadcrumb-section {
    width: 100%;
    background: var(--bg-secondary, #f8f9fa);
    border-bottom: 1px solid var(--border-neutral, #e5e7eb);
    padding: 15px 0;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.woocommerce-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 13px;
    color: var(--text-muted, #6b7280);
    font-family: 'Inter', sans-serif;
    display: block !important;
    visibility: visible !important;
}

.breadcrumb-item {
    display: inline;
}

.woocommerce-breadcrumb a {
    color: var(--text-secondary, #374151);
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
    color: var(--primary-color, #fbbf24);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--text-light, #9ca3af);
    margin: 0 8px;
}

/* Current page (last item) - Product Title */
.breadcrumb-current,
.woocommerce-breadcrumb .breadcrumb-item:last-child {
    color: var(--text-primary, #1f2937);
    font-weight: 500;
}

/* Mobile Breadcrumb */
@media (max-width: 768px) {
    .custom-breadcrumb-section {
        padding: 12px 0;
    }

    .woocommerce-breadcrumb {
        padding: 0 15px;
        font-size: 12px;
    }

    .breadcrumb-separator {
        margin: 0 6px;
    }
}

/* Theme Switcher Styling */
.theme-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    background: var(--bg-primary);
    padding: 8px;
    border-radius: 25px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-neutral);
    max-width: calc(100vw - 40px);
    max-height: 300px;
    overflow-y: auto;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.theme-switcher.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 20px;
}

/* Hide theme switcher completely when disabled */
body.theme-switcher-disabled .theme-switcher,
body.theme-switcher-disabled .theme-toggle-btn {
    display: none !important;
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-primary);
}

.theme-toggle-btn.active {
    background: #dc2626;
}

.theme-toggle-btn::after {
    content: '🎨';
}

.theme-toggle-btn.active::after {
    content: '✕';
}

.theme-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #2c1810;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.theme-btn.active {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px var(--border-primary), inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.theme-btn:hover {
    transform: scale(1.05);
}

.theme-btn.default {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
}

.theme-btn.gold {
    background: linear-gradient(135deg, rgba(199, 169, 14, 1) 0%, rgba(148, 126, 11, 1) 50%, rgba(229, 196, 92, 1) 100%);
}

.theme-btn.gold-variant {
    background: linear-gradient(135deg, rgba(199, 169, 14, 1) 0%, rgba(148, 126, 11, 1) 100%);
}

.theme-btn.gold-bright {
    background: linear-gradient(90deg, #FFD700, #FFB700);
}

.theme-btn.gold-warm {
    background: linear-gradient(90deg, #FFF8DC, #FFD700);
}

.theme-btn.gold-radial {
    background: radial-gradient(circle, #FFD700, #B8860B);
}

.theme-btn.gold-bronze {
    background: linear-gradient(90deg, #D4A574, #8B4513);
}

.theme-btn.gold-vibrant {
    background: linear-gradient(180deg, #FFEAA7, #E17055);
}

.theme-btn.gold-luxury {
    background: linear-gradient(90deg, #FFD1A9, #E6A86F);
}

.theme-btn.gold-sunset {
    background: linear-gradient(90deg, #FF6347, #FFD700, #FF6347);
}

.theme-btn.gold-royal {
    background: linear-gradient(315deg, #FFF68F, #E6AC00);
}

.theme-btn.gold-amber {
    background: linear-gradient(60deg, #FFDC00, #FF8C00);
}

.theme-btn.gold-champagne {
    background: linear-gradient(180deg, #F5DEB3, #8B7355);
}

.theme-btn.gold-copper {
    background: radial-gradient(ellipse, #C19A6B, #654321);
}

.theme-btn.gold-cream {
    background: linear-gradient(45deg, #FFFACD, #BDB76B);
}

.theme-btn.gold-peach {
    background: linear-gradient(225deg, #FFE4B5, #CD853F);
}

.theme-btn.gold-honey {
    background: linear-gradient(45deg, #FFCC02, #FF9500);
}

.theme-btn.gold-rose {
    background: linear-gradient(135deg, #FDCB6E, #E84393);
}

.theme-btn.gold-dark {
    background: linear-gradient(120deg, #CFAD70, #8B4513);
}

.theme-btn.gold-pastel {
    background: linear-gradient(90deg, #E6E6FA, #DAA520);
}

.theme-btn.gold-fire {
    background: linear-gradient(60deg, #FFDC00, #FF8C00);
}

.theme-btn.gold-electric {
    background: linear-gradient(315deg, #FFF68F, #E6AC00);
}

.theme-btn.gold-autumn {
    background: linear-gradient(180deg, #F5DEB3, #8B7355);
}

.theme-btn.gold-lemon {
    background: linear-gradient(90deg, #B8860B, #DAA520, #CD853F);
}

.theme-btn.gold-sand {
    background: linear-gradient(225deg, #F4A460, #8B4513);
}

.theme-btn.gold-vintage {
    background: linear-gradient(270deg, #F0E68C, #DAA520);
}

.theme-btn.gold-premium-amber {
    background: linear-gradient(135deg, #FFE4B5 0%, #CD853F 50%, #8B4513 100%);
    border: 1px solid #B8860B;
    color: #4A2C17;
}

.theme-btn.teal {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #148387 100%);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.theme-btn.lime-neon {
    background: linear-gradient(135deg, #deff00 0%, #c5e600 50%, #accc00 100%);
    color: #2c1810;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.theme-btn.gold-chartreuse {
    background: linear-gradient(135deg, #e2e35c 0%, #c9ca49 50%, #b0b136 100%);
    color: #2c1810;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Dark theme buttons need light text */
.theme-btn.gold-dark,
.theme-btn.gold-bronze,
.theme-btn.gold-copper {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.theme-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-btn.active::after {
    opacity: 1;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-neutral);
}

.tab-button {
    background: none;
    border: none;
    font-size: 15px !important;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    padding: 16px 0;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.tab-navigation .tab-button:hover {
    background-color: var(--accent-color) !important;
    color: var(--text-secondary);
}

.tab-button.active {
    color: var(--text-primary);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px 2px 0 0;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General Tab Content Styling */
.tab-section h2 {
    font-size: 35px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.1;
}

.tab-section h2:hover {
    background-color: none;
}

.tab-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}

.tab-description:last-child {
    margin-bottom: 32px;
}

/* Product Details Section */
.woocommerce.single-product .product-page {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.product-details-section {
    padding: 40px 0;
    min-height: 100vh;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Main Gallery Section - MAKE THIS STICKY */
.product-details-section .gallery-section {
    position: sticky;
    top: 20px;
    z-index: 100;
    height: fit-content;
}

.gallery-container {
    display: flex;
    gap: 20px;
    background: none;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 80px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-neutral);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.thumbnail:hover {
    border-color: var(--primary-color);
    background: var(--bg-quaternary);
    transform: translateX(4px);
}

.thumbnail.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--bg-primary);
    box-shadow: var(--shadow-primary);
}

/* Video thumbnail styles */
.thumbnail.video-thumb {
    background: var(--primary-color-darkest);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Play icon for video thumbnail */
.thumbnail-play-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.thumbnail.video-thumb:hover .thumbnail-play-icon {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.thumbnail-play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid var(--primary-color-darkest);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 3px;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 2;
}

/* Video thumbnail without background image */
.thumbnail.video-thumb:not([style*="background-image"]) {
    background: var(--primary-color-darkest);
    flex-direction: column;
    justify-content: center;
    font-size: 10px;
    color: var(--bg-primary);
    font-weight: 500;
}

.main-image-container {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    background: none;
    box-shadow: var(--shadow-card);
}

.main-image {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    background: var(--bg-tertiary);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Height for video containers - more specific selectors */
.main-image .video-element,
.main-image .video-placeholder {
    min-height: 500px;
}

/* Center alignment when video is present */
.main-image:has(.video-element),
.main-image:has(.video-placeholder) {
    min-height: 500px;
    align-items: center;
}

/* Fallback for browsers that don't support :has() */
.main-image.video-container {
    min-height: 500px;
    align-items: center;
}

/* Product image container - aligned to top for images */
.main-image .product-image-container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Fullscreen mode for gallery video */
.main-image.fullwidth {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 0;
    backdrop-filter: blur(10px);
}

.main-image.fullwidth .video-element {
    width: 90vw;
    height: 90vh;
    max-width: 1200px;
    object-fit: contain;
}

/* Product Info Details */
.product-info-details {
    padding: 40px;
    box-shadow: var(--shadow-card);
    background: var(--bg-primary);
    border-radius: 20px;
}

.premium-badge {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 5px;
    box-shadow: var(--shadow-button);
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    line-height: 1.1;
}

.product-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
    margin: 0 0 15px 0;
    font-style: italic;
}

/* Price Section */
.price-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-badge {
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Video Section */
.video-container {
    margin: 32px 0;
    transition: all 0.3s ease;
}

.video-container.fullwidth {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-tertiary);
    aspect-ratio: 3/4;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.video-container.fullwidth .video-wrapper {
    width: 90vw;
    height: 90vh;
    aspect-ratio: 16/9;
    border-radius: 8px;
    max-width: 1200px;
}

.video-container.fullwidth .video-element {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Close button for fullscreen video */
.video-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-container.fullwidth .video-close-btn {
    display: flex;
}

.video-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.video-placeholder {
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1571781926291-c477ebfd024b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-icon {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 16px solid var(--primary-color-darkest);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}

.video-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-align: center;
    padding: 0 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.video-element {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Key Benefits Section */
.product-info-details h2 {
    font-size: 29px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.product-info-details h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Benefits Grid - Variation 4: Vertical Line Separator (Compact) */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 24px 0 32px 0;
}

.benefit-item {
    display: flex;
    align-items: stretch;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--primary-color-darkest);
}

.benefit-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.benefit-label {
    width: 130px;
    flex-shrink: 0;
    font-weight: 500;
    color: var(--primary-color-darkest);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.benefit-value {
    flex-grow: 1;
    border-left: 2px solid var(--primary-color);
    padding: 7px 14px;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 15px;
    display: flex;
    align-items: center;
    line-height: 18px;
}

/* Gradient backgrounds for each benefit item using nth-child */
.benefit-item:nth-child(1) .benefit-label {
    background: var(--primary-color-opacity-50, rgba(251, 191, 36, 0.5));
}

.benefit-item:nth-child(2) .benefit-label {
    background: var(--primary-color-opacity-40, rgba(251, 191, 36, 0.4));
}

.benefit-item:nth-child(3) .benefit-label {
    background: var(--primary-color-opacity-30, rgba(251, 191, 36, 0.3));
}

.benefit-item:nth-child(4) .benefit-label {
    background: var(--primary-color-opacity-20, rgba(251, 191, 36, 0.2));
}

.benefit-item:nth-child(5) .benefit-label {
    background: var(--primary-color-opacity-10, rgba(251, 191, 36, 0.1));
}

.benefit-item:nth-child(6) .benefit-label {
    background: transparent;
}

/* Legacy support - hide if using new structure */
.benefit-bullet {
    display: none;
}

.benefit-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 400;
}

.benefit-text strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* Mobile Responsive for Benefits */
@media (max-width: 768px) {
    .benefit-label {
        width: 110px;
        font-size: 13px;
        padding: 10px 12px;
    }

    .benefit-value {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* WooCommerce Theme Button Integration */
.woocommerce-cart-form-wrapper {
    margin-top: 24px;
}

/* Style the theme's add to cart buttons */
.woocommerce-cart-form-wrapper .single_add_to_cart_button,
.woocommerce-cart-form-wrapper .button,
.woocommerce-cart-form-wrapper input[type="submit"] {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #000000 !important;
    padding: 13px 32px !important;

    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.woocommerce-cart-form-wrapper .single_add_to_cart_button:hover,
.woocommerce-cart-form-wrapper .button:hover,
.woocommerce-cart-form-wrapper input[type="submit"]:hover {
    background-color: #333333 !important;
    color: #ffffff !important;
    border-color: #333333 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
}

/* Style quantity input for theme consistency */
.woocommerce-cart-form-wrapper .quantity {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.woocommerce-cart-form-wrapper .quantity label {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    margin: 0 !important;
    min-width: 80px;
}

.woocommerce-cart-form-wrapper .quantity .quantity-selector,
.woocommerce-cart-form-wrapper .quantity .qty-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.woocommerce-cart-form-wrapper .quantity .qty {
    width: 60px !important;
    height: 44px !important;
    text-align: center !important;
    border: 2px solid var(--border-neutral) !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    background: var(--bg-primary) !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

.woocommerce-cart-form-wrapper .quantity .qty:focus {
    border-color: var(--primary-color) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1) !important;
}

.woocommerce-cart-form-wrapper .quantity button,
.woocommerce-cart-form-wrapper .quantity .quantity-btn {
    width: 36px !important;
    height: 36px !important;
    border: 2px solid var(--border-neutral) !important;
    border-radius: 8px !important;
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.woocommerce-cart-form-wrapper .quantity button:hover,
.woocommerce-cart-form-wrapper .quantity .quantity-btn:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--bg-primary) !important;
}

/* Make sure the gallery section within product-grid IS sticky on desktop */
.product-grid .gallery-section {
    position: sticky;
    top: 40px;
    z-index: 10;
    height: fit-content;
}

/* Product Display Area */
.product-display {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    height: fit-content;
    position: sticky;
    top: 40px;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.product-image {
    width: 102%;
    height: 102%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    top: 0;
    left: 0;
}

.product-image:hover {
    transform: scale(1.05);
}

.golden-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.1) 0%,
            rgba(255, 215, 0, 0.05) 25%,
            transparent 50%,
            rgba(255, 215, 0, 0.05) 75%,
            rgba(255, 215, 0, 0.1) 100%);
    pointer-events: none;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.product-image-container:hover .golden-overlay {
    opacity: 0.8;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.15) 0%,
            rgba(255, 215, 0, 0.08) 25%,
            transparent 50%,
            rgba(255, 215, 0, 0.08) 75%,
            rgba(255, 215, 0, 0.15) 100%);
}

.product-label {
    padding: 20px;
    text-align: center;
    background: var(--bg-secondary);
    border-radius: 0 0 20px 20px;
}

.product-label h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.product-label p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tab-navigation {
        flex-direction: column;
        gap: 0;
        background: var(--bg-tertiary);
        border-radius: 12px;
        padding: 8px;
        margin-bottom: 32px;
        display: flex;
    }

    .tab-button {
        padding: 16px 20px;
        border-radius: 8px;
        text-align: left;
        display: block;
    }

    .tab-button.active {
        background: var(--bg-primary);
        box-shadow: var(--shadow-button);
    }

    .tab-button.active::after {
        display: none;
    }

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
    }

    .tab-section h2 {
        font-size: 32px;
    }

    .product-display {
        position: static;
    }

    .product-label h3 {
        font-size: 18px;
    }

    .product-label p {
        font-size: 12px;
    }

    /* Product Details Mobile */
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;

    }

    .product-details-section .gallery-section {
        position: static;
        order: 1;
    }

    .product-info-details {
        order: 2;
    }

    .gallery-container {
        flex-direction: column;
    }

    .thumbnail-list {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        min-width: auto;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .thumbnail-play-icon {
        width: 30px;
        height: 30px;
    }

    .thumbnail-play-icon::after {
        border-left: 10px solid var(--primary-color-darkest);
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        margin-left: 2px;
    }

    .video-play-overlay {
        width: 20px;
        height: 20px;
        font-size: 8px;
    }

    .main-image {
        height: 300px;
    }

    .product-title {
        font-size: 36px;
    }

    .current-price {
        font-size: 28px;
    }

    .original-price {
        font-size: 18px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* WooCommerce cart form mobile styles */
    .woocommerce-cart-form-wrapper .quantity {
        margin-bottom: 12px;
    }

    .woocommerce-cart-form-wrapper .quantity label {
        min-width: auto;
        font-size: 14px !important;
    }

    .woocommerce-cart-form-wrapper .quantity .qty {
        width: 50px !important;
        height: 40px !important;
    }

    .woocommerce-cart-form-wrapper .quantity button,
    .woocommerce-cart-form-wrapper .quantity .quantity-btn {
        width: 32px !important;
        height: 32px !important;
    }

    /* Video Mobile Adjustments */
    .video-wrapper {}

    .video-container.fullwidth .video-wrapper {
        width: 95vw;
        height: 80vh;
        max-width: none;
    }

    .video-close-btn {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* ====== ADDITIONAL USED CSS FROM STYLE.CSS ====== */

/* Reset and Base Styles - USED */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-secondary);
    line-height: 1.6;
}

/* Main Layout - USED */
.product-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Gallery Section - USED - Removed duplicate, now handled above */

/* Product Info Section - USED */
.product-info {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: var(--shadow-card);
}

/* Typography - USED */
h1,
h2,
h3 {
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    margin-bottom: 24px;
}

h1::after,
h2::after,
h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    margin-top: 8px;
}

h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 8px;
}

h1::after {
    width: 60px;
    margin-top: 12px;
}

/* Description Tab Specific CSS - FROM TAB FILES */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.product-badge {
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.product-badge:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* Ingredients Tab CSS - FROM TAB FILES */
.ingredients-grid {
    display: block;
    margin-top: 32px;
}

.ingredient-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-neutral);
    transition: all 0.2s ease;
}

.ingredient-item:last-child {
    border-bottom: none;
}

.ingredient-item:hover {
    padding-left: 8px;
}

.ingredient-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ingredient-name::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ingredient-item:hover .ingredient-name::before {
    opacity: 1;
}

.ingredient-benefit {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-left: 16px;
    font-weight: 300;
}

/* Usage Tab CSS - FROM TAB FILES */
.usage-steps {
    margin-top: 32px;
}

.usage-step {
    padding: 28px 0;
    border-bottom: 1px solid var(--border-neutral);
    display: flex;
    gap: 20px;
    transition: all 0.2s ease;
}

.usage-step:last-child {
    border-bottom: none;
}

.usage-step:hover {
    padding-left: 8px;
}

.step-number {
    min-width: 32px;
    height: 32px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-top: 4px;
    transition: all 0.2s ease;
}

.usage-step:hover .step-number {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.step-content {
    flex: 1;
}

.usage-step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.usage-step-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Additional Mobile Responsive Design */
@media (max-width: 768px) {
    .product-page {
        padding: 20px 15px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }

    .product-grid .gallery-section {
        position: static;
        order: 1;
    }

    .product-info {
        order: 2;
        padding: 35px 30px;
    }

    h1 {
        font-size: 36px;
    }

    /* Mobile Responsive for Ingredients */
    .ingredients-grid {
        margin-top: 24px;
    }

    .ingredient-item {
        padding: 20px 0;
    }

    .ingredient-benefit {
        margin-left: 0;
        margin-top: 8px;
    }

    /* Mobile Responsive for Usage */
    .usage-step {
        flex-direction: column;
        gap: 16px;
        padding: 24px 0;
    }

    .step-number {
        align-self: flex-start;
    }

    /* Theme Switcher Mobile */
    .theme-switcher {
        bottom: 10px;
        right: 10px;
        padding: 6px;
        gap: 4px;
        max-width: calc(100vw - 80px);
        max-height: 200px;
    }

    .theme-toggle-btn {
        bottom: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .theme-btn {
        width: 32px;
        height: 32px;
    }

    .theme-btn::after {
        width: 8px;
        height: 8px;
    }

    /* Mobile Responsive for Custom Quantity */
    .quantity-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .quantity-selector {
        width: 100%;
        max-width: 200px;
    }
}

/* Dummy Data Control - Empty Section Handling */
.product-info-details>h2:empty,
.product-info-details>.benefits-grid:empty {
    display: none;
}

/* Adjust spacing when sections are hidden */
.product-info-details>*:last-child {
    margin-bottom: 0;
}

/* Empty tab content styling */
.tab-content:empty {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-style: italic;
}

.tab-content:empty::before {
    content: "No content available for this section.";
}

/* Custom Quantity Selector Styles */
.quantity-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.quantity-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-neutral);
    border-radius: 12px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-display {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-secondary);
}

/* Hide WooCommerce default quantity selector */
.woocommerce-cart-form-wrapper .quantity,
.woocommerce .quantity {
    display: none !important;
}

.woocommerce-cart-form-wrapper input.qty,
.woocommerce input.qty {
    display: none !important;
}

/* You May Also Like Section */
.you-may-also-like-section {
    margin-top: 80px;
    padding: 60px 20px;
    background: var(--bg-secondary);
    border-radius: 20px;
}

.you-may-also-like-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.you-may-also-like-section .section-title {
    font-size: 42px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.1;
}

.you-may-also-like-section .section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.related-product-item {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.related-product-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary-hover);
}

.related-product-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--bg-tertiary);
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-item:hover .related-product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-product-item:hover .product-overlay {
    opacity: 1;
}

.view-product {
    color: var(--primary-color-darkestest);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    background: var(--gradient-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.view-product:hover {
    transform: scale(1.05);
}

.related-product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    border-top: 1px solid var(--primary-color-dark);
}

.related-product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    line-height: 1.3;
    min-height: 58px;
}

.related-product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.related-product-price del {
    font-size: 16px;
    color: var(--text-muted);
    margin-right: 8px;
}

.sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Premium Quality Badge - In text area, always visible */
.premium-quality-badge {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    color: #2c1810 !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -18px;
    left: 13px;
}

/* Product Category Styling */
.product-category {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
    text-decoration: underline;
}

.related-product-actions {
    padding: 0 20px 20px;
}

.related-product-actions .button,
.related-product-actions .black-button {
    width: 100%;
    padding: 12px 20px;
    background: #000000 !important;
    color: #ffffff !important;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-align: center;
    display: block;
    text-decoration: none;
    opacity: 1;
}

.related-product-actions .button:hover,
.related-product-actions .black-button:hover {
    background: #000000 !important;
    color: #ffffff !important;
    opacity: 0.85;
}

.related-product-actions .button:active,
.related-product-actions .black-button:active {
    opacity: 0.7;
}

/* Mobile Responsive for You May Also Like */
@media (max-width: 768px) {
    .you-may-also-like-section {
        margin-top: 50px;
        padding: 40px 15px;
    }

    .you-may-also-like-section .section-title {
        font-size: 32px;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-product-title {
        font-size: 16px;
    }

    .related-product-price {
        font-size: 18px;
    }

    .premium-quality-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .product-category {
        font-size: 11px;
        margin-bottom: 6px;
    }
}

/**/
.related-product-actions .black-button,
.related-product-actions .black-button:hover {
    box-shadow: none;
}

#masthead {
    padding: 0 !important;
}

/* ========================================
   CUSTOM PRICE DISPLAY TEMPLATE
   Using Theme Color Variables Only
   ======================================== */

/* Custom Price Section Container */
.custom-price-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

/* Sale Price - Main Display */
.custom-sale-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color-dark);
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}

.custom-sale-price .price-amount {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.custom-sale-price .price-currency {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

/* Regular Price (Strikethrough when on sale) */
.custom-regular-price {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: line-through;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
    opacity: 0.7;
}

.custom-regular-price .price-amount {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: inherit;
}

.custom-regular-price .price-currency {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: inherit;
}

/* Regular Price Only (when not on sale) */
.custom-regular-price-only {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color-dark);
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}

.custom-regular-price-only .price-amount {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.custom-regular-price-only .price-currency {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

/* Discount Badge */
.custom-discount-badge {
    background: var(--gradient-primary);
    color: var(--primary-color-darkestest);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
    box-shadow: var(--shadow-button);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .custom-price-section {
        gap: 10px;
    }

    .custom-sale-price,
    .custom-regular-price-only {
        font-size: 28px;
    }

    .custom-regular-price {
        font-size: 18px;
    }

    .custom-discount-badge {
        padding: 5px 12px;
        font-size: 10px;
    }
}

/*product variable*/