 /* Serve-Over Counters Specific Styles */
        :root {
            --accent-gold: #f39c12;
            --light-gold: #fef9e7;
            --dark-gold: #d68910;
            --hospitality-red: #e74c3c;
            --light-red: #fdedec;
        }

        .product-hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg,
                    rgba(248, 250, 252, 0.95) 0%,
                    rgba(244, 247, 252, 0.98) 100%),
                url('https://images.unsplash.com/photo-1578474846511-04ba529f0b88?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 140px 20px 60px;
            overflow: hidden;
        }

        .product-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%,
                    rgba(255, 255, 255, 0.8) 0%,
                    rgba(255, 255, 255, 0.4) 50%,
                    transparent 100%);
            z-index: 1;
        }

        .product-hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .product-breadcrumb {
            margin-bottom: 2rem;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--secondary-grey);
        }

        .breadcrumb-item a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-item a:hover {
            color: var(--primary-blue);
        }

        .breadcrumb-item.active {
            color: var(--deep-navy);
            font-weight: 600;
        }

        .breadcrumb-item i {
            font-size: 0.8rem;
        }

        .product-main-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 32px;
            padding: 3rem;
            box-shadow: 0 25px 60px rgba(243, 156, 18, 0.1);
            border: 1px solid rgba(243, 156, 18, 0.1);
        }

        .product-image-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(243, 156, 18, 0.15);
        }

        .product-main-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-main-image:hover {
            transform: scale(1.02);
        }

        .product-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, var(--accent-gold), var(--dark-gold));
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
        }

        .product-badge.hospitality {
            background: linear-gradient(135deg, var(--hospitality-red), #c0392b);
            left: auto;
            right: 20px;
        }

        .product-info {
            padding: 1rem;
        }

        .product-title {
            font-size: 3.2rem;
            font-weight: 900;
            color: var(--deep-navy);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .product-subtitle {
            font-size: 1.2rem;
            color: var(--secondary-grey);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .product-tagline {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin: 2rem 0;
            font-style: italic;
            position: relative;
            padding-left: 2rem;
        }

        .product-tagline::before {
            content: '»';
            position: absolute;
            left: 0;
            color: var(--accent-gold);
            font-size: 1.8rem;
        }

        .product-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 2.5rem 0;
        }

        .highlight-card {
            background: var(--light-gold);
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid rgba(243, 156, 18, 0.2);
            transition: transform 0.3s ease;
        }

        .highlight-card:hover {
            transform: translateY(-5px);
        }

        .highlight-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-gold), var(--dark-gold));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .highlight-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--deep-navy);
            margin-bottom: 0.5rem;
        }

        .highlight-desc {
            font-size: 0.9rem;
            color: var(--secondary-grey);
            line-height: 1.5;
        }

        .product-specs {
            background: rgba(254, 249, 231, 0.5);
            border-radius: 20px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid rgba(243, 156, 18, 0.15);
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .spec-item {
            padding: 1.2rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(243, 156, 18, 0.05);
            border: 1px solid rgba(243, 156, 18, 0.1);
        }

        .spec-label {
            font-size: 0.9rem;
            color: var(--secondary-grey);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .spec-value {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--deep-navy);
        }

        .spec-unit {
            font-size: 0.9rem;
            color: var(--accent-gold);
            margin-left: 0.3rem;
        }

        .product-actions {
            display: flex;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .btn-product-primary {
            background: linear-gradient(135deg, var(--accent-gold), var(--dark-gold));
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
            text-decoration: none;
        }

        .btn-product-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(243, 156, 18, 0.4);
        }

        .btn-product-secondary {
            background: white;
            color: var(--accent-gold);
            border: 2px solid var(--accent-gold);
            padding: 1rem 2.5rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
        }

        .btn-product-secondary:hover {
            background: var(--accent-gold);
            color: white;
            transform: translateY(-3px);
        }

        /* Hospitality Applications Section */
        .applications-section {
            padding: 6rem 20px;
            background: #f8fafc;
        }

        .applications-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .applications-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .applications-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--deep-navy);
            margin-bottom: 1rem;
        }

        .applications-subtitle {
            font-size: 1.1rem;
            color: var(--secondary-grey);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .applications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .application-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(231, 76, 60, 0.1);
            transition: transform 0.3s ease;
            border: 1px solid rgba(231, 76, 60, 0.1);
        }

        .application-card:hover {
            transform: translateY(-10px);
        }

        .application-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .application-content {
            padding: 2rem;
        }

        .application-category {
            display: inline-block;
            background: var(--hospitality-red);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .application-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--deep-navy);
            margin-bottom: 1rem;
        }

        .application-features {
            margin: 1.5rem 0;
        }

        .application-feature {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            color: var(--secondary-grey);
        }

        .application-feature i {
            color: var(--hospitality-red);
            font-size: 0.9rem;
        }

        /* Configuration Options */
        .configuration-section {
            padding: 6rem 20px;
            background: white;
        }

        .configuration-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .configuration-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .config-option {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(243, 156, 18, 0.1);
            transition: transform 0.3s ease;
        }

        .config-option:hover {
            transform: translateY(-5px);
        }

        .config-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-gold), var(--dark-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin: 0 auto 1.5rem;
        }

        .config-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--deep-navy);
            margin-bottom: 1rem;
        }

        .config-desc {
            font-size: 0.95rem;
            color: var(--secondary-grey);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .config-price {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin: 1rem 0;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 6rem 20px;
            background: #f8fafc;
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
        }

        .gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            padding: 1.5rem;
            color: white;
        }

        .gallery-caption {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
        }

        /* Technical Specifications */
        .tech-specs-section {
            padding: 6rem 20px;
            background: white;
        }

        .tech-specs-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .specs-content {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        .specs-table {
            width: 100%;
            border-collapse: collapse;
        }

        .specs-table th {
            background: linear-gradient(135deg, var(--accent-gold), var(--dark-gold));
            color: white;
            padding: 1.5rem;
            text-align: left;
            font-weight: 700;
        }

        .specs-table tr:nth-child(even) {
            background: #f8fafc;
        }

        .specs-table td {
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid #e5e7eb;
        }

        .specs-table tr:last-child td {
            border-bottom: none;
        }

        .spec-category {
            font-weight: 700;
            color: var(--deep-navy);
            background: var(--light-gold) !important;
        }

        /* CTA Section */
        .product-cta-section {
            padding: 6rem 20px;
            background: linear-gradient(135deg, var(--accent-gold), var(--dark-gold));
        }

        .product-cta-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .product-cta-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 4rem 3rem;
        }

        .product-cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }

        .product-cta-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            line-height: 1.6;
        }

        .btn-cta-gold {
            background: white;
            color: var(--accent-gold);
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
            text-decoration: none;
        }

        .btn-cta-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .product-main-container {
                gap: 3rem;
            }
        }

        @media (max-width: 992px) {
            .product-main-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 2.5rem;
            }

            .product-title {
                font-size: 2.8rem;
            }

            .product-highlights {
                grid-template-columns: 1fr;
            }

            .specs-grid {
                grid-template-columns: 1fr;
            }

            .product-actions {
                flex-direction: column;
            }

            .btn-product-primary,
            .btn-product-secondary {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .product-hero-section {
                padding: 120px 15px 40px;
                min-height: auto;
            }

            .product-main-container {
                padding: 2rem;
            }

            .product-title {
                font-size: 2.2rem;
            }

            .product-subtitle {
                font-size: 1.1rem;
            }

            .applications-grid,
            .configuration-options,
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .applications-title,
            .product-cta-title {
                font-size: 2rem;
            }

            .product-cta-content {
                padding: 3rem 2rem;
            }
        }

        @media (max-width: 576px) {
            .product-main-container {
                padding: 1.5rem;
            }

            .product-title {
                font-size: 1.8rem;
            }

            .product-tagline {
                font-size: 1.2rem;
                padding-left: 1.5rem;
            }

            .product-actions {
                gap: 1rem;
            }

            .highlight-card,
            .config-option {
                padding: 1.2rem;
            }
        }

        /* ================= VARIANTS 1 SECTION ================= */
