/* ============================================== */
/* FILE: /iseekenya/assets/css/style.css */
/* Premium CSS - Balanced Mid-Tone Theme */
/* ============================================== */

:root {
    --primary: #dc2626;
    --primary-glow: rgba(220, 38, 38, 0.2);
    --primary-dark: #b91c1c;
    --primary-soft: #fceaea;
    --bg-main: #e8e9ed;
    --bg-surface: #f0f1f4;
    --bg-card: #ffffff;
    --bg-elevated: #f8f9fb;
    --border-light: #e2e4e9;
    --border-medium: #d1d4db;
    --text-primary: #1e1e2f;
    --text-secondary: #4a4a5e;
    --text-muted: #7a7a8c;
    --glass-bg: rgba(248, 249, 251, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --card-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 15px 35px -12px rgba(0, 0, 0, 0.12);
    --card-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.2, 0.95, 0.4, 1.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

/* =========================
   PREMIUM NAVBAR UPGRADE
========================= */

/* =========================
   PREMIUM NAVBAR - COMPLETE FIX
========================= */

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1300px;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.9rem 2rem !important;
    width: 100% !important;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
}

.logo-text {
    font-size: 1.9rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e1e2f, var(--primary), #ff4d4d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

/* CRITICAL - This fixes the horizontal layout */
.nav-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-links ul {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    position: relative;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.nav-links a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #ff4d4d);
    opacity: 0;
    z-index: -1;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: white;
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-primary);
    background: none;
    border: none;
    padding: 10px;
}

/* Mobile Menu - Horizontal on desktop, vertical on mobile */
@media (max-width: 992px) {
    .navbar {
        width: 95%;
        top: 15px;
    }
    
    .nav-container {
        padding: 0.7rem 1.5rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* On mobile, nav-links become vertical */
    .nav-links {
        position: fixed;
        top: 75px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        width: 90%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        z-index: 9999;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    /* Mobile: vertical layout */
    .nav-links ul {
        flex-direction: column !important;
        gap: 1.2rem !important;
        align-items: center;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        display: block;
        white-space: nowrap;
    }
}

/* Small screens */
@media (max-width: 480px) {
    .navbar {
        width: 98%;
        top: 10px;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-links {
        top: 65px;
        width: 95%;
        padding: 1.5rem;
    }
}
/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: none;
    color: var(--text-primary);
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.05);
}

.prev { left: 25px; }
.next { right: 25px; }

.slider-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
    width: 26px;
    border-radius: 20px;
}

/* Tagline Section */
.tagline-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1.3rem;
    text-align: center;
}

.tagline-text {
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 1000px;
    margin: 0 auto;
    color: white;
}

.tagline-text i {
    margin-right: 10px;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e1e2f, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(0px);
    border: 1px solid var(--border-light);
    border-radius: var(--card-radius);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--card-shadow-hover);
}

/* Services Grid */
.services-grid, .services-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card, .service-card-full {
    text-align: center;
    background: var(--bg-card);
    border-radius: var(--card-radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.service-card:hover, .service-card-full:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary);
}

.service-icon, .service-icon-large {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.service-card h3, .service-card-full h3 {
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-size: 1.3rem;
}

.service-card p, .service-card-full p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.95rem;
}

.read-more:hover {
    transform: translateX(5px);
    color: var(--primary-dark);
}

/* Counters Section */
.counters-section {
    background: var(--bg-surface);
    padding: 60px 0;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.counter-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.counter-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Products Grid */
.products-grid, .products-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card, .product-card-full {
    overflow: hidden;
    padding: 0;
    background: var(--bg-card);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.product-card:hover, .product-card-full:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary);
}

.product-image, .product-image-full {
    height: 240px;
    overflow: hidden;
}

.product-image img, .product-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img,
.product-card-full:hover .product-image-full img {
    transform: scale(1.05);
}

.product-info, .product-info-full {
    padding: 1.5rem;
}

.product-info h3, .product-info-full h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-info p, .product-info-full p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.7rem 0;
}

/* Buttons */
.btn-glow, .btn-small {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}

.btn-small {
    padding: 8px 22px;
    font-size: 0.85rem;
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-surface);
    padding: 80px 0;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 350px;
    margin: 0 15px;
    text-align: center;
    background: var(--bg-card);
    border-radius: var(--card-radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
}

.testimonial-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
}

.testimonial-card h4 {
    margin-top: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.testimonial-card .role {
    font-size: 0.85rem;
    color: var(--primary);
}

.testimonial-prev, .testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.testimonial-prev { left: -20px; }
.testimonial-next { right: -20px; }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
}

.cta-content .btn-glow {
    background: white;
    color: var(--primary);
    margin-top: 1.5rem;
}

