/* ===== ALYOMAR - Premium Catalog ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --navy: #0a1628; --navy-light: #132240; --gold: #c9a96e; --gold-light: #d4b87e; --gold-dark: #b08f55;
    --cream: #f8f6f3; --cream-dark: #ede9e3; --white: #fff; --black: #000;
    --gray-100: #f5f3f0; --gray-200: #e8e4df; --gray-300: #d1ccc5; --gray-400: #a39e96;
    --gray-500: #7a756e; --gray-600: #5c5750; --gray-700: #3d3a36;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --radius: 12px; --radius-lg: 20px;
    --shadow: 0 4px 20px rgba(10,22,40,0.08); --shadow-lg: 0 8px 40px rgba(10,22,40,0.12);
    --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family:var(--font-body); color:var(--gray-700); background:var(--cream); line-height:1.7; font-size:15px; overflow-x:hidden; }
a { text-decoration:none; color:inherit; transition:var(--transition); }
img { max-width:100%; height:auto; display:block; }
button { cursor:pointer; font-family:inherit; border:none; background:none; }
.container { max-width:1240px; margin:0 auto; padding:0 24px; }
.section { padding:70px 0; }
.section-sm { padding:45px 0; }
.bg-white { background:var(--white); }
.text-center { text-align:center; }

/* Typography */
.section-label { font-size:11px; font-weight:600; letter-spacing:4px; text-transform:uppercase; color:var(--gold); margin-bottom:16px; display:flex; align-items:center; gap:12px; }
.section-label::before { content:''; width:30px; height:1px; background:var(--gold); }
.section-label.centered { justify-content:center; }
.section-label.centered::after { content:''; width:30px; height:1px; background:var(--gold); }
.section-title { font-family:var(--font-display); font-size:clamp(32px,5vw,52px); font-weight:600; color:var(--navy); line-height:1.15; margin-bottom:20px; }
.section-subtitle { font-size:16px; color:var(--gray-500); max-width:560px; line-height:1.8; }
.section-subtitle.centered { margin:0 auto; }
.section-head { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:10px; flex-wrap:wrap; gap:16px; }

/* Scroll Animations */
[data-aos] { opacity:0; transform:translateY(30px); transition:opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-in { opacity:1; transform:translateY(0); }

/* ===== HEADER ===== */
.header { position:fixed; top:0; left:0; right:0; z-index:1000; transition:var(--transition); }
.header-inner { display:flex; align-items:center; justify-content:space-between; padding:20px 40px; max-width:1400px; margin:0 auto; }
.header.scrolled { background:rgba(255,255,255,0.97); backdrop-filter:blur(20px); box-shadow:0 1px 0 rgba(0,0,0,0.06); }
.header.scrolled .header-inner { padding:14px 40px; }
.header.scrolled .nav-link { color:var(--gray-600); }
.header.scrolled .logo-text, .header.scrolled .h-search-btn { color:var(--navy); }
.logo { display:flex; align-items:center; gap:10px; }
.logo-img { height:40px; }
.logo-text { font-family:var(--font-display); font-size:22px; font-weight:600; color:var(--white); letter-spacing:1px; }
.nav { display:flex; align-items:center; gap:36px; }
.nav-link { font-size:13px; font-weight:500; letter-spacing:0.5px; color:rgba(255,255,255,0.7); padding:8px 0; position:relative; }
.nav-link::after { content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%); width:0; height:1.5px; background:var(--gold); transition:var(--transition); }
.nav-link:hover, .nav-link.active { color:var(--white); }
.nav-link:hover::after, .nav-link.active::after { width:100%; }
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active { color:var(--navy); }
.header-actions { display:flex; align-items:center; gap:12px; }
.h-search-btn { width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.7); }
.h-search-btn:hover { background:rgba(255,255,255,0.1); color:var(--white); }
.header.scrolled .h-search-btn:hover { background:var(--gray-100); color:var(--navy); }
.h-wa-btn { display:inline-flex; align-items:center; gap:8px; padding:10px 22px; background:var(--gold); color:var(--navy); border-radius:50px; font-size:13px; font-weight:600; }
.h-wa-btn:hover { background:var(--gold-dark); transform:translateY(-1px); }
.menu-toggle { display:none; width:40px; height:40px; flex-direction:column; align-items:center; justify-content:center; gap:6px; }
.menu-toggle span { width:22px; height:1.5px; background:var(--white); transition:var(--transition); display:block; }
.header.scrolled .menu-toggle span { background:var(--navy); }
.menu-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity:0; }
.menu-toggle.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
.mobile-nav { display:none; position:fixed; inset:0; background:var(--white); z-index:999; padding:80px 24px 40px; flex-direction:column; overflow-y:auto; }
.mobile-nav.active { display:flex; }
.mobile-nav a { display:block; padding:16px 0; font-size:18px; font-weight:500; color:var(--navy); border-bottom:1px solid var(--gray-100); }

