:root {
    --primary: #ff5722;
    --primary-dark: #e64a19;
    --primary-glow: rgba(255, 87, 34, 0.2);
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-grey: #666666;
    --border-light: #eeeeee;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    padding-bottom: 120px;
    /* Space for sticky footer */
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 60px 0;
    /* Tightened PC layout */
}

/* Scroll Animation System */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Staggered Grid Animations */
.reveal.active>* {
    animation: fadeUpIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.reveal.active>*:nth-child(1) {
    animation-delay: 0.1s;
}

.reveal.active>*:nth-child(2) {
    animation-delay: 0.2s;
}

.reveal.active>*:nth-child(3) {
    animation-delay: 0.3s;
}

.reveal.active>*:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Sticky Footer Pulse */
.wa-btn {
    animation: gentlePulse 2s infinite ease-in-out;
}

@keyframes gentlePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
}

/* Hover Micro-animations */
.product-card,
.model-card,
.highlight-box {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.product-card:hover,
.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.highlight-box:hover {
    transform: scale(1.01);
}

.btn-primary:active {
    transform: scale(0.95) translateY(0);
}

/* Form Styles */
input,
textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px var(--primary-glow);
    text-align: center;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--primary-glow);
}

/* Navigation */
.mobile-nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
    /* Extremely high to stay above everything */
    background: #ffffff !important;
    border-bottom: 2px solid var(--border-light);
    padding: 0.8rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-login-btn {
    background: var(--primary) !important;
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 50px !important;
    box-shadow: 0 5px 15px var(--primary-glow) !important;
    text-transform: uppercase;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
}

.nav-login-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow) !important;
}

