:root {
    --purple: #7C3AED;
    --purple-dark: #5B21B6;
    --purple-light: #A78BFA;
    --purple-glow: rgba(124, 58, 237, 0.3);
    --teal: #06B6D4;
    --teal-light: #22D3EE;
    --teal-glow: rgba(6, 182, 212, 0.25);
    --teal-subtle: #ECFEFF;
    --black: #0F172A;
    --black-soft: #1E293B;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    --glass-blur: blur(20px);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
}

/* Particles */
.particles-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; animation: floatUp linear infinite; opacity: 0; }
.particle:nth-child(odd) { background: var(--purple-glow); box-shadow: 0 0 20px var(--purple-glow), 0 0 60px var(--purple-glow); }
.particle:nth-child(even) { background: var(--teal-glow); box-shadow: 0 0 20px var(--teal-glow), 0 0 60px var(--teal-glow); }
@keyframes floatUp {
    0% { transform: translateY(110vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    40% { opacity: 0.3; }
    90% { opacity: 0; }
    100% { transform: translateY(-10vh) scale(2); opacity: 0; }
}

/* Floating Orbs */
.floating-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; animation: orbFloat 8s ease-in-out infinite; }
.orb-purple { background: var(--purple-glow); width: 300px; height: 300px; }
.orb-teal { background: var(--teal-glow); width: 250px; height: 250px; animation-delay: -4s; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    25% { transform: translate(30px,-20px) scale(1.15); }
    50% { transform: translate(-15px,-40px) scale(0.9); }
    75% { transform: translate(-25px,10px) scale(1.1); }
}

/* Navigation */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.8); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition); padding: 0 1.5rem;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); background: rgba(255,255,255,0.9); }
.navbar-inner {
    max-width: 1400px; margin: 0 auto; display: flex;
    align-items: center; justify-content: space-between; height: 70px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
    font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.3rem;
    color: var(--black); letter-spacing: -0.03em; position: absolute;
    left: 50%; transform: translateX(-50%);
}

/* Hamburger */
.hamburger {
    display: flex; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 8px; z-index: 1001;
}
.hamburger span { width: 26px; height: 2.5px; background: var(--black); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Cart Toggle */
.cart-toggle {
    display: flex; align-items: center; gap: 4px; cursor: pointer;
    background: none; border: none; padding: 8px; z-index: 1001;
    font-size: 1.3rem; color: var(--black); position: relative;
}
.cart-count-badge {
    position: absolute; top: 0; right: -4px;
    background: var(--purple); color: white; font-size: 0.65rem;
    font-weight: 700; width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', sans-serif;
}

/* Slide Menu */
.slide-menu {
    position: fixed; top: 0; left: -320px; width: 300px; height: 100vh;
    background: white; z-index: 999; transition: var(--transition);
    padding: 100px 30px 40px; box-shadow: 10px 0 40px rgba(0,0,0,0.15);
}
.slide-menu.open { left: 0; }
.slide-menu-links { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.slide-menu-links a {
    text-decoration: none; color: var(--gray-600); font-weight: 500;
    font-size: 1rem; transition: var(--transition); display: block; padding: 8px 0;
}
.slide-menu-links a:hover, .slide-menu-links a.active { color: var(--purple); }
.nav-cta {
    background: var(--purple); color: white !important; padding: 12px 24px !important;
    border-radius: 50px; font-weight: 600 !important; text-align: center;
    box-shadow: 0 4px 15px var(--purple-glow); display: inline-block !important;
}
.nav-cta:hover { background: var(--purple-dark); }

/* Cart Slide-out */
.cart-slide-out {
    position: fixed; top: 0; right: -420px; width: 400px; max-width: 90vw;
    height: 100vh; background: white; z-index: 1002; transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15); display: flex; flex-direction: column;
}
.cart-slide-out.open { right: 0; }
.cart-slide-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid var(--gray-200);
}
.cart-slide-header h3 { display: flex; align-items: center; gap: 8px; font-size: 1.1rem; }
.cart-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--gray-500); }
.cart-slide-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty-msg { color: var(--gray-400); font-size: 0.9rem; text-align: center; padding: 40px 0; }
.cart-slide-footer { padding: 16px 24px; border-top: 1px solid var(--gray-200); }
.cart-total-row { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.cart-total-amount { color: var(--purple); }

/* Cart Item */
.cart-item-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.9rem; }
.cart-item-row .qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--gray-300); background: white; cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { border-color: var(--purple); color: var(--purple); }
.cart-item-remove { color: var(--gray-400); cursor: pointer; font-size: 0.85rem; }
.cart-item-remove:hover { color: #EF4444; }

/* Checkout Form */
.checkout-form-container { padding: 20px 24px; flex: 1; overflow-y: auto; }
.checkout-form-container h4 { margin-bottom: 14px; font-size: 1rem; }
.checkout-input {
    width: 100%; padding: 12px 16px; border-radius: 10px; border: 2px solid var(--gray-200);
    font-size: 0.9rem; font-family: 'Inter', sans-serif; margin-bottom: 10px; transition: var(--transition);
}
.checkout-input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124,58,237,0.06); }
.checkout-options { display: flex; gap: 16px; margin-bottom: 14px; }
.checkout-radio { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; cursor: pointer; }

