/* ========== GLOBAL STYLES ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.special-section{
    background:#be550e;
    padding:70px 20px;
}

.special-section h2{
    text-align:center;
    color:#f9eddd;
    font-size:42px;
    font-weight:700;
    margin-bottom:50px;
}

.special-grid{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

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

.special-item img{
    width:120px;
    height:120px;
    object-fit:contain;
    margin-bottom:15px;
}

.special-item p{
    color:#f9eddd;
    font-size:20px;
    font-weight:600;
    line-height:1.5;
}

@media(max-width:768px){

    .special-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .special-section h2{
        font-size:30px;
    }

    .special-item img{
        width:90px;
        height:90px;
    }

    .special-item p{
        font-size:16px;
    }
}

@media(max-width:480px){

    .special-grid{
        grid-template-columns:1fr;
    }
}
.map-container {
  width: 100%;
  max-width: 100%;
  height: 450px;
  margin: auto;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
/* Mobile */
@media (max-width: 600px) {
  .map-container {
    height: 250px;
  }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 1024px) {
  .map-container {
    height: 350px;
  }
}

:root {
    --orange: #c45d13;
    --orange-light: #e07530;
    --orange-dark: #a34a0a;
    --cream: #fdf6ec;
    --cream-dark: #F5E8D6;
    --brown: #511d0e;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #888;
    --white: #FFFFFF;
    --border: #E8D5C0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
/* FIX: img max-width:100% is essential — prevents images from blowing out containers */
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-block;
    background: var(--brown);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid var(--brown);
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,71,26,0.35);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--orange);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid var(--orange);
}
.btn-outline:hover {
    background: var(--brown);
    border-color: var(--brown);
    color: var(--white);
    transform: translateY(-2px);
}

.full-width { width: 100%; text-align: center; display: block; }

/* ========== SECTION LAYOUTS ========== */
/* FIX: This is the ONLY base definition for section-container.
   The old responsive.css was overriding this globally (outside media queries)
   with width:100% and padding:0 16px, wiping out max-width on ALL screens.
   Responsive.css now only adjusts padding/max-width inside proper media queries. */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.section-title { font-size: clamp(28px, 4vw, 42px); color: var(--text-dark); }
.section-cta { text-align: center; margin-top: 40px; }

/* ========== OVERLAY ========== */
.overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 400;
    display: none;
    backdrop-filter: blur(4px);
}
.overlay.active { display: block; }

/* ========== PAGE HERO ========== */
/* FIX: margin-top was hardcoded 80px — correct for desktop navbar height.
   This is fine since the navbar is always 72px tall (fixed). Kept as-is. */
.page-hero {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    padding: 80px 24px 60px;
    text-align: center;
    color: white;
    margin-top: 72px;
}
.page-hero.small { padding: 60px 24px 40px; }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); }
.page-hero p { margin-top: 12px; opacity: 0.9; font-size: 16px; }

