/* ============================================= */
/* MARKITO.PK MASTER CSS FILE                    */
/* Includes: Header + Home + Footer Styles       */
/* ============================================= */

/* ============================================= */
/* RESET & BASE STYLES                           */
/* ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #EFF6FF;
    --accent: #F97316;
    --bg: #F8FAFC;
    --bg-white: #FFFFFF;
    --fg: #0F172A;
    --fg-secondary: #334155;
    --fg-muted: #64748B;
    --gold: #F59E0B;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --radius: 16px;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
    --header-height: 72px;
    --topbar-height: 40px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--fg);
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 14px;
}

/* ============================================= */
/* CONTAINER                                     */
/* ============================================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1400px) {
    .container { max-width: 1280px; }
}
@media (min-width: 1280px) and (max-width: 1399px) {
    .container { max-width: 1200px; }
}
@media (min-width: 992px) and (max-width: 1279px) {
    .container { max-width: 960px; }
}
@media (min-width: 768px) and (max-width: 991px) {
    .container { max-width: 750px; padding: 0 15px; }
}
@media (max-width: 767px) {
    .container { max-width: 100%; padding: 0 15px; }
}

/* ============================================= */
/* HEADER STYLES                                 */
/* ============================================= */
/* Top Bar */
.markito-topbar {
    background: #0B1E33;
    color: rgba(255,255,255,0.9);
    height: var(--topbar-height);
    font-size: 12px;
    display: flex;
    align-items: center;
}

.markito-topbar .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .markito-topbar .container { padding: 0 24px; }
}

.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 20px; align-items: center; }

.topbar-left a, .topbar-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    white-space: nowrap;
    color: inherit;
    font-weight: 500;
    text-decoration: none;
}

.topbar-left a:hover, .topbar-right a:hover { color: white; }

@media (max-width: 767px) {
    .topbar-left { display: none; }
    .topbar-right { font-size: 10px; gap: 10px; }
}

/* Main Header */
.markito-header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.markito-header .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 16px;
}

@media (min-width: 768px) {
    .markito-header .container { padding: 0 24px; }
}

.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 20px;
    color: var(--fg);
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 992px) {
    .mobile-toggle { display: none; }
}

.markito-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    min-width: 140px;
    height: 38px;
}

.markito-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

.header-search {
    flex: 1;
    max-width: 620px;
    margin: 0 auto;
    display: none;
}

@media (min-width: 576px) {
    .header-search { display: block; }
}

.search-bar {
    display: flex;
    align-items: center;
    border: 2px solid var(--primary);
    border-radius: 60px;
    overflow: hidden;
    height: 42px;
    background: var(--bg-white);
    transition: var(--transition);
}

.search-bar:focus-within {
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 0 16px;
    height: 100%;
    font-size: 14px;
    outline: none;
    background: transparent;
    color: var(--fg);
}

.search-bar input::placeholder { color: var(--fg-muted); }

.search-bar button {
    background: var(--primary);
    color: white;
    padding: 0 18px;
    height: 100%;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.search-bar button:hover { background: var(--primary-dark); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 10px;
    border-radius: var(--radius);
    transition: background 0.2s;
    position: relative;
    color: var(--fg-secondary);
    min-width: 40px;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.action-btn:hover {
    background: var(--bg);
    color: var(--primary);
}

.action-btn i { font-size: 20px; }
.action-label { font-size: 10px; font-weight: 500; white-space: nowrap; }

@media (max-width: 991px) {
    .action-label { display: none; }
}

.whatsapp-btn {
    background: #25D366;
    color: white !important;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.2s;
    flex-shrink: 0;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #1da851;
}

/* Category Navigation */
.category-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    display: none;
}

@media (min-width: 992px) {
    .category-nav { display: block; }
}

.category-nav .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: stretch;
    height: 48px;
    position: relative;
    justify-content: flex-start;
}

.cat-nav-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    height: 100%;
    background: var(--primary);
    color: white;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    z-index: 102;
    transition: background 0.2s;
    flex-shrink: 0;
    border-radius: 8px 8px 0 0;
    border: none;
}

.cat-nav-all:hover { background: var(--primary-dark); }
.cat-nav-all i:last-child {
    font-size: 10px;
    margin-left: auto;
    transition: transform 0.3s;
}

