/* =============================================================
   TERLIKÇIM SELIM — PREMIUM DESIGN SYSTEM v2
   Complete redesign: 3D slipper, animations, dark premium theme
   ============================================================= */

/* ---- Variables ---- */
:root {
    --primary: #ff5722;
    --primary-light: #ff7043;
    --primary-dark: #e64a19;
    --secondary: #ff9100;
    --accent: #00e5ff;
    --gold: #ffd740;
    --bg: #060b18;
    --bg-alt: #0c1225;
    --bg-card: #111a30;
    --surface: rgba(255,255,255,0.03);
    --glass: rgba(255,255,255,0.04);
    --glass-border: rgba(255,255,255,0.06);
    --glass-hover: rgba(255,255,255,0.08);
    --text: #e8edf5;
    --text-2: rgba(232,237,245,0.65);
    --text-3: rgba(232,237,245,0.35);
    --gradient: linear-gradient(135deg, #ff5722 0%, #ff9100 100%);
    --gradient-text: linear-gradient(135deg, #ff7043, #ffd740, #ff9100);
    --glow: 0 0 60px rgba(255,87,34,0.15);
    --glow-strong: 0 0 80px rgba(255,87,34,0.25);
    --shadow: 0 8px 40px rgba(0,0,0,0.5);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 100px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-h: 'Sora', sans-serif;
    --font-b: 'Plus Jakarta Sans', sans-serif;
    --nav-h: 70px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: var(--primary-light); transition: color 0.3s var(--ease); }
a:hover { color: var(--secondary); }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ---- Noise Overlay ---- */
.noise-overlay {
    position: fixed; inset: 0; z-index: 9998; pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* ---- Cursor Glow ---- */
.cursor-glow {
    position: fixed; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,87,34,0.06) 0%, transparent 70%);
    pointer-events: none; z-index: 1; transform: translate(-50%, -50%);
    transition: opacity 0.4s;
    display: none;
}
@media (hover: hover) and (pointer: fine) {
    .cursor-glow { display: block; }
}

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Preloader ---- */
#preloader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-slipper {
    animation: preloaderFloat 1.2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255,87,34,0.4));
}
@keyframes preloaderFloat {
    0%,100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}
.preloader-bar {
    width: 120px; height: 3px; background: var(--glass);
    border-radius: 3px; margin: 20px auto 0; overflow: hidden;
}
.preloader-progress {
    width: 0%; height: 100%; background: var(--gradient);
    border-radius: 3px; animation: preloaderBar 1.5s var(--ease) forwards;
}
@keyframes preloaderBar { to { width: 100%; } }

/* ============ NAVIGATION ============ */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-h); transition: all 0.4s var(--ease);
}
#navbar.scrolled {
    background: rgba(6,11,24,0.88);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    color: var(--text); font-family: var(--font-h);
    font-size: 1.1rem; font-weight: 500; z-index: 1001;
}
.nav-logo:hover { color: var(--text); }
.logo-slipper { color: var(--primary); transition: transform 0.3s var(--ease-back); }
.nav-logo:hover .logo-slipper { transform: rotate(-10deg) scale(1.1); }
.nav-logo strong { color: var(--primary); font-weight: 700; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--text); border-radius: 2px; transition: all 0.3s var(--ease);
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-menu {
    display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-link {
    padding: 8px 14px; color: var(--text-2); font-family: var(--font-h);
    font-size: 0.85rem; font-weight: 500; border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--glass); }
.nav-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px; background: #25D366; color: #fff;
    font-family: var(--font-h); font-size: 0.85rem; font-weight: 600;
    border-radius: var(--radius-pill); transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: #1eb854; color: #fff; transform: translateY(-1px); }

/* ============ HERO ============ */
.hero {
    position: relative; min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center; overflow: hidden;
    padding: calc(var(--nav-h) + 40px) 0 60px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.gradient-orb {
    position: absolute; border-radius: 50%; filter: blur(100px);
}
.orb-1 {
    width: 600px; height: 600px; background: rgba(255,87,34,0.12);
    top: -150px; right: -100px;
    animation: orbMove1 18s ease-in-out infinite;
}
.orb-2 {
    width: 400px; height: 400px; background: rgba(255,145,0,0.08);
    bottom: -100px; left: -50px;
    animation: orbMove2 22s ease-in-out infinite;
}
.orb-3 {
    width: 300px; height: 300px; background: rgba(0,229,255,0.05);
    top: 40%; left: 30%;
    animation: orbMove3 15s ease-in-out infinite;
}
@keyframes orbMove1 {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(-60px,40px) scale(1.1); }
    66% { transform: translate(40px,-30px) scale(0.95); }
}
@keyframes orbMove2 {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(80px,-50px); }
}
@keyframes orbMove3 {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(-40px,30px) scale(1.15); }
}

