:root {
    /* Colors - Premium HSL palette */
    --p-h: 24;
    --primary: hsl(var(--p-h), 100%, 51%);
    --secondary: hsl(var(--p-h), 100%, 45%);
    --accent: #50AD55;
    --dark: #0f172a;
    --dark-gray: #334155;
    --medium-gray: #64748b;
    --light-gray: #f1f5f9;
    --border-color: #e2e8f0;
    --white: #FFFFFF;
    --success: #10b981;
    --soft-orange: hsla(var(--p-h), 100%, 51%, 0.1);
    --glass: rgba(255, 255, 255, 0.7);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* Typography */
    --font-family: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-size-base: 14px;
    --font-size-sm: 13px;
    --line-height-base: 1.6;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 64px;

    /* Layout */
    --header-height: 70px;
    --container-width: 1200px;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: var(--line-height-base);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center {
    text-align: center;
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

/* --- CLASSIC HEADER STYLES --- */
.top-bar {
    background: #f4f4f4;
    color: #666;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 20px;
}

.top-bar a:hover {
    color: var(--primary);
}

.header-main-classic {
    padding: 30px 0;
    background: var(--white);
}

.header-main-classic .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.search-classic {
    flex-grow: 1;
    max-width: 600px;
    display: flex;
}

.search-classic input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--primary);
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-family: var(--font-body);
}

