/* ================================================================
   PfotenEden – Premium Pet Shop
   Primary #4F46E5 | Secondary #14B8A6 | Accent #F59E0B
   ================================================================ */

:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #6366F1;
    --secondary: #14B8A6;
    --secondary-dark: #0D9488;
    --accent: #F59E0B;
    --accent-light: #FBBF24;
    --bg: #F8FAFC;
    --text: #0F172A;
    --text-muted: #64748B;
    --gray: #E2E8F0;
    --white: #FFFFFF;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
    --shadow-indigo: 0 8px 30px rgba(79, 70, 229, 0.25);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Poppins', sans-serif;
    --ease: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body.loading { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--ease); }
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--text); }

/* Loader */
.page-loader { position: fixed; inset: 0; z-index: 99999; background: var(--text); display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.5s, visibility 0.5s; }
.page-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-paw { font-size: 3rem; color: var(--secondary); animation: pawBounce 1s ease infinite; margin-bottom: 1rem; }
@keyframes pawBounce { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-12px) rotate(-10deg)} }
.loader-text { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); margin-bottom: 1.25rem; }
.loader-track { width: 120px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 3px; overflow: hidden; }
.loader-fill { height: 100%; width: 40%; background: linear-gradient(90deg, var(--primary), var(--secondary)); animation: loadSlide 1.2s ease infinite; }
@keyframes loadSlide { 0%{transform:translateX(-100%)} 100%{transform:translateX(350%)} }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1050; height: var(--header-h); transition: all var(--ease); }
.site-header.scrolled { background: rgba(248,250,252,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: var(--shadow); }
.site-header:not(.scrolled) { background: transparent; }
.site-header:not(.scrolled) .nav-item { color: rgba(255,255,255,0.9); }
.site-header:not(.scrolled) .nav-item:hover, .site-header:not(.scrolled) .nav-item.active { color: var(--white); }
.site-header:not(.scrolled) .brand-name { color: var(--white); }
.site-header:not(.scrolled) .nav-burger span { background: var(--white); }

.inner-page .site-header { background: rgba(248,250,252,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: var(--shadow); }
.inner-page .site-header .nav-item { color: var(--text-muted) !important; }
.inner-page .site-header .nav-item:hover, .inner-page .site-header .nav-item.active { color: var(--primary) !important; }
.inner-page .site-header .brand-name { color: var(--text); }
.inner-page .site-header .nav-burger span { background: var(--text); }

.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-icon { width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; box-shadow: var(--shadow-indigo); }
.brand-name { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav-item { padding: 0.5rem 1rem; font-family: var(--font-accent); font-size: 0.875rem; font-weight: 500; color: var(--text-muted); border-radius: 50px; transition: all var(--ease); }
.nav-item:hover, .nav-item.active { color: var(--primary); background: rgba(79,70,229,0.08); }
.site-header.scrolled .nav-item { color: var(--text-muted); }
.site-header.scrolled .nav-item:hover, .site-header.scrolled .nav-item.active { color: var(--primary); }
.nav-end { display: flex; align-items: center; gap: 1rem; }

.btn-cta { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.4rem; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white) !important; font-family: var(--font-accent); font-size: 0.85rem; font-weight: 600; border-radius: 50px; box-shadow: var(--shadow-indigo); transition: all var(--ease); border: none; cursor: pointer; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(79,70,229,0.35); color: var(--white) !important; }

.btn-teal { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); box-shadow: 0 8px 25px rgba(20,184,166,0.3); color: var(--white) !important; }
.btn-teal:hover { color: var(--white) !important; box-shadow: 0 12px 35px rgba(20,184,166,0.4); }

.btn-outline-light { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.4rem; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); color: var(--white) !important; font-weight: 600; font-size: 0.85rem; border: 2px solid rgba(255,255,255,0.35); border-radius: 50px; transition: all var(--ease); }
.btn-outline-light:hover { background: var(--white); color: var(--primary) !important; border-color: var(--white); }

.btn-accent { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: var(--text) !important; box-shadow: 0 8px 25px rgba(245,158,11,0.3); }
.btn-accent:hover { color: var(--text) !important; }