.nav-login-btn::after {
    display: none !important;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Product & Model Cards */
.model-card {
    flex: 1;
    min-width: 310px;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.model-image-box {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.model-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.model-card:hover .model-image-box img {
    transform: scale(1.08);
}

.model-tag-top {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    z-index: 2;
}

.model-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.model-card-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.model-badge {
    display: inline-block;
    padding: 5px 12px;
    background: #fff0eb;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.model-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    font-weight: 800;
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.model-price {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 2rem;
}

.model-specs {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 18px;
    margin-bottom: 2.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: #666;
    font-weight: 700;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-item .val {
    font-weight: 800;
    color: var(--text-dark);
}

.quote-btn {
    width: 100%;
    padding: 1.2rem;
    border-radius: 50px;
    font-weight: 800;
    margin-top: auto;
}

/* ==========================================================================
   AMAZON STYLE PRODUCT GRID (MOBILE OPTIMIZED)
   ========================================================================== */
/* --- ENHANCED AMZ GRID SYSTEM (HARDENED FOR PRO LOOK) --- */
.amazon-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* 3 Columns on PC */
    gap: 25px !important;
    margin: 4rem 0 !important;
    width: 100% !important;
    text-align: left !important; /* Forces left alignment even if parent is centered */
}

@media (max-width: 1024px) {
    .amazon-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 Columns on Tablet */
    }
}

@media (max-width: 630px) {
    .amazon-grid {
        grid-template-columns: 1fr !important; /* 1 Column on small mobile if needed */
        gap: 20px !important;
    }
}

.amazon-card {
    background: #ffffff !important;
    border: 1px solid #e2e2e2 !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100% !important;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    text-align: left !important;
}

.amazon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    border-color: #ff5722 !important;
}

.amazon-card-img {
    height: 240px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    border-bottom: 1px solid #f0f0f0;
}

.amazon-card-img img {
    max-width: 95% !important;
    max-height: 95% !important;
    object-fit: contain !important;
    transition: transform 0.4s ease;
}

.amazon-info {
    padding: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1;
}

.amazon-title {
    font-size: 1rem !important;
    line-height: 1.4;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.amazon-btn {
    background: #ff5722 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important; /* Perfect 8px match for your screenshot */
    padding: 12px 15px !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    text-align: center !important;
    width: 100% !important;
    margin-top: auto !important;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.2);
}

.amazon-btn:hover {
    background: #e64a19 !important;
    transform: translateY(-1px);
}

.amazon-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.amazon-stars {
    color: #ffa41c;
    font-size: 0.8rem;
}

.amazon-rating-count {
    font-size: 0.75rem;
    color: #007185;
}

.amazon-bought {
    font-size: 0.75rem;
    color: #565959;
    margin-bottom: 8px;
}

.amazon-price-row {
    margin-bottom: 4px;
}

.amazon-currency {
    font-size: 0.75rem;
    vertical-align: top;
    margin-top: 4px;
    display: inline-block;
}

.amazon-price-main {
    font-size: 1.4rem;
    font-weight: 500;
}

.amazon-price-decimal {
    font-size: 0.75rem;
    vertical-align: top;
    margin-top: 4px;
    display: inline-block;
}

.amazon-mrp {
    font-size: 0.75rem;
    color: #565959;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.amazon-delivery {
    font-size: 0.75rem;
    color: #111;
    margin-bottom: 12px;
}

.amazon-delivery-date {
    font-weight: 700;
}

.amazon-btn {
    background: #ff5722;
    border-color: #e64a19;
    color: #ffffff;
    border-radius: 20px;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
    box-shadow: 0 2px 5px rgba(255, 87, 34, 0.2);
    margin-top: auto;
    border: 1px solid;
    cursor: pointer;
    transition: all 0.2s;
}

.amazon-btn:hover {
    background: #e64a19;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

@media (max-width: 968px) {
    .amazon-grid {
        grid-template-columns: 1fr 1fr;
        padding: 10px;
        gap: 12px;
    }

    .amazon-card-img {
        height: 190px;
        padding: 5px;
    }

    .amazon-title {
        font-size: 0.75rem;
    }

    .amazon-price-main {
        font-size: 1.2rem;
    }
}

.hero-features-box {
    background: var(--bg-light);
    border-left: 6px solid var(--primary);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-top: 1.5rem;
}

.hero-features-box ul {
    list-style: none;
    padding: 0;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.hero-features-box ul li {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-align: left;
}

/* Modal */
.detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff !important;
    z-index: 20000 !important;
    /* Above EVERYTHING */
    overflow-y: auto;
    padding: 2.5rem;
}

.modal-content-grid {
    max-width: 1200px;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

#mainModalImage {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #fdfdfd;
    border-radius: 20px;
}

@media (max-width: 968px) {
    .detail-modal {
        padding: 1rem !important;
    }

    .modal-content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-top: 5rem !important;
        margin-bottom: 5rem !important;
    }

    #mainModalImage {
        height: 300px !important;
    }

    .modal-details h1 {
        font-size: 1.8rem !important;
    }

    .modal-details h2 {
        font-size: 2rem !important;
    }

    .modal-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        z-index: 20001 !important;
        /* Solidly on top */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.modal-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.modal-thumbnails img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
}

.modal-thumbnails img.active {
    border-color: var(--primary);
}

.modal-reviews-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light);
}

.review-item {
    margin-bottom: 2.5rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
}

.review-author {
    font-weight: 700;
    font-size: 0.95rem;
}

