/* ===== ROOT VARIABLES ===== */
:root {
    --primary-blue: #0f5491;
    --primary-blue-dark: #0a3d6b;
    --accent-blue: #0071df;
    --accent-red: #dd3333;
    --accent-yellow: #eeee22;
    --accent-purple: #8224e3;
    --text-dark: #1a1a2e;
    --text-medium: #555;
    --text-light: #888;
    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-gray: #eef1f5;
    --border-color: #e0e0e0;
    --success-green: #28a745;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --font-heading: 'Khand', 'Work Sans', sans-serif;
    --font-body: 'Work Sans', sans-serif;
    --font-serif: 'Libre Baskerville', serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

/* ===== CONTAINER ===== */
.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-blue);
    color: #fff;
    font-size: 12px;
    padding: 6px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left a { color: #fff; display: flex; align-items: center; gap: 5px; }
.top-bar-left a:hover { color: var(--accent-yellow); }
.top-bar-right { display: flex; gap: 15px; align-items: center; }
.top-bar-right a { color: rgba(255,255,255,0.85); }
.top-bar-right a:hover { color: var(--accent-yellow); }
.top-bar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.3); }

/* ===== HEADER ===== */
.site-header {
    background: var(--primary-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.header-main {
    display: flex;
    align-items: center;
    padding: 12px 0;
    gap: 20px;
}
.header-logo { flex-shrink: 0; }
.header-logo img { height: 48px; width: auto; }
.header-logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}
.header-logo-text span { color: var(--accent-yellow); }

.header-search {
    flex: 1;
    max-width: 600px;
    position: relative;
}
.header-search input {
    width: 100%;
    padding: 10px 50px 10px 18px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 14px;
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
}
.header-search input::placeholder { color: #999; }
.header-search input:focus { border-color: var(--accent-yellow); }
.header-search button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-red);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.2s;
}
.header-search button:hover { background: #c0282a; }

.header-extras {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.header-extra-item {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
    position: relative;
    font-size: 11px;
}
.header-extra-item:hover { background: rgba(255,255,255,0.1); }
.header-extra-item .iconify { font-size: 22px; margin-bottom: 2px; }
.header-extra-item .label { font-weight: 500; }
.mini-cart-counter {
    position: absolute;
    top: 2px;
    right: 4px;
    background: var(--accent-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== MAIN NAV ===== */
.main-nav {
    background: var(--accent-red);
    border-top: 2px solid var(--accent-yellow);
}
.main-nav .container {
    display: flex;
    align-items: center;
}
.cats-menu-btn {
    background: var(--text-dark);
    color: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    min-width: 220px;
    position: relative;
    transition: background 0.2s;
}
.cats-menu-btn:hover { background: #111; }
.cats-menu-btn .iconify { font-size: 20px; }
.cats-menu-btn .arrow { margin-left: auto; font-size: 14px; }

.primary-nav { display: flex; align-items: center; flex: 1; }
.primary-nav ul { display: flex; align-items: center; }
.primary-nav li { position: relative; }
.primary-nav li a {
    color: #fff;
    padding: 14px 16px;
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.primary-nav li a:hover,
.primary-nav li.current a { color: var(--accent-yellow); background: rgba(0,0,0,0.1); }

.nav-hot-badge {
    background: var(--accent-yellow);
    color: var(--text-dark);
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 4px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-toggle {
    display: none;
    color: #fff;
    font-size: 26px;
    padding: 8px;
}

/* ===== CATEGORY DROPDOWN ===== */
.cats-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 100;
    display: none;
    border-top: 3px solid var(--accent-red);
}
.cats-dropdown.active { display: block; }
.cats-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    color: var(--text-dark);
    font-size: 14px;
    border-bottom: 1px solid var(--bg-gray);
    transition: all 0.2s;
}
.cats-dropdown a:last-child { border-bottom: none; }
.cats-dropdown a:hover {
    background: var(--bg-light);
    color: var(--accent-blue);
    padding-left: 24px;
}
.cats-dropdown a .iconify { font-size: 18px; color: var(--text-light); }
.cats-dropdown a:hover .iconify { color: var(--accent-blue); }

/* ===== HERO SLIDER ===== */
.hero-section { position: relative; overflow: hidden; }
.hero-slider { position: relative; }
.hero-slide {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85);
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,84,145,0.9) 0%, rgba(15,84,145,0.5) 50%, transparent 100%);
}
.hero-slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    padding: 0 40px;
}
.hero-slide-content .subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: var(--accent-yellow);
    font-weight: 600;
}
.hero-slide-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}
.hero-slide-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.6;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-red);
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(221,51,51,0.4);
}
.hero-btn:hover {
    background: #c0282a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221,51,51,0.5);
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.hero-dot.active {
    background: var(--accent-yellow);
    border-color: #fff;
    transform: scale(1.1);
}
.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}
.hero-arrow {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s;
}
.hero-arrow:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

/* ===== FEATURES BAR ===== */
.features-bar {
    background: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    transition: all 0.3s;
}
.feature-item:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}
.feature-text h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--text-dark); }
.feature-text p { font-size: 12px; color: var(--text-light); margin-top: 1px; }

/* ===== SECTION TITLES ===== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    padding-left: 16px;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--accent-red);
    border-radius: 2px;
}
.section-view-all {
    color: var(--accent-blue);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}
.section-view-all:hover { color: var(--accent-purple); }

/* ===== CATEGORIES ===== */
.categories-section { padding: 40px 0; }
.cats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}
.cat-card {
    text-align: center;
    padding: 24px 12px;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}