.cart-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 1001;
}
.cart-overlay.show { display: block; }

.mobile-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; }
.mobile-overlay.show { display: block; }

/* Sections */
.section { position: relative; z-index: 1; padding: 80px 2rem; max-width: 1400px; margin: 0 auto; }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--purple); background: rgba(124,58,237,0.08); padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.03em; }
.section-subtitle { color: var(--gray-500); font-size: 1.05rem; max-width: 600px; line-height: 1.7; }

/* Hero */
.hero-section { min-height: 100vh; display: flex; align-items: center; padding-top: 100px; position: relative; z-index: 1; overflow: hidden; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1400px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.hero-text { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(124,58,237,0.06); border: 1px solid rgba(124,58,237,0.15); padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: var(--purple); margin-bottom: 20px; animation: fadeInUp 0.6s ease-out; }
.hero-badge .dot { width: 8px; height: 8px; background: #10B981; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); } 50% { box-shadow: 0 0 0 12px rgba(16,185,129,0); } }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.04em; animation: fadeInUp 0.7s ease-out; }
.hero-title .highlight { background: linear-gradient(135deg, var(--purple), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.1rem; color: var(--gray-500); margin-bottom: 28px; max-width: 500px; animation: fadeInUp 0.8s ease-out; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; animation: fadeInUp 0.9s ease-out; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; text-decoration: none; cursor: pointer; border: none; transition: var(--transition); white-space: nowrap; font-family: 'Inter', sans-serif; }
.btn-primary { background: var(--purple); color: white; box-shadow: 0 8px 30px var(--purple-glow); }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(124,58,237,0.45); }
.btn-outline { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline:hover { background: rgba(124,58,237,0.06); transform: translateY(-3px); }
.btn-teal { background: var(--teal); color: white; box-shadow: 0 8px 30px var(--teal-glow); }
.btn-teal:hover { background: #0891B2; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(6,182,212,0.4); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; margin-top: 8px; }
.trust-badges { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 1s ease-out; }
.trust-badge { display: flex; align-items: center; gap: 6px; background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); padding: 8px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 500; color: var(--gray-700); box-shadow: var(--shadow-sm); }
.trust-badge i { color: #10B981; font-size: 0.75rem; }
.hero-visual { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; animation: fadeInRight 0.8s ease-out; }
.hero-image-wrapper { position: relative; width: 100%; max-width: 500px; aspect-ratio: 1/1.15; }
.hero-main-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); position: relative; z-index: 2; }
.floating-card { position: absolute; background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-lg); z-index: 3; display: flex; align-items: center; gap: 12px; animation: floatCard 5s ease-in-out infinite; }
.floating-card-1 { top: 8%; left: -30px; animation-delay: 0s; }
.floating-card-2 { bottom: 20%; right: -40px; animation-delay: -2.5s; }
.floating-card-3 { bottom: 5%; left: 10%; animation-delay: -1.5s; }
.fc-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: white; flex-shrink: 0; }
.fc-icon.purple { background: linear-gradient(135deg, var(--purple), var(--purple-light)); }
.fc-icon.teal { background: linear-gradient(135deg, var(--teal), var(--teal-light)); }
.fc-text { font-weight: 600; font-size: 0.85rem; color: var(--gray-800); white-space: nowrap; }
.fc-text small { display: block; font-weight: 400; color: var(--gray-500); font-size: 0.7rem; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--gray-200); transition: var(--transition); cursor: pointer; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--purple), var(--teal)); transform: scaleX(0); transform-origin: left; transition: var(--transition-slow); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; transition: var(--transition); }
.service-icon.purple-bg { background: rgba(124,58,237,0.1); color: var(--purple); }
.service-icon.teal-bg { background: rgba(6,182,212,0.1); color: var(--teal); }
.service-card h4 { font-size: 1rem; margin-bottom: 6px; }
.service-card p { font-size: 0.85rem; color: var(--gray-500); margin: 0; }