/* ===== HERO SLIDER (Layout 1) ===== */
.hero-slider { position:relative; min-height:100vh; }
.slider { position:relative; width:100%; height:100vh; overflow:hidden; }
.slide { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transition:opacity 1s ease, transform 1.5s ease; transform:scale(1.05); }
.slide.active { opacity:1; transform:scale(1); z-index:1; }
.slide-overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.5) 50%, rgba(10,22,40,0.75) 100%); }
.slide-content { position:relative; z-index:2; display:flex; flex-direction:column; justify-content:center; height:100vh; max-width:700px; padding-bottom:80px; }
.slide-badge { display:inline-flex; align-items:center; gap:8px; padding:8px 18px; background:rgba(201,169,110,0.15); border:1px solid rgba(201,169,110,0.3); border-radius:50px; margin-bottom:30px; font-size:12px; font-weight:500; color:var(--gold-light); letter-spacing:2px; text-transform:uppercase; width:fit-content; }
.slide-title { font-family:var(--font-display); font-size:clamp(36px,6vw,72px); font-weight:600; color:var(--white); line-height:1.1; margin-bottom:20px; }
.slide-desc { font-size:17px; color:rgba(255,255,255,0.6); line-height:1.8; margin-bottom:36px; max-width:500px; }
.slide-btns { display:flex; gap:16px; flex-wrap:wrap; }
.slider-arrow { position:absolute; top:50%; transform:translateY(-50%); z-index:10; width:54px; height:54px; border-radius:50%; background:rgba(255,255,255,0.1); backdrop-filter:blur(10px); color:var(--white); font-size:18px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,0.15); transition:var(--transition); }
.slider-arrow:hover { background:var(--gold); border-color:var(--gold); color:var(--navy); }
.slider-arrow.prev { left:30px; }
.slider-arrow.next { right:30px; }
.slider-dots { position:absolute; bottom:100px; left:50%; transform:translateX(-50%); z-index:10; display:flex; gap:8px; }
.dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.3); border:none; cursor:pointer; transition:var(--transition); }
.dot.active { background:var(--gold); width:32px; border-radius:5px; }
.hero-stats-bar { position:absolute; bottom:0; left:0; right:0; z-index:10; background:rgba(10,22,40,0.6); backdrop-filter:blur(20px); border-top:1px solid rgba(201,169,110,0.15); }
.stats-row { display:flex; justify-content:center; gap:60px; padding:24px 0; }
.stat { text-align:center; }
.stat-n { font-family:var(--font-display); font-size:28px; font-weight:700; color:var(--gold); display:block; }
.stat-l { font-size:12px; color:rgba(255,255,255,0.5); letter-spacing:1px; text-transform:uppercase; }

/* ===== HERO SPLIT (Layout 2) ===== */
.hero-split { min-height:100vh; display:flex; align-items:center; background:var(--navy); position:relative; overflow:hidden; }
.hero-bg { position:absolute; inset:0; }
.hero-bg img { width:100%; height:100%; object-fit:cover; opacity:0.25; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(10,22,40,0.92), rgba(10,22,40,0.7), rgba(10,22,40,0.85)); }
.hero-pattern { position:absolute; inset:0; background-image:radial-gradient(circle at 1px 1px, rgba(201,169,110,0.08) 1px, transparent 0); background-size:40px 40px; }
.hero-content { position:relative; z-index:2; padding:160px 0 100px; width:100%; }
.hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; padding:8px 18px; background:rgba(201,169,110,0.15); border:1px solid rgba(201,169,110,0.3); border-radius:50px; margin-bottom:30px; font-size:12px; font-weight:500; color:var(--gold-light); letter-spacing:2px; text-transform:uppercase; }
.hero-title { font-family:var(--font-display); font-size:clamp(40px,6vw,72px); font-weight:600; color:var(--white); line-height:1.1; margin-bottom:24px; }
.hero-title em { font-style:italic; color:var(--gold); }
.hero-title-xl { font-size:clamp(44px,7vw,84px); }
.hero-desc { font-size:17px; color:rgba(255,255,255,0.6); line-height:1.8; margin-bottom:40px; max-width:480px; }
.hero-btns { display:flex; gap:16px; flex-wrap:wrap; }
.hero-visual { position:relative; display:flex; justify-content:center; }
.hero-img-wrap { width:420px; height:520px; border-radius:var(--radius-lg); overflow:hidden; box-shadow:0 30px 80px rgba(0,0,0,0.3); }
.hero-img-wrap img { width:100%; height:100%; object-fit:cover; }
.hero-float-card { position:absolute; background:rgba(255,255,255,0.95); backdrop-filter:blur(20px); border-radius:var(--radius); padding:16px 20px; box-shadow:var(--shadow-lg); animation:float 3s ease-in-out infinite; }
.hero-float-card.card1 { bottom:40px; left:-60px; display:flex; align-items:center; gap:12px; }
.hero-float-card.card2 { top:60px; right:-40px; text-align:center; animation-delay:1.5s; }
.float-icon { width:44px; height:44px; border-radius:50%; background:linear-gradient(135deg, var(--gold), var(--gold-dark)); display:flex; align-items:center; justify-content:center; color:var(--white); font-size:18px; }
.float-num { font-family:var(--font-display); font-size:28px; font-weight:700; color:var(--navy); }
.float-label { font-size:12px; color:var(--gray-500); }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }

/* ===== HERO CENTERED (Layout 3) ===== */
.hero-centered { min-height:100vh; display:flex; align-items:center; background:var(--navy); position:relative; overflow:hidden; }
.hero-mini-slider { display:flex; gap:20px; justify-content:center; margin-top:60px; }
.mini-slide { display:block; width:200px; height:120px; border-radius:var(--radius); overflow:hidden; position:relative; border:2px solid rgba(255,255,255,0.1); transition:var(--transition); }
.mini-slide:hover { border-color:var(--gold); transform:translateY(-4px); }
.mini-slide img { width:100%; height:100%; object-fit:cover; }
.mini-slide span { position:absolute; bottom:0; left:0; right:0; padding:8px; background:linear-gradient(transparent, rgba(0,0,0,0.8)); color:var(--white); font-size:11px; font-weight:500; }

/* ===== BUTTONS ===== */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:14px 32px; border-radius:50px; font-size:13px; font-weight:600; letter-spacing:0.5px; transition:var(--transition); border:none; cursor:pointer; }
.btn-primary { background:var(--gold); color:var(--navy); }
.btn-primary:hover { background:var(--gold-dark); transform:translateY(-2px); box-shadow:0 8px 25px rgba(201,169,110,0.3); }
.btn-outline { background:transparent; border:1.5px solid rgba(255,255,255,0.3); color:var(--white); }
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }
.btn-dark { background:var(--navy); color:var(--white); }
.btn-dark:hover { background:var(--navy-light); transform:translateY(-2px); }
.btn-whatsapp { background:#25d366; color:#fff; }
.btn-whatsapp:hover { background:#1fb855; transform:translateY(-2px); box-shadow:0 8px 25px rgba(37,211,102,0.3); }
.btn-sm { padding:10px 22px; font-size:12px; }
.btn-lg { padding:18px 40px; font-size:15px; }

/* ===== FEATURES BAR ===== */
.features-bar { background:var(--white); padding:50px 0; border-bottom:1px solid var(--gray-100); }
.features-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:40px; }
.feature-item { display:flex; align-items:center; gap:16px; }
.feature-icon { width:50px; height:50px; border-radius:50%; background:linear-gradient(135deg, rgba(201,169,110,0.1), rgba(201,169,110,0.05)); display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:20px; flex-shrink:0; }
.feature-text h4 { font-size:14px; font-weight:600; color:var(--navy); margin-bottom:2px; }
.feature-text p { font-size:12px; color:var(--gray-400); }

/* ===== CATEGORIES ===== */
.categories-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(200px,1fr)); gap:20px; margin-top:50px; }
.cat-card { background:var(--white); border-radius:var(--radius-lg); padding:36px 24px; text-align:center; transition:var(--transition); border:1px solid transparent; cursor:pointer; overflow:hidden; position:relative; }
.cat-card::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:60px; height:3px; background:var(--gold); border-radius:0 0 3px 3px; opacity:0; transition:var(--transition); }
.cat-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--cream-dark); }
.cat-card:hover::before { opacity:1; }
.cat-icon { width:64px; height:64px; margin:0 auto 18px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:24px; color:var(--gold); background:linear-gradient(135deg, rgba(201,169,110,0.1), rgba(201,169,110,0.05)); transition:var(--transition); overflow:hidden; }
.cat-card:hover .cat-icon { background:linear-gradient(135deg, var(--gold), var(--gold-dark)); color:var(--white); }
.cat-icon img { width:100%; height:100%; object-fit:cover; border-radius:50%; }
.cat-name { font-family:var(--font-display); font-size:18px; font-weight:600; color:var(--navy); margin-bottom:4px; }
.cat-count { font-size:12px; color:var(--gray-400); }