/* Grid lines background */
.grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: center;
}
.hero-text { max-width: 540px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px 6px 10px;
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    font-size: 0.82rem; font-weight: 500; color: var(--text-2);
    margin-bottom: 24px;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #25D366; display: inline-block;
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(37,211,102,0); }
}
.hero-title {
    font-family: var(--font-h); font-size: clamp(3.2rem, 7vw, 5rem);
    font-weight: 800; line-height: 1.05; letter-spacing: -2px;
    margin-bottom: 20px;
}
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--text-2);
    margin-bottom: 32px; line-height: 1.7;
}
.hero-subtitle em {
    color: var(--secondary); font-style: normal; font-weight: 600;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; font-family: var(--font-h);
    font-size: 0.9rem; font-weight: 600;
    border-radius: var(--radius-pill); border: none; cursor: pointer;
    transition: all 0.35s var(--ease); position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--gradient); color: #fff;
    box-shadow: 0 4px 24px rgba(255,87,34,0.3);
}
.btn-primary:hover {
    color: #fff; transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(255,87,34,0.45);
}
.btn-primary i { transition: transform 0.3s var(--ease); }
.btn-primary:hover i { transform: translateX(4px); }
.btn-glass {
    background: var(--glass); color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover {
    color: var(--text); background: var(--glass-hover);
    border-color: rgba(255,87,34,0.3); transform: translateY(-2px);
}
.btn-whatsapp {
    background: #25D366; color: #fff;
    box-shadow: 0 4px 24px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
    color: #fff; background: #1eb854; transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(37,211,102,0.45);
}
.btn-lg { padding: 16px 32px; font-size: 0.95rem; }

/* ---- 3D Slipper ---- */
.hero-visual {
    display: flex; justify-content: center; align-items: center;
}
.slipper-scene {
    position: relative; width: 380px; height: 300px;
    perspective: 1200px;
    display: flex; align-items: center; justify-content: center;
}
.slipper-wrapper {
    transform-style: preserve-3d;
    animation: slipperSpin 8s ease-in-out infinite;
}
.slipper-3d {
    width: 340px; height: auto;
    filter: drop-shadow(0 20px 40px rgba(255,87,34,0.25));
}
@keyframes slipperSpin {
    0% { transform: rotateY(-20deg) rotateX(8deg) translateY(0); }
    25% { transform: rotateY(10deg) rotateX(-3deg) translateY(-18px); }
    50% { transform: rotateY(-20deg) rotateX(8deg) translateY(0); }
    75% { transform: rotateY(10deg) rotateX(-3deg) translateY(-18px); }
    100% { transform: rotateY(-20deg) rotateX(8deg) translateY(0); }
}
.slipper-shadow {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    width: 220px; height: 30px;
    background: radial-gradient(ellipse, rgba(255,87,34,0.18) 0%, transparent 70%);
    animation: shadowPulse 8s ease-in-out infinite;
    border-radius: 50%;
}
@keyframes shadowPulse {
    0%,50%,100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
    25%,75% { transform: translateX(-50%) scale(0.8); opacity: 0.4; }
}

/* Sparkles */
.sparkle {
    position: absolute; width: 6px; height: 6px; border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}
.s1 { top: 15%; right: 10%; animation: sparkleFloat 3s ease-in-out infinite; }
.s2 { bottom: 25%; left: 8%; animation: sparkleFloat 4s ease-in-out 0.5s infinite; }
.s3 { top: 40%; right: 25%; animation: sparkleFloat 3.5s ease-in-out 1s infinite; width: 4px; height: 4px; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.s4 { bottom: 35%; right: 5%; animation: sparkleFloat 4.5s ease-in-out 1.5s infinite; width: 3px; height: 3px; }
@keyframes sparkleFloat {
    0%,100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-20px) scale(1.4); opacity: 0.3; }
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-3); font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
    z-index: 2;
}
.scroll-line {
    width: 1px; height: 40px; background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%,100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(0.3); transform-origin: bottom; opacity: 0.3; }
}