.search-classic button {
    background: var(--primary);
    color: var(--white);
    padding: 0 25px;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.icon-btn {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.3s;
}

.icon-btn:hover {
    background: var(--light-gray);
    color: var(--primary);
}

/* Sticky Navigation */
.nav-bar-classic {
    background: var(--primary);
    color: var(--white);
    position: sticky;
    /* STICKY BEHAVIOR */
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-bar-classic ul {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-bar-classic a {
    display: block;
    padding: 15px 25px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.nav-bar-classic a:hover {
    background: rgba(0, 0, 0, 0.1);
}

.dept-menu {
    background: var(--dark-gray);
    position: relative;
    cursor: pointer;
}

.dept-menu>a {
    background: var(--dark-gray);
}

/* --- MODERN MEGA MENU --- */
.nav-bar-classic .has-mega {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    /* Glass effect */
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 900;
    padding: 30px 0;
}

.nav-bar-classic li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 350px;
    /* 3 Cols: Services, Corporate, Promo */
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    gap: 40px;
}

.mega-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    gap: 40px;
}

@media(max-width: 992px) {
    .mega-grid-4col {
        grid-template-columns: 1fr;
    }
}

.mega-list.compact {
    gap: 5px;
}

.mega-list.compact a {
    padding: 5px 10px;
    font-size: 13px;
    color: #555;
    border-bottom: 1px dashed #eee;
}

.mega-list.compact a:hover {
    color: var(--primary);
    background: transparent;
    padding-left: 15px;
}

.mega-col h4 {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mega-list a {
    padding: 10px;
    color: var(--dark-gray);
    font-weight: 500;
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 8px;
    transition: background 0.2s;
}

.mega-list a:hover {
    background: var(--light-gray);
    color: var(--dark);
}

.menu-icon-box {
    width: 36px;
    height: 36px;
    background: var(--soft-orange);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform 0.2s;
}

.mega-list a:hover .menu-icon-box {
    transform: scale(1.1);
    background: var(--primary);
    color: var(--white);
}

.mega-list strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.mega-list span {
    display: block;
    font-size: 12px;
    color: var(--medium-gray);
    font-weight: 400;
    text-transform: none;
}

/* Mega Promo Card */
.mega-promo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 250px;
    background: #000;
    color: #fff;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mega-promo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.5s;
}

.mega-promo:hover img {
    transform: scale(1.05);
}

.promo-content {
    position: relative;
    z-index: 10;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    width: 100%;
}

.badge-new {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 10px;
}

.promo-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
}

.promo-content p {
    font-size: 13px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.4;
    color: #eee;
}

.btn-promo {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-promo:hover {
    color: #fff;
    text-decoration: underline;
}

/* Product Page & Grid Responsiveness */
.product-page {
    padding-bottom: var(--spacing-xxl);
    padding-top: 40px;
    animation: fadeIn 0.5s ease-out;
}

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

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

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    align-items: start;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Breadcrumb */
.breadcrumb {
    padding: var(--spacing-md) 0;
    font-size: var(--font-size-sm);
    color: var(--medium-gray);
    background: #fff;
    border-bottom: 1px solid #eee;
}

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

.breadcrumb span {
    color: var(--dark);
    font-weight: 500;
}

/* Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.main-image-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #fff;
}

.thumbnails-track {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding-bottom: 4px;
}

.thumb-btn {
    width: 80px;
    height: 80px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.7;
    transition: all 0.2s;
}

.thumb-btn.active,
.thumb-btn:hover {
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

/* Product Info */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.product-ref {
    font-size: var(--font-size-sm);
    color: var(--medium-gray);
    letter-spacing: 1px;
}

.badge.new {
    background-color: var(--success);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.product-tags {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.tag {
    background: var(--light-gray);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-gray);
}

.product-description {
    color: var(--medium-gray);
    margin-bottom: var(--spacing-lg);
}

.product-description p {
    margin-bottom: var(--spacing-sm);
}

/* Features */
.product-features {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--light-gray);
    border-radius: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.feature-item img {
    width: 24px;
    height: 24px;
}

/* Actions */
.product-actions {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.color-selection {
    margin-bottom: var(--spacing-lg);
}

.color-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.color-option input {
    display: none;
}

.swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: block;
    position: relative;
}

.color-option input:checked+.swatch {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--primary);
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: auto; /* Push button down */
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px; /* Approx 2 lines */
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    padding: 15px;
    background: #fff;
}

.product-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.product-info-row .price {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
}

.product-info-row .ref {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.product-card-img {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.product-tag-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: #fff;
    padding: 2px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.product-price-breakdown {
    margin-bottom: 25px;
}

.qty-selector {
    margin-bottom: 25px;
}

.qty-selector label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    overflow: hidden;
}

.qty-btn {
    background: var(--light-gray);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.qty-controls input {
    width: 70px;
    height: 45px;
    text-align: center;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    background: #fff;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-controls input::-webkit-outer-spin-button,
.qty-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

.price-summary {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px dashed var(--border-color);
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.price-row.setup {
    color: var(--secondary);
    font-style: italic;
}

.price-row.total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    color: var(--dark);
    font-weight: 800;
    font-size: 1.1rem;
}

.price-tag-final {
    margin-top: 15px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-align: right;
}

.price-tag-final small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--medium-gray);
}

.cta-group {
    display: flex;
    gap: var(--spacing-md);
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    /* More modern rounded look */
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px -5px hsl(var(--p-h), 100%, 51%, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -10px hsl(var(--p-h), 100%, 51%, 0.6);
    filter: brightness(1.1);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 18px;
}

/* Accordion */
.tech-specs summary {
    padding: var(--spacing-md) 0;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 18px;
}

.tech-specs summary::-webkit-details-marker {
    display: none;
}

.tech-specs summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
}

.tech-specs details[open] summary::after {
    content: '-';
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    background: var(--white);
}

.spec-item dt {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--medium-gray);
    margin-bottom: 4px;
}

.spec-item dd {
    font-weight: 500;
    color: var(--dark);
}

/* --- HOME PAGE SECTIONS --- */
.section-title {
    font-size: 2rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
}

/* Slider & Grids (as defined previously) */
.slider-container {
    position: relative;
    padding: 20px 50px;
    /* Space for buttons inside */
    margin: 0 -50px;
    /* Offset to keep cards aligned with container on scroll */
    overflow: hidden;
}

@media (max-width: 600px) {
    .slider-container {
        padding: 20px 5px;
        margin: 0;
    }
}

.slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    width: 100%;
    /* Ensure nothing bursts out of the track */
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-item {
    min-width: 280px;
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slider-item:hover {
    transform: translateY(-5px);
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    z-index: 10;
    cursor: pointer;
}

.slider-prev {
    left: -20px;
}

.slider-next {
    right: -20px;
}

@media (max-width: 1200px) {
    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }
}

@media (max-width: 600px) {
    .slider-nav-btn {
        display: none;
        /* Hide buttons on mobile to avoid clutter */
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-main {
        height: 300px;
    }
}

.feature-main {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.feature-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
}

.feature-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.premium-section {
    background: #222;
    padding: 80px 0;
    color: var(--white);
    margin-top: 40px;
}

.premium-section .section-title {
    color: var(--white);
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    background: transparent;
    border: none;
}

.premium-card {
    background: #fff;
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.premium-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.premium-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 30px 20px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    text-align: center;
    opacity: 0.8;
}

.premium-card:hover .premium-overlay {
    opacity: 1;
    background: linear-gradient(to top, hsla(var(--p-h), 100%, 51%, 0.95) 0%, hsla(var(--p-h), 100%, 51%, 0.6) 100%);
}

.premium-overlay h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.premium-overlay .price {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
}

/* Differentiated Offers Layout (Flash Sale Style) */
.offers-luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card:nth-child(even) {
    transform: translateY(20px);
}

.benefit-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--dark);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.benefit-image {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 20px;
}

.benefit-info h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.benefit-price-box {
    background: var(--light-gray);
    width: 100%;
    padding: 10px;
    border-radius: 12px;
}

.benefit-price-box .old-price {
    font-size: 0.75rem;
    text-decoration: line-through;
    color: var(--medium-gray);
}

.benefit-price-box .current-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

/* Footer & Global */
/* --- PREMIUM 'ANIMAL' FOOTER --- */
.site-footer {
    background: #0f0f0f;
    color: #888;
    padding-top: 80px;
    padding-bottom: 30px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

/* Subtle Glow Effect */
.site-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(254, 105, 7, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    /* Asymmetrical Layout */
    gap: 60px; /* Increased gap */
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
    border-bottom: 1px solid #222;
}

/* Brand Column */
.footer-brand h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-5px) scale(1.1);
    color: #fff;
}

/* Links Columns */
.footer-col h5 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 15px;
}

