/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    --color-primary: #111111;
    --color-secondary: #1a1a1a;
    --color-accent-gold: #c5a880;
    --color-accent-gold-dark: #b39369;
    --color-accent-green: #00a859;
    --color-accent-blue: #007bff;
    --color-text-light: #ffffff;
    --color-text-dark: #1e1e1e;
    --color-text-gray: #666666;
    --color-text-muted: #999999;
    --color-bg-light: #ffffff;
    --color-bg-alt: #f5f5f5;
    --color-bg-featured: #f2ede4; /* Warm light beige matching the screenshot */
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-gold: 0 5px 20px rgba(197, 168, 128, 0.15);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-primary);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

/* ==========================================
   TYPOGRAPHY & SECTIONS HEADER
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent-gold-dark);
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    color: var(--color-text-light);
    line-height: 1.15;
}

/* Light background utility */
.light-section {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}
.light-section .section-title {
    color: var(--color-text-dark);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--color-accent-blue);
    color: var(--color-text-light);
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-accent {
    background-color: var(--color-accent-green);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(0, 168, 89, 0.25);
}

.btn-accent:hover {
    background-color: #008f4c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 89, 0.45);
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background-color: var(--color-accent-gold-dark);
    color: var(--color-primary);
    text-align: center;
    padding: 10px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1001;
}

/* ==========================================
   HEADER & NAVBAR (TRANSPARENT OVERHERO)
   ========================================== */
.main-header {
    position: absolute;
    top: 40px; /* Shifts below top bar */
    left: 0;
    width: 100%;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    padding: 12px 0;
    background-color: rgba(17, 17, 17, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-gold);
    transition: var(--transition-normal);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Status Pill */
.status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 168, 89, 0.15);
    border: 1px solid rgba(0, 168, 89, 0.4);
    padding: 8px 16px;
    border-radius: 30px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent-green);
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

.status-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 168, 89, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(0, 168, 89, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 168, 89, 0);
    }
}

/* Globe Icon Button */
.icon-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-light);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.icon-btn:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-primary);
    transform: rotate(15deg);
    border-color: var(--color-accent-gold);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17,17,17,0.7) 0%, rgba(17,17,17,0.5) 50%, rgba(17,17,17,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 80px 20px 0;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent-gold);
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 2px 3px 6px rgba(0,0,0,0.6);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    padding: 16px 45px;
    font-size: 0.95rem;
}

/* ==========================================
   ABOUT US SECTION (WHITE BACKGROUND)
   ========================================== */
.about-section {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 500px;
}

.image-wrapper {
    position: absolute;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-slow);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-back {
    top: 0;
    left: 0;
    width: 65%;
    height: 380px;
    border: 4px solid #ffffff;
    z-index: 1;
}

.img-front {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 320px;
    border: 8px solid #ffffff;
    z-index: 2;
}

.about-images:hover .img-back {
    transform: translate(-10px, -8px) rotate(-1deg);
}

.about-images:hover .img-front {
    transform: translate(8px, 10px) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.22);
}

.about-info {
    padding-left: 10px;
}

.about-info .section-title {
    color: var(--color-text-dark);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 22px;
    font-size: 0.95rem;
    color: #4c4c4c;
    line-height: 1.75;
}

.highlight-blue {
    color: var(--color-accent-blue);
    font-weight: 600;
}

/* ==========================================
   HOT SALE / CATEGORIES (LIGHT BEIGE BACKGROUND)
   ========================================== */
.hot-sale-section {
    background-color: var(--color-bg-featured);
    color: var(--color-text-dark);
    position: relative;
    overflow: hidden;
}

.hot-sale-section .section-title {
    color: var(--color-text-dark);
}

/* Subtitle for dark sections overrides */
.hot-sale-section .section-subtitle {
    color: var(--color-accent-gold-dark);
}

.categories-carousel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.categories-carousel::-webkit-scrollbar {
    height: 6px;
}

.categories-carousel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.categories-carousel::-webkit-scrollbar-thumb {
    background: var(--color-accent-gold-dark);
    border-radius: 10px;
}