/* ---- Reveal Animation ---- */
.reveal-up {
    opacity: 0; transform: translateY(40px);
    animation: revealUp 0.8s var(--ease) forwards;
    animation-delay: var(--d, 0s);
}
@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ============ MARQUEE BANNER ============ */
.marquee-banner {
    background: var(--gradient); padding: 14px 0;
    overflow: hidden; position: relative;
}
.marquee-track { display: flex; width: max-content; }
.marquee-content {
    display: flex; align-items: center; gap: 24px;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
    font-family: var(--font-h); font-size: 0.85rem; font-weight: 700;
    color: #fff; text-transform: uppercase; letter-spacing: 3px;
}
.marquee-dot { font-size: 0.7rem; opacity: 0.6; }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section { padding: 110px 0; position: relative; }
.section-dark { background: var(--bg-alt); }

.section-label {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-h); font-size: 0.75rem; font-weight: 600;
    color: var(--primary-light); text-transform: uppercase;
    letter-spacing: 3px; margin-bottom: 16px;
}
.label-line {
    width: 32px; height: 2px; background: var(--gradient);
    border-radius: 2px;
}
.section-title {
    font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800; letter-spacing: -1px; margin-bottom: 12px;
    line-height: 1.15;
}
.section-subtitle {
    color: var(--text-2); font-size: 1.05rem; margin-bottom: 48px;
    max-width: 500px;
}

/* ============ ABOUT ============ */
.about-grid {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 60px; align-items: start;
}
.about-title {
    font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800; letter-spacing: -1px; line-height: 1.15;
    margin-bottom: 28px;
}
.about-body p {
    color: var(--text-2); font-size: 1.05rem; margin-bottom: 20px; line-height: 1.85;
}
.about-body strong { color: var(--primary-light); }
.about-body em { color: var(--secondary); font-style: italic; }

.pazar-badge {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 24px; margin-top: 28px;
    background: rgba(255,87,34,0.06); border: 1px solid rgba(255,87,34,0.12);
    border-radius: var(--radius); transition: all 0.3s var(--ease);
}
.pazar-badge:hover {
    background: rgba(255,87,34,0.1); border-color: rgba(255,87,34,0.25);
    transform: translateX(4px);
}
.pazar-badge i {
    font-size: 1.4rem; color: var(--primary);
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 12px; background: rgba(255,87,34,0.1);
    display: flex; align-items: center; justify-content: center;
}
.pazar-badge strong {
    display: block; font-family: var(--font-h); font-size: 0.95rem;
    color: var(--text); margin-bottom: 2px;
}
.pazar-badge span { font-size: 0.85rem; color: var(--text-2); }

/* Stats */
.about-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.stat-item {
    padding: 28px 24px;
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    text-align: center;
}
.stat-item:hover {
    background: var(--glass-hover);
    border-color: rgba(255,87,34,0.2);
    transform: translateY(-4px); box-shadow: var(--glow);
}
.stat-num {
    font-family: var(--font-h); font-size: 2.8rem; font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; display: inline;
}
.stat-suffix {
    font-family: var(--font-h); font-size: 1rem; font-weight: 600;
    color: var(--primary-light); display: inline; margin-left: 2px;
}
.stat-desc {
    font-size: 0.78rem; color: var(--text-3); font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px;
}