.variants1-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    position: relative;
    overflow: hidden;
}

.variants1-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0b3c5d;
    margin-bottom: 0.5rem;
}

.section-subtitle3 {
    font-size: 1rem;
    color: #556677;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* ================= VARIANTS GRID ================= */
.variants-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* ================= VARIANT CARD ================= */
.variant-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(11, 60, 93, 0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.variant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(11, 60, 93, 0.15);
}

/* ================= VARIANT HEADER ================= */
.variant-header {
    position: relative;
    overflow: hidden;
}

.variant-header img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.variant-card:hover .variant-header img {
    transform: scale(1.05);
}

/* Badge */
.variant-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #3bafda;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ================= VARIANT BODY ================= */
.variant-body {
    padding: 1.5rem;
}

.variant-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0b3c5d;
    margin-bottom: 0.5rem;
}

.variant-desc {
    font-size: 0.9rem;
    color: #556677;
    line-height: 1.6;
}

/* ================= VARIANT FOOTER ================= */
.variant-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid #3bafda;
    color: #3bafda;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #3bafda;
    color: #fff;
    transform: translateY(-2px);
}

/* ================= FADE-IN ANIMATION ================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= MEDIA QUERIES ================= */
@media (min-width: 600px) {
    .variants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .section-title3 {
        font-size: 2rem;
    }

    .section-subtitle3 {
        font-size: 1.05rem;
    }
}

@media (min-width: 992px) {
    .variants-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title3 {
        font-size: 2.3rem;
    }

    .variant-title {
        font-size: 1.3rem;
    }

    .variant-desc {
        font-size: 0.95rem;
    }
}

@media (min-width: 1200px) {
    .variants-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