.footer-col a {
    color: #888;
    transition: all 0.3s;
    position: relative;
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Newsletter Column */
.newsletter-box {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
}

.newsletter-box h5 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}

.newsletter-box p {
    font-size: 12px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    background: #0f0f0f;
    border: 1px solid #333;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-btn:hover {
    background: var(--secondary);
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 12px;
    color: #555;
    position: relative;
    z-index: 2;
}

.footer-bottom a {
    margin-left: 20px;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* Mobile Menu Toggle (Hidden by default) */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 992px) {

    /* Header & Nav - FIXED MOBILE HEADER */
    .nav-bar-classic {
        position: fixed;
        /* Fix the navbar on mobile */
        top: 0;
        left: 0;
        width: 100%;
        background: var(--primary);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 5px 0;
    }

    /* Push content down so it doesn't hide behind fixed nav */
    body {
        padding-top: 60px;
        /* Adjust based on header height */
    }

    /* Mobile Header Layout */
    .nav-bar-classic .container {
        display: block;
        /* Removing flex to behave like 'topnav' example */
        position: relative;
        height: 50px;
        /* Explicit height to contain absolute toggle */
        padding: 0 var(--spacing-md);
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        /* Right aligned */
        top: 50%;
        transform: translateY(-50%);
        /* Vertically centered */
        color: #000;
        /* Black Icon */
        z-index: 1001;
        /* Ensure on top */
    }

    /* --- Clean Mobile Menu Overlay --- */
    .nav-list {
        display: block;
        position: fixed;
        top: 60px;
        /* Below the fixed header */
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--white);
        /* Clean white background */
        box-shadow: none;
        padding: 0;
        overflow-y: auto;
        transform: translateX(-100%);
        /* Slide out */
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-list.active {
        transform: translateX(0);
        /* Slide in */
    }

    .nav-bar-classic ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-bar-classic li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-bar-classic a {
        padding: 20px 25px;
        width: 100%;
        color: var(--dark-gray);
        /* Dark text on white */
        font-weight: 600;
        font-size: 16px;
        display: flex;
        /* For alignment */
        justify-content: space-between;
        align-items: center;
        border: none;
    }

    .nav-bar-classic a:hover {
        background: #f9f9f9;
        color: var(--primary);
    }

    .dept-menu {
        display: block; /* Show categories on mobile */
        background: #f8fafc;
    }

    /* --- Mobile Dropdown (Accordion Mode) --- */
    .has-mega:hover .mega-menu {
        /* Disable hover behavior on mobile */
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    /* Active Dropdown State (Toggled by JS) */
    .has-mega.active-dropdown .mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        position: static;
        /* Relative to parent in flow */
        width: 100%;
        box-shadow: none;
        border-top: none;
        padding: 0;
        background: #f9f9f9;
        /* Slightly distinct bg */
        transform: none;
    }

    .has-mega.active-dropdown>a {
        color: var(--primary);
        background: #f0f0f0;
    }

    /* Chevron rotation */
    .has-mega.active-dropdown>a i {
        transform: rotate(180deg);
        transition: transform 0.3s;
    }

    /* Mega Menu Content on Mobile */
    .mega-menu {
        display: none;
        /* Hidden by default */
    }

    .mega-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
    }

    .mega-col {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .mega-col:last-child {
        border-bottom: none;
    }

    .mega-title {
        padding: 10px 25px;
        margin: 0;
        font-size: 14px;
        color: #999;
    }

    .mega-list {
        padding-bottom: 10px;
        gap: 0;
    }

    .mega-list a {
        padding: 10px 35px;
        /* Indented */
        font-size: 15px;
        font-weight: 500;
        border-bottom: none;
    }

    .mega-list a:hover {
        background: none;
        color: var(--primary);
    }

    .menu-icon-box {
        display: none;
        /* Hide icons on mobile for cleaner look */
    }

    .mega-list strong {
        font-size: 14px;
    }

    .mega-list span {
        display: none;
        /* Hide descriptions on mobile */
    }

    /* Hide Promo on Mobile */
    .mega-promo {
        display: none;
    }

    /* Header Adjustments */
    .header-main-classic {
        /* Hide the main big header as per "clean" request, 
          or keep it but scrolled. 
          User said "menu fixo", usually simpler navbar. 
          Let's keep main header but maybe push it down or hide parts if scrolling.
          For now, just stack.
        */
        padding-top: 10px;
    }

    /* Grids */
    .mega-grid {
        grid-template-columns: 1fr;
    }

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

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

    /* Premium Grid */
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Product Page */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto 20px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {

    /* Top Bar */
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Hero */
    .hero h1 {
        font-size: 1.8rem;
    }

    /* Grids */
    .slider-item {
        min-width: 200px;
    }

    /* Hide slider buttons on mobile (use swipe instead) */
    .slider-nav-btn {
        display: none;
    }

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

    .premium-grid {
        grid-template-columns: 1fr;
    }

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

    /* Product Gallery */
    .thumb-btn {
        width: 60px;
        height: 60px;
    }

    /* Footer */
    .footer-content {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: auto;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        background: transparent;
        border: none;
    }

    .newsletter-form input {
        background: #1e293b;
        border: 1px solid #334155;
        border-radius: 50px;
        padding: 15px 25px;
    }

    .newsletter-btn {
        position: static;
        width: 100%;
        padding: 15px;
        height: auto;
        border-radius: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom a {
        margin: 0 10px;
    }
}

/* Offers Table */
.offers-section {
    margin: 30px 0;
    padding: 24px;
    background: #f8fafc;
    border: 1px dashed #cbd5e0;
    border-radius: 16px;
}

.offers-table {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.offer-row {
    padding: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.offer-row:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.offer-qty {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--medium-gray);
    margin-bottom: 6px;
}

.offer-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.offer-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

/* Lead Capture Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 650px;
    max-height: 95vh;
    border-radius: 24px;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    background: #fff;
    padding: 20px 25px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--dark-gray);
    font-weight: 700;
}

.close-modal {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-modal:hover {
    background: #fee2e2;
    color: #ef4444;
}

.modal-body {
    padding: 25px;
}

.modal-intro {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.modal-product-summary {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #bbf7d0;
}

.modal-product-summary span {
    font-size: 0.85rem;
    color: #15803d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-product-summary strong {
    color: #166534;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #64748b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.modal-footer {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
}

.btn-submit-quote {
    background: #22c55e;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.btn-submit-quote:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

@media (max-width: 600px) {
    .modal-content {
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-body {
        padding: 20px 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modal-product-summary {
        flex-direction: column;
        gap: 8px;
    }
}

/* --- IMAGE ZOOM (LUPA) --- */
.main-image-container.zoom-container {
    cursor: zoom-in;
    position: relative;
    overflow: hidden;
}

.main-image-container.zoom-container img {
    transition: opacity 0.3s ease;
}

.main-image-container.zoom-active img {
    opacity: 0;
}

.main-image-container.zoom-active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--zoom-img);
    background-size: 200%;
    background-position: var(--zoom-x) var(--zoom-y);
    background-repeat: no-repeat;
    pointer-events: none;
    transition: background-position 0.1s ease-out;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(5deg);
    color: #fff;
    box-shadow: 2px 8px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    margin-top: 2px;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}