:root {
    --cream: #F8F5EF;
    --navy-blue: #0C2D62;
    --burgundy: #7B1E2B;
    --gold: #C8A15A;
    --dark: #1B1B1B;
    --white: #FFFFFF;
    --light-gray: #E8E8E8;
    --transition: all 0.3s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); line-height: 1.6; overflow-x: hidden; background: url('background image1.png') center/cover no-repeat fixed; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.subtitle { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.btn { display: inline-block; padding: 1rem 2.5rem; font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 600; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; border: none; border-radius: 50px; cursor: pointer; transition: var(--transition); }
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--burgundy); color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(123,30,43,0.3); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy-blue); transform: translateY(-3px); }

/* HEADER */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.1); transition: var(--transition); }
.header.scrolled { box-shadow: 0 5px 30px rgba(0,0,0,0.15); }
.nav-container { display: flex; justify-content: center; align-items: center; padding: 1rem 2rem; max-width: 1400px; margin: 0 auto; position: relative; min-height: 90px; width: 100%; }
.logo { position: absolute; left: 2rem; top: 50%; transform: translateY(-50%); z-index: 1001; display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; }
.logo img { height: 45px; width: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2)); transition: var(--transition); }
.logo-tagline { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.logo-tagline .brand-name { font-family: 'Playfair Display', serif; font-size: 0.75rem; font-weight: 700; color: var(--navy-blue); letter-spacing: 1px; }
.logo-tagline .brand-sub { font-family: 'Poppins', sans-serif; font-size: 0.5rem; color: var(--burgundy); letter-spacing: 0.3px; font-weight: 400; }
.nav-menu { display: flex; list-style: none; gap: 4rem; margin-left: 6rem; }
.nav-menu li a { font-size: 1.05rem; font-weight: 600; color: var(--navy-blue); text-decoration: none; text-transform: uppercase; letter-spacing: 1.5px; transition: var(--transition); position: relative; }
.nav-menu li a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav-menu li a:hover::after, .nav-menu li a.active::after { width: 100%; }
.nav-menu li a:hover { color: var(--burgundy); }
.nav-cart { position: absolute; right: 2rem; top: 50%; transform: translateY(-50%); font-size: 1.3rem; color: var(--navy-blue); text-decoration: none; transition: var(--transition); cursor: pointer; }
.nav-cart:hover { color: var(--burgundy); }
.nav-cart .cart-count { position: absolute; top: -8px; right: -10px; background: var(--burgundy); color: var(--white); font-size: 0.65rem; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }

/* CART DROPDOWN */
.cart-dropdown { position: absolute; top: 100%; right: 2rem; width: 380px; max-width: 90vw; background: var(--white); border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); z-index: 1002; display: none; flex-direction: column; max-height: 500px; overflow: hidden; }
.cart-dropdown.active { display: flex; }
.cart-dropdown-header { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 1.5rem; border-bottom: 2px solid var(--gold); }
.cart-dropdown-header h3 { color: var(--navy-blue); font-size: 1.1rem; margin: 0; }
.cart-dropdown-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: #666; transition: var(--transition); }
.cart-dropdown-close:hover { color: var(--burgundy); }
.cart-dropdown-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-dropdown-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #eee; align-items: center; }
.cart-dropdown-item img { width: 50px; height: 60px; object-fit: contain; background: #f5f0e8; border-radius: 8px; padding: 4px; }
.cart-dropdown-item-info { flex: 1; }
.cart-dropdown-item-info h4 { font-size: 0.85rem; color: var(--navy-blue); margin-bottom: 0.3rem; font-family: 'Poppins', sans-serif; font-weight: 600; }
.cart-dropdown-item-info .item-price { color: var(--burgundy); font-weight: 700; font-size: 0.9rem; }
.cart-dropdown-item-remove { background: none; border: none; color: #ccc; cursor: pointer; font-size: 1rem; transition: var(--transition); }
.cart-dropdown-item-remove:hover { color: var(--burgundy); }
.cart-dropdown-empty { text-align: center; padding: 2rem 1rem; color: #999; }
.cart-dropdown-empty i { font-size: 2.5rem; margin-bottom: 0.8rem; display: block; color: #ddd; }
.cart-dropdown-footer { padding: 1.2rem 1.5rem; border-top: 2px solid var(--gold); }
.cart-dropdown-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700; color: var(--navy-blue); margin-bottom: 1rem; }
.cart-dropdown-checkout { display: block; width: 100%; padding: 0.9rem; background: var(--burgundy); color: var(--white); border: none; border-radius: 50px; font-size: 0.95rem; font-weight: 600; cursor: pointer; text-align: center; text-decoration: none; transition: var(--transition); margin-bottom: 0.6rem; }
.cart-dropdown-checkout:hover { background: var(--navy-blue); }
.cart-dropdown-continue { display: block; width: 100%; padding: 0.9rem; background: transparent; color: var(--navy-blue); border: 2px solid var(--navy-blue); border-radius: 50px; font-size: 0.95rem; font-weight: 600; cursor: pointer; text-align: center; text-decoration: none; transition: var(--transition); }
.cart-dropdown-continue:hover { background: var(--navy-blue); color: var(--white); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; position: absolute; right: 5rem; }
.mobile-toggle span { width: 25px; height: 3px; background: var(--navy-blue); transition: var(--transition); }

/* PAGE BANNER */
.page-banner { position: relative; height: 50vh; min-height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); margin-top: 0; padding-top: 110px; }
.banner-bg { position: absolute; inset: 0; z-index: 1; }
.banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,45,98,0.8) 0%, rgba(123,30,43,0.6) 100%); z-index: 2; }
.banner-content { position: relative; z-index: 3; }
.banner-content h1 { margin-bottom: 1rem; animation: fadeInUp 0.8s ease; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.banner-content .subtitle { animation: fadeInUp 0.8s ease 0.2s backwards; }

/* SECTIONS */
.section-pad { padding: 6rem 0; }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { color: var(--navy-blue); margin-bottom: 1rem; text-shadow: 0 1px 3px rgba(255,255,255,0.5); }

/* FOOTER */
.footer { background: var(--dark); color: var(--white); padding: 4rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin-bottom: 3rem; }
.footer-section h3 { color: var(--gold); margin-bottom: 1.5rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.8rem; }
.footer-section ul li a { color: var(--white); text-decoration: none; transition: var(--transition); }
.footer-section ul li a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 1rem; margin-top: 1rem; }
.social-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--white); text-decoration: none; }
.social-icon:hover { background: var(--gold); transform: translateY(-3px); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-logo img { height: 50px; margin-bottom: 1rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 1rem; }
.newsletter-form input { padding: 0.8rem 1.2rem; border: 2px solid rgba(255,255,255,0.2); border-radius: 10px; background: rgba(255,255,255,0.1); color: var(--white); font-family: 'Poppins', sans-serif; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }

/* BACK TO TOP */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--burgundy); color: var(--white); border: none; border-radius: 50%; cursor: pointer; font-size: 1.2rem; display: none; align-items: center; justify-content: center; z-index: 999; transition: var(--transition); box-shadow: 0 5px 20px rgba(123,30,43,0.4); }
.back-to-top:hover { background: var(--gold); transform: translateY(-3px); }
.back-to-top.show { display: flex; }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* CART SIDEBAR */
.cart-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9998; }
.cart-overlay.active { display: block; }
.cart-sidebar { position: fixed; top: 0; right: -420px; width: 400px; max-width: 90vw; height: 100vh; background: var(--white); z-index: 9999; box-shadow: -5px 0 30px rgba(0,0,0,0.2); transition: right 0.3s ease; display: flex; flex-direction: column; }
.cart-sidebar.active { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 2px solid var(--gold); }
.cart-header h3 { color: var(--navy-blue); font-size: 1.3rem; margin: 0; }
.cart-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: #666; transition: var(--transition); }
.cart-close:hover { color: var(--burgundy); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #eee; align-items: center; }
.cart-item img { width: 60px; height: 70px; object-fit: contain; background: #f5f0e8; border-radius: 8px; padding: 4px; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.9rem; color: var(--navy-blue); margin-bottom: 0.3rem; font-family: 'Poppins', sans-serif; font-weight: 600; }
.cart-item-info .cart-item-price { color: var(--burgundy); font-weight: 700; font-size: 0.95rem; }
.cart-item-remove { background: none; border: none; color: #ccc; cursor: pointer; font-size: 1rem; transition: var(--transition); }
.cart-item-remove:hover { color: var(--burgundy); }
.cart-empty { text-align: center; padding: 3rem 1rem; color: #999; }
.cart-empty i { font-size: 3rem; margin-bottom: 1rem; display: block; color: #ddd; }
.cart-footer { padding: 1.5rem; border-top: 2px solid var(--gold); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 700; color: var(--navy-blue); margin-bottom: 1rem; }
.cart-checkout { display: block; width: 100%; padding: 1rem; background: var(--burgundy); color: var(--white); border: none; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; text-align: center; text-decoration: none; transition: var(--transition); }
.cart-checkout:hover { background: var(--navy-blue); }
.nav-cart { cursor: pointer; }

/* TEAM WHATSAPP */
.team-whatsapp { display: inline-block; margin-top: 0.5rem; padding: 0.4rem 1rem; background: #25D366; color: var(--white); border-radius: 50px; text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.team-whatsapp:hover { background: #128C7E; transform: translateY(-2px); color: var(--white); }

/* APP DOWNLOAD */
.app-download { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 0.8rem; padding: 0.6rem 1.2rem; background: #dc3545; color: var(--white); border-radius: 12px; text-decoration: none; font-size: 0.8rem; font-weight: 600; transition: var(--transition); cursor: pointer; }
.app-download:hover { background: #c82333; transform: translateY(-2px); color: var(--white); }
.app-download i { font-size: 1.2rem; }
.app-download span { display: flex; flex-direction: column; line-height: 1.2; }
.app-download small { font-size: 0.6rem; font-weight: 400; opacity: 0.8; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; padding-top: 110px; }
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,45,98,0.75) 0%, rgba(123,30,43,0.5) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; display: flex; justify-content: center; align-items: center; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.hero-text { color: var(--white); max-width: 700px; }
.hero-text h1 { margin-bottom: 1rem; animation: fadeInUp 1s ease; font-family: 'Great Vibes', cursive; font-weight: 400; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; letter-spacing: 2px; color: #b8943e; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.hero-text .subtitle { margin-bottom: 2rem; opacity: 0.85; animation: fadeInUp 1s ease 0.2s backwards; font-family: 'Old Standard TT', serif; font-style: italic; font-size: clamp(0.9rem, 1.5vw, 1.1rem); letter-spacing: 3px; }
.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; animation: fadeInUp 1s ease 0.4s backwards; }

/* WHY CHOOSE */
.why-choose { position: relative; background: transparent; }
.why-choose .section-title h2 { color: var(--white); text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.why-choose .section-title .subtitle { color: var(--gold); text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.feature-card { position: relative; border-radius: 15px; text-align: center; transition: var(--transition); overflow: hidden; height: 280px; display: flex; align-items: flex-end; border: 2px solid transparent; }
.feature-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 15px 40px rgba(200,161,90,0.3); }
.feature-card-bg { position: absolute; inset: 0; z-index: 0; }
.feature-card-bg img { width: 100%; height: 100%; object-fit: cover; }
.feature-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%); z-index: 1; }
.feature-card-content { position: relative; z-index: 2; padding: 2rem; color: var(--white); width: 100%; }
.feature-card-content h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.3rem; }
.feature-card-content p { color: rgba(255,255,255,0.9); font-size: 0.95rem; }

/* FEATURED PRODUCTS */
.featured-products { position: relative; background: transparent; }
.featured-products .section-title h2 { text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.product-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: var(--transition); position: relative; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.product-image { position: relative; height: 350px; overflow: hidden; background: #f5f0e8; display: flex; align-items: center; justify-content: center; }
.product-image img { width: 60%; height: 85%; object-fit: contain; transition: var(--transition); }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-actions { position: absolute; bottom: -60px; left: 0; right: 0; display: flex; justify-content: center; gap: 1rem; padding: 1rem; transition: var(--transition); }
.product-card:hover .product-actions { bottom: 0; }
.product-action-btn { background: var(--white); color: var(--navy-blue); padding: 0.8rem 1.5rem; border-radius: 50px; text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.product-action-btn:hover { background: var(--burgundy); color: var(--white); }
.product-info { padding: 1.5rem; text-align: center; }
.product-info h3 { color: var(--navy-blue); margin-bottom: 0.5rem; }
.product-price { color: var(--burgundy); font-size: 1.5rem; font-weight: 700; }
.product-price .original-price { text-decoration: line-through; color: #999; font-size: 1rem; font-weight: 400; margin-right: 0.5rem; }
.product-price .sale-price { color: var(--burgundy); }
.product-rating { color: var(--gold); margin-bottom: 0.5rem; }

/* ABOUT PREVIEW */
.about-preview { position: relative; background: transparent; }
.about-text { background: rgba(255,255,255,0.85); padding: 2.5rem; border-radius: 20px; backdrop-filter: blur(5px); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.about-image img { width: 100%; height: auto; display: block; }
.about-text h2 { color: var(--navy-blue); margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.5rem; line-height: 1.8; }

/* WINE COLLECTION */
.wine-collection { position: relative; color: var(--white); background: transparent; }
.wine-collection .section-title h2 { color: var(--white); text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.wine-collection .section-title .subtitle { color: var(--gold); text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.collection-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.collection-card { background: rgba(30,30,30,0.75); padding: 2rem; border-radius: 15px; text-align: center; transition: var(--transition); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); }
.collection-card:hover { background: rgba(40,40,40,0.85); transform: translateY(-5px); }
.collection-card h3 { color: var(--gold); margin-bottom: 0.5rem; }

/* CTA */
.cta-section { position: relative; color: var(--white); text-align: center; background: transparent; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(15,15,15,0.6); z-index: 0; }
.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 { text-shadow: 0 2px 8px rgba(0,0,0,0.5); margin-bottom: 1.5rem; }
.cta-section p { text-shadow: 0 1px 4px rgba(0,0,0,0.3); font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }
.shimmer-btn { position: relative; overflow: hidden; }
.shimmer-btn::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%); animation: shimmerMove 3s infinite; }
@keyframes shimmerMove { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ABOUT STORY */
.about-story { padding: 6rem 0; }
.story-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-image { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.story-image img { width: 100%; height: auto; display: block; }
.story-text { background: rgba(255,255,255,0.88); padding: 3rem; border-radius: 20px; backdrop-filter: blur(5px); }
.story-text h2 { color: var(--navy-blue); margin-bottom: 1.5rem; }
.story-text p { margin-bottom: 1.2rem; line-height: 1.8; color: #444; }

/* MISSION VISION */
.mission-vision { padding: 6rem 0; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.mv-card { background: rgba(255,255,255,0.9); padding: 3rem; border-radius: 20px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: var(--transition); border-top: 4px solid var(--gold); backdrop-filter: blur(5px); }
.mv-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.mv-icon { font-size: 3rem; color: var(--burgundy); margin-bottom: 1.5rem; }
.mv-card h3 { color: var(--navy-blue); margin-bottom: 1rem; }
.mv-card p { color: #555; line-height: 1.8; }

/* VALUES */
.our-values { padding: 6rem 0; }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; }
.value-card { background: rgba(255,255,255,0.9); padding: 2.5rem; border-radius: 15px; text-align: center; transition: var(--transition); backdrop-filter: blur(5px); }
.value-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(200,161,90,0.2); }
.value-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.value-card h3 { color: var(--navy-blue); margin-bottom: 0.5rem; }

/* TIMELINE */
.timeline-section { padding: 6rem 0; }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: var(--gold); transform: translateX(-50%); }
.timeline-item { display: flex; align-items: center; margin-bottom: 3rem; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-marker { width: 50px; height: 50px; background: var(--burgundy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; position: absolute; left: 50%; transform: translateX(-50%); z-index: 2; box-shadow: 0 5px 15px rgba(123,30,43,0.3); }
.timeline-content { width: 42%; background: rgba(255,255,255,0.9); padding: 2rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: var(--transition); backdrop-filter: blur(5px); }
.timeline-content:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.timeline-content h3 { color: var(--navy-blue); margin-bottom: 0.5rem; }
.timeline-content p { color: #555; font-size: 0.95rem; }

/* GALLERY */
.gallery-section { padding: 6rem 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.gallery-item { position: relative; border-radius: 15px; overflow: hidden; height: 300px; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(12,45,98,0.9)); padding: 2rem; transform: translateY(100%); transition: var(--transition); }
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay h4 { color: var(--white); }

/* TEAM */
.team-section { padding: 6rem 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; }
.team-card { background: rgba(255,255,255,0.9); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; transition: var(--transition); backdrop-filter: blur(5px); }
.team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.team-card img { width: 100%; height: 300px; object-fit: contain; background: #f5f0e8; padding: 1rem; }
.team-info { padding: 1.5rem; }
.team-info h3 { color: var(--navy-blue); margin-bottom: 0.3rem; }
.team-info p { color: var(--burgundy); font-weight: 500; }

/* CONTACT */
.contact-section { padding: 6rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info h2 { color: var(--navy-blue); margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-item i { font-size: 1.3rem; color: var(--gold); margin-top: 0.2rem; }
.contact-item h4 { color: var(--navy-blue); margin-bottom: 0.3rem; }
.contact-item p { color: #555; font-size: 0.95rem; }
.contact-social { display: flex; gap: 1rem; margin-top: 2rem; }
.contact-social a { width: 45px; height: 45px; background: var(--navy-blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition); font-size: 1.2rem; }
.contact-social a:hover { background: var(--gold); transform: translateY(-3px); }

/* CONTACT LAYOUT (matches HTML) */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-details { background: rgba(255,255,255,0.9); padding: 3rem; border-radius: 20px; backdrop-filter: blur(5px); box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.contact-details h2 { color: var(--navy-blue); margin-bottom: 1rem; }
.contact-details > p { color: #555; margin-bottom: 2rem; line-height: 1.8; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-list .contact-item { display: flex; align-items: flex-start; gap: 1.5rem; }
.contact-icon { width: 50px; height: 50px; background: var(--burgundy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-text h4 { color: var(--navy-blue); margin-bottom: 0.3rem; }
.contact-text p { color: #555; }
.contact-form-wrapper { background: rgba(255,255,255,0.9); padding: 3rem; border-radius: 20px; backdrop-filter: blur(5px); box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.contact-form-wrapper h2 { color: var(--navy-blue); margin-bottom: 1.5rem; }

/* MAP */
.map-section { padding: 4rem 0; }
.map-wrapper { border-radius: 15px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.map-wrapper iframe { display: block; }

/* FAQ */
.faq-section { padding: 6rem 0; }
.faq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.faq-item { background: rgba(255,255,255,0.9); padding: 2rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: var(--transition); cursor: pointer; border-left: 4px solid var(--gold); backdrop-filter: blur(5px); }
.faq-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.faq-item h3 { color: var(--navy-blue); margin-bottom: 1rem; font-size: 1.2rem; }
.faq-item h3 i { color: var(--burgundy); margin-right: 0.5rem; }
.faq-item p { color: #555; line-height: 1.7; }

/* DISTRIBUTOR */
.distributor-section { padding: 6rem 0; }
.distributor-info { max-width: 800px; margin: 0 auto 3rem; text-align: center; }
.distributor-info h2 { color: var(--navy-blue); margin-bottom: 1.5rem; }
.distributor-info ul { list-style: none; text-align: left; max-width: 500px; margin: 0 auto; }
.distributor-info ul li { padding: 0.5rem 0; font-size: 1.05rem; }
.distributor-info ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--gold); margin-right: 0.8rem; }
.distributor-form { max-width: 700px; margin: 0 auto; }

/* SHOP */
.shop-section { padding: 4rem 0; }
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; }
.shop-sidebar { position: sticky; top: 120px; align-self: start; }
.sidebar-widget { background: rgba(255,255,255,0.92); padding: 2rem; border-radius: 15px; margin-bottom: 2rem; box-shadow: 0 5px 20px rgba(0,0,0,0.05); backdrop-filter: blur(5px); }
.sidebar-widget h4 { color: var(--navy-blue); margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 2px solid var(--gold); }
.category-list, .filter-list { list-style: none; }
.category-list li { margin-bottom: 0.8rem; }
.category-list li a { color: var(--dark); text-decoration: none; display: flex; justify-content: space-between; padding: 0.5rem 0; transition: var(--transition); border-bottom: 1px solid rgba(0,0,0,0.05); }
.category-list li a:hover { color: var(--burgundy); padding-left: 10px; }
.filter-list li { margin-bottom: 0.8rem; }
.filter-list li label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; color: #555; }
.price-range { width: 100%; margin-bottom: 1rem; accent-color: var(--burgundy); }
.price-values { display: flex; justify-content: space-between; font-weight: 600; color: var(--navy-blue); }
.shop-products .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }
.shop-products .product-card { background: rgba(255,255,255,0.95); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: var(--transition); position: relative; backdrop-filter: blur(5px); }
.shop-products .product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.shop-products .product-action-btn { box-shadow: 0 3px 10px rgba(0,0,0,0.15); }
.product-desc { color: #666; font-size: 0.9rem; margin-top: 0.5rem; }
.shop-pagination { display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; }
.shop-pagination a { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; text-decoration: none; color: var(--dark); background: rgba(255,255,255,0.9); transition: var(--transition); font-weight: 600; }
.shop-pagination a:hover, .shop-pagination a.active { background: var(--burgundy); color: var(--white); }

/* QUICK VIEW MODAL */
.quick-view-modal { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); align-items: center; justify-content: center; padding: 2rem; }
.quick-view-modal.active { display: flex; }
.modal-content { background: var(--white); border-radius: 20px; max-width: 800px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 25px 80px rgba(0,0,0,0.3); animation: modalFadeIn 0.3s ease; }
@keyframes modalFadeIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.modal-close { position: absolute; top: 15px; right: 15px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #666; z-index: 2; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.modal-close:hover { background: #f0f0f0; color: var(--burgundy); }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2rem; }
.modal-image { border-radius: 15px; overflow: hidden; background: #f5f0e8; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.modal-image img { width: 70%; height: auto; object-fit: contain; }
.modal-details h2 { color: var(--navy-blue); font-family: 'Playfair Display', serif; margin-bottom: 0.5rem; }
.modal-details .modal-rating { color: var(--gold); margin-bottom: 1rem; }
.modal-details .modal-price { font-size: 1.8rem; font-weight: 700; color: var(--burgundy); margin-bottom: 1rem; }
.modal-details .modal-price .original-price { text-decoration: line-through; color: #999; font-size: 1.1rem; font-weight: 400; margin-right: 0.5rem; }
.modal-details .modal-desc { color: #555; line-height: 1.8; margin-bottom: 1.5rem; }
.modal-add-cart { width: 100%; padding: 1rem; background: var(--burgundy); color: var(--white); border: none; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.modal-add-cart:hover { background: var(--navy-blue); }

/* PROMO BANNER */
.promo-banner { padding: 5rem 0; text-align: center; }
.promo-content { background: rgba(255,255,255,0.9); padding: 4rem; border-radius: 20px; backdrop-filter: blur(5px); box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.promo-content h2 { font-size: 3rem; margin-bottom: 1rem; color: var(--burgundy); }
.promo-content p { font-size: 1.2rem; margin-bottom: 2rem; color: #555; }

/* WHATSAPP BUTTON */
.btn-whatsapp { background: #25D366 !important; color: #fff !important; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-whatsapp:hover { background: #128C7E !important; color: #fff !important; }
.btn-whatsapp i { font-size: 1.1rem; }
.modal-whatsapp-btn { display: block; width: 100%; padding: 1rem; background: #25D366; color: #fff; border: none; border-radius: 50px; font-size: 1rem; font-weight: 600; text-align: center; text-decoration: none; cursor: pointer; transition: var(--transition); margin-top: 1rem; }
.modal-whatsapp-btn:hover { background: #128C7E; color: #fff; }
.modal-whatsapp-btn i { margin-right: 0.5rem; font-size: 1.2rem; }
.product-bottles { color: var(--burgundy); font-size: 0.95rem; font-weight: 600; margin: 0.3rem 0 0.5rem; }
.btn-whatsapp-price { display: inline-flex; align-items: center; gap: 0.5rem; background: #25D366; color: #fff; padding: 0.6rem 1.2rem; border-radius: 50px; text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.btn-whatsapp-price:hover { background: #128C7E; color: #fff; transform: translateY(-2px); }
.epliquor-form .form-group { margin-bottom: 1.5rem; }
.epliquor-form .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--navy-blue); }
.epliquor-form .form-group input,
.epliquor-form .form-group textarea { width: 100%; padding: 1rem 1.5rem; border: 2px solid var(--light-gray); border-radius: 10px; font-family: 'Poppins', sans-serif; font-size: 0.95rem; transition: var(--transition); background: var(--cream); }
.epliquor-form .form-group input:focus,
.epliquor-form .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,161,90,0.2); }
.ep-honeypot { position: absolute !important; left: -9999px !important; top: -9999px !important; }
.ep-captcha-box { background: #f8f9fa; padding: 1.2rem; border-radius: 10px; border: 2px solid var(--light-gray); }
.ep-captcha-q { margin-bottom: 0.8rem; font-weight: 600; color: var(--navy-blue); font-size: 1.05rem; }
.ep-form-msg { display: none; margin-top: 1rem; padding: 1rem; border-radius: 10px; text-align: center; font-weight: 500; }
.ep-form-msg.success { display: block; background: #d4edda; color: #155724; }
.ep-form-msg.error { display: block; background: #f8d7da; color: #721c24; }

/* SHOP EXTRAS */
.product-badge { position: absolute; top: 15px; left: 15px; background: var(--burgundy); color: var(--white); padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; z-index: 2; }
.btn-wishlist { position: absolute; top: 15px; right: 15px; background: var(--white); border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; color: var(--burgundy); transition: var(--transition); box-shadow: 0 3px 10px rgba(0,0,0,0.1); z-index: 2; }
.btn-wishlist:hover { background: var(--burgundy); color: var(--white); }
.shop-pagination { display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; }
.shop-pagination a { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; text-decoration: none; color: var(--dark); background: var(--white); transition: var(--transition); font-weight: 600; }
.shop-pagination a:hover, .shop-pagination a.active { background: var(--burgundy); color: var(--white); }

/* PAGE BANNER CONTENT */
.page-banner h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.page-banner p { font-size: 1.2rem; opacity: 0.9; }

/* RESPONSIVE - TABLET (max-width: 992px) */
@media (max-width: 992px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text { margin-bottom: 3rem; }
    .hero-buttons { justify-content: center; }
    .about-content, .story-content, .mv-grid, .contact-grid, .contact-layout { grid-template-columns: 1fr; }
    .timeline::before { left: 25px; }
    .timeline-item, .timeline-item:nth-child(odd) { flex-direction: row; padding-left: 70px; }
    .timeline-marker { left: 25px; transform: translateX(-50%); }
    .timeline-content { width: 100%; }
    .nav-menu { gap: 2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .collection-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-details { padding: 2rem; }
    .contact-form-wrapper { padding: 2rem; }
    .page-banner { height: 40vh; min-height: 300px; }
    .section-pad { padding: 4rem 0; }
    .about-story, .mission-vision, .our-values, .timeline-section, .gallery-section, .team-section, .contact-section, .distributor-section, .shop-section, .faq-section, .map-section { padding: 4rem 0; }
    .feature-card { height: 240px; }
    .story-content { gap: 2rem; }
    .about-content { gap: 2rem; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
}

/* RESPONSIVE - MOBILE (max-width: 768px) */
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-menu { position: fixed; top: 70px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.15); z-index: 999; }
    .nav-menu.active { max-height: 350px; padding: 1.5rem 2rem; }
    .logo { left: 1rem; }
    .logo img { height: 35px; }
    .logo-tagline .brand-name { font-size: 0.6rem; }
    .logo-tagline .brand-sub { font-size: 0.4rem; }
    .nav-container { padding: 0.8rem 1rem; min-height: 70px; }
    .mobile-toggle { right: 1rem; }
    .hero { min-height: 600px; padding-top: 90px; }
    .hero-text h1 { font-size: 2rem; }
    .hero-text .subtitle { font-size: 0.85rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; gap: 2rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .gallery-item { height: 200px; }
    .team-grid { grid-template-columns: 1fr; gap: 2rem; }
    .values-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .collection-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .page-banner { height: 35vh; min-height: 250px; padding-top: 90px; }
    .page-banner h1 { font-size: 2rem; }
    .page-banner p { font-size: 1rem; }
    .feature-card { height: 220px; }
    .product-image { height: 280px; }
    .section-title { margin-bottom: 2.5rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .container { padding: 0 1rem; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .modal-body { grid-template-columns: 1fr; }
    .promo-content { padding: 2rem; }
    .promo-content h2 { font-size: 2rem; }
    .story-text { padding: 2rem; }
    .mv-card { padding: 2rem; }
    .value-card { padding: 1.5rem; }
    .timeline-content { padding: 1.5rem; }
    .about-text { padding: 1.5rem; }
    .contact-details { padding: 1.5rem; }
    .contact-form-wrapper { padding: 1.5rem; }
    .map-wrapper iframe { height: 300px; }
}

/* RESPONSIVE - SMALL MOBILE (max-width: 480px) */
@media (max-width: 480px) {
    .logo img { height: 30px; }
    .logo-tagline .brand-name { font-size: 0.55rem; }
    .logo-tagline .brand-sub { display: none; }
    .nav-container { min-height: 60px; }
    .nav-menu { top: 60px; max-height: 0; padding: 0; }
    .nav-menu.active { max-height: 300px; padding: 1rem 1.5rem; }
    .hero { min-height: 500px; padding-top: 80px; }
    .hero-text h1 { font-size: 1.6rem; }
    .hero-text .subtitle { font-size: 0.8rem; letter-spacing: 1px; }
    .btn { padding: 0.8rem 1.5rem; font-size: 0.85rem; }
    .page-banner { height: 30vh; min-height: 200px; padding-top: 80px; }
    .page-banner h1 { font-size: 1.6rem; }
    .page-banner .subtitle { font-size: 0.9rem; }
    .features-grid { gap: 1.5rem; }
    .feature-card { height: 200px; }
    .feature-card-content h3 { font-size: 1.1rem; }
    .feature-card-content p { font-size: 0.85rem; }
    .products-grid { gap: 1.5rem; }
    .product-image { height: 240px; }
    .product-info { padding: 1rem; }
    .product-info h3 { font-size: 1rem; }
    .product-price { font-size: 1.2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 220px; }
    .values-grid { grid-template-columns: 1fr; }
    .collection-grid { grid-template-columns: 1fr; }
    .team-card img { height: 220px; }
    .story-content { gap: 1.5rem; }
    .story-text { padding: 1.5rem; }
    .story-text h2 { font-size: 1.5rem; }
    .story-text p { font-size: 0.9rem; }
    .mv-grid { gap: 1.5rem; }
    .mv-card { padding: 1.5rem; }
    .mv-icon { font-size: 2.2rem; }
    .about-content { gap: 1.5rem; }
    .about-text { padding: 1.2rem; }
    .contact-details { padding: 1.2rem; }
    .contact-details h2 { font-size: 1.5rem; }
    .contact-form-wrapper { padding: 1.2rem; }
    .contact-form-wrapper h2 { font-size: 1.5rem; }
    .contact-icon { width: 40px; height: 40px; font-size: 1rem; }
    .contact-text h4 { font-size: 0.9rem; }
    .contact-text p { font-size: 0.85rem; }
    .map-wrapper iframe { height: 250px; }
    .faq-item { padding: 1.5rem; }
    .faq-item h3 { font-size: 1.05rem; }
    .faq-item p { font-size: 0.9rem; }
    .distributor-info ul li { font-size: 0.95rem; }
    .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 1rem; }
    .footer { padding: 3rem 0 1.5rem; }
    .footer-section h3 { font-size: 1.1rem; margin-bottom: 1rem; }
    .footer-section ul li { margin-bottom: 0.6rem; font-size: 0.9rem; }
    .social-icon { width: 35px; height: 35px; font-size: 0.9rem; }
    .app-download { padding: 0.5rem 1rem; font-size: 0.75rem; }
}

/* RESPONSIVE - LARGE DESKTOP (min-width: 1400px) */
@media (min-width: 1400px) {
    .container { max-width: 1400px; }
    .hero-text { max-width: 800px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(4, 1fr); }
}

/* RESPONSIVE - TABLET LANDSCAPE (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu { gap: 2rem; }
    .nav-menu li a { font-size: 0.9rem; letter-spacing: 1px; }
    .logo-tagline .brand-sub { font-size: 0.4rem; }
    .hero { min-height: 600px; }
    .feature-card { height: 240px; }
    .product-image { height: 300px; }
    .contact-layout { gap: 2rem; }
    .contact-details { padding: 2rem; }
    .contact-form-wrapper { padding: 2rem; }
}