/* ============ GALLERY ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}
.gallery-item {
    position: relative; border-radius: var(--radius-sm); overflow: hidden;
    cursor: pointer; aspect-ratio: 4/3; background: var(--bg-card);
    transition: all 0.4s var(--ease);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--glow-strong); z-index: 2; }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,11,24,0.7) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s var(--ease);
    display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
    font-size: 1.6rem; color: #fff;
    transform: scale(0.7); transition: transform 0.3s var(--ease-back);
}
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

.gallery-empty {
    text-align: center; padding: 80px 20px; color: var(--text-3);
}
.empty-visual {
    font-size: 3rem; margin-bottom: 16px; color: var(--text-3);
    animation: emptyBob 3s ease-in-out infinite;
}
@keyframes emptyBob {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.gallery-empty p {
    font-family: var(--font-h); font-size: 1.1rem; font-weight: 600;
    color: var(--text-2); margin-bottom: 6px;
}

.gallery-loading { text-align: center; padding: 60px 20px; color: var(--text-3); }
.loader {
    display: flex; gap: 6px; justify-content: center; margin-bottom: 16px;
}
.loader span {
    width: 10px; height: 10px; border-radius: 50%; background: var(--primary);
    animation: loaderDot 1.2s ease-in-out infinite;
}
.loader span:nth-child(2) { animation-delay: 0.15s; }
.loader span:nth-child(3) { animation-delay: 0.3s; }
@keyframes loaderDot {
    0%,100% { transform: scale(0.6); opacity: 0.3; }
    50% { transform: scale(1); opacity: 1; }
}

/* ============ PRODUCTS ============ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.product-card {
    position: relative; padding: 36px 28px; overflow: hidden;
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    animation-delay: calc(var(--i) * 0.08s);
}
.product-card:hover {
    background: var(--glass-hover);
    border-color: rgba(255,87,34,0.2);
    transform: translateY(-6px); box-shadow: var(--glow);
}
.product-card-bg {
    position: absolute; top: -80px; right: -80px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,87,34,0.06) 0%, transparent 70%);
    border-radius: 50%; transition: all 0.5s var(--ease); pointer-events: none;
}
.product-card:hover .product-card-bg { transform: scale(1.8); opacity: 1; }
.product-icon-wrap {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(255,87,34,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary);
    margin-bottom: 20px; transition: all 0.35s var(--ease-back);
}
.product-card:hover .product-icon-wrap {
    background: var(--gradient); color: #fff;
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 6px 24px rgba(255,87,34,0.3);
}
.product-card h3 {
    font-family: var(--font-h); font-size: 1.15rem; font-weight: 700;
    margin-bottom: 8px;
}
.product-card p { color: var(--text-2); font-size: 0.9rem; line-height: 1.65; }

/* ============ CTA / CONTACT ============ */
.section-cta {
    background: var(--bg-alt); overflow: hidden; position: relative;
}
.cta-glow {
    position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,87,34,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 {
    font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800; margin-bottom: 16px; letter-spacing: -1px;
}
.cta-content > p {
    color: var(--text-2); font-size: 1.1rem; max-width: 520px;
    margin: 0 auto 36px;
}
.cta-buttons {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 48px;
}

.cta-info-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px; max-width: 900px; margin: 0 auto;
}
.cta-info-card {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px; background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm); text-align: left;
    transition: all 0.3s var(--ease);
}
.cta-info-card:hover {
    background: var(--glass-hover); border-color: rgba(255,87,34,0.15);
    transform: translateY(-3px);
}
.cta-info-card > i {
    font-size: 1.1rem; color: var(--primary);
    width: 40px; height: 40px; min-width: 40px;
    border-radius: 10px; background: rgba(255,87,34,0.08);
    display: flex; align-items: center; justify-content: center;
}
.cta-info-card strong {
    display: block; font-family: var(--font-h); font-size: 0.85rem;
    margin-bottom: 4px; color: var(--text);
}
.cta-info-card span { font-size: 0.85rem; color: var(--text-2); line-height: 1.5; }
.cta-info-card em { color: var(--secondary); font-style: normal; font-weight: 500; }
.cta-info-card a { color: var(--primary-light); font-weight: 500; }

/* ============ FOOTER ============ */
.footer { background: var(--bg); }
.footer-map {
    position: relative; width: 100%;
    border-top: 1px solid var(--glass-border);
}
.footer-map iframe { display: block; width: 100%; min-height: 350px; filter: grayscale(0.4) brightness(0.85); }
.map-overlay {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    z-index: 2; width: 90%; max-width: 500px;
}
.map-card {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px; background: rgba(6,11,24,0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.map-card strong {
    display: block; font-family: var(--font-h); font-size: 0.9rem; color: var(--text);
}
.map-card span { font-size: 0.8rem; color: var(--text-3); }
.map-card div { flex: 1; }
.map-card-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; background: var(--gradient); color: #fff;
    border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600;
    font-family: var(--font-h); white-space: nowrap;
    transition: all 0.3s var(--ease);
}
.map-card-btn:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,87,34,0.3); }