/* ===== PRODUCTS ===== */
.products-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(240px,1fr)); gap:20px; margin-top:30px; }
.products-grid.lg { grid-template-columns:repeat(auto-fill, minmax(300px,1fr)); }
.product-card { background:var(--white); border-radius:var(--radius-lg); overflow:hidden; transition:var(--transition); border:1px solid transparent; }
.product-card:hover { transform:translateY(-4px); box-shadow:0 8px 30px rgba(10,22,40,0.1); border-color:var(--cream-dark); }
.product-img { position:relative; aspect-ratio:5/4; overflow:hidden; background:var(--gray-100); display:block; }
.product-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.product-card:hover .product-img img { transform:scale(1.06); }
.product-badges { position:absolute; top:16px; left:16px; display:flex; flex-direction:column; gap:6px; }
.badge { padding:5px 12px; border-radius:50px; font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase; }
.badge-new { background:var(--navy); color:var(--white); }
.badge-featured { background:var(--gold); color:var(--navy); }
.badge-sale { background:#ef4444; color:var(--white); }

.product-info { padding:16px 18px 20px; }
.product-brand { font-size:11px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }
.product-name { font-family:var(--font-display); font-size:17px; font-weight:600; color:var(--navy); margin-bottom:6px; line-height:1.3; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.product-name a:hover { color:var(--gold-dark); }
.product-desc { font-size:12px; color:var(--gray-500); line-height:1.5; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; margin-bottom:12px; }
.product-bottom { display:flex; align-items:center; justify-content:space-between; padding-top:16px; border-top:1px solid var(--gray-100); }
.product-price { font-family:var(--font-display); font-size:18px; font-weight:700; color:var(--navy); }
.product-price .currency { font-size:13px; font-weight:400; color:var(--gray-400); }
.product-price .old-price { font-size:14px; font-weight:400; color:var(--gray-400); text-decoration:line-through; margin-left:6px; }
.product-size { font-size:12px; color:var(--gray-400); }
.product-wa-btn { display:inline-flex; align-items:center; gap:6px; padding:8px 16px; background:#25d366; color:#fff; border-radius:50px; font-size:12px; font-weight:600; }
.product-wa-btn:hover { background:#1fb855; transform:translateY(-1px); }

/* ===== BRANDS ===== */
.brands-row { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:40px; margin-top:50px; }
.brand-item { width:140px; height:70px; display:flex; align-items:center; justify-content:center; opacity:0.4; filter:grayscale(100%); transition:var(--transition); }
.brand-item:hover { opacity:1; filter:grayscale(0%); }
.brand-item img { max-width:100%; max-height:100%; object-fit:contain; }

/* ===== CTA ===== */
.cta-section { background:var(--navy); position:relative; overflow:hidden; }
.cta-section + .footer .footer-top { border-top:2px solid rgba(201,169,110,0.3); }
.cta-pattern { position:absolute; inset:0; background-image:radial-gradient(circle at 1px 1px, rgba(201,169,110,0.06) 1px, transparent 0); background-size:32px 32px; }
.cta-content { position:relative; z-index:2; text-align:center; padding:60px 0; }
.cta-title { font-family:var(--font-display); font-size:clamp(28px,4vw,48px); font-weight:600; color:var(--white); margin-bottom:16px; }
.cta-title em { font-style:italic; color:var(--gold); }
.cta-desc { font-size:16px; color:rgba(255,255,255,0.5); margin-bottom:36px; max-width:500px; margin-left:auto; margin-right:auto; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ===== FOOTER ===== */
.footer-top { background:var(--navy); border-bottom:1px solid rgba(255,255,255,0.1); padding:12px 0; margin-bottom:0; }
.footer-cta-bar { display:flex; align-items:center; justify-content:space-between; padding:28px 0; gap:24px; flex-wrap:wrap; }
.footer-cta-text { display:flex; align-items:center; gap:16px; color:var(--white); }
.footer-cta-text i { font-size:28px; color:var(--gold); }
.footer-cta-text strong { display:block; font-size:16px; font-family:var(--font-display); }
.footer-cta-text span { display:block; font-size:13px; color:rgba(255,255,255,0.5); }
.footer-cta-btns { display:flex; gap:12px; flex-wrap:wrap; }
.footer-cta-btn { display:inline-flex; align-items:center; gap:8px; padding:10px 20px; border-radius:50px; font-size:13px; font-weight:600; border:1px solid rgba(255,255,255,0.2); color:var(--white); transition:var(--transition); }
.footer-cta-btn:hover { border-color:var(--gold); color:var(--gold); }
.footer-cta-btn.wa { background:#25d366; border-color:#25d366; }
.footer-cta-btn.wa:hover { background:#1fb855; border-color:#1fb855; color:var(--white); }
.footer-logo-text { font-family:var(--font-display); font-size:22px; font-weight:700; color:var(--white); letter-spacing:2px; }
.footer-contact-list { display:flex; flex-direction:column; gap:12px; }
.footer-bottom-links { display:flex; gap:20px; }
.footer-bottom-links a { color:rgba(255,255,255,0.4); font-size:13px; transition:var(--transition); }
.footer-bottom-links a:hover { color:var(--gold); }
.footer { background:var(--navy); color:rgba(255,255,255,0.6); padding:0; }
.footer > .container { padding-top:60px; padding-bottom:20px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:50px; margin-bottom:50px; }
.footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:20px; }
.footer-logo img { height:36px; }
.footer-logo span { font-family:var(--font-display); font-size:20px; font-weight:600; color:var(--white); }
.footer-desc { font-size:14px; line-height:1.8; margin-bottom:24px; }
.footer-social { display:flex; gap:10px; }
.footer-social a { width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.5); font-size:14px; }
.footer-social a:hover { border-color:var(--gold); color:var(--gold); }
.footer-title { font-family:var(--font-display); font-size:18px; font-weight:600; color:var(--white); margin-bottom:20px; }
.footer-links a { display:block; padding:6px 0; font-size:14px; color:rgba(255,255,255,0.5); }
.footer-links a:hover { color:var(--gold); padding-left:6px; }
.footer-contact-item { display:flex; align-items:flex-start; gap:12px; margin-bottom:14px; font-size:14px; }
.footer-contact-item i { color:var(--gold); margin-top:4px; width:16px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding:24px 0; display:flex; align-items:center; justify-content:space-between; font-size:13px; }

/* ===== PAGE HERO ===== */
.page-hero { background:var(--navy); padding:140px 0 60px; position:relative; overflow:hidden; }
.page-hero-pattern { position:absolute; inset:0; background-image:radial-gradient(circle at 1px 1px, rgba(201,169,110,0.06) 1px, transparent 0); background-size:40px 40px; }
.page-hero-content { position:relative; z-index:2; }
.page-hero .section-label { color:var(--gold-light); }
.page-hero .section-title { color:var(--white); }
.breadcrumb { display:inline-flex; align-items:center; gap:10px; font-size:14px; margin-top:20px; background:rgba(255,255,255,0.07); padding:10px 22px; border-radius:50px; backdrop-filter:blur(4px); }
.breadcrumb a { color:#fff; transition:var(--transition); font-weight:500; opacity:0.85; }
.breadcrumb a:hover { color:var(--gold); opacity:1; }
.breadcrumb .sep { color:var(--gold); font-size:16px; font-weight:700; line-height:1; }
.breadcrumb .current { color:var(--gold); font-weight:700; font-size:14px; }

/* ===== PRODUCTS PAGE ===== */
.products-layout { display:grid; grid-template-columns:220px 1fr; gap:28px; padding:40px 0 60px; }
.products-layout .products-grid { grid-template-columns:repeat(3, 1fr); margin-top:0; gap:16px; }
.products-layout .product-img { aspect-ratio:1/1; }
.filter-group { margin-bottom:30px; }
.filter-title { font-family:var(--font-display); font-size:16px; font-weight:600; color:var(--navy); margin-bottom:14px; padding-bottom:10px; border-bottom:1px solid var(--gray-200); }
.filter-item { display:flex; align-items:center; gap:10px; padding:8px 0; cursor:pointer; font-size:14px; color:var(--gray-600); }
.filter-item:hover { color:var(--navy); }
.filter-item input { accent-color:var(--gold); }
.filter-count { margin-left:auto; font-size:12px; color:var(--gray-400); background:var(--gray-100); padding:2px 8px; border-radius:10px; }
.products-toolbar { display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; }
.results-count { font-size:14px; color:var(--gray-500); }
.sort-select { padding:8px 14px; border:1px solid var(--gray-200); border-radius:6px; font-size:13px; background:var(--white); }

/* ===== SINGLE PRODUCT ===== */
.product-detail { padding:60px 0 100px; }
.product-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.product-gallery { position:sticky; top:100px; }
.gallery-main { aspect-ratio:4/5; border-radius:var(--radius-lg); overflow:hidden; background:var(--gray-100); margin-bottom:12px; }
.gallery-main img { width:100%; height:100%; object-fit:cover; }
.gallery-thumbs { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.gallery-thumb { aspect-ratio:1; border-radius:var(--radius); overflow:hidden; cursor:pointer; border:2px solid transparent; opacity:0.6; }
.gallery-thumb:hover, .gallery-thumb.active { border-color:var(--gold); opacity:1; }
.gallery-thumb img { width:100%; height:100%; object-fit:cover; }
.product-detail-info .product-brand { font-size:12px; margin-bottom:10px; }
.product-detail-info .product-name { font-size:clamp(28px,4vw,38px); margin-bottom:16px; -webkit-line-clamp:unset; }
.product-detail-info .product-desc { -webkit-line-clamp:unset; margin-bottom:24px; font-size:15px; }
.product-meta { display:flex; flex-wrap:wrap; gap:16px; margin-bottom:30px; }
.meta-item { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--gray-500); background:var(--gray-100); padding:8px 16px; border-radius:50px; }
.meta-item i { color:var(--gold); }
.product-wa-section { background:linear-gradient(135deg, rgba(37,211,102,0.08), rgba(37,211,102,0.03)); border:1px solid rgba(37,211,102,0.15); border-radius:var(--radius-lg); padding:28px; margin-bottom:30px; }
.product-wa-section h3 { font-family:var(--font-display); font-size:20px; color:var(--navy); margin-bottom:8px; }
.product-wa-section p { font-size:14px; color:var(--gray-500); margin-bottom:16px; }
.product-tabs { margin-top:40px; }
.tabs-nav { display:flex; gap:0; border-bottom:1px solid var(--gray-200); margin-bottom:24px; }
.tab-btn { padding:12px 24px; font-size:14px; font-weight:500; color:var(--gray-500); border-bottom:2px solid transparent; cursor:pointer; background:none; }
.tab-btn:hover, .tab-btn.active { color:var(--navy); border-bottom-color:var(--gold); }
.tab-content { display:none; }
.tab-content.active { display:block; }
.tab-content p { margin-bottom:12px; line-height:1.8; color:var(--gray-600); font-size:15px; }
.product-features-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.feature-card { display:flex; gap:14px; padding:18px; border-radius:var(--radius); background:var(--gray-100); }
.feature-card i { color:var(--gold); font-size:18px; margin-top:2px; }
.feature-card h4 { font-size:14px; font-weight:600; color:var(--navy); margin-bottom:4px; }
.feature-card p { font-size:13px; color:var(--gray-500); }

/* ===== CONTACT ===== */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; padding:80px 0; }
.contact-card { display:flex; gap:18px; padding:24px; background:var(--white); border-radius:var(--radius); border:1px solid var(--gray-100); margin-bottom:20px; }
.contact-card-icon { width:50px; height:50px; border-radius:50%; background:linear-gradient(135deg, rgba(201,169,110,0.1), rgba(201,169,110,0.05)); display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:18px; flex-shrink:0; }
.contact-card h4 { font-size:15px; font-weight:600; color:var(--navy); margin-bottom:4px; }
.contact-card p, .contact-card a { font-size:14px; color:var(--gray-500); }
.contact-form { background:var(--white); border-radius:var(--radius-lg); padding:40px; box-shadow:var(--shadow); }
.form-group { margin-bottom:20px; }
.form-label { display:block; font-size:13px; font-weight:600; color:var(--navy); margin-bottom:8px; }
.form-control { width:100%; padding:13px 18px; border:1.5px solid var(--gray-200); border-radius:var(--radius); font-size:14px; background:var(--cream); color:var(--gray-700); }
.form-control:focus { outline:none; border-color:var(--gold); background:var(--white); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
textarea.form-control { min-height:140px; resize:vertical; }

/* ===== ABOUT ===== */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; padding:80px 0; }
.about-img { border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/5; }
.about-img img { width:100%; height:100%; object-fit:cover; }
.about-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:30px; }
.stat-item { text-align:center; padding:20px; background:var(--gray-100); border-radius:var(--radius); }
.stat-num { font-family:var(--font-display); font-size:32px; font-weight:700; color:var(--gold); }
.stat-label { font-size:12px; color:var(--gray-500); margin-top:4px; }

/* ===== SEARCH ===== */
.search-overlay { position:fixed; inset:0; background:rgba(10,22,40,0.85); backdrop-filter:blur(8px); z-index:2000; opacity:0; visibility:hidden; transition:var(--transition); }
.search-overlay.active { opacity:1; visibility:visible; }
.search-modal { position:fixed; top:120px; left:50%; transform:translateX(-50%); width:90%; max-width:640px; z-index:2001; opacity:0; visibility:hidden; transition:var(--transition); }
.search-modal.active { opacity:1; visibility:visible; }
.search-input-wrap { display:flex; align-items:center; background:var(--white); border-radius:var(--radius-lg); padding:6px; box-shadow:0 16px 60px rgba(0,0,0,0.16); }
.search-input-wrap input { flex:1; padding:16px 20px; border:none; font-size:16px; background:transparent; color:var(--navy); }
.search-input-wrap input:focus { outline:none; }
.search-input-wrap button { width:50px; height:50px; border-radius:var(--radius); background:var(--gold); color:var(--white); display:flex; align-items:center; justify-content:center; font-size:18px; }
.search-results { background:var(--white); border-radius:var(--radius-lg); margin-top:10px; max-height:400px; overflow-y:auto; box-shadow:0 16px 60px rgba(0,0,0,0.16); display:none; }
.search-item { display:flex; align-items:center; gap:14px; padding:14px 20px; border-bottom:1px solid var(--gray-100); }
.search-item:hover { background:var(--cream); }
.search-item img { width:50px; height:50px; border-radius:6px; object-fit:cover; }
.search-item-info h4 { font-size:14px; font-weight:600; color:var(--navy); }
.search-item-info span { font-size:12px; color:var(--gray-400); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float { position:fixed; bottom:30px; right:30px; z-index:999; display:flex; flex-direction:column; align-items:flex-end; gap:8px; }
.wa-float-label { background:var(--white); color:var(--navy); padding:8px 16px; border-radius:8px; font-size:12px; font-weight:600; box-shadow:var(--shadow); opacity:0; transform:translateX(10px); transition:var(--transition); pointer-events:none; white-space:nowrap; }
.wa-float:hover .wa-float-label { opacity:1; transform:translateX(0); }
.wa-float-btn { width:60px; height:60px; border-radius:50%; background:#25d366; color:#fff; display:flex; align-items:center; justify-content:center; font-size:28px; box-shadow:0 4px 20px rgba(37,211,102,0.4); transition:var(--transition); }
.wa-float-btn:hover { transform:scale(1.1); }

/* ===== PAGINATION ===== */
.pagination { display:flex; justify-content:center; gap:6px; margin-top:50px; }
.pagination a, .pagination span { width:42px; height:42px; display:flex; align-items:center; justify-content:center; border-radius:6px; font-size:14px; font-weight:500; }
.pagination a { color:var(--gray-600); background:var(--white); border:1px solid var(--gray-200); }
.pagination a:hover { border-color:var(--gold); color:var(--gold); }
.pagination span.current { background:var(--gold); color:var(--white); }

/* Alerts */
.alert { padding:14px 20px; border-radius:var(--radius); margin-bottom:20px; font-size:14px; display:flex; align-items:center; gap:10px; }
.alert-success { background:#f0fdf4; color:#16a34a; border:1px solid #bbf7d0; }
.alert-error { background:#fef2f2; color:#dc2626; border:1px solid #fecaca; }


/* ===== LAYOUT 2: MAGAZINE GRID ===== */
.magazine-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:40px; }
.mag-hero-card { grid-column:1 / -1; display:grid; grid-template-columns:1.2fr 1fr; gap:0; background:var(--white); border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--cream-dark); }
.mag-hero-img { aspect-ratio:4/3; overflow:hidden; display:block; }
.mag-hero-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.mag-hero-card:hover .mag-hero-img img { transform:scale(1.04); }
.mag-hero-info { padding:40px; display:flex; flex-direction:column; justify-content:center; }
.mag-hero-name { font-family:var(--font-display); font-size:clamp(24px,3vw,36px); font-weight:600; color:var(--navy); margin-bottom:12px; line-height:1.2; }
.mag-hero-name a:hover { color:var(--gold-dark); }
.mag-hero-desc { font-size:15px; color:var(--gray-500); line-height:1.8; margin-bottom:24px; }

/* LAYOUT 2: HORIZONTAL CATEGORY CARDS */
.cat-horiz-scroll { display:grid; grid-template-columns:repeat(auto-fill, minmax(220px, 1fr)); gap:16px; margin-top:40px; }
.cat-horiz-card { position:relative; aspect-ratio:3/2; border-radius:var(--radius-lg); overflow:hidden; display:block; }
.cat-horiz-img { position:absolute; inset:0; }
.cat-horiz-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.cat-horiz-card:hover .cat-horiz-img img { transform:scale(1.08); }
.cat-horiz-overlay { position:absolute; inset:0; background:linear-gradient(transparent 40%, rgba(10,22,40,0.85)); display:flex; flex-direction:column; justify-content:flex-end; padding:20px; }
.cat-horiz-name { font-family:var(--font-display); font-size:20px; font-weight:600; color:var(--white); }
.cat-horiz-count { font-size:12px; color:rgba(255,255,255,0.6); }

/* LAYOUT 2: CTA WITH IMAGE */
.cta-image { background-size:cover; background-position:center; position:relative; }
.cta-overlay { position:absolute; inset:0; background:rgba(10,22,40,0.88); }

/* ===== LAYOUT 3: ICON CATEGORIES ===== */
.cat-icon-row { display:flex; justify-content:center; flex-wrap:wrap; gap:32px; padding:20px 0; }
.cat-icon-item { text-align:center; transition:var(--transition); }
.cat-icon-item:hover { transform:translateY(-4px); }
.cat-icon-circle { width:72px; height:72px; border-radius:50%; background:var(--cream); display:flex; align-items:center; justify-content:center; font-size:24px; color:var(--gold); margin:0 auto 10px; transition:var(--transition); border:2px solid transparent; }
.cat-icon-item:hover .cat-icon-circle { background:var(--gold); color:var(--white); border-color:var(--gold); }
.cat-icon-item span { font-size:13px; font-weight:500; color:var(--gray-600); }

/* LAYOUT 3: HORIZONTAL SCROLL PRODUCTS */
.products-scroll { overflow-x:auto; padding:0 24px 20px; -webkit-overflow-scrolling:touch; scrollbar-width:thin; scrollbar-color:var(--gold) transparent; }
.products-scroll::-webkit-scrollbar { height:6px; }
.products-scroll::-webkit-scrollbar-track { background:transparent; }
.products-scroll::-webkit-scrollbar-thumb { background:var(--gold); border-radius:3px; }
.products-scroll-inner { display:flex; gap:24px; padding-bottom:8px; }
.scroll-card { min-width:300px; max-width:300px; flex-shrink:0; }
.scroll-card .product-card { height:100%; }

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
    .hero-grid { grid-template-columns:1fr; gap:40px; text-align:center; }
    .hero-desc { margin:0 auto 40px; }
    .hero-btns { justify-content:center; }
    .hero-visual { display:none; }
    .products-layout { grid-template-columns:1fr; }
    .features-grid { grid-template-columns:repeat(2,1fr); }
    .footer-grid { grid-template-columns:repeat(2,1fr); }
    .footer-cta-bar { flex-direction:column; text-align:center; }
    .footer-cta-text { flex-direction:column; }
    .product-detail-grid { grid-template-columns:1fr; gap:40px; }
    .product-gallery { position:static; }
    .stats-row { gap:30px; }
}
@media (max-width:768px) {
    .header-inner { padding:14px 20px; }
    .nav { display:none; }
    .menu-toggle { display:flex; }
    .section { padding:40px 0; }
    .section-title { font-size:28px; }
    .hero-split, .hero-centered { min-height:90vh; }
    .hero-title { font-size:36px; }
    .slider { height:90vh; }
    .slide-title { font-size:32px; }
    .slide-content { padding-bottom:120px; }
    .slider-arrow { display:none; }
    .slider-dots { bottom:130px; }
    .hero-mini-slider { flex-wrap:wrap; }
    .mini-slide { width:140px; height:90px; }
    .categories-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
    .cat-card { padding:24px 16px; }
    .products-grid { grid-template-columns:repeat(2,1fr); gap:14px; }
    .products-layout .products-grid { grid-template-columns:repeat(2,1fr); }
    .product-info { padding:14px 16px 18px; }
    .product-name { font-size:16px; }
    .product-desc { display:none; }
    .features-grid { grid-template-columns:1fr; }

    .magazine-grid { grid-template-columns:1fr; }
    .mag-hero-card { grid-template-columns:1fr; }
    .mag-hero-info { padding:24px; }
    .cat-horiz-scroll { grid-template-columns:1fr 1fr; }
    .scroll-card { min-width:260px; max-width:260px; }

    .footer-grid { grid-template-columns:1fr; gap:30px; }
    .contact-grid { grid-template-columns:1fr; gap:30px; }
    .about-grid { grid-template-columns:1fr; }
    .product-features-grid { grid-template-columns:1fr; }
    .form-row { grid-template-columns:1fr; }
    .h-wa-btn span { display:none; }
    .hero-content { padding:120px 0 60px; }
    .page-hero { padding:120px 0 50px; }
    .product-bottom { flex-direction:column; align-items:flex-start; gap:10px; }
    .product-wa-btn { width:100%; justify-content:center; }
    .stats-row { gap:20px; flex-wrap:wrap; }
    .stat-n { font-size:22px; }
    .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
}
@media (max-width:480px) {
    .products-grid { grid-template-columns:1fr 1fr; gap:10px; }
    .product-img { aspect-ratio:1/1; }
    .products-layout .product-img { aspect-ratio:1/1; }
    .product-info { padding:10px 12px 14px; }
    .product-brand { font-size:9px; }
    .product-name { font-size:14px; }
    .product-price { font-size:16px; }
    .hero-btns { flex-direction:column; align-items:stretch; }
    .slide-btns { flex-direction:column; }
}

/* ===== LIGHTBOX ===== */
.lightbox { position:fixed; inset:0; background:rgba(0,0,0,0.92); z-index:3000; display:none; align-items:center; justify-content:center; }
.lightbox.active { display:flex; }
.lightbox-img { max-width:90vw; max-height:85vh; object-fit:contain; border-radius:8px; }
.lightbox-close { position:absolute; top:20px; right:20px; width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,0.1); color:#fff; font-size:20px; display:flex; align-items:center; justify-content:center; cursor:pointer; border:none; transition:var(--transition); }
.lightbox-close:hover { background:rgba(255,255,255,0.2); }
.lightbox-nav { position:absolute; top:50%; transform:translateY(-50%); width:50px; height:50px; border-radius:50%; background:rgba(255,255,255,0.1); color:#fff; font-size:18px; display:flex; align-items:center; justify-content:center; cursor:pointer; border:none; transition:var(--transition); }
.lightbox-nav:hover { background:rgba(255,255,255,0.2); }
.lightbox-nav.prev { left:20px; }
.lightbox-nav.next { right:20px; }
.lightbox-counter { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); color:rgba(255,255,255,0.5); font-size:13px; }
.gallery-main { cursor:zoom-in; }