.cat-mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-top: 2px solid var(--primary);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 101;
    padding: 8px 0;
}

.cat-nav-all:hover + .cat-mega-dropdown,
.cat-mega-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cat-nav-all:hover i:last-child { transform: rotate(180deg); }

.cat-mega-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--fg-secondary);
    transition: var(--transition);
    text-decoration: none;
}

.cat-mega-dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 26px;
}

.cat-mega-dropdown a i {
    width: 20px;
    text-align: center;
    font-size: 15px;
    color: var(--fg-muted);
    transition: color 0.2s;
}

.cat-mega-dropdown a:hover i { color: var(--primary); }

.cat-nav-links {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
    margin-left: 16px;
}

.cat-nav-links a {
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--fg-secondary);
    white-space: nowrap;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    text-decoration: none;
}

.cat-nav-links a:hover {
    color: var(--primary);
    background: var(--primary-light);
    border-bottom-color: var(--primary);
}

/* Bottom Navigation Mobile */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
}

@media (min-width: 992px) {
    .bottom-nav { display: none; }
}

.bnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    font-weight: 600;
    color: var(--fg-muted);
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    height: 100%;
    justify-content: center;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bnav-item i { font-size: 19px; }
.bnav-item.active { color: var(--primary); }
.bnav-item.bnav-cart { color: var(--primary); }

.bnav-item.bnav-cart .bnav-badge {
    position: absolute;
    top: 2px;
    right: 4px;
    background: var(--accent);
    color: white;
    font-size: 8px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Modal */
.search-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-box {
    background: white;
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.08);
    transform: translateY(-20px) scale(0.97);
    transition: transform 0.3s ease;
}

.search-modal.active .search-modal-box {
    transform: translateY(0) scale(1);
}

.search-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
}

.search-modal-header span {
    font-size: 15px;
    font-weight: 700;
    color: var(--fg);
}

.search-modal-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--fg-secondary);
    transition: var(--transition);
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}

.search-modal-close-btn:hover {
    background: var(--accent-light);
    color: var(--accent);
}

.search-modal-bar {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 10px;
}

.search-modal-bar input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    outline: none;
    background: var(--bg);
    transition: border-color 0.2s;
}

.search-modal-bar input:focus {
    border-color: var(--primary);
    background: var(--bg-white);
}

.search-modal-bar button {
    background: var(--primary);
    color: white;
    padding: 14px 22px;
    font-size: 16px;
    border-radius: var(--radius);
    transition: background 0.2s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.search-modal-bar button:hover { background: var(--primary-dark); }

.search-modal-hint {
    padding: 0 16px 14px;
    font-size: 12px;
    color: var(--fg-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-modal-hint kbd {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 11px;
    font-family: inherit;
    font-weight: 600;
}

@media (max-width: 575px) {
    .search-modal {
        padding: 0;
        padding-top: 0;
        align-items: stretch;
        background: rgba(0,0,0,0.7);
    }
    .search-modal-box {
        max-width: 100%;
        border-radius: 0;
        margin-top: auto;
        max-height: 100vh;
        transform: translateY(100%);
    }
    .search-modal.active .search-modal-box { transform: translateY(0); }
    .search-modal-hint { display: none; }
}

/* Offcanvas Mobile Menu */
.offcanvas-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.6);
    backdrop-filter: blur(3px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.offcanvas-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: var(--bg-white);
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
}

.offcanvas.active { transform: translateX(0); }

.offcanvas-head {
    padding: 16px 20px;
    background: var(--primary);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offcanvas-head span {
    font-size: 18px;
    font-weight: 700;
}

.offcanvas-close {
    color: white;
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    background: none;
    border: none;
    cursor: pointer;
}

.offcanvas-close:hover { background: rgba(255,255,255,0.2); }

.offcanvas-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
    list-style: none;
}

.offcanvas-body > li > a,
.offcanvas-body .mob-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--fg);
    transition: background 0.15s;
    text-decoration: none;
}

.offcanvas-body > li > a:hover,
.offcanvas-body .mob-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.offcanvas-body > li { border-bottom: 1px solid var(--border-light); }

.mob-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #FAFAFA;
    list-style: none;
}

.mob-submenu.open { max-height: 500px; }

