/* ===== 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; overflow-x:hidden; }
body { font-family:var(--font-body); color:var(--gray-700); background:var(--cream); line-height:1.7; font-size:15px; overflow-x:hidden; max-width:100vw; }
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:50px; }
.logo-light { display:block; }
.logo-dark { display:none; }
.header.scrolled .logo-light { display:none; }
.header.scrolled .logo-dark { display:block; }
.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-logo { display:block; margin-bottom:20px; padding-bottom:16px; border-bottom:1px solid var(--gray-200); }
.mobile-nav-logo img { height:32px; }
.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(220px,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 var(--gray-200); box-shadow:0 2px 8px rgba(10,22,40,0.04); }
.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-light); position:relative; overflow:hidden; padding:80px 0; }

.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:linear-gradient(180deg, #0c1a30 0%, #0f2240 50%, #0a1628 100%); padding:140px 0 50px; position:relative; overflow:hidden; }
.page-hero::after { content:''; position:absolute; bottom:0; left:0; right:0; height:4px; background:var(--gold); }
.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:8px; font-size:13px; margin-top:16px; background:rgba(255,255,255,0.06); padding:8px 20px; border-radius:50px; }
.breadcrumb a { color:rgba(255,255,255,0.75); transition:var(--transition); font-weight:500; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb .sep { color:var(--gold); font-size:10px; opacity:0.8; }
.breadcrumb .current { color:var(--gold); font-weight:600; }

/* ===== PRODUCTS PAGE ===== */
.products-layout { display:grid; grid-template-columns:220px 1fr; gap:28px; padding:40px 0 60px; overflow:hidden; }
.products-content { min-width:0; overflow:hidden; }
.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); }
.mobile-cats { display:none; gap:6px; overflow-x:auto; -webkit-overflow-scrolling:touch; padding:0 0 8px; margin-bottom:12px; scrollbar-width:none; }
.mobile-cats::-webkit-scrollbar { display:none; }
.mobile-cats a { flex-shrink:0; padding:6px 14px; border-radius:20px; font-size:12px; font-weight:500; color:var(--gray-500); background:var(--gray-100); border:1px solid var(--gray-200); white-space:nowrap; transition:all 0.2s; }
.mobile-cats a.mc-active { background:var(--navy); color:#fff; border-color:var(--navy); }

/* ===== 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%; }


/* ===== LAYOUT 4: IMMERSIVE ===== */
/* ===== LAYOUT 4: PRESENTATION ===== */
.pres { position:relative; height:100vh; overflow:hidden; }
.ps { position:absolute; inset:0; display:flex; align-items:center; opacity:0; visibility:hidden; transition:none; overflow:hidden; }
.ps.ps-on { opacity:1; visibility:visible; z-index:2; }
.ps-z { position:relative; z-index:3; width:100%; }
.ps-bg { position:absolute; inset:0; }
.ps-bg img { width:100%; height:100%; object-fit:cover; }
.ps-overlay { position:absolute; inset:0; z-index:1; }
.ps[data-theme="dark"] { color:var(--white); }
.ps[data-theme="light"] { color:var(--gray-700); }
.ps[data-theme="cream"] { background:linear-gradient(180deg, #faf7f2 0%, #f5efe6 100%); color:var(--gray-700); }
.ps[data-theme="white"] { background:linear-gradient(180deg, #ffffff 0%, #faf8f5 100%); color:var(--gray-700); }

/* Hero */
.ps-hero-title { font-family:var(--font-display); font-size:clamp(40px,7vw,84px); font-weight:600; color:#fff; line-height:1.08; margin-bottom:20px; }
.ps-hero-title em { font-style:italic; color:var(--gold); }
.ps-hero-layout { display:flex; align-items:center; gap:60px; }
.ps-hero-stats { display:flex; flex-direction:column; gap:16px; min-width:160px; }
.ps-stat-card { background:rgba(255,255,255,0.06); backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,0.08); border-radius:var(--radius); padding:20px 24px; text-align:center; transition:var(--transition); }
.ps-stat-card:hover { background:rgba(201,169,110,0.12); border-color:rgba(201,169,110,0.25); }
.ps-stat-num { font-family:var(--font-display); font-size:36px; font-weight:700; color:var(--gold); display:block; line-height:1; }
.ps-stat-label { font-size:11px; color:rgba(255,255,255,0.45); text-transform:uppercase; letter-spacing:2px; margin-top:6px; display:block; }
.ps-scroll-cue { position:absolute; bottom:24px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:6px; color:rgba(255,255,255,0.3); font-size:10px; letter-spacing:2px; text-transform:uppercase; z-index:5; }
.ps-scroll-mouse { width:20px; height:32px; border:2px solid rgba(255,255,255,0.25); border-radius:10px; position:relative; }
.ps-scroll-mouse::after { content:''; width:3px; height:6px; background:var(--gold); border-radius:2px; position:absolute; top:5px; left:50%; transform:translateX(-50%); animation:scrollMouse 2s ease infinite; }

/* Story split */
.ps-split { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.ps-split-img { position:relative; border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/5; max-height:70vh; }
.ps-split-img img { width:100%; height:100%; object-fit:cover; }
.ps-split-accent { position:absolute; bottom:-8px; right:-8px; width:50%; height:50%; border:3px solid var(--gold); border-radius:var(--radius-lg); z-index:-1; }
.ps-story-text { font-size:15px; line-height:1.9; color:var(--gray-500); margin-bottom:28px; }
.ps-story-text p { margin-bottom:12px; }

/* Features grid */
.ps-feat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.ps-feat-item { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.06); border-radius:var(--radius-lg); padding:32px 24px; position:relative; overflow:hidden; transition:var(--transition); text-align:center; }
.ps-feat-item:hover { background:rgba(201,169,110,0.08); border-color:rgba(201,169,110,0.2); transform:translateY(-4px); }
.ps-feat-line { position:absolute; top:0; left:50%; transform:translateX(-50%); width:40px; height:3px; background:var(--gold); border-radius:0 0 3px 3px; }
.ps-feat-num { font-family:var(--font-display); font-size:60px; font-weight:700; color:rgba(201,169,110,0.06); position:absolute; top:6px; right:14px; line-height:1; }
.ps-feat-icon { width:56px; height:56px; margin:0 auto 18px; border-radius:50%; background:linear-gradient(135deg,var(--gold),var(--gold-dark)); display:flex; align-items:center; justify-content:center; color:#fff; font-size:20px; }
.ps-feat-item h3 { font-family:var(--font-display); font-size:19px; font-weight:600; color:#fff; margin-bottom:8px; }
.ps-feat-item p { font-size:13px; color:rgba(255,255,255,0.5); line-height:1.7; }

/* Particles */
.ps-particles { position:absolute; inset:0; z-index:2; pointer-events:none; overflow:hidden; }

/* ===== FINALE SLIDE ===== */
.ps-finale-bg { position:absolute; inset:0; background:linear-gradient(170deg, #0c1a30 0%, #0a1628 50%, #091220 100%); }
.ps-finale-bg::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.04) 0%, transparent 60%); }
.ps-finale { display:flex; flex-direction:column; justify-content:center; min-height:92vh; padding:60px 0 30px; }
.ps-finale-cta { text-align:center; margin-bottom:auto; padding-top:20px; }
.ps-finale-icon { width:48px; height:48px; border-radius:50%; border:1px solid rgba(201,169,110,0.2); display:inline-flex; align-items:center; justify-content:center; margin-bottom:24px; color:var(--gold); font-size:16px; }
.ps-finale-footer { padding-top:40px; }
.ps-ff-grid { display:grid; grid-template-columns:1.8fr 1fr 1fr 1.2fr; gap:40px; }
.ps-ff-logo { height:32px; margin-bottom:14px; }
.ps-ff-logo-text { font-family:var(--font-display); font-size:22px; font-weight:600; color:rgba(255,255,255,0.7); display:block; margin-bottom:14px; }
.ps-ff-desc { font-size:13px; color:rgba(255,255,255,0.25); line-height:1.7; margin-bottom:16px; max-width:260px; }
.ps-ff-social { display:flex; gap:8px; }
.ps-ff-social a { width:28px; height:28px; border-radius:50%; border:1px solid rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.2); font-size:11px; transition:all 0.3s; }
.ps-ff-social a:hover { border-color:rgba(201,169,110,0.4); color:var(--gold); }
.ps-ff-heading { color:rgba(201,169,110,0.7); font-size:10px; text-transform:uppercase; letter-spacing:2px; margin-bottom:16px; font-weight:600; font-family:var(--font-body); }
.ps-ff-nav { display:flex; flex-direction:column; gap:0; }
.ps-ff-nav a { color:rgba(255,255,255,0.25); font-size:13px; text-decoration:none; padding:4px 0; transition:color 0.3s; }
.ps-ff-nav a:hover { color:rgba(255,255,255,0.6); }
.ps-ff-contact { display:flex; flex-direction:column; gap:10px; }
.ps-ff-contact-item { display:flex; align-items:flex-start; gap:10px; color:rgba(255,255,255,0.25); font-size:13px; text-decoration:none; transition:color 0.3s; }
.ps-ff-contact-item:hover { color:rgba(255,255,255,0.5); }
.ps-ff-contact-item i { color:rgba(201,169,110,0.4); font-size:11px; margin-top:3px; flex-shrink:0; }
.ps-ff-contact-item span { line-height:1.5; }
.ps-finale-copy { font-size:10px; color:rgba(255,255,255,0.1); margin-top:auto; padding-top:20px; text-align:center; letter-spacing:0.5px; }

/* Progress bar */
.pres-bar { position:fixed; top:0; left:0; right:0; height:3px; z-index:1002; background:rgba(0,0,0,0.08); }
.pres-bar-fill { height:100%; background:var(--gold); width:0; transition:width 0.6s ease; }

/* Side dots */
.pres-side { position:fixed; right:20px; top:50%; transform:translateY(-50%); z-index:1002; display:flex; flex-direction:column; gap:10px; }
.pres-side .sd { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.25); border:none; cursor:pointer; transition:all 0.4s ease; backdrop-filter:blur(4px); }
.pres-side .sd.sd-on { background:var(--gold); height:28px; border-radius:4px; }
.pres-side .sd-footer { background:transparent; border:1px solid rgba(255,255,255,0.2); width:6px; height:6px; margin-top:6px; }
.pres-side[data-t='light'] .sd-footer { border-color:rgba(10,22,40,0.15); }
.pres-side[data-t="light"] .sd { background:rgba(10,22,40,0.15); }
.pres-side[data-t="light"] .sd.sd-on { background:var(--gold); }

/* Slide transitions */
/* Transitions handled by JS for smooth crossfade */

/* Content animations */
/* ===== Per-slide animations — calm, elegant ===== */
.pa { opacity:0; }
.ps.ps-on .pa { animation-fill-mode:forwards; }

/* Unified gentle reveal for all slides */
.ps.ps-on .pa { animation:gentleReveal 1.2s cubic-bezier(0.25,0.1,0.25,1) forwards; }
.ps.ps-on .pa-d0 { animation-delay:0.3s; }
.ps.ps-on .pa-d1 { animation-delay:0.6s; }
.ps.ps-on .pa-d2 { animation-delay:0.9s; }
.ps.ps-on .pa-d3 { animation-delay:1.2s; }
.ps.ps-on .pa-d4 { animation-delay:1.6s; }

/* Story image — gentle slide from left */
.pa-slide-left { transform:translateX(-40px) !important; }
.ps.ps-on .pa-slide-left { animation:gentleSlideLeft 1.4s cubic-bezier(0.25,0.1,0.25,1) 0.4s forwards; }

/* Finale gets slightly longer timing */
.ps.ps-finale-slide.ps-on .pa-d0 { animation-delay:0.4s; }
.ps.ps-finale-slide.ps-on .pa-d1 { animation-delay:0.8s; }
.ps.ps-finale-slide.ps-on .pa-d2 { animation-delay:1.1s; }
.ps.ps-finale-slide.ps-on .pa-d3 { animation-delay:1.4s; }
.ps.ps-finale-slide.ps-on .pa-d4 { animation-delay:1.8s; }

/* Core keyframes — subtle movement */
@keyframes gentleReveal { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
@keyframes gentleSlideLeft { from{opacity:0;transform:translateX(-40px)} to{opacity:1;transform:translateX(0)} }
@keyframes dividerGrow { from{opacity:0;width:0} to{opacity:1;width:80px} }

/* === Card staggers — same gentle reveal, just staggered === */

/* Hero stat cards */
.ps-stat-card { opacity:0; }
.ps.ps-hero.ps-on .ps-stat-card:nth-child(1) { animation:gentleReveal 1s ease 1.2s forwards; }
.ps.ps-hero.ps-on .ps-stat-card:nth-child(2) { animation:gentleReveal 1s ease 1.35s forwards; }
.ps.ps-hero.ps-on .ps-stat-card:nth-child(3) { animation:gentleReveal 1s ease 1.5s forwards; }

/* Feature cards */
.ps-feat-item { opacity:0; }
.ps.ps-feats.ps-on .ps-feat-item:nth-child(1) { animation:gentleReveal 0.9s ease 0.7s forwards; }
.ps.ps-feats.ps-on .ps-feat-item:nth-child(2) { animation:gentleReveal 0.9s ease 0.85s forwards; }
.ps.ps-feats.ps-on .ps-feat-item:nth-child(3) { animation:gentleReveal 0.9s ease 1.0s forwards; }
.ps.ps-feats.ps-on .ps-feat-item:nth-child(4) { animation:gentleReveal 0.9s ease 1.15s forwards; }

/* Product cards */
.ps.ps-prods.ps-on .product-card { opacity:0; }
.ps.ps-prods.ps-on .product-card:nth-child(1) { animation:gentleReveal 0.8s ease 0.6s forwards; }
.ps.ps-prods.ps-on .product-card:nth-child(2) { animation:gentleReveal 0.8s ease 0.72s forwards; }
.ps.ps-prods.ps-on .product-card:nth-child(3) { animation:gentleReveal 0.8s ease 0.84s forwards; }
.ps.ps-prods.ps-on .product-card:nth-child(4) { animation:gentleReveal 0.8s ease 0.96s forwards; }
.ps.ps-prods.ps-on .product-card:nth-child(5) { animation:gentleReveal 0.8s ease 1.08s forwards; }
.ps.ps-prods.ps-on .product-card:nth-child(6) { animation:gentleReveal 0.8s ease 1.2s forwards; }

/* Category cards */
.ps.ps-cats.ps-on .cat-card { opacity:0; }
.ps.ps-cats.ps-on .cat-card:nth-child(1) { animation:gentleReveal 0.8s ease 0.7s forwards; }
.ps.ps-cats.ps-on .cat-card:nth-child(2) { animation:gentleReveal 0.8s ease 0.82s forwards; }
.ps.ps-cats.ps-on .cat-card:nth-child(3) { animation:gentleReveal 0.8s ease 0.94s forwards; }
.ps.ps-cats.ps-on .cat-card:nth-child(4) { animation:gentleReveal 0.8s ease 1.06s forwards; }
.ps.ps-cats.ps-on .cat-card:nth-child(5) { animation:gentleReveal 0.8s ease 1.18s forwards; }
.ps.ps-cats.ps-on .cat-card:nth-child(6) { animation:gentleReveal 0.8s ease 1.3s forwards; }

/* Brand items */
.ps.ps-brands.ps-on .brand-item { opacity:0; }
.ps.ps-brands.ps-on .brand-item:nth-child(1) { animation:gentleReveal 0.8s ease 0.7s forwards; }
.ps.ps-brands.ps-on .brand-item:nth-child(2) { animation:gentleReveal 0.8s ease 0.82s forwards; }
.ps.ps-brands.ps-on .brand-item:nth-child(3) { animation:gentleReveal 0.8s ease 0.94s forwards; }
.ps.ps-brands.ps-on .brand-item:nth-child(4) { animation:gentleReveal 0.8s ease 1.06s forwards; }
.ps.ps-brands.ps-on .brand-item:nth-child(5) { animation:gentleReveal 0.8s ease 1.18s forwards; }
.ps.ps-brands.ps-on .brand-item:nth-child(6) { animation:gentleReveal 0.8s ease 1.3s forwards; }

/* Finale divider */
.ps-finale-divider { width:0; opacity:0; height:1px; background:linear-gradient(90deg,transparent,rgba(201,169,110,0.3),transparent); margin:0 auto 0; max-width:100%; overflow:hidden; }
.ps.ps-finale-slide.ps-on .ps-finale-divider { animation:dividerGrow 1.4s ease 1.4s forwards; }
/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.65s ease, transform 0.65s ease; }
.reveal.revealed { opacity:1; transform:translateY(0); }
.reveal.rv-d1 { transition-delay:0.1s; }
.reveal.rv-d2 { transition-delay:0.2s; }
.reveal.rv-d3 { transition-delay:0.3s; }
.reveal.rv-left { transform:translateX(-30px); }
.reveal.rv-left.revealed { transform:translateX(0); }
.reveal.rv-right { transform:translateX(30px); }
.reveal.rv-right.revealed { transform:translateX(0); }
.reveal.rv-scale { transform:scale(0.96); }
.reveal.rv-scale.revealed { transform:scale(1); }

/* ===== 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; }
    .products-layout .products-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
    .products-content { width:100%; min-width:0; overflow:hidden; }
    .sidebar-filters { display:none !important; }
    .mobile-cats { display:none !important; }
    .features-grid { grid-template-columns:repeat(2,1fr); }
    .footer-grid { grid-template-columns:1fr 1fr 1fr; gap:16px; margin-bottom:20px; }
    .footer-grid > .footer-brand { grid-column:1/-1; }
    .footer-brand .footer-desc { font-size:13px; margin-bottom:12px; }
    .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 */
    .header-inner { padding:14px 16px; }
    .nav { display:none; }
    .menu-toggle { display:flex; }
    .h-wa-btn span { display:none; }
    .h-wa-btn { padding:10px 14px; }
    
    /* Typography */
    .container { padding:0 16px; max-width:100%; overflow:hidden; box-sizing:border-box; }
    .section { padding:40px 0; }
    .section-title { font-size:26px; margin-bottom:14px; }
    .section-subtitle { font-size:14px; }
    .section-label { font-size:10px; letter-spacing:3px; margin-bottom:10px; }
    .section-head { flex-direction:column; align-items:flex-start; gap:10px; margin-bottom:6px; }
    
    /* Hero */
    .hero-split, .hero-centered { min-height:85vh; }
    .hero-title { font-size:32px; }
    .hero-desc { font-size:15px; margin-bottom:28px; }
    .hero-content { padding:110px 0 60px; }
    .hero-btns { flex-direction:column; align-items:stretch; gap:12px; }
    .slider { height:85vh; }
    .slide-title { font-size:28px; }
    .slide-desc { font-size:14px; }
    .slide-content { padding-bottom:100px; }
    .slide-btns { flex-direction:column; align-items:flex-start; gap:10px; }
    .slider-arrow { display:none; }
    .slider-dots { bottom:110px; }
    .hero-mini-slider { flex-wrap:wrap; gap:10px; justify-content:center; }
    .mini-slide { width:120px; height:75px; }
    .hero-stats-bar { position:relative; }
    .stats-row { gap:16px; flex-wrap:wrap; padding:20px 0; }
    .stat-n { font-size:20px; }
    .stat-l { font-size:10px; }
    
    /* Page Hero + Breadcrumb */
    .page-hero { padding:100px 0 35px; }
    .breadcrumb { font-size:12px; padding:6px 16px; gap:6px; }
    
    /* Features Bar */
    .features-bar { padding:30px 0; }
    .features-grid { grid-template-columns:1fr; gap:20px; }
    .feature-item { gap:12px; }
    .feature-icon { width:42px; height:42px; font-size:16px; }
    
    /* Categories */
    .categories-grid { grid-template-columns:repeat(2,1fr); gap:10px; }
    .cat-card { padding:20px 14px; }
    .cat-icon { width:48px; height:48px; font-size:18px; margin-bottom:12px; }
    .cat-name { font-size:15px; }
    .cat-icon-row { gap:20px; }
    .cat-icon-circle { width:56px; height:56px; font-size:20px; }
    .cat-icon-item span { font-size:12px; }
    
    /* Products Grid - mobile */
    * { box-sizing:border-box !important; }
    .products-grid, .products-grid.lg { display:grid !important; grid-template-columns:minmax(0,1fr) minmax(0,1fr) !important; gap:10px !important; margin-top:16px; width:100% !important; max-width:100% !important; }
    .products-layout .products-grid { grid-template-columns:minmax(0,1fr) minmax(0,1fr) !important; gap:10px !important; }
    .product-card { width:100% !important; max-width:100% !important; min-width:0 !important; overflow:hidden; }
    .product-img { aspect-ratio:3/4 !important; }
    .product-img img { width:100%; height:100%; object-fit:cover; }
    .product-info { padding:10px 10px 12px; }
    .product-name { font-size:14px; overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; }
    .product-desc { display:none; }
    .product-brand { font-size:10px; }
    .product-bottom { flex-direction:column; align-items:stretch; gap:6px; padding-top:8px; }
    .product-wa-btn { width:100%; justify-content:center; font-size:11px; padding:8px 10px; }
    .product-price { font-size:15px; }
    .product-size { font-size:11px; }
    .badge { font-size:9px !important; padding:3px 8px !important; }
    
    /* Products Layout (with sidebar) - HIDE sidebar on mobile */
    .products-layout { grid-template-columns:1fr !important; gap:0; padding:16px 0 40px; overflow:hidden; }
    .products-layout .products-grid { grid-template-columns:minmax(0,1fr) minmax(0,1fr) !important; gap:10px; }
    .mobile-cats { display:none !important; }
    .sidebar-filters { display:none !important; }
    .products-toolbar { flex-direction:column; gap:10px; align-items:flex-start; }
    .sort-select { width:100%; }
    
    /* Single Product */
    .product-detail { padding:30px 0 60px; }
    .product-detail-grid { grid-template-columns:1fr; gap:30px; }
    .product-gallery { position:static; }
    .gallery-main { aspect-ratio:1/1; border-radius:var(--radius); }
    .gallery-thumbs { grid-template-columns:repeat(4,1fr); gap:8px; }
    .product-detail-info .product-name { font-size:26px; }
    .product-detail-info .product-desc { font-size:14px; }
    .product-meta { gap:8px; }
    .meta-item { font-size:12px; padding:6px 12px; }
    .product-wa-section { padding:20px; }
    .product-wa-section h3 { font-size:18px; }
    .product-features-grid { grid-template-columns:1fr; gap:10px; }
    .feature-card { padding:14px; }
    .tabs-nav { overflow-x:auto; -webkit-overflow-scrolling:touch; }
    .tab-btn { padding:10px 16px; font-size:13px; white-space:nowrap; }
    .tab-content p { font-size:14px; }
    
    /* Magazine Layout */
    .magazine-grid { grid-template-columns:1fr; }
    .mag-hero-card { grid-template-columns:1fr; }
    .mag-hero-info { padding:20px; }
    .mag-hero-name { font-size:22px; }
    .cat-horiz-scroll { grid-template-columns:1fr 1fr; gap:10px; }
    .scroll-card { min-width:240px; max-width:240px; }
    
    /* Contact */
    .contact-grid { grid-template-columns:1fr; gap:24px; padding:40px 0; }
    .contact-form { padding:24px; }
    .contact-card { padding:18px; gap:14px; }
    .contact-card-icon { width:42px; height:42px; font-size:16px; }
    .form-row { grid-template-columns:1fr; gap:12px; }
    .form-control { padding:12px 14px; font-size:14px; }
    
    /* About */
    .about-grid { grid-template-columns:1fr; gap:30px; padding:40px 0; }
    .about-img { aspect-ratio:16/9; }
    .about-stats { grid-template-columns:repeat(3,1fr); gap:12px; }
    .stat-item { padding:14px 10px; }
    .stat-num { font-size:24px; }
    .stat-label { font-size:11px; }
    
    /* CTA */
    .cta-content { padding:50px 0; }
    .cta-section { padding:50px 0 !important; }
    .cta-title { font-size:26px; }
    .cta-desc { font-size:14px; margin-bottom:24px; }
    .cta-btns { flex-direction:column; align-items:center; gap:10px; }
    .cta-btns .btn { width:80%; max-width:280px; }
    
    /* Footer — ultra compact mobile */
    .footer-top { display:none; }
    .footer > .container { padding-top:24px; padding-bottom:10px; }
    .footer-grid { grid-template-columns:1fr 1fr 1fr; gap:12px; margin-bottom:14px; }
    .footer-grid > .footer-brand { grid-column:1/-1; text-align:center; padding-bottom:14px; margin-bottom:2px; border-bottom:1px solid rgba(255,255,255,0.06); }
    .footer-brand .footer-logo { justify-content:center; margin-bottom:6px; }
    .footer-brand .footer-logo img { height:28px; }
    .footer-brand .footer-desc { font-size:11px; line-height:1.6; margin-bottom:8px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
    .footer-brand .footer-social { justify-content:center; }
    .footer-brand .footer-social a { width:28px; height:28px; font-size:11px; }
    .footer-title { font-size:10px; letter-spacing:0.5px; margin-bottom:6px; opacity:0.5; }
    .footer-links a { padding:2px 0; font-size:12px; }
    .footer-contact-list { gap:4px; }
    .footer-contact-item { margin-bottom:0; font-size:11px; gap:6px; }
    .footer-contact-item i { font-size:10px; width:12px; }
    .footer-bottom { flex-direction:row; justify-content:space-between; padding:10px 0; font-size:10px; color:rgba(255,255,255,0.3); border-top:1px solid rgba(255,255,255,0.06); }
    .footer-bottom-links { gap:10px; }
    .footer-bottom-links a { font-size:10px; }
    
    /* Brands */
    .brands-row { gap:20px; margin-top:30px; }
    .brand-item { width:100px; height:50px; }
    
    /* Search */
    .search-modal { top:80px; width:95%; }
    
    /* Layout 4 Mobile */
    .pres { height:auto; overflow:visible; }
    .ps { position:relative; opacity:1 !important; visibility:visible !important; min-height:auto; padding:50px 0; }
    .ps.ps-on, .ps.ps-enter-up, .ps.ps-enter-down, .ps.ps-exit-up, .ps.ps-exit-down { animation:none !important; opacity:1 !important; transform:none !important; }
    .ps[data-theme="dark"] { min-height:80vh; }
    .pres-bar, .pres-side { display:none; }
    .ps-particles { display:none; }
    .pa { opacity:1 !important; transform:none !important; animation:none !important; }
    .ps-hero-layout { flex-direction:column; gap:30px; }
    .ps-hero-stats { flex-direction:row; gap:10px; }
    .ps-stat-card { flex:1; padding:14px 12px; }
    .ps-stat-num { font-size:24px; }
    .ps-scroll-cue { display:none; }
    .ps-split { grid-template-columns:1fr; gap:30px; }
    .ps-split-img { max-height:300px; aspect-ratio:16/9; }
    .ps-split-accent { display:none; }
    .ps-feat-grid { grid-template-columns:1fr 1fr; gap:12px; }
    .ps-finale { min-height:auto; padding:40px 0 20px; }
    .ps-feat-item, .cat-card, .brand-item, .product-card, .ps-stat-card { opacity:1 !important; animation:none !important; transform:none !important; }
    .ps-ff-grid { grid-template-columns:1fr 1fr; gap:24px 20px; }
    .ps-ff-brand { grid-column:1/-1; }
    .ps-ff-desc { max-width:100%; }
    .ps-finale-icon { width:40px; height:40px; font-size:14px; }
    .ps-feat-item { padding:22px 16px; }
    .ps-feat-icon { width:44px; height:44px; font-size:16px; }
    .ps-feat-item h3 { font-size:16px; }
    .ps-feat-num { font-size:40px; }
    
    /* WhatsApp Float */
    .wa-float { bottom:20px; right:16px; }
    .wa-float-btn { width:52px; height:52px; font-size:24px; }
    .wa-float-label { display:none; }
    
    /* Pagination */
    .pagination { gap:4px; }
    .pagination a, .pagination span { width:36px; height:36px; font-size:13px; }
}
@media (max-width:480px) {
    .container { padding:0 12px; }
    .products-grid, .products-grid.lg, .products-layout .products-grid { grid-template-columns:minmax(0,1fr) minmax(0,1fr) !important; gap:6px !important; }
    .product-info { padding:8px 8px 10px; }
    .product-name { font-size:13px; }
    .product-price { font-size:14px; }
    .product-wa-btn { font-size:10px; padding:6px 8px; }
    .product-img { aspect-ratio:1/1; }
    .products-layout .product-img { aspect-ratio:1/1; }
    .product-info { padding:8px 10px 12px; }
    .product-brand { font-size:9px; }
    .product-name { font-size:13px; }
    .product-price { font-size:15px; }
    .product-wa-btn { font-size:10px; padding:6px 10px; }
    .badge { padding:3px 8px; font-size:9px; }
    .product-badges { top:8px; left:8px; gap:4px; }
    .hero-title { font-size:28px; }
    .slide-title { font-size:24px; }
    .section-title { font-size:22px; }
    .page-hero { padding:90px 0 30px; }
    .page-hero .section-title { font-size:24px; }
    .categories-grid { grid-template-columns:1fr 1fr; gap:8px; }
    .cat-card { padding:16px 10px; }
    .cat-icon { width:40px; height:40px; font-size:16px; }
    .cat-name { font-size:13px; }
    .contact-form { padding:18px; }
    .about-stats { grid-template-columns:repeat(3,1fr); gap:8px; }
    .stat-num { font-size:20px; }
    .product-detail-info .product-name { font-size:22px; }
    .gallery-thumbs { grid-template-columns:repeat(4,1fr); gap:6px; }
    .cta-btns .btn { width:90%; }
    .ps-feat-grid { grid-template-columns:1fr; }
    .ps-hero-stats { flex-direction:column; }
    .ps-hero-title { font-size:28px !important; }
    .ps-ff-grid { grid-template-columns:1fr; gap:20px; }
    .ps-ff-brand { grid-column:auto; }
}

/* ===== 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; }