.btn-lg { padding: 0.95rem 2rem; font-size: 0.95rem; }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--ease); }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Section utils */
.section { padding: 5.5rem 0; }
.section-sm { padding: 4rem 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-accent); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); margin-bottom: 0.75rem; }
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--primary); border-radius: 2px; }
.section-title { font-size: clamp(1.85rem, 3.5vw, 2.65rem); margin-bottom: 0.85rem; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; }
.text-center .section-sub { margin: 0 auto; }

.wave-divider { line-height: 0; margin-bottom: -1px; }
.wave-divider svg { width: 100%; height: 50px; }

.bg-white { background: var(--white); }
.bg-gradient-soft { background: linear-gradient(135deg, rgba(79,70,229,0.04) 0%, rgba(20,184,166,0.06) 100%); }
.bg-glass { background: rgba(255,255,255,0.7); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.5); }
.bg-dark-gradient { background: linear-gradient(135deg, var(--text) 0%, #1e293b 100%); color: var(--white); }
.bg-dark-gradient .section-title, .bg-dark-gradient h2, .bg-dark-gradient h3 { color: var(--white); }
.bg-dark-gradient .section-sub, .bg-dark-gradient .eyebrow { color: rgba(255,255,255,0.75); }
.bg-dark-gradient .eyebrow { color: var(--secondary); }
.bg-dark-gradient .eyebrow::before { background: var(--secondary); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(125deg, rgba(15,23,42,0.85) 0%, rgba(79,70,229,0.55) 50%, rgba(20,184,166,0.35) 100%); }
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle { position: absolute; width: 8px; height: 8px; background: rgba(255,255,255,0.15); border-radius: 50%; animation: particleFloat 8s ease-in-out infinite; }
.particle:nth-child(1){top:20%;left:10%;animation-delay:0s}
.particle:nth-child(2){top:60%;left:80%;animation-delay:-2s;width:12px;height:12px}
.particle:nth-child(3){top:40%;left:60%;animation-delay:-4s}
.particle:nth-child(4){top:75%;left:25%;animation-delay:-1s;width:6px;height:6px}
.particle:nth-child(5){top:15%;left:70%;animation-delay:-3s}
@keyframes particleFloat { 0%,100%{transform:translateY(0) scale(1);opacity:0.3} 50%{transform:translateY(-30px) scale(1.2);opacity:0.7} }

.hero-inner { position: relative; z-index: 2; padding: calc(var(--header-h) + 3rem) 0 4rem; }
.hero-content { max-width: 640px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 1rem; background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--secondary); margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); color: var(--white); margin-bottom: 1.25rem; line-height: 1.08; }
.hero h1 span { background: linear-gradient(90deg, var(--secondary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-lead { font-size: 1.15rem; color: rgba(255,255,255,0.88); margin-bottom: 2rem; max-width: 520px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-float-badge { position: absolute; right: 8%; bottom: 20%; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-lg); display: none; animation: floatBadge 5s ease-in-out infinite; z-index: 3; }
@media(min-width:992px){ .hero-float-badge{display:flex;align-items:center;gap:1rem} }
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-float-badge .icon-wrap { width: 52px; height: 52px; background: linear-gradient(135deg, var(--accent), var(--accent-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--white); }
.hero-float-badge strong { display: block; font-family: var(--font-head); font-size: 1.1rem; }
.hero-float-badge span { font-size: 0.8rem; color: var(--text-muted); }

/* Feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: -4rem; position: relative; z-index: 10; }
.feature-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem 1.75rem; box-shadow: var(--shadow-md); transition: all var(--ease); border: 1px solid var(--gray); }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; color: var(--white); margin-bottom: 1.25rem; }
.feature-icon.indigo { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.feature-icon.teal { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }
.feature-icon.amber { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: var(--text); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Category cards */
.cat-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 280px; display: block; transition: transform var(--ease); }
.cat-card:hover { transform: translateY(-6px) scale(1.02); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.cat-card:hover img { transform: scale(1.08); }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0.15) 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem; transition: background var(--ease); }
.cat-card:hover .cat-card-overlay { background: linear-gradient(to top, rgba(79,70,229,0.88) 0%, rgba(79,70,229,0.2) 55%); }
.cat-card-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; margin-bottom: 0.75rem; }
.cat-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 0.25rem; }
.cat-card span { color: rgba(255,255,255,0.7); font-size: 0.82rem; }