.cta-content .btn-glow:hover {
    background: var(--text-primary);
    color: white;
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.footer-about h3, .footer-links h4, .footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.footer-about p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    background: var(--bg-surface);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.pdf-buttons {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background: #128C7E;
}

/* Floating Cart Button */
.floating-cart {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none;
}

.floating-cart:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Cart count badge for floating cart */
.cart-count-floating {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    padding: 0 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Cart counter animation */
@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.cart-added {
    animation: cartBounce 0.3s ease;
}

/* Team Page */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    overflow: hidden;
    background: var(--bg-card);
    border-radius: var(--card-radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.2rem;
    border: 3px solid var(--primary);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info .name {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 700;
}

.team-info .role {
    color: var(--primary);
    font-weight: 600;
    margin: 0.4rem 0;
}

.team-info .bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.quote {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Cart & Checkout */
.cart-table {
    overflow-x: auto;
}

.cart-header, .cart-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    gap: 1rem;
    align-items: center;
}

.cart-header {
    background: var(--bg-surface);
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cart-row {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-card);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-product img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-qty {
    width: 70px;
    padding: 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    border-radius: 8px;
    text-align: center;
}

.remove-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.remove-btn:hover {
    transform: scale(1.1);
}

.cart-summary {
    margin-top: 2rem;
    text-align: right;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
}

.cart-total {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Page Header */
.page-header {
    background: var(--bg-surface);
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-header p {
    color: var(--text-secondary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    max-width: 550px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    background: var(--bg-card);
    border-radius: var(--card-radius);
    padding: 2rem;
}

.close-modal {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
}

/* Shop Filters */
.shop-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 40px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.search-bar form {
    display: flex;
    gap: 10px;
}

.search-bar input {
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 40px;
    color: var(--text-primary);
    width: 250px;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-bar button {
    padding: 10px 24px;
    background: var(--primary);
    border: none;
    border-radius: 40px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background: var(--primary-dark);
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.25);
}

.btn-add-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.quantity-selector {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quantity-selector label {
    font-weight: 600;
    color: var(--text-primary);
}

.quantity-selector input {
    width: 80px;
    padding: 10px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-primary);
    text-align: center;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.toast-notification.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-notification.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================== */
/* RESPONSIVE DESIGN - PHONE & TABLET */
/* ============================================== */

/* Tablet and Small Desktop (992px and below) */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%) scale(0.95);
        width: 90%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 18px;
        padding: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        z-index: 999;
    }

    .nav-links.active {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        pointer-events: all;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 1.2rem;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px;
        display: block;
    }

    .hamburger {
        display: flex;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-prev, .testimonial-next {
        display: none;
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .prev { left: 10px; }
    .next { right: 10px; }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    /* Cart responsive */
    .cart-header, .cart-row {
        min-width: 600px;
    }
    
    .cart-table {
        overflow-x: auto;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .cart-actions .btn-glow {
        width: 100%;
        text-align: center;
    }
    
    .cart-summary {
        text-align: center;
    }
    
    /* Checkout responsive */
    .checkout-grid {
        gap: 1rem;
    }
    
    .form-group input, 
    .form-group textarea, 
    .form-group select {
        padding: 10px 14px;
    }
    
    /* Products grid */
    .products-grid, .products-grid-full {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .product-info h3 {
        font-size: 1rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    /* Services grid */
    .services-grid, .services-grid-full {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        min-width: 260px;
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .pdf-buttons {
        justify-content: center;
    }
    
    /* Shop filters */
    .shop-filters {
        flex-direction: column;
    }
    
    .category-filters {
        justify-content: center;
    }
    
    .search-bar form {
        width: 100%;
    }
    
    .search-bar input {
        width: 100%;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    /* Floating buttons */
    .floating-cart {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 80px;
        right: 15px;
    }
    
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
    
    .cart-count-floating {
        min-width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.7rem 1rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.85rem;
    }
    
    .counters-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn-glow, .btn-small {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-add-cart {
        width: 100%;
        justify-content: center;
    }
    
    .quantity-selector {
        justify-content: space-between;
    }
    
    .cart-header, .cart-row {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .cart-product img {
        width: 50px;
        height: 50px;
    }
    
    .cart-qty {
        width: 55px;
        padding: 5px;
    }
    
    .team-image {
        width: 120px;
        height: 120px;
    }
    
    .team-info .name {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        min-width: 240px;
    }
    
    .floating-cart {
        width: 42px;
        height: 42px;
        font-size: 18px;
        bottom: 70px;
        right: 12px;
    }
    
    .whatsapp-float {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
        bottom: 12px;
        right: 12px;
    }
}