.cat-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.cat-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}
.cat-card h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 600; }
.cat-card p { font-size: 11px; color: var(--text-light); margin-top: 3px; }

/* ===== PRODUCTS ===== */
.products-section { padding: 40px 0; background: var(--bg-light); }
.products-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    background: var(--bg-white);
    border-radius: 50px;
    padding: 4px;
    box-shadow: var(--shadow-sm);
    width: fit-content;
}
.products-tab {
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-medium);
    transition: all 0.3s;
    cursor: pointer;
}
.products-tab.active {
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 2px 8px rgba(221,51,51,0.3);
}
.products-tab:hover:not(.active) { color: var(--accent-blue); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}
.product-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg-gray);
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
}
.badge-new { background: var(--success-green); }
.badge-sale { background: var(--accent-red); }
.badge-hot { background: #ff6900; }

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    z-index: 2;
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
    width: 36px;
    height: 36px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-medium);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}
.product-action-btn:hover {
    background: var(--accent-red);
    color: #fff;
}

.product-card-body { padding: 16px; }
.product-card-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 6px;
}
.product-card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}
.product-card:hover .product-card-title { color: var(--accent-blue); }
.product-card-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.price-current {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-red);
}
.price-original {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #f5a623;
}
.product-rating span { color: var(--text-light); font-size: 12px; }
.add-to-cart-btn {
    background: var(--primary-blue);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}
.add-to-cart-btn:hover {
    background: var(--accent-red);
    transform: scale(1.05);
}

/* ===== BANNER CTA ===== */
.banner-cta-section { padding: 40px 0; }
.banner-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.banner-cta-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    padding: 30px;
    cursor: pointer;
}
.banner-cta-card > * { position: relative; z-index: 1; }
.banner-cta-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.banner-cta-card p { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 16px; }
.banner-cta-btn {
    background: #fff;
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.banner-cta-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== SERVICES ===== */
.services-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a3d6b 100%);
    color: #fff;
}
.services-section .section-title { color: #fff; }
.services-section .section-title::before { background: var(--accent-yellow); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}
.service-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}
.service-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--accent-yellow), #f0d000);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--text-dark);
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.service-card p { font-size: 14px; opacity: 0.85; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 60px 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars {
    color: #f5a623;
    font-size: 16px;
    margin-bottom: 14px;
    display: flex;
    gap: 2px;
}
.testimonial-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 18px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-gray);
}
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--text-light); }

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 50px 0;
    background: var(--bg-light);
}
.newsletter-box {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-sm);
}
.newsletter-text { flex: 1; }
.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}
.newsletter-text p { color: var(--text-medium); font-size: 14px; }
.newsletter-form {
    display: flex;
    gap: 8px;
    flex: 1.2;
}
.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--accent-blue); }
.newsletter-form button {
    background: var(--accent-red);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.newsletter-form button:hover { background: #c0282a; transform: translateY(-1px); }

/* ===== FOOTER ===== */
.site-footer { background: #0d1b2a; color: rgba(255,255,255,0.7); padding-top: 50px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about .footer-logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}
.footer-about .footer-logo span { color: var(--accent-yellow); }
.footer-about p { font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--accent-red);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent-red);
    border-radius: 2px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.footer-col ul li a:hover {
    color: var(--accent-yellow);
    padding-left: 4px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
}
.footer-contact li .iconify { font-size: 16px; color: var(--accent-blue); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}
.footer-payments { display: flex; gap: 8px; align-items: center; }
.footer-payments .iconify { font-size: 32px; color: rgba(255,255,255,0.4); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.whatsapp-btn {
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: all 0.3s;
    animation: waPulse 2s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-label {
    background: #184c72;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 25px rgba(37,211,102,0.6); }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--accent-red); transform: translateY(-2px); }

/* ===== TOAST ===== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.toast {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 4px solid var(--success-green);
}
.toast.show { transform: translateX(0); }
.toast .iconify { font-size: 20px; color: var(--success-green); }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .cats-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-slide { height: 350px; }
    .hero-slide-content h2 { font-size: 34px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .mobile-toggle { display: flex; }
    .header-search { display: none; }
    .header-extras .header-extra-item .label { display: none; }
    .main-nav .container { flex-wrap: wrap; }
    .cats-menu-btn { min-width: auto; padding: 12px 16px; font-size: 14px; }
    .primary-nav { display: none; width: 100%; flex-direction: column; }
    .primary-nav.active { display: flex; }
    .primary-nav ul { flex-direction: column; width: 100%; }
    .primary-nav li a { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }

    .hero-slide { height: 280px; }
    .hero-slide-content { padding: 0 20px; }
    .hero-slide-content h2 { font-size: 26px; }
    .hero-slide-content p { font-size: 14px; }
    .hero-slide-content .subtitle { font-size: 11px; }

    .cats-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .banner-cta-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .newsletter-box { flex-direction: column; text-align: center; padding: 28px 20px; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .features-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 22px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-card-img { height: 160px; }
    .product-card-body { padding: 10px; }
    .product-card-title { font-size: 13px; }
    .price-current { font-size: 16px; }
    .add-to-cart-btn { padding: 6px 10px; font-size: 11px; }
    .cats-grid { gap: 10px; }
    .cat-card { padding: 16px 8px; }
    .cat-card-icon { width: 50px; height: 50px; font-size: 22px; }
}