/* Zig-zag Why Us */
.zigzag-item { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.zigzag-item:last-child { margin-bottom: 0; }
.zigzag-item.reverse { direction: rtl; }
.zigzag-item.reverse > * { direction: ltr; }
.zigzag-visual { position: relative; }
.zigzag-visual .blob { position: absolute; width: 80%; height: 80%; border-radius: 50%; filter: blur(60px); opacity: 0.25; z-index: 0; }
.zigzag-visual .blob.indigo { background: var(--primary); top: 10%; left: 10%; }
.zigzag-visual .blob.teal { background: var(--secondary); bottom: 10%; right: 10%; }
.zigzag-icon-box { position: relative; z-index: 1; width: 100%; max-width: 320px; aspect-ratio: 1; background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; margin: 0 auto; border: 1px solid var(--gray); transition: all var(--ease); }
.zigzag-item:hover .zigzag-icon-box { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.zigzag-icon-box i { font-size: 4rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.zigzag-text h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.zigzag-text p { color: var(--text-muted); font-size: 1rem; }

/* Testimonial Slider */
.testimonial-slider-wrap { position: relative; overflow: hidden; padding: 1rem 0; }
.testimonial-track { display: flex; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.testimonial-slide { flex: 0 0 100%; padding: 0 0.5rem; }
@media(min-width:768px){ .testimonial-slide { flex: 0 0 50%; } }
@media(min-width:992px){ .testimonial-slide { flex: 0 0 33.333%; } }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); height: 100%; border: 1px solid var(--gray); transition: all var(--ease); position: relative; }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card::before { content: '\201C'; font-family: var(--font-head); font-size: 4rem; color: var(--primary); opacity: 0.12; position: absolute; top: 0.5rem; right: 1.5rem; line-height: 1; }
.testimonial-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 1rem; }
.testimonial-quote { font-size: 0.95rem; color: var(--text-muted); font-style: italic; margin-bottom: 1.5rem; line-height: 1.75; }
.testimonial-user { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-head); }
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-pet { font-size: 0.8rem; color: var(--secondary); font-weight: 500; }
.testimonial-city { font-size: 0.78rem; color: var(--text-muted); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.slider-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gray); background: var(--white); color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--ease); }
.slider-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray); border: none; cursor: pointer; transition: all var(--ease); padding: 0; }
.slider-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* Newsletter */
.newsletter-box { background: linear-gradient(135deg, var(--primary) 0%, #6366F1 50%, var(--secondary) 100%); border-radius: var(--radius-xl); padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden; }
.newsletter-box::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: rgba(255,255,255,0.08); border-radius: 50%; }
.newsletter-box h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.35rem); margin-bottom: 0.75rem; position: relative; }
.newsletter-box p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; position: relative; max-width: 480px; margin-left: auto; margin-right: auto; }
.nl-form { display: flex; max-width: 460px; margin: 0 auto; gap: 0.75rem; position: relative; }
.nl-form input { flex: 1; padding: 1rem 1.5rem; border: none; border-radius: 50px; font-family: var(--font-body); background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.nl-form input::placeholder { color: rgba(255,255,255,0.55); }
.nl-form input:focus { outline: none; background: rgba(255,255,255,0.22); }
.nl-form button { padding: 1rem 1.5rem; background: var(--white); color: var(--primary); border: none; border-radius: 50px; font-weight: 600; cursor: pointer; transition: all var(--ease); font-family: var(--font-accent); }
.nl-form button:hover { transform: scale(1.05); box-shadow: var(--shadow-md); }

/* Product cards */
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray); transition: all var(--ease); height: 100%; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-img { position: relative; height: 240px; overflow: hidden; background: var(--bg); }
.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-badge { position: absolute; top: 1rem; left: 1rem; padding: 0.3rem 0.75rem; background: var(--accent); color: var(--text); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; border-radius: 50px; }
.product-badge.sale { background: #EF4444; color: var(--white); }
.product-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-cat { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--secondary); margin-bottom: 0.35rem; }
.product-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; transition: color var(--ease); }
.product-card:hover .product-body h3 { color: var(--primary); }
.product-stars { color: var(--accent); font-size: 0.78rem; margin-bottom: 0.75rem; }
.product-stars span { color: var(--text-muted); margin-left: 0.25rem; }
.product-price { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1.25rem; margin-top: auto; }
.price-current { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: var(--primary); }
.price-old { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.btn-cart { width: 100%; padding: 0.8rem; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); border: none; border-radius: 12px; font-family: var(--font-accent); font-weight: 600; font-size: 0.875rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all var(--ease); }
.btn-cart:hover { box-shadow: var(--shadow-indigo); transform: translateY(-2px); }