.category-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: var(--transition-normal);
    min-width: 150px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card-img-wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.category-card .card-content {
    padding: 14px 10px;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.category-card:hover h3 {
    color: var(--color-accent-gold-dark);
}

/* ==========================================
   SHOP SPECIALS (DARK BACKGROUND)
   ========================================== */
.specials-section {
    background-color: var(--color-primary);
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.special-card {
    background-color: var(--color-secondary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-normal);
}

.special-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 168, 128, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.55);
}

.special-img-wrapper {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.special-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.special-card:hover .special-img-wrapper img {
    transform: scale(1.04);
}

.special-content {
    padding: 30px 25px;
    position: relative;
}

.drink-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent-gold);
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.special-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--color-text-light);
}

.special-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ==========================================
   STATS SECTION (PARALLAX FILTER EFFECT)
   ========================================== */
.stats-section {
    position: relative;
    padding: 110px 0;
    background-image: url('assets/drink_cellar_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.stats-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.65);
    z-index: 1;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-6px);
    background-color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-gray);
    font-weight: 600;
}

/* ==========================================
   GALLERY SECTION (WHITE BACKGROUND)
   ========================================== */
.gallery-section {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.gallery-section .section-title {
    color: var(--color-text-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 3px solid #ffffff; /* Clean white grid gaps */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(197, 168, 128, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-hover i {
    color: var(--color-primary);
    font-size: 1.6rem;
    transform: scale(0.6);
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-item:hover .gallery-hover i {
    transform: scale(1);
}

/* ==========================================
   FOOTER SECTION (WHITE BACKGROUND)
   ========================================== */
.main-footer {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1.25fr 0.8fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.4rem;
    color: var(--color-text-dark);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent-gold-dark);
}

/* Col 1: Brand */
.brand-info p {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    background-color: var(--color-bg-alt);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-gray);
    font-size: 0.95rem;
}

.social-links a:hover {
    background-color: var(--color-accent-gold-dark);
    color: #ffffff;
    transform: translateY(-3px);
    border-color: var(--color-accent-gold-dark);
}

/* Col 2: Map Container */
.map-container {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    height: 160px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: var(--transition-normal);
}

.map-container:hover .map-overlay-btn {
    opacity: 1;
}

/* Col 3: Contact List */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--color-text-gray);
}

.contact-list i {
    color: var(--color-accent-gold-dark);
    margin-top: 4px;
    font-size: 1.05rem;
}

.contact-list a:hover {
    color: var(--color-accent-gold-dark);
}

/* Col 4: Quick Links */
.quick-links ul li {
    margin-bottom: 12px;
}

.quick-links ul li a {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-links ul li a i {
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.quick-links ul li a:hover {
    color: var(--color-accent-gold-dark);
    padding-left: 5px;
}

.quick-links ul li a:hover i {
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================
   FLOATING BUTTONS
   ========================================== */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-normal);
}

.whatsapp-btn {
    left: 30px;
    background-color: #25d366;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #20ba5a;
}

.back-to-top {
    right: 30px;
    background-color: var(--color-accent-blue);
    border: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: #0056b3;
}

/* ==========================================
   LIGHTBOX (INTERACTIVE COMPONENT)
   ========================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-accent-gold);
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    border-radius: 4px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
    animation: zoom 0.3s ease-out;
}

@keyframes zoom {
    from {transform: scale(0.75); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* ==========================================
   RESPONSIVENESS / MEDIA QUERIES
   ========================================== */
@media screen and (max-width: 1024px) {
    .about-grid {
        gap: 40px;
    }
    
    .categories-carousel {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .specials-grid {
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .top-bar {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .main-header {
        top: 36px;
        padding: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-normal);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .header-actions .status-pill,
    .header-actions .icon-btn,
    .header-actions .call-now-btn span {
        display: none;
    }

    .header-actions .call-now-btn {
        padding: 10px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        height: 380px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .img-back {
        height: 300px;
    }
    
    .img-front {
        height: 250px;
    }
    
    .about-info {
        padding-left: 0;
        text-align: center;
    }
    
    .specials-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .special-img-wrapper {
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .categories-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-btn {
        left: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
