/* ==========================================
   Mahavir Optics — Design System & Styles
   ========================================== */

/* CSS Variables */
:root {
    --primary: #2EC4B6;
    --primary-light: #3DD8CA;
    --primary-dark: #25A99D;
    --accent: #21B5A6;
    --accent-light: #5EEADB;
    --bg: #f8fffe;
    --bg-dark: #1a1a2e;
    --surface: #ffffff;
    --surface-glass: rgba(255, 255, 255, 0.75);
    --text: #1a1a2e;
    --text-light: #64748b;
    --text-white: #f1f5f9;
    --gradient-primary: linear-gradient(135deg, #2EC4B6, #21B5A6);
    --gradient-hero: linear-gradient(135deg, #2EC4B6 0%, #25A99D 40%, #1F9A8E 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(46, 196, 182, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
    transition: var(--transition);
    overflow: visible;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.nav-logo .logo-icon {
    font-size: 1.8rem;
}

.nav-logo .accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(13, 148, 136, 0.08);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 148, 136, 0.45);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 100px 24px 60px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: var(--accent-light);
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 30%;
    animation: float 12s ease-in-out infinite 3s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 30%;
    animation: float 18s ease-in-out infinite 5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    grid-column: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    color: white;
    grid-column: 1;
    margin-bottom: 20px;
}

.hero-title .line-1 {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-title .line-2 {
    display: inline;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-light), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-title .line-3 {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    grid-column: 1;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    grid-column: 1;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-cta {
    display: flex;
    gap: 16px;
    grid-column: 1;
    flex-wrap: wrap;
}

.hero-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.hero-cta .btn-outline:hover {
    background: white;
    color: var(--primary-dark);
    border-color: white;
}

.hero-visual {
    grid-column: 2;
    grid-row: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 380px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-owner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 480px;
}

.hero-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    font-style: italic;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   Floating Eyewear Images (Hero Background)
   ========================================== */
.hero-floating-images {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.float-img {
    position: absolute;
    height: auto;
    opacity: 0.55;
    border-radius: 8px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

/* Starting positions — spread across hero */
.float-img-1 {
    top: 2%;
    left: 1%;
    width: 180px;
    animation: drift1 28s linear infinite;
}

.float-img-2 {
    top: 5%;
    right: 20%;
    width: 140px;
    animation: drift2 32s linear infinite;
    animation-delay: 2s;
}

.float-img-3 {
    top: 40%;
    left: 8%;
    width: 150px;
    animation: drift3 26s linear infinite;
    animation-delay: 4s;
}

.float-img-4 {
    top: 15%;
    right: 2%;
    width: 160px;
    animation: drift4 30s linear infinite;
    animation-delay: 1s;
}

.float-img-5 {
    bottom: 15%;
    left: 2%;
    width: 130px;
    animation: drift5 35s linear infinite;
    animation-delay: 6s;
}

.float-img-6 {
    bottom: 5%;
    left: 30%;
    width: 170px;
    animation: drift6 28s linear infinite;
    animation-delay: 3s;
}

.float-img-7 {
    bottom: 10%;
    right: 5%;
    width: 160px;
    animation: drift7 33s linear infinite;
    animation-delay: 5s;
}

.float-img-8 {
    top: 55%;
    left: 40%;
    width: 140px;
    animation: drift8 25s linear infinite;
    animation-delay: 2s;
}

.float-img-9 {
    top: 30%;
    left: 55%;
    width: 150px;
    animation: drift9 30s linear infinite;
    animation-delay: 4s;
}

/* Slow gentle drifting — like floating in water */
@keyframes drift1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    10% {
        transform: translate(30px, 20px) rotate(1deg);
    }

    25% {
        transform: translate(70px, 50px) rotate(-1deg);
    }

    40% {
        transform: translate(40px, 90px) rotate(2deg);
    }

    55% {
        transform: translate(-20px, 60px) rotate(0deg);
    }

    70% {
        transform: translate(-50px, 30px) rotate(-2deg);
    }

    85% {
        transform: translate(-20px, -10px) rotate(1deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes drift2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    12% {
        transform: translate(-25px, 35px) rotate(-1deg);
    }

    28% {
        transform: translate(-60px, 70px) rotate(2deg);
    }

    42% {
        transform: translate(-30px, 100px) rotate(0deg);
    }

    58% {
        transform: translate(20px, 65px) rotate(-2deg);
    }

    72% {
        transform: translate(50px, 30px) rotate(1deg);
    }

    88% {
        transform: translate(20px, -15px) rotate(0deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes drift3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    14% {
        transform: translate(40px, -20px) rotate(2deg);
    }

    30% {
        transform: translate(80px, 15px) rotate(-1deg);
    }

    45% {
        transform: translate(55px, 60px) rotate(0deg);
    }

    60% {
        transform: translate(10px, 80px) rotate(2deg);
    }

    75% {
        transform: translate(-30px, 40px) rotate(-1deg);
    }

    90% {
        transform: translate(-15px, 10px) rotate(0deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes drift4 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    15% {
        transform: translate(-35px, -25px) rotate(-2deg);
    }

    30% {
        transform: translate(-70px, 10px) rotate(1deg);
    }

    48% {
        transform: translate(-40px, 55px) rotate(0deg);
    }

    62% {
        transform: translate(10px, 80px) rotate(-1deg);
    }

    78% {
        transform: translate(40px, 35px) rotate(2deg);
    }

    90% {
        transform: translate(15px, 5px) rotate(0deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes drift5 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    18% {
        transform: translate(30px, -40px) rotate(1deg);
    }

    35% {
        transform: translate(65px, -15px) rotate(-1deg);
    }

    50% {
        transform: translate(80px, 30px) rotate(2deg);
    }

    65% {
        transform: translate(45px, 60px) rotate(0deg);
    }

    80% {
        transform: translate(10px, 25px) rotate(-2deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes drift6 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    16% {
        transform: translate(-30px, -30px) rotate(2deg);
    }

    33% {
        transform: translate(15px, -60px) rotate(-1deg);
    }

    50% {
        transform: translate(55px, -25px) rotate(0deg);
    }

    66% {
        transform: translate(35px, 25px) rotate(1deg);
    }

    83% {
        transform: translate(-10px, 40px) rotate(-1deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes drift7 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    13% {
        transform: translate(25px, 30px) rotate(-1deg);
    }

    28% {
        transform: translate(-10px, 70px) rotate(2deg);
    }

    45% {
        transform: translate(-50px, 45px) rotate(0deg);
    }

    60% {
        transform: translate(-70px, 5px) rotate(-2deg);
    }

    78% {
        transform: translate(-30px, -20px) rotate(1deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes drift8 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    20% {
        transform: translate(-20px, 40px) rotate(1deg);
    }

    40% {
        transform: translate(25px, 75px) rotate(-1deg);
    }

    55% {
        transform: translate(60px, 40px) rotate(2deg);
    }

    70% {
        transform: translate(35px, -10px) rotate(0deg);
    }

    85% {
        transform: translate(5px, -25px) rotate(-1deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes drift9 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    15% {
        transform: translate(35px, -20px) rotate(-1deg);
    }

    32% {
        transform: translate(10px, -55px) rotate(2deg);
    }

    50% {
        transform: translate(-30px, -30px) rotate(0deg);
    }

    65% {
        transform: translate(-55px, 15px) rotate(-2deg);
    }

    82% {
        transform: translate(-20px, 40px) rotate(1deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* ==========================================
   Offers / Brand Showcase Carousel
   ========================================== */
.offers-bar {
    background: #0a0a0a;
    padding: 0;
    position: relative;
    z-index: 3;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offers-container {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 12px;
    width: 100%;
}

.offers-track-wrapper {
    flex: 1;
    overflow: hidden;
    padding: 24px 0;
}

.offers-track {
    display: flex;
    gap: 22px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.offer-card {
    min-width: 340px;
    height: 200px;
    border-radius: 16px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-size: cover;
    background-position: center;
}

.offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.25) 40%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.offer-card:hover::before {
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(0, 0, 0, 0.15) 100%);
}

.offer-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.offer-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.offer-card:hover .offer-card-img {
    transform: scale(1.08);
}

.offer-card-content {
    position: relative;
    z-index: 2;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-brand-name .brand-icon {
    font-size: 1rem;
    opacity: 0.9;
}

.offer-price {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.92;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.offer-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.offer-shop-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    background: rgba(37, 211, 102, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.offer-shop-btn:hover {
    background: rgba(37, 211, 102, 1);
    transform: translateX(3px);
}

.offer-shop-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-shop-btn svg {
    transform: translateX(3px);
}

/* Hide old h4/p from renderOffers if they still exist */
.offer-card-content h4 {
    display: none;
}

.offer-card-content p {
    display: none;
}

.offers-nav {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.offers-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile responsive for offer cards */
@media (max-width: 768px) {
    .offer-card {
        min-width: 280px;
        height: 170px;
    }

    .offers-track-wrapper {
        padding: 16px 0;
    }

    .offers-track {
        gap: 14px;
    }

    .offer-card-content {
        padding: 16px 18px;
    }

    .offer-brand-name {
        font-size: 1rem;
    }

    .offer-price {
        font-size: 0.85rem;
    }

    .offer-shop-btn {
        padding: 5px 14px;
        font-size: 0.72rem;
        bottom: 14px;
        right: 14px;
    }
}

/* ==========================================
   Admin Panel
   ========================================== */
.admin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.admin-panel {
    background: white;
    border-radius: var(--radius);
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.admin-header h2 {
    font-size: 1.3rem;
    color: var(--text);
}

.admin-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 4px 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.admin-close:hover {
    background: #f3f4f6;
    color: var(--text);
}

.admin-body {
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.admin-form h3,
.admin-list h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text);
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
}

.form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.15);
}

.form-group input[type="color"] {
    height: 42px;
    padding: 4px;
    cursor: pointer;
}

.admin-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.admin-actions .btn {
    flex: 1;
}

/* Admin offer list items */
.admin-offer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    transition: var(--transition);
}

.admin-offer-item:hover {
    border-color: var(--primary);
    background: #f0fdfa;
}

.admin-offer-color {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
}

.admin-offer-info {
    flex: 1;
    min-width: 0;
}

.admin-offer-info h4 {
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-offer-info p {
    font-size: 0.75rem;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-offer-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.admin-offer-actions button {
    background: none;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.admin-offer-actions .edit-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.admin-offer-actions .delete-btn:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

/* ==========================================
   Section Common
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(13, 148, 136, 0.08);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   About Section
   ========================================== */
.about {
    padding: 100px 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text);
}

.about-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.team-member:hover {
    background: rgba(13, 148, 136, 0.05);
}

.member-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.member-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.member-role {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

.member-phone {
    font-size: 0.8rem;
    color: var(--text-light);
}

.member-phone:hover {
    color: var(--primary);
}

.why-list {
    list-style: none;
    margin-top: 8px;
}

.why-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-choose-us {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d9488, #115e59);
    color: white;
}

.why-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 25%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.why-feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.why-feature-card.featured {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.why-feature-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.why-icon-large {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.why-feature-card h3 {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* (Why Choose Us visual section removed — content is in about cards) */

/* ==========================================
   Services Section
   ========================================== */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0fdfa 0%, var(--bg) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--gradient-hero);
    border-radius: var(--radius);
    padding: 0;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: white;
}

.service-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

/* Hide icon circles — images replace them */
.service-icon-wrap {
    display: none;
}

.service-card h3,
.service-card p {
    padding-left: 24px;
    padding-right: 24px;
}

.service-card h3 {
    padding-top: 20px;
}

.service-card p {
    padding-bottom: 28px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-light), white);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: white;
}

.service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Highlight card — same style, kept for FREE badge */
.service-card-highlight {
    grid-column: span 1;
}

.free-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fbbf24;
    color: #1a1a2e;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
    }
}

/* ==========================================
   Products Section
   ========================================== */
.products {
    padding: 100px 0;
    background: var(--bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-large {
    grid-row: span 2;
}

.product-visual {
    height: 180px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-large .product-visual {
    height: 100%;
    min-height: 300px;
}

.product-emoji {
    font-size: 4rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
}

.product-card:hover .product-emoji {
    transform: scale(1.2) rotate(-5deg);
}

.product-large .product-emoji {
    font-size: 6rem;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.product-price {
    display: inline-block;
    background: rgba(13, 148, 136, 0.08);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ==========================================
   Products Showcase Section
   ========================================== */
.products-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #f0fdfa 100%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 20px;
}

.showcase-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.showcase-card:hover img {
    transform: scale(1.08);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-card:hover .showcase-overlay {
    opacity: 1;
}

.showcase-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    width: fit-content;
}

.showcase-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.showcase-overlay p {
    font-size: 0.82rem;
    line-height: 1.5;
    opacity: 0.9;
}

.showcase-featured {
    grid-row: span 2;
}

/* ==========================================
   Gallery Section — Real Photos with Stories
   ========================================== */
.gallery {
    padding: 100px 0;
    background: var(--bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-photo {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-photo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-photo:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-photo:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.gallery-caption p {
    font-size: 0.82rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Gallery Layout — Masonry look */
.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

/* ==========================================
   Reviews Section
   ========================================== */
.reviews {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #f0fdfa 100%);
}

.reviews-overview {
    text-align: center;
    margin-bottom: 50px;
}

.rating-big {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    padding: 30px 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(13, 148, 136, 0.1);
}

.rating-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.rating-stars {
    font-size: 1.5rem;
    color: #fbbf24;
    letter-spacing: 4px;
}

.rating-source {
    color: var(--text-light);
    font-size: 0.85rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.reviewer-badge {
    font-size: 0.75rem;
    color: var(--primary);
}

.review-rating {
    margin-left: auto;
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 14px;
}

.review-text::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    line-height: 0;
    vertical-align: -0.5em;
    margin-right: 4px;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.8rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    padding: 100px 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary);
}

.contact-card a:hover {
    text-decoration: underline;
}

.hours-table {
    margin-top: 4px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.hours-time {
    font-weight: 600;
    color: var(--text);
}

.hours-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hours-status.open {
    color: #059669;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #059669;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 480px;
    border: 2px solid rgba(13, 148, 136, 0.1);
    position: relative;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 0;
    color: var(--text-white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-logo .accent {
    color: var(--accent-light);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent-light);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer ul li a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    padding: 4px 0;
}

.footer-contact a {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ==========================================
   WhatsApp Float
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: bounce-wa 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes bounce-wa {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ==========================================
   Animations (Scroll Reveal)
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        grid-column: 1;
        grid-row: auto;
    }

    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .hero-features,
    .hero-cta {
        grid-column: 1;
    }

    .glasses-showcase {
        flex-direction: row;
    }

    .glass-card {
        padding: 20px 30px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .about-grid,
    .why-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .why-feature-card.featured {
        transform: scale(1);
    }

    .gallery-grid {
        height: auto;
        gap: 20px;
    }

    .gallery-grid>* {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 250px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        transform: translateY(-120%);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        visibility: hidden;
        opacity: 0;
    }

    .nav-links.open {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    .nav-links a {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .hero {
        padding: 100px 24px 50px;
        min-height: auto;
    }

    .hero-title .line-1 {
        font-size: 2.2rem;
    }

    .hero-title .line-2 {
        font-size: 3rem;
    }

    .hero-title .line-3 {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .glasses-showcase {
        flex-direction: column;
        gap: 12px;
    }

    .glass-card {
        flex-direction: row;
        padding: 16px 24px;
    }

    .stats-bar .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container {
        min-height: 300px;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .showcase-featured {
        grid-row: span 1;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-large,
    .gallery-wide {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .hero-title .line-1 {
        font-size: 1.8rem;
    }

    .hero-title .line-2 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-large {
        grid-column: span 1;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-large,
    .gallery-wide {
        grid-column: span 1;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .rating-big {
        padding: 20px 30px;
    }

    .rating-number {
        font-size: 3rem;
    }
}

/* End of styles */