.footer-bottom {
    border-top: 1px solid var(--glass-border); padding: 28px 0;
}
.footer-inner {
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: space-between; gap: 16px;
}
.footer-brand {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-h); font-size: 1rem; color: var(--text);
}
.footer-brand strong { color: var(--primary); }
.footer-links {
    display: flex; gap: 20px; flex-wrap: wrap;
}
.footer-links a {
    color: var(--text-3); font-size: 0.82rem; font-weight: 500;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--primary-light); }
.footer-copy {
    width: 100%; text-align: center; color: var(--text-3);
    font-size: 0.78rem; margin-top: 8px;
}

/* ============ LIGHTBOX ============ */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.96);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.35s var(--ease);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lb-body { max-width: 92vw; max-height: 88vh; }
.lb-body img {
    max-width: 92vw; max-height: 88vh; object-fit: contain;
    border-radius: var(--radius-sm);
    transform: scale(0.92); transition: transform 0.4s var(--ease-back);
}
.lightbox.active .lb-body img { transform: scale(1); }
.lb-close, .lb-nav {
    position: absolute; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08); color: #fff;
    width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s var(--ease); font-size: 1rem;
}
.lb-close:hover, .lb-nav:hover {
    background: rgba(255,87,34,0.3); border-color: var(--primary);
}
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-counter {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    color: var(--text-3); font-family: var(--font-h); font-size: 0.85rem;
}

/* ============ WHATSAPP FAB ============ */
.wp-fab {
    position: fixed; bottom: 24px; right: 24px;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff; font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    z-index: 998; transition: all 0.3s var(--ease);
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.wp-fab:hover { color: #fff; transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.wp-pulse {
    position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid #25D366; animation: wpPulseAnim 2s ease-out infinite;
}
@keyframes wpPulseAnim {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ============ SCROLL TOP ============ */
.scroll-top-btn {
    position: fixed; bottom: 24px; left: 24px;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--glass); border: 1px solid var(--glass-border);
    color: var(--text-2); font-size: 0.85rem; cursor: pointer;
    z-index: 998; opacity: 0; visibility: hidden;
    transform: translateY(16px); transition: all 0.35s var(--ease);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover {
    background: var(--primary); border-color: var(--primary); color: #fff;
    transform: translateY(-3px);
}

/* ============ SCROLL REVEAL ============ */
.scroll-reveal {
    opacity: 0; transform: translateY(35px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.scroll-reveal.visible {
    opacity: 1; transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-visual { order: -1; }
    .slipper-scene { width: 280px; height: 220px; }
    .slipper-3d { width: 260px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; inset: 0;
        background: rgba(6,11,24,0.97);
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; gap: 6px;
        padding: 20px; opacity: 0; visibility: hidden;
        transition: all 0.35s var(--ease);
    }
    .nav-menu.active { opacity: 1; visibility: visible; }
    .nav-link { font-size: 1.4rem; padding: 14px 20px; text-align: center; }
    .nav-cta { font-size: 1rem; padding: 12px 28px; }

    .section { padding: 80px 0; }
    .hero { padding: calc(var(--nav-h) + 20px) 0 50px; }
    .hero-scroll { display: none; }
    .slipper-scene { width: 220px; height: 180px; }
    .slipper-3d { width: 200px; }

    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-item { padding: 20px 16px; }
    .stat-num { font-size: 2.2rem; }

    .products-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-lg { width: 100%; max-width: 320px; justify-content: center; }
    .cta-info-grid { grid-template-columns: 1fr; }

    .footer-inner { justify-content: center; text-align: center; }
    .footer-links { justify-content: center; }
    .map-card { flex-wrap: wrap; gap: 10px; }
    .map-card-btn { width: 100%; justify-content: center; }

    .wp-fab { bottom: 16px; right: 16px; width: 52px; height: 52px; font-size: 1.4rem; }
    .scroll-top-btn { bottom: 16px; left: 16px; width: 38px; height: 38px; }
    .lb-nav { width: 38px; height: 38px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { letter-spacing: -1px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
    .marquee-content { font-size: 0.72rem; letter-spacing: 2px; }
}

@media (min-width: 1025px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