.mob-submenu a {
    display: block;
    padding: 10px 20px 10px 36px;
    font-size: 13px;
    color: var(--fg-secondary);
    border-left: 3px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.mob-submenu a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
    background: white;
}

.offcanvas-foot {
    padding: 16px 20px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.offcanvas-foot a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--fg-secondary);
    text-decoration: none;
}

.offcanvas-foot a i { color: var(--primary); }

@media (max-width: 576px) {
    .markito-logo img { max-width: 130px; }
    .header-actions { gap: 2px; }
}

/* ============================================= */
/* HOME PAGE STYLES                              */
/* ============================================= */
/* Hero Slider */
.hero-section {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3/1;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .hero-image { aspect-ratio: 16/9; }
}

.hero-slider-active .slick-prev,
.hero-slider-active .slick-next {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.2s;
}

.hero-slider-active .slick-prev { left: 20px; }
.hero-slider-active .slick-next { right: 20px; }

.hero-slider-active .slick-prev:before,
.hero-slider-active .slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 16px;
    color: #0F172A;
}

.hero-slider-active .slick-prev:before { content: '\f053'; }
.hero-slider-active .slick-next:before { content: '\f054'; }

.hero-slider-active .slick-prev:hover,
.hero-slider-active .slick-next:hover {
    background: #2563EB;
}

.hero-slider-active .slick-prev:hover:before,
.hero-slider-active .slick-next:hover:before {
    color: white;
}

.hero-slider-active .slick-dots { bottom: 15px; }
.hero-slider-active .slick-dots li button:before {
    font-size: 10px;
    color: white;
    opacity: 0.7;
}
.hero-slider-active .slick-dots li.slick-active button:before {
    color: #2563EB;
    opacity: 1;
}

/* Features Strip */
.features-strip {
    padding: 30px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #EFF6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #2563EB;
    transition: all 0.3s;
}

.feature-item:hover .feature-icon {
    background: #2563EB;
    color: white;
    transform: translateY(-3px);
}

.feature-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 12px;
    color: #64748B;
}

/* Category Circles */
.category-circles {
    padding: 40px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.circles-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 10px;
    border-radius: 16px;
    transition: all 0.3s;
}

.circle-item:hover {
    background: #EFF6FF;
    transform: translateY(-3px);
}

.circle-icon {
    width: 70px;
    height: 70px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #2563EB;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.circle-item:hover .circle-icon {
    background: #2563EB;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(37,99,235,0.2);
}

.circle-label {
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    text-align: center;
}

.circle-item:hover .circle-label { color: #2563EB; }

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-header.center { justify-content: center; text-align: center; }

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    position: relative;
    padding-left: 14px;
    border-left: 4px solid #2563EB;
}

.section-header.center .section-title {
    border-left: none;
    padding-left: 0;
}

.view-all {
    color: #2563EB;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.view-all:hover {
    gap: 10px;
    color: #1D4ED8;
}

/* Sections */
.featured-section {
    padding: 50px 0;
    background: #FFFFFF;
}

.category-section {
    padding: 50px 0;
    border-top: 1px solid #E2E8F0;
}

.reviews-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
}

/* Slick Slider Container */
.products-slider {
    margin: 0 -10px;
}

.products-slider .slick-slide {
    padding: 0 10px;
}

/* Product Card */
.product-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -12px rgba(0,0,0,0.15);
    border-color: #CBD5E1;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.hot { background: #F59E0B; color: white; }