/* Order Section */
.order-section { background: var(--gray-50); border-radius: var(--radius-xl); padding: 50px 40px; position: relative; overflow: hidden; }
.order-section .orb-purple { top: -50px; right: -80px; width: 200px; height: 200px; opacity: 0.5; }

/* Categories Scroll */
.categories-scroll {
    display: flex; gap: 20px; overflow-x: auto; padding: 10px 0 20px;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.category-circle-item {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    cursor: pointer; flex-shrink: 0; transition: var(--transition); min-width: 90px;
}
.category-circle-item:hover { transform: translateY(-4px); }
.category-circle-item.active .category-circle { border-color: var(--purple); box-shadow: 0 0 0 6px rgba(124,58,237,0.12); }
.category-circle {
    width: 80px; height: 80px; border-radius: 50%;
    background: white; border: 3px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--purple); transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.category-circle-item span { font-size: 0.75rem; font-weight: 600; color: var(--gray-600); text-align: center; max-width: 90px; line-height: 1.2; }

/* Search */
.order-search { display: flex; gap: 0; margin-bottom: 28px; position: relative; }
.order-search input {
    flex: 1; padding: 14px 50px 14px 20px; border-radius: 50px;
    border: 2px solid var(--gray-200); font-size: 0.95rem;
    font-family: 'Inter', sans-serif; transition: var(--transition); background: white;
}
.order-search input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124,58,237,0.08); }
.search-icon-btn {
    position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
    background: var(--purple); color: white; border: none; width: 40px; height: 40px;
    border-radius: 50%; cursor: pointer; font-size: 1rem; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.search-icon-btn:hover { background: var(--purple-dark); }

/* Product Cards Grid */
.product-cards-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px; margin-bottom: 28px;
}
.product-card {
    background: white; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--gray-200); transition: var(--transition);
    cursor: pointer; box-shadow: var(--shadow-sm);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card-img {
    width: 100%; height: 0; padding-bottom: 60%; position: relative;
    background: var(--gray-100); overflow: hidden;
}
.product-card-img img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}
.product-card-img .placeholder-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: var(--gray-300);
    background: linear-gradient(135deg, #f5f3ff, #ecfeff);
}
.product-card-content {
    padding: 14px 16px; display: flex; flex-direction: column; gap: 6px;
    position: relative; min-height: 100px;
}
.product-card-content h5 { font-size: 0.9rem; font-weight: 600; margin: 0; padding-right: 40px; line-height: 1.3; word-break: normal;}
.product-card-content .product-price {
    font-weight: 700; color: var(--purple); font-size: 0.95rem;
    margin-top: auto;
}
.product-card-content .add-cart-icon {
    position: absolute; bottom: 10px; right: 12px;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--purple); color: white; border: none;
    cursor: pointer; font-size: 0.9rem; transition: var(--transition);
    display: flex; align-items: center; justify-content: center; z-index: 2;
}
.product-card-content .add-cart-icon:hover { background: var(--purple-dark); transform: scale(1.1); }

/* Upload Area */
.upload-area {
    border: 2px dashed var(--gray-300); border-radius: var(--radius);
    padding: 28px; text-align: center; cursor: pointer; transition: var(--transition);
    background: white; max-width: 500px; margin: 0 auto;
}
.upload-area:hover { border-color: var(--purple); background: rgba(124,58,237,0.03); }
.upload-area i { font-size: 2rem; color: var(--purple); margin-bottom: 8px; }

/* Consultation */
.consultation-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
.consult-card { background: white; border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--gray-200); text-align: center; transition: var(--transition); }
.consult-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.consult-icon { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.6rem; color: white; }
.consult-icon.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }

/* Trust Section */
.trust-section { background: linear-gradient(135deg, #faf5ff, #ecfeff); border-radius: var(--radius-xl); padding: 60px 40px; text-align: center; position: relative; overflow: hidden; }
.counter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 40px 0; }
.counter-card { background: white; border-radius: var(--radius); padding: 30px 20px; box-shadow: var(--shadow); transition: var(--transition); }
.counter-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.counter-number { font-size: 3rem; font-weight: 900; font-family: 'Sora', sans-serif; background: linear-gradient(135deg, var(--purple), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.counter-label { color: var(--gray-500); font-weight: 500; }

/* Footer */
.footer { background: var(--gray-900); color: white; padding: 60px 2rem 30px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; max-width: 1400px; margin: 0 auto; }
.footer h4 { color: white; margin-bottom: 16px; font-size: 1rem; }
.footer p, .footer a { color: rgba(255,255,255,0.6); font-size: 0.85rem; text-decoration: none; transition: var(--transition); display: block; margin-bottom: 8px; }
.footer a:hover { color: white; }
.social-icons { display: flex; gap: 12px; margin-top: 12px; }
.social-icons a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition); color: white; }
.social-icons a:hover { background: var(--purple); transform: translateY(-3px); }
.footer-bottom { text-align: center; padding-top: 30px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; color: rgba(255,255,255,0.4); max-width: 1400px; margin-left: auto; margin-right: auto; }

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: white; box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; text-decoration: none;
    animation: floatWApp 3s ease-in-out infinite;
    transition: var(--transition);
}
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
@keyframes floatWApp {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Toast */
.toast {
    position: fixed; bottom: 100px; right: 30px;
    background: var(--black); color: white; padding: 14px 24px;
    border-radius: 50px; font-weight: 600; z-index: 2000;
    animation: slideInUp 0.4s ease-out, fadeOut 0.4s 2.6s ease-out forwards;
    box-shadow: var(--shadow-xl); font-size: 0.9rem;
}
@keyframes slideInUp { from { transform: translateY(80px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeOut { to { opacity: 0; transform: translateY(20px); } }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* Responsive */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .trust-badges { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-image-wrapper { max-width: 350px; margin: 0 auto; }
    .floating-card-1 { left: -10px; top: 5%; }
    .floating-card-2 { right: -10px; bottom: 15%; }
    .floating-card-3 { left: 5%; bottom: 2%; }
    .consultation-grid { max-width: 400px; margin-left: auto; margin-right: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .counter-grid { grid-template-columns: 1fr; max-width: 350px; margin-left: auto; margin-right: auto; }
    .product-cards-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
@media (max-width: 768px) {
    .hero-section { padding-top: 80px; min-height: auto; }
    .section { padding: 50px 1rem; }
    .order-section { padding: 30px 16px; }
    .hero-title { font-size: 1.8rem; }
    .floating-card { padding: 10px 14px; font-size: 0.7rem; gap: 8px; }
    .floating-card .fc-icon { width: 32px; height: 32px; font-size: 0.8rem; border-radius: 8px; }
    .fc-text { font-size: 0.7rem; }
    .fc-text small { font-size: 0.6rem; }
    .floating-card-1 { left: 0; }
    .floating-card-2 { right: 0; }
    .product-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .category-circle { width: 65px; height: 65px; font-size: 1.3rem; }
    .category-circle-item span { font-size: 0.7rem; }
    .cart-slide-out { width: 100%; max-width: 100%; right: -100%; }
    .nav-logo { font-size: 1rem; }
    .nav-logo .logo-icon { width: 34px; height: 34px; font-size: 1rem; }
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; gap: 10px; }
    .btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 0.85rem; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .counter-number { font-size: 2.2rem; }
    .product-cards-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}
.logo img {
    width: 120px;
    height: auto;
}

.product-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.product-modal-overlay.active {
    display: flex;
}
.product-modal {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray-500);
    cursor: pointer;
    z-index: 1;
    transition: var(--transition);
}
.modal-close:hover {
    color: var(--black);
}
.modal-image {
    width: 100%;
    height: 250px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}
.modal-body {
    padding: 20px 24px 28px;
}
.modal-body h2 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}
.modal-category {
    font-size: 0.8rem;
    color: var(--purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.modal-description {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 14px;
}
.modal-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 18px;
}