/* ========== AUTH PAGES ========== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    background: var(--cream);
}
.auth-card {
    background: white;
    border-radius: var(--radius);
    padding: 48px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg);
}
.auth-card.wide { max-width: 560px; }
.auth-header { text-align: center; margin-bottom: 32px; }
.auth-logo { font-size: 48px; margin-bottom: 16px; }
.auth-header h2 { font-size: 28px; margin-bottom: 8px; }
.auth-header p { color: var(--text-light); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 14px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px; transition: var(--transition);
    background: var(--cream);
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--orange);
    background: white;
    box-shadow: 0 0 0 4px rgba(232,71,26,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.password-input { position: relative; }
.password-input input { padding-right: 50px; }
.password-input button { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; }
.auth-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 14px; flex-wrap: wrap; gap: 8px; }
.forgot-link { color: var(--orange); }
.auth-divider { text-align: center; position: relative; margin: 20px 0; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.auth-divider span { background: white; padding: 0 16px; color: var(--text-light); font-size: 13px; position: relative; }
.btn-google { border: 2px solid var(--border); padding: 14px; border-radius: 50px; font-weight: 600; transition: var(--transition); }
.btn-google:hover { border-color: var(--orange); }
.auth-switch { text-align: center; margin-top: 20px; font-size: 14px; color: var(--text-light); }
.auth-switch a { color: var(--orange); font-weight: 600; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; margin-bottom: 16px; }

/* ========== ORDER SUCCESS ========== */
.success-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 24px; }
.success-card { background: white; border-radius: var(--radius); padding: 60px; text-align: center; max-width: 600px; width: 100%; box-shadow: var(--shadow-lg); }
.success-icon { font-size: 80px; margin-bottom: 24px; animation: bounce 1s ease; }
.success-card h1 { font-size: 32px; margin-bottom: 16px; color: var(--orange); }
.success-card p { color: var(--text-mid); margin-bottom: 32px; }
.order-details { background: var(--cream); border-radius: var(--radius-sm); padding: 24px; margin-bottom: 32px; text-align: left; }
.order-detail-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.order-detail-row:last-child { border: none; }
.success-steps { display: flex; align-items: center; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; gap: 8px; }
.step { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 13px; }
.step span { font-size: 28px; }
.step.active p { color: var(--orange); font-weight: 600; }
.step-line { flex: 1; height: 2px; background: var(--border); margin: 0 8px; min-width: 20px; }
.success-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== BACK LINK ========== */
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-weight: 500; margin-bottom: 32px; margin-top: 100px; }

/* ========== FORM GRID ========== */
/* FIX: added min-width:0 so grid children with long content don't overflow. */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; min-width: 0; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid.two-col { grid-template-columns: 1fr 1fr; }

/* ========== PREMIUM UI ENHANCEMENTS ========== */
/* Loading Screen */
#vs-loading-screen {
    position: fixed; inset: 0; z-index: 99999;
    background: #FFF8F3;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#vs-loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.vs-loader-logo { font-size: 56px; margin-bottom: 16px; animation: vs-loader-bounce 1s ease-in-out infinite; }
.vs-loader-text { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #E8471A; margin-bottom: 24px; }
.vs-loader-bar { width: 180px; height: 4px; background: #F5E8D6; border-radius: 4px; overflow: hidden; }
.vs-loader-fill { height: 100%; background: linear-gradient(90deg, #E8471A, #FF6B35); border-radius: 4px; animation: vs-loader-fill 1.2s ease forwards; }
@keyframes vs-loader-bounce { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.08); } }
@keyframes vs-loader-fill { from { width: 0; } to { width: 100%; } }

/* Floating WhatsApp Button */
.vs-whatsapp-btn {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    font-size: 28px; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    animation: vs-wa-pulse 2.5s ease-in-out infinite;
}
.vs-whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
.vs-whatsapp-btn .vs-wa-tooltip {
    position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
    background: #1A1A1A; color: #fff; font-size: 12px; font-weight: 600;
    padding: 6px 12px; border-radius: 8px; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.vs-whatsapp-btn:hover .vs-wa-tooltip { opacity: 1; }
@keyframes vs-wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* Premium Ripple Buttons */
.btn-primary, .btn-outline {
    position: relative; overflow: hidden;
}
.btn-primary::after, .btn-outline::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0; border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}
.btn-primary:active::after, .btn-outline:active::after {
    width: 200px; height: 200px; opacity: 1;
}

/* Trust Badges Section */
.vs-trust-section {
    background: white; padding: 36px 24px;
    border-bottom: 1px solid #F5E8D6;
    border-top: 1px solid #F5E8D6;
}
.vs-trust-grid {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 24px;
}
.vs-trust-item {
    display: flex; align-items: center; gap: 12px;
    flex: 1; min-width: 160px; max-width: 220px;
}
.vs-trust-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(232,71,26,0.1), rgba(255,107,53,0.15));
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
}
.vs-trust-label strong { display: block; font-size: 14px; font-weight: 700; color: #1A1A1A; }
.vs-trust-label span { font-size: 12px; color: #888; }

/* Smooth Page Transition */
body { animation: vs-page-fade 0.4s ease; }
@keyframes vs-page-fade { from { opacity: 0; } to { opacity: 1; } }

/* Enhanced Product Card Hover */
.product-card {
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.32s cubic-bezier(0.4,0,0.2,1),
                border-color 0.32s ease !important;
}
.product-card:hover {
    transform: translateY(-10px) scale(1.01) !important;
    box-shadow: 0 24px 60px rgba(232,71,26,0.15), 0 8px 24px rgba(0,0,0,0.1) !important;
    border-color: rgba(232,71,26,0.3) !important;
}

/* Premium card image overlay on hover */
.product-card-img { position: relative; overflow: hidden; }
.product-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(232,71,26,0.08), transparent);
    opacity: 0; transition: opacity 0.3s ease;
}
.product-card:hover .product-card-img::after { opacity: 1; }