/* Service cards */
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray); transition: all var(--ease); height: 100%; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 1.75rem; }
.service-card-icon { width: 48px; height: 48px; background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(20,184,166,0.15)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; margin-bottom: 1rem; }
.service-card-body h3 { font-size: 1.15rem; margin-bottom: 0.65rem; }
.service-card-body p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Page hero inner */
.page-hero { padding: calc(var(--header-h) + 3rem) 0 3rem; background: linear-gradient(160deg, rgba(79,70,229,0.06) 0%, rgba(20,184,166,0.08) 100%); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: -100px; right: -100px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(79,70,229,0.08), transparent 70%); border-radius: 50%; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; position: relative; }
.page-hero .lead { color: var(--text-muted); font-size: 1.1rem; position: relative; max-width: 560px; }
.breadcrumb-custom { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; position: relative; }
.breadcrumb-custom a { color: var(--primary); font-weight: 500; }

/* About */
.about-img-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-stat-float { position: absolute; bottom: -20px; right: -20px; background: var(--white); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-md); text-align: center; }
.about-stat-float strong { font-family: var(--font-head); font-size: 2rem; color: var(--primary); display: block; line-height: 1; }
.about-stat-float span { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-item { text-align: center; padding: 2rem 1rem; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--gray); transition: transform var(--ease); }
.stat-item:hover { transform: translateY(-5px); }
.stat-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.35rem; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

.team-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); text-align: center; transition: all var(--ease); border: 1px solid var(--gray); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.team-img { height: 280px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 1.75rem; }
.team-role { color: var(--secondary); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.65rem; }

.philosophy-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); border-left: 4px solid var(--primary); height: 100%; }
.philosophy-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.philosophy-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* Contact */
.contact-card { display: flex; gap: 1.25rem; padding: 1.5rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 1.25rem; border: 1px solid var(--gray); transition: all var(--ease); }
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.contact-card-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(20,184,166,0.15)); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; flex-shrink: 0; }
.contact-form-box { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid var(--gray); }
.form-label { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; display: block; font-family: var(--font-accent); }
.form-input { width: 100%; padding: 0.875rem 1.25rem; border: 2px solid var(--gray); border-radius: 12px; font-family: var(--font-body); background: var(--bg); transition: all var(--ease); margin-bottom: 1.25rem; }
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(79,70,229,0.1); background: var(--white); }
textarea.form-input { min-height: 140px; resize: vertical; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 380px; margin-top: 3rem; border: 1px solid var(--gray); }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* FAQ */
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 0.85rem; box-shadow: var(--shadow); border: 1px solid var(--gray); overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--text); text-align: left; transition: color var(--ease); }
.faq-q:hover { color: var(--primary); }
.faq-q i { color: var(--primary); transition: transform var(--ease); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; color: var(--text-muted); font-size: 0.95rem; }