.review-rating {
    color: #ffa41c;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.review-title {
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.verified-badge {
    color: #c45500;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
/* ==========================================================================
   PERMANENT RESPONSIVE SYSTEM (PC & MOBILE)
   ========================================================================== */

/* 1. PC (Desktop) Defaults (969px and above) */
.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.hero-flex {
    display: flex !important;
    gap: 6rem !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    padding-top: 150px !important;
    /* Huge padding to clear navbar */
    text-align: left !important;
}

.hero-subheading {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
}

.hero-content {
    flex: 1.3 !important;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    flex-wrap: wrap;
    text-align: center;
    padding: 0 1rem;
}

.hero-image-container {
    flex: 1 !important;
}

.hero-btns-container {
    display: flex !important;
    gap: 1.5rem !important;
    flex-direction: row !important;
    margin-bottom: 3rem !important;
    padding: 0 !important;
}

.hero-btns-container .btn-primary,
.hero-btns-container .btn-call {
    width: auto !important;
    min-width: 200px;
}

/* 2. Mobile (Tablet) Overrides (968px and below) */
@media (max-width: 968px) {
    .container {
        padding: 0 1.5rem !important;
        max-width: 100% !important;
    }

    .hero-flex {
        flex-direction: column !important;
        text-align: center !important;
        padding-top: 100px !important;
        gap: 2rem !important;
    }

    .hero-content {
        width: 100% !important;
    }

    .hero-image-container {
        width: 100% !important;
        min-height: 250px !important;
    }

    .hero-btns-container {
        flex-direction: column !important;
        width: 100% !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .hero-btns-container .btn-primary,
    .hero-btns-container .btn-call {
        width: 100% !important;
        padding: 1.1rem !important;
        font-size: 1rem !important;
        justify-content: center !important;
    }

    .hero-features-box {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 1.2rem !important;
        border-left: 6px solid var(--primary);
    }

    .hero-features-box ul {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.8rem !important;
        margin: 0 !important;
        max-width: 100% !important;
        background: transparent !important;
    }

    .hero-features-box ul li {
        font-size: 0.72rem !important;
        text-align: center !important;
    }

    .models-row-desktop {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .model-card {
        min-width: 100% !important;
    }

    .model-card-content {
        padding: 1.5rem !important;
    }

    .model-title {
        font-size: 1.35rem !important;
        min-height: auto !important;
        margin-bottom: 0.5rem !important;
    }

    .model-price {
        font-size: 1.7rem !important;
        margin-bottom: 1rem !important;
    }

    .model-specs {
        padding: 0.8rem 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .spec-item {
        font-size: 0.78rem !important;
        margin-bottom: 0.4rem !important;
    }

    h1 {
        font-size: 2.2rem !important;
        margin-top: 1rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    section {
        padding: 40px 0 !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1000;
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex !important;
    }

    /* Sticky footer mobile handled below the main system */
}

/* 3. Global Helpers */
.social-icon {
    width: 25px;
    height: 25px;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-weight: 800;
}

.data-grid {
    display: grid !important;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
}

footer {
    padding: 80px 0;
}

.hero-subheading {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.sold-out-badge {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #ff0000;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-card {
    position: relative;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.product-card.active {
    border-color: var(--primary);
    background: #fffafa;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.product-card.sold-out {
    opacity: 0.7;
    pointer-events: none;
    border-color: #eee;
    background: #fafafa;
}

/* ==========================================================================
   PERFECTED STICKY FOOTER (GLOBAL)
   ========================================================================== */
.sticky-footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: white !important;
    border-top: 2px solid var(--primary) !important;
    padding: 0.8rem 1.5rem !important;
    /* Slightly more height */
    z-index: 9999 !important;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.12) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.sf-main-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

.sf-bottom-row {
    width: 100% !important;
    text-align: center !important;
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    color: #888 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.wa-btn {
    background: #25d366 !important;
    color: white !important;
    text-decoration: none !important;
    padding: 0.7rem 1.4rem !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3) !important;
    white-space: nowrap !important;
}

.wa-btn:hover {
    background: #1eb954 !important;
    transform: translateY(-2px) !important;
}

.sticky-footer-text {
    font-weight: 840 !important;
    font-size: 0.95rem !important;
    color: #222 !important;
    margin: 0 !important;
}

/* Mobile Tweak for Sticky Footer */
@media (max-width: 768px) {
    .sticky-footer {
        padding: 0.8rem 1rem !important;
    }

    .sticky-footer-text {
        font-size: 0.72rem !important;
        line-height: 1.3 !important;
    }

    .sf-label {
        display: block !important;
    }

    .sf-number {
        display: block !important;
        font-size: 0.85rem !important;
        color: var(--primary) !important;
    }

    .wa-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.72rem !important;
    }

    .sf-bottom-row {
        font-size: 0.58rem !important;
    }
}

/* Size Variant Selector */
.variant-selector {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.variant-pill {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-grey);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.variant-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-glow);
}


.variant-pill.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 8px 20px var(--primary-glow);
    transform: translateY(-2px);
}

.variant-pill-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}


.variant-pill .pill-icon {
    font-size: 1.1rem;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 1.5rem;
}

.old-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}