.product-badge.sale { background: #F97316; color: white; }

.product-image {
    aspect-ratio: 1/1;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img { transform: scale(1.05); }

.product-details { padding: 14px; }

.product-name {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
    min-height: 36px;
}

.product-name a {
    color: #0F172A;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-name a:hover { color: #2563EB; }

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.stars { display: flex; gap: 2px; }
.stars i { font-size: 11px; color: #F59E0B; }
.stars i.far { color: #CBD5E1; }
.review-count { font-size: 11px; color: #64748B; }

.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.sale-price {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
}

.regular-price {
    font-size: 12px;
    color: #64748B;
    text-decoration: line-through;
}

.discount-badge {
    font-size: 11px;
    font-weight: 700;
    color: #F97316;
}

.buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px 12px;
    background: #2563EB;
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.buy-btn:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
}

/* Slick Navigation Arrows - Product Sliders */
.products-slider .slick-prev,
.products-slider .slick-next,
.reviews-slider .slick-prev,
.reviews-slider .slick-next {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all 0.2s;
}

.products-slider .slick-prev { left: -15px; }
.products-slider .slick-next { right: -15px; }

.products-slider .slick-prev:before,
.products-slider .slick-next:before,
.reviews-slider .slick-prev:before,
.reviews-slider .slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: #0F172A;
}

.products-slider .slick-prev:before { content: '\f053'; }
.products-slider .slick-next:before { content: '\f054'; }

.products-slider .slick-prev:hover,
.products-slider .slick-next:hover,
.reviews-slider .slick-prev:hover,
.reviews-slider .slick-next:hover {
    background: #2563EB;
}

.products-slider .slick-prev:hover:before,
.products-slider .slick-next:hover:before,
.reviews-slider .slick-prev:hover:before,
.reviews-slider .slick-next:hover:before {
    color: white;
}

/* Review Card */
.review-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    margin: 0 12px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.review-card:hover { transform: translateY(-5px); }

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.review-stars i {
    font-size: 13px;
    color: #F59E0B;
}

.review-text {
    font-size: 13px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 16px;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer .avatar {
    width: 44px;
    height: 44px;
    background: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 15px;
}

.reviewer .info h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.reviewer .info span {
    font-size: 11px;
    color: #10B981;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================= */
/* FOOTER STYLES                                 */
/* ============================================= */
.site-footer {
    background: #0B1E33;
    color: #CBD5E1;
    padding: 50px 0 0;
    margin-top: 60px;
}

.site-footer .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .site-footer .container { padding: 0 24px; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 576px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

.footer-brand img {
    filter: brightness(0) invert(1);
    height: 36px;
    margin-bottom: 16px;
    max-width: 180px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #CBD5E1;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s ease;
    color: #CBD5E1;
    text-decoration: none;
}

.footer-social a:hover {
    background: #2563EB;
    color: white;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #2563EB;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #CBD5E1;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 4px;
}

.footer-col ul li a i {
    font-size: 11px;
    color: #2563EB;
    width: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 12px;
    color: #CBD5E1;
}

.footer-contact li i {
    color: #2563EB;
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    font-size: 12px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p { color: #94A3B8; }

.footer-payments img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-payments img:hover { opacity: 1; }

/* ============================================= */
/* RESPONSIVE MEDIA QUERIES                      */
/* ============================================= */
@media (max-width: 1200px) {
    .circles-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .circle-icon { width: 60px; height: 60px; font-size: 24px; }
}

@media (max-width: 992px) {
    .products-slider .slick-prev,
    .products-slider .slick-next { display: none !important; }
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .feature-item { padding: 8px; }
    .feature-icon { width: 45px; height: 45px; font-size: 18px; }
    .feature-text h4 { font-size: 13px; }
    .feature-text p { font-size: 10px; }
    .circles-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .circle-icon { width: 55px; height: 55px; font-size: 22px; }
    .circle-label { font-size: 10px; }
    .featured-section, .category-section { padding: 35px 0; }
    .section-title { font-size: 20px; }
    .product-details { padding: 10px; }
    .product-name { font-size: 11px; min-height: 30px; }
    .sale-price { font-size: 14px; }
    .buy-btn { padding: 6px 8px; font-size: 10px; }
    .review-card { padding: 18px; }
    .site-footer { padding: 40px 0 0; }
    .footer-col h4 { margin-bottom: 14px; }
    .footer-col h4::after { width: 30px; }
}

@media (max-width: 576px) {
    .circles-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .circle-icon { width: 50px; height: 50px; font-size: 20px; }
    .circle-label { font-size: 9px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .products-slider .slick-prev,
    .products-slider .slick-next,
    .reviews-slider .slick-prev,
    .reviews-slider .slick-next { display: none !important; }
    .hero-slider-active .slick-prev,
    .hero-slider-active .slick-next { width: 30px; height: 30px; }
    .hero-slider-active .slick-prev:before,
    .hero-slider-active .slick-next:before { font-size: 13px; }
    .section-title { font-size: 18px; }
    .footer-brand img { height: 30px; }
    .footer-social a { width: 32px; height: 32px; font-size: 12px; }
}