/* Shop filter */
.shop-toolbar { background: var(--white); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; box-shadow: var(--shadow); margin-bottom: 2rem; border: 1px solid var(--gray); display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.shop-search { position: relative; flex: 1; min-width: 200px; max-width: 360px; }
.shop-search i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.shop-search input { width: 100%; padding: 0.75rem 1rem 0.75rem 2.75rem; border: 2px solid var(--gray); border-radius: 50px; font-family: var(--font-body); background: var(--bg); }
.shop-search input:focus { outline: none; border-color: var(--primary); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-chip { padding: 0.45rem 1rem; border: none; border-radius: 50px; background: var(--gray); font-size: 0.82rem; font-weight: 500; color: var(--text-muted); cursor: pointer; transition: all var(--ease); font-family: var(--font-accent); }
.filter-chip:hover, .filter-chip.active { background: var(--primary); color: var(--white); }

/* Policy */
.policy-wrap { max-width: 820px; margin: 0 auto; padding: 3rem 0 5rem; }
.policy-wrap h2 { font-size: 1.4rem; margin: 2.25rem 0 0.85rem; color: var(--primary); }
.policy-wrap h3 { font-size: 1.05rem; margin: 1.25rem 0 0.5rem; }
.policy-wrap p, .policy-wrap li { color: var(--text-muted); font-size: 0.975rem; margin-bottom: 0.75rem; }
.policy-wrap ul { padding-left: 1.5rem; list-style: disc; }
.policy-date { display: inline-block; padding: 0.4rem 1rem; background: rgba(79,70,229,0.08); color: var(--primary); border-radius: 50px; font-size: 0.82rem; font-weight: 600; margin-bottom: 1.5rem; }

/* Footer */
.site-footer { background: var(--text); color: rgba(255,255,255,0.7); }
.footer-curve { color: var(--bg); line-height: 0; }
.footer-body { padding: 4rem 0 3rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.footer-about { font-size: 0.925rem; line-height: 1.75; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: all var(--ease); }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); color: var(--white); }
.footer-title { font-family: var(--font-head); font-size: 1.05rem; color: var(--white); margin-bottom: 1.25rem; }
.footer-menu { list-style: none; }
.footer-menu li { margin-bottom: 0.55rem; }
.footer-menu a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all var(--ease); }
.footer-menu a:hover { color: var(--secondary); padding-left: 4px; }
.footer-nl-text { font-size: 0.9rem; margin-bottom: 1rem; }
.footer-nl-form { display: flex; }
.footer-nl-form input { flex: 1; padding: 0.75rem 1rem; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color: var(--white); border-radius: 12px 0 0 12px; font-family: var(--font-body); }
.footer-nl-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-nl-form button { padding: 0.75rem 1rem; background: var(--primary); color: var(--white); border: none; border-radius: 0 12px 12px 0; cursor: pointer; transition: background var(--ease); }
.footer-nl-form button:hover { background: var(--primary-light); }
.footer-contact-info p { font-size: 0.875rem; margin-bottom: 0.4rem; }
.footer-contact-info i { color: var(--secondary); margin-right: 0.5rem; width: 16px; }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; }
.footer-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; font-size: 0.85rem; }
.footer-bar-inner i { color: #EF4444; }

/* Float buttons */
.whatsapp-float { position: fixed; bottom: 2rem; left: 2rem; width: 56px; height: 56px; background: #25D366; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,0.4); z-index: 998; transition: all var(--ease); animation: waPulse 2s ease infinite; }
.whatsapp-float:hover { transform: scale(1.08); color: var(--white); }
@keyframes waPulse { 0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.4)} 50%{box-shadow:0 6px 32px rgba(37,211,102,0.6)} }

.scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px; background: var(--primary); color: var(--white); border: none; border-radius: 50%; cursor: pointer; z-index: 998; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-indigo); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all var(--ease); }
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* Responsive */
@media(max-width:991px){
    .nav-links { position: fixed; top: 0; right: -100%; width: 85%; max-width: 320px; height: 100vh; background: var(--white); flex-direction: column; align-items: flex-start; padding: calc(var(--header-h) + 2rem) 2rem 2rem; box-shadow: var(--shadow-lg); transition: right var(--ease); z-index: 1040; gap: 0; }
    .nav-links.open { right: 0; }
    .nav-links li { width: 100%; }
    .nav-item { display: block; padding: 0.875rem 0; width: 100%; border-bottom: 1px solid var(--gray); border-radius: 0; color: var(--text-muted) !important; }
    .nav-burger { display: flex; }
    .site-header:not(.scrolled) .nav-item { color: var(--text-muted) !important; }
    .feature-grid { margin-top: 2rem; }
    .zigzag-item, .zigzag-item.reverse { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .nl-form { flex-direction: column; }
}
@media(max-width:767px){
    :root { --header-h: 72px; }
    .section { padding: 4rem 0; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn-cta, .hero-btns .btn-outline-light { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-box { padding: 3rem 1.5rem; }
    .footer-bar-inner { flex-direction: column; text-align: center; }
    .whatsapp-float { bottom: 5.5rem; left: 1.25rem; width: 50px; height: 50px; font-size: 1.4rem; }
}
@media(max-width:480px){ .stats-grid { grid-template-columns: 1fr; } }

/* Page transition */
#main { animation: pageIn 0.5s ease; }
@keyframes pageIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