/* Enhanced category card */
.category-card {
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease, border-color 0.3s ease !important;
    position: relative; overflow: hidden;
}
.category-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(232,71,26,0.06), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.category-card:hover::before { opacity: 1; }
.cat-icon {
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.category-card:hover .cat-icon { transform: scale(1.25) rotate(5deg); }

/* Glassmorphism upgrade for navbar when scrolled */
.navbar.scrolled {
    background: rgba(253,246,238,0.97) !important;
    box-shadow: 0 4px 30px rgba(232,71,26,0.1), 0 1px 0 rgba(232,71,26,0.05) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
}

/* Section label premium style */
.section-label {
    position: relative; display: inline-block;
}
.section-label::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: linear-gradient(90deg, #E8471A, transparent);
    border-radius: 2px;
}

/* Enhanced testimonial card */
.testimonial-card {
    position: relative; overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.testimonial-card::before {
    content: '"'; position: absolute; top: -10px; right: 16px;
    font-size: 100px; color: rgba(232,71,26,0.07);
    font-family: Georgia, serif; line-height: 1;
    pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-6px) !important; box-shadow: 0 16px 48px rgba(232,71,26,0.12) !important; }

/* Offer banner glow */
.offer-banner {
    background: linear-gradient(135deg, #E8471A 0%, #C93A12 50%, #FF6B35 100%) !important;
    position: relative; overflow: hidden;
}
.offer-banner::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}
.offer-banner::after {
    content: ''; position: absolute; bottom: -30%; left: 10%;
    width: 250px; height: 250px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

/* Hero enhancement - gradient text highlight */
.hero-highlight {
    background: linear-gradient(135deg, #E8471A, #FF6B35);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth scroll indicator on hero */
.vs-scroll-indicator {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: #888; font-size: 12px; font-weight: 500; letter-spacing: 1px;
    animation: vs-scroll-bounce 2s ease-in-out infinite;
    cursor: pointer; z-index: 2;
}
.vs-scroll-dot {
    width: 24px; height: 36px; border: 2px solid rgba(232,71,26,0.4);
    border-radius: 12px; position: relative;
}
.vs-scroll-dot::before {
    content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px; background: #E8471A; border-radius: 2px;
    animation: vs-scroll-dot 1.5s ease-in-out infinite;
}
@keyframes vs-scroll-bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
@keyframes vs-scroll-dot { 0%,100% { opacity: 1; top: 6px; } 50% { opacity: 0.4; top: 18px; } }

/* Premium stats counter animation */
.stat strong { transition: color 0.3s; }
.hero-stats:hover .stat strong { color: #E8471A; }

/* Enhanced hero search */
.hero-search-box {
    box-shadow: 0 8px 40px rgba(232,71,26,0.15), 0 2px 8px rgba(0,0,0,0.08) !important;
    border-color: rgba(232,71,26,0.2) !important;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.hero-search-box:focus-within {
    box-shadow: 0 12px 48px rgba(232,71,26,0.22), 0 2px 8px rgba(0,0,0,0.1) !important;
    border-color: rgba(232,71,26,0.4) !important;
}

/* Mobile responsiveness for new elements */
@media (max-width: 767px) {
    .vs-trust-grid { gap: 16px; }
    .vs-trust-item { min-width: 140px; }
    .vs-whatsapp-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
    .vs-scroll-indicator { display: none; }
}
@media (max-width: 575px) {
    .vs-trust-item { min-width: 120px; }
    .vs-trust-icon { width: 42px; height: 42px; font-size: 20px; }
}
