/* ============================================
   OEH STORE - Modern E-Commerce Theme
   Colors: #d25351 (Red) | #1c703d (Green) | #fdbd43 (Yellow) | #ffffff | #000000
   ============================================ */

:root {
    --primary: #d25351;
    --primary-dark: #b8403e;
    --secondary: #1c703d;
    --secondary-dark: #155a30;
    --accent: #fdbd43;
    --accent-dark: #e5a830;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gray-100);
    color: var(--gray-800);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(210, 83, 81, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(28, 112, 61, 0.4);
}

.btn-accent {
    background: var(--accent);
    color: var(--black);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 4px 0;
    font-size: 11px;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-800);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--primary);
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: var(--gray-400);
    transition: var(--transition);
    font-size: 12px;
}

.top-bar-right a:hover {
    color: var(--white);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.main-header {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10002;
}

.header-top {
    padding: 0px 0;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(210, 83, 81, 0.3);
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
}

.hide-desktop {
    display: none;
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-bar form {
    display: flex;
    background: var(--gray-100);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.search-bar form:focus-within {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(210, 83, 81, 0.1);
}

.search-bar input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: transparent;
    font-size: 13px;
    color: var(--gray-800);
    outline: none;
    font-weight: 500;
}

.search-bar input::placeholder {
    color: var(--gray-500);
}

.search-bar button {
    padding: 0 20px;
    background: transparent;
    color: var(--gray-600);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.search-bar button:hover {
    color: var(--primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    padding: 6px 10px;
    border-radius: 6px;

}

.header-action-btn:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.header-action-btn i {
    font-size: 18px;
}

.header-action-btn span {
    display: inline-block;
    padding: 4px !important;
    padding-top: 0px !important;
}

.header-action-btn.cart-btn {
    background: var(--gray-100);
    padding-right: 12px;
    color: var(--gray-800);

}

.header-action-btn.cart-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.cart-btn .icon-wrapper {
    position: relative;
    padding: 2px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-action-btn.cart-btn:hover .cart-count {
    border-color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-800);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

/* Main Navigation */
.header-nav {
    border-bottom: 1px solid var(--gray-100);
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li>a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.main-nav ul li>a i {
    font-size: 14px;
}

.main-nav ul li>a i.ml-1 {
    margin-left: 4px;
    font-size: 11px;
}

.main-nav ul li:hover>a,
.main-nav ul li>a.active {
    color: var(--primary);
}

.main-nav ul li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.main-nav ul li:hover>a::after,
.main-nav ul li>a.active::after {
    width: 100%;
}

.main-nav .admin-link {
    color: var(--secondary) !important;
}

.main-nav .admin-link:hover {
    background: rgba(28, 112, 61, 0.05);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    padding: 10px 0;
    border-top: 2px solid var(--primary);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    color: var(--gray-700);
    padding: 10px 20px;
    border-bottom: none;
    font-size: 14px;
    display: block;
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background: var(--gray-100);
    color: var(--primary);
    padding-left: 25px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 0;
        padding: 5px 0 2px 0;
        align-items: center;
    }

    .header-top {
        padding: 0;
    }

    .logo {
        order: 1;
        margin-right: auto;
    }

    .header-actions {
        order: 2;
        gap: 8px;
        display: flex !important;
        align-items: center;
    }

    /* Reveal Account button on mobile if it was hidden */
    .header-action-btn.hide-mobile {
        display: flex !important;
    }

    /* Ensure spans (text) are hidden on mobile to save space */
    .header-action-btn span {
        display: none !important;
    }

    /* Ensure icon wrapper for cart is visible */
    .cart-btn .icon-wrapper {
        display: flex;
    }

    .mobile-menu-btn {
        order: 3;
        display: block;
        margin-left: 5px;
        padding: 5px;
        font-size: 20px;
    }

    /* Adjust cart count position for mobile */
    .cart-count {
        top: -4px;
        right: -4px;
        width: 14px;
        height: 14px;
        font-size: 8px;
        line-height: 1;
        padding: 0;
    }

    .search-bar {
        order: 4;
        width: 100%;
        min-width: 100%;
        flex: 0 0 100%;
        /* Force full width and prevent shrinking */
        margin-top: 5px;
        display: block;
    }

    /* Fix search bar collapsing on focus */
    .search-bar form {
        width: 100%;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        box-shadow: none;
    }

    .header-action-btn {
        padding: 6px;
    }

    /* Nav */
    .header-nav {
        border: none;
        padding: 0;
    }

    .main-nav {
        display: block;
        position: fixed;
        top: 0;
        left: -320px;
        /* Hide off-canvas */
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 10001;
        /* Above everything */
        transition: left 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        overflow-y: auto;
        padding-top: 0;
    }

    .nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid var(--gray-100);
        background: var(--gray-50);
    }

    .nav-title {
        font-weight: 700;
        font-size: 18px;
        color: var(--gray-900);
    }

    .nav-close-btn {
        background: none;
        border: none;
        font-size: 20px;
        color: var(--gray-500);
        cursor: pointer;
        padding: 5px;
        transition: var(--transition);
    }

    .nav-close-btn:hover {
        color: var(--red);
        transform: rotate(90deg);
    }

    .hide-desktop {
        display: flex;
    }

    .main-nav.active {
        left: 0;
    }

    /* Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(2px);
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav ul li>a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--gray-100);
        width: 100%;
        color: var(--gray-800);
    }

    .main-nav ul li>a:hover {
        background: var(--gray-50);
        color: var(--primary);
    }

    .main-nav ul li>a::after {
        display: none;
    }

    .main-nav ul li>a.active {
        background: var(--gray-50);
        color: var(--primary);
    }

    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border: none;
        padding: 0;
        background: var(--gray-50);
    }

    .has-dropdown:hover .dropdown {
        display: block;
    }

    .dropdown li a {
        padding-left: 40px;
        padding-top: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--gray-200);
    }
}

@media (max-width: 576px) {
    .header-actions {
        gap: 5px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .btn {
    background: var(--accent);
    color: var(--black);
    font-size: 16px;
    padding: 16px 40px;
}

.hero-section .btn:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section {
    padding: 60px 0;
}

.categories-section h2,
.products-section h2,
.related-products h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--gray-900);
    position: relative;
}

.categories-section h2::after,
.products-section h2::after,
.related-products h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: 60px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: auto;
    overflow: hidden;
    background: var(--gray-100);
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.product-info .category {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.regular-price {
    text-decoration: line-through;
    color: var(--gray-500);
    font-size: 14px;
}

.sale-price,
.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.product-info .btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
}

.product-info .btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 25px 0;
    text-align: center;
    color: var(--gray-500);
}

/* ============================================
   FORMS & INPUTS
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-700);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(210, 83, 81, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
}

/* ============================================
   AUTH PAGES (Login/Register)
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

.auth-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
}

.auth-card h1 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.auth-card .subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 35px;
}

.auth-card .btn {
    width: 100%;
    margin-top: 10px;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    color: var(--gray-600);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}


/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 50px 0;
    margin-top: 60px;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    outline: none;
}

.newsletter-form .btn {
    white-space: nowrap;
    background: var(--gray-900);
}

.newsletter-form .btn:hover {
    background: var(--black);
}

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 28px;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn.facebook:hover {
    background: #1877f2;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.twitter:hover {
    background: #1da1f2;
}

.social-btn.whatsapp:hover {
    background: #25d366;
}

.social-btn.youtube:hover {
    background: #ff0000;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links li a i {
    font-size: 10px;
    color: var(--primary);
}

.footer-links li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px;
}

/* Footer Features */
.footer-features {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 30px;
    color: var(--primary);
}

.feature-item h5 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 3px;
}

.feature-item p {
    font-size: 13px;
    color: var(--gray-500);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li a {
        justify-content: left;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* ============================================
   SHOP PAGE
   ============================================ */

/* Shop Banner */
.shop-banner {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    padding: 50px 0;
    margin-bottom: 40px;
}

.shop-banner h1 {
    color: var(--white);
    font-size: 2.5em;
    margin-bottom: 10px;
}

.shop-banner .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 14px;
}

.shop-banner .breadcrumb a {
    color: var(--gray-400);
}

.shop-banner .breadcrumb a:hover {
    color: var(--white);
}

.shop-banner .breadcrumb i {
    font-size: 10px;
}

.shop-banner .breadcrumb span {
    color: var(--primary);
}

/* Shop Layout */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

/* Sidebar */
.shop-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
}

.filter-card h3 {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-card h3 i {
    color: var(--primary);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 10px;
    color: var(--gray-700);
    transition: var(--transition);
    font-weight: 500;
    font-size: 15px;
}

.category-list li a i {
    font-size: 14px;
    color: var(--gray-400);
    transition: var(--transition);
}

.category-list li a .count {
    margin-left: auto;
    background: #e9ecef;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--gray-600);
    min-width: 32px;
    text-align: center;
    transition: var(--transition);
}

.category-list li a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.category-list li a.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(210, 83, 81, 0.3);
}

.category-list li a.active i {
    color: var(--white);
}

.category-list li a.active .count {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* Subcategory List */
.subcategory-list {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
}

.subcategory-list li {
    margin-bottom: 4px;
}

.subcategory-item {
    font-size: 0.9em;
    padding: 8px 12px !important;
}

/* Childcategory List */
.childcategory-list {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
}

.childcategory-item {
    font-size: 0.85em;
    padding: 8px 12px !important;
    color: var(--gray-600);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
}

.childcategory-item.active {
    background: var(--primary) !important;
    color: var(--white) !important;
}

.childcategory-item.active .count {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* Price Filter */
.price-filter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-input {
    flex: 1;
}

.price-input label {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 5px;
}

.price-input input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.price-separator {
    color: var(--gray-400);
    margin-top: 20px;
}

.btn-block {
    width: 100%;
}

/* Filter Checkbox */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-700);
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* Shop Content */
.shop-content {
    min-width: 0;
}

/* Shop Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.results-count {
    color: var(--gray-600);
    font-size: 14px;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-dropdown label {
    font-size: 14px;
    color: var(--gray-600);
}

.sort-dropdown select {
    padding: 8px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 14px;
    cursor: pointer;
    background: var(--white);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card .product-image {
    position: relative;
    height: auto;
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card .sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-card .product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    transition: var(--transition);
}

.product-card:hover .product-actions {
    bottom: 0;
}

.product-card .action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--gray-700);
    transition: var(--transition);
}

.product-card .action-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.product-card .product-info {
    padding: 20px;
}

.product-card .product-category {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.product-card .product-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card .product-info h3 a {
    color: var(--gray-800);
}

.product-card .product-info h3 a:hover {
    color: var(--primary);
}

.product-card .product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.product-card .old-price {
    color: var(--gray-500);
    text-decoration: line-through;
    font-size: 14px;
}

.product-card .current-price {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

.product-card .product-stock {
    font-size: 13px;
}

.product-card .in-stock {
    color: var(--secondary);
}

.product-card .out-stock {
    color: var(--primary);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary);
    color: var(--white);
}

.page-dots {
    color: var(--gray-500);
}

/* No Products */
.no-products {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.no-products i {
    font-size: 60px;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.no-products h3 {
    font-size: 24px;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.no-products p {
    color: var(--gray-500);
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    /* Mobile Shop Sidebar (Off-canvas) */
    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        z-index: 11000;
        /* Must be higher than header (10002) */
        overflow-y: auto;
        padding: 20px;
        padding-bottom: 80px;
        /* Space for bottom scroll */
        transition: var(--transition);
        display: block;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    }

    .shop-sidebar.active {
        left: 0;
    }

    .shop-sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(2px);
    }

    .shop-sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .sidebar-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--gray-200);
    }

    .shop-sidebar .filter-card {
        box-shadow: none;
        padding: 0;
        margin-bottom: 25px;
        border: none;
    }

    .sidebar-mobile-header h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--gray-900);
        margin: 0;
    }

    .sidebar-close-btn {
        background: none;
        border: none;
        font-size: 20px;
        color: var(--gray-500);
        cursor: pointer;
        padding: 5px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-sidebar {
        grid-template-columns: 1fr;
    }

    .shop-toolbar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card .product-image {
        height: auto;
    }

    .product-card .product-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        margin-bottom: 5px;
    }

    .product-card .old-price {
        font-size: 12px;
        order: 1;
        line-height: 1.2;
    }

    .product-card .current-price {
        font-size: 16px;
        order: 2;
        line-height: 1.2;
    }

    .sale-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card .product-image {
        height: auto;
    }

    .product-card .product-info {
        padding: 10px;
    }

    .product-card h3 {
        font-size: 13px;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-card .product-category {
        font-size: 9px;
        margin-bottom: 3px;
    }

    .product-card .product-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        margin-bottom: 0;
    }

    .product-card .old-price {
        font-size: 11px;
        order: 1;
    }

    .product-card .current-price {
        font-size: 15px;
        order: 2;
    }

    .sale-badge {
        font-size: 10px;
        padding: 2px 6px;
    }
}


/* ============================================
   HOMEPAGE STYLES
   ============================================ */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    overflow: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    padding-right: 30px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3.5em;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Features Section */
.features-section {
    padding: 15px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: var(--white);
}

.feature-box:hover {
    background: var(--gray-100);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 13px;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.feature-content p {
    font-size: 11px;
    color: var(--gray-500);
    margin: 0;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.8em;
    color: var(--gray-900);
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.view-all-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all-btn:hover {
    gap: 12px;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 0.15;
}

.category-card .category-image {
    position: absolute;
    inset: 0;
}

.category-card .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image img {
    transform: scale(1.15) rotate(2deg);
}

.category-card .category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 35px 25px;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(210, 83, 81, 0.95) 0%, rgba(210, 83, 81, 0.7) 60%, rgba(210, 83, 81, 0.3) 100%);
    padding-bottom: 40px;
}

.category-card .category-overlay i {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-overlay i {
    transform: translateY(-10px) scale(1.1);
    color: var(--accent);
    text-shadow: 0 6px 20px rgba(253, 189, 67, 0.5);
}

.category-card .category-overlay h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    color: var(--white);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.category-card:hover .category-overlay h3 {
    transform: translateY(-5px);
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.category-card .category-overlay span {
    font-size: 10px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.category-card .category-overlay span i {
    display: none;
}

.category-card:hover .category-overlay span {
    opacity: 1;
    transform: translateY(0);
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(210, 83, 81, 0.3);
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.products-section.new-arrivals {
    background: var(--white);
}

.products-grid.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

.new-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Promo Banner */
.promo-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.promo-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.promo-text h2 {
    font-size: 2.8em;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-text p {
    color: var(--gray-400);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.promo-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* Why Choose Us */
.why-us-section {
    padding: 80px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-us-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: var(--radius);
    background: var(--gray-100);
    transition: var(--transition);
}

.why-us-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 30px;
}

.why-us-card h4 {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.why-us-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid.four-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .promo-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .view-all-btn {
        position: static;
        transform: none;
        margin-top: 15px;
        display: inline-flex;
    }

    .section-header {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }

    .feature-box {
        padding: 8px 10px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .feature-content h4 {
        font-size: 11px;
    }

    .feature-content p {
        font-size: 9px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        height: 280px;
    }

    .section-header h2 {
        font-size: 2em;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 200px;
    }

    .products-grid,
    .products-grid.four-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .promo-text h2 {
        font-size: 2em;
    }
}


/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    padding: 50px 0;
    margin-bottom: 40px;
}

.page-banner h1 {
    color: var(--white);
    font-size: 2.2em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-banner h1 i {
    color: var(--primary);
}

.page-banner .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 14px;
}

.page-banner .breadcrumb a {
    color: var(--gray-400);
}

.page-banner .breadcrumb a:hover {
    color: var(--white);
}

.page-banner .breadcrumb i {
    font-size: 10px;
}

.page-banner .breadcrumb span {
    color: var(--primary);
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    margin-bottom: 60px;
}

.cart-items {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 20px;
}

.cart-count {
    font-weight: 600;
    color: var(--gray-700);
}

.continue-shopping {
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.continue-shopping:hover {
    gap: 12px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 150px 100px 50px;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.cart-item:last-of-type {
    border-bottom: none;
}

.item-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.item-details h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.item-details h3 a {
    color: var(--gray-800);
}

.item-details h3 a:hover {
    color: var(--primary);
}

.item-price .old-price {
    color: var(--gray-500);
    text-decoration: line-through;
    font-size: 13px;
    margin-right: 8px;
}

.item-price .current-price {
    color: var(--primary);
    font-weight: 600;
}

.item-quantity label,
.item-total label {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 5px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.quantity-control button {
    width: 35px;
    height: 35px;
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    color: var(--gray-600);
    transition: var(--transition);
}

.quantity-control button:hover {
    background: var(--primary);
    color: var(--white);
}

.quantity-control .quantity-input {
    width: 50px;
    height: 35px;
    border: none;
    text-align: center;
    font-weight: 600;
}

.item-total .total-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
}

.remove-btn {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--gray-500);
    transition: var(--transition);
}

.remove-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.cart-actions {
    padding-top: 20px;
    border-top: 2px solid var(--gray-200);
    margin-top: 20px;
}

/* Cart Summary */
.cart-summary {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-summary h3 i {
    color: var(--primary);
}

.summary-details {
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid var(--gray-200);
}

.free-shipping {
    color: var(--secondary);
    font-weight: 600;
}

.secure-checkout {
    text-align: center;
    margin-top: 15px;
    color: var(--gray-500);
    font-size: 13px;
}

.secure-checkout i {
    color: var(--secondary);
    margin-right: 5px;
}

.payment-methods {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.payment-methods span {
    font-size: 13px;
    color: var(--gray-500);
    display: block;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 28px;
    color: var(--gray-400);
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.empty-cart-icon i {
    font-size: 50px;
    color: var(--gray-400);
}

.empty-cart h2 {
    font-size: 28px;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.empty-cart p {
    color: var(--gray-500);
    margin-bottom: 25px;
}

/* Cart Responsive */
/* Mobile Cart Layout - Clean Grid */
@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-items {
        padding: 15px;
    }

    .cart-header {
        display: none;
        /* Hide header row on mobile if it exists, or simplify it */
    }

    /* Reset all desktop grid items */
    .cart-item {
        display: grid !important;
        grid-template-columns: 80px 1fr auto !important;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "img details remove"
            "img details remove"
            "qty qty total";
        /* 
           Row 1&2: Image spans 2 rows. Details spans middle. Remove is top right.
           Row 3: Qty on left/middle, Total on right.
        */
        gap: 10px 15px;
        padding: 20px 0;
        border-bottom: 1px solid var(--gray-200);
        align-items: center;
        position: relative;
    }

    .item-image {
        grid-area: img;
        width: 80px;
        height: 80px;
        align-self: start;
    }

    .item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }

    /* Details: Title & Price wrapper */
    .item-details {
        grid-area: details;
        display: flex;
        flex-direction: column;
        gap: 2px;
        align-self: start;
        padding-right: 30px;
        /* Space for trash icon */
    }

    .item-details h3 {
        font-size: 13px;
        line-height: 1.3;
        margin: 0;
        font-weight: 600;
    }

    .item-price {
        font-size: 12px;
        color: var(--gray-600);
        display: flex;
        align-items: baseline;
        gap: 5px;
    }

    .item-price .current-price {
        font-size: 13px;
        font-weight: 600;
        color: var(--gray-800);
        /* Darker, not red, to differ from Total */
    }

    .item-price .old-price {
        font-size: 11px;
    }

    /* Remove Button - Top Right */
    .item-remove {
        grid-area: remove;
        justify-self: end;
        align-self: start;
    }

    .remove-btn {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-400);
        background: transparent;
        /* Remove background on mobile to clean up */
        border-radius: 50%;
        transition: all 0.2s;
    }

    .quantity-control input {
        width: 30px;
        height: 28px;
        text-align: center;
        font-size: 13px;
        font-weight: 600;
        background: transparent;
        border: none;
        padding: 0;
        -moz-appearance: textfield;
    }

    .quantity-control input::-webkit-inner-spin-button,
    .quantity-control input::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Total Price - Bottom Row Right */
    .item-total {
        grid-area: total;
        justify-self: end;
        display: flex;
        align-items: center;
        height: 40px;
    }

    .item-total .total-price {
        font-size: 15px;
        font-weight: 700;
        color: var(--primary);
    }
}

/* Cart Summary Mobile Tweaks */
@media (max-width: 768px) {
    .cart-summary {
        margin-top: 20px;
        padding: 20px;
        border-radius: var(--radius-sm);
    }

    .cart-summary h3 {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .summary-row {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .summary-row.total span {
        font-size: 16px;
    }

    .cart-summary .btn-lg {
        padding: 12px 20px;
        /* Smaller button */
        font-size: 14px;
        width: 100%;
        margin-bottom: 15px;
    }

    .secure-checkout {
        padding: 10px;
        font-size: 12px;
        margin-bottom: 15px;
    }

    .payment-methods span {
        font-size: 11px;
    }

    .payment-methods img {
        height: 15px;
    }
}

/* ============================================
   AUTH PAGES (Login/Register)
   ============================================ */
.auth-page {
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.auth-container {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.auth-header h2 {
    font-size: 24px;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--gray-500);
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.auth-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.auth-form .btn-block {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-600);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.form-error {
    background: #fee2e2;
    color: #dc2626;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}

.form-success {
    background: #dcfce7;
    color: #16a34a;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}


/* ============================================
   ABOUT PAGE
   ============================================ */

/* Section Tag */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* About Intro */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.about-content h2 {
    font-size: 2.5em;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: var(--gray-100);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--gray-100);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-section .section-header h2 {
    font-size: 2.2em;
    color: var(--gray-900);
    margin-top: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 32px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 15px;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
}

.categories-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.categories-section .section-header h2 {
    font-size: 2.2em;
    color: var(--gray-900);
    margin-top: 10px;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    padding: 50px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-card i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.category-card:hover i {
    color: var(--white);
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--gray-800);
    transition: var(--transition);
}

.category-card:hover h3 {
    color: var(--white);
}

.category-card p {
    color: var(--gray-600);
    font-size: 14px;
    transition: var(--transition);
}

.category-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    border-radius: var(--radius);
    margin: 60px 0;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 2em;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .category-cards {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2em;
    }

    .cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }
}


/* ============================================
   CONTACT PAGE
   ============================================ */

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: -50px 0 60px;
    position: relative;
    z-index: 10;
}

.info-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
}

.info-card h3 {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-wrapper .section-header {
    margin-bottom: 30px;
}

.contact-form-wrapper .section-header h2 {
    font-size: 2em;
    color: var(--gray-900);
    margin: 10px 0 8px;
}

.contact-form-wrapper .section-header p {
    color: var(--gray-600);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 14px;
}

.contact-form label i {
    color: var(--primary);
    margin-right: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

/* Contact Map */
.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 500px;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #86efac;
}

.alert-error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: var(--gray-100);
    margin: 0 -20px 60px;
    padding-left: 20px;
    padding-right: 20px;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section .section-header h2 {
    font-size: 2.2em;
    color: var(--gray-900);
    margin-top: 10px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary);
    font-size: 20px;
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 400px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}


/* ============================================
   LEGAL PAGES (Privacy, Terms, DMCA)
   ============================================ */

.legal-page {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin: 60px 0;
}

/* Legal Sidebar */
.legal-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.legal-nav {
    list-style: none;
}

.legal-nav li {
    margin-bottom: 5px;
}

.legal-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    color: var(--gray-600);
    transition: var(--transition);
}

.legal-nav li a i {
    font-size: 16px;
    color: var(--gray-400);
}

.legal-nav li a:hover,
.legal-nav li a.active {
    background: var(--primary);
    color: var(--white);
}

.legal-nav li a:hover i,
.legal-nav li a.active i {
    color: var(--white);
}

.contact-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.contact-card h3 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-card .btn {
    background: var(--white);
    color: var(--primary);
}

.contact-card .btn:hover {
    background: var(--gray-100);
}

/* Legal Content */
.legal-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.content-header {
    padding-bottom: 30px;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 40px;
}

.content-header h1 {
    font-size: 2.5em;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.last-updated {
    color: var(--gray-500);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.last-updated i {
    color: var(--primary);
}

.content-body {
    line-height: 1.8;
}

.content-section {
    margin-bottom: 40px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 1.6em;
    color: var(--gray-800);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.7em;
    font-weight: 700;
}

.content-section p {
    color: var(--gray-600);
    margin-bottom: 15px;
}

.content-section ul {
    margin: 15px 0 15px 25px;
    color: var(--gray-600);
}

.content-section ul li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.content-section ul li strong {
    color: var(--gray-800);
}

.contact-info {
    background: var(--gray-100);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info i {
    color: var(--primary);
    width: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .legal-page {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .legal-sidebar {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 25px;
    }

    .content-header h1 {
        font-size: 2em;
    }

    .content-section h2 {
        font-size: 1.3em;
    }
}


/* ============================================
   DASHBOARD PAGE
   ============================================ */

.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin: 60px 0;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.user-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
}

.user-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-card h3 {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.user-card p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 10px;
}

.member-since {
    display: inline-block;
    background: var(--gray-100);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--gray-600);
}

.member-since i {
    color: var(--primary);
    margin-right: 5px;
}

.dashboard-nav {
    background: var(--white);
    border-radius: var(--radius);
    padding: 15px;
    box-shadow: var(--shadow);
}

.dashboard-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    color: var(--gray-600);
    transition: var(--transition);
    margin-bottom: 5px;
}

.dashboard-nav .nav-link:last-child {
    margin-bottom: 0;
}

.dashboard-nav .nav-link i {
    font-size: 16px;
    width: 20px;
}

.dashboard-nav .nav-link:hover,
.dashboard-nav .nav-link.active {
    background: var(--primary);
    color: var(--white);
}

.dashboard-nav .nav-link.logout {
    border-top: 1px solid var(--gray-200);
    margin-top: 10px;
    padding-top: 15px;
}

.dashboard-nav .nav-link.logout:hover {
    background: #dc2626;
}

/* Dashboard Content */
.dashboard-content {
    min-width: 0;
}

.dashboard-section {
    display: none;
}

.dashboard-section.active {
    display: block;
}

.dashboard-section h2 {
    font-size: 2em;
    color: var(--gray-900);
    margin-bottom: 25px;
}

.dashboard-section h3 {
    font-size: 1.3em;
    color: var(--gray-800);
    margin: 30px 0 20px;
}

/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.stat-card.blue .stat-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.stat-card.green .stat-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-card.orange .stat-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-card.purple .stat-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2em;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 5px;
}

/* Referral Card */
.referral-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    padding: 30px;
    color: var(--white);
    margin-bottom: 30px;
}

.referral-header h3 {
    color: var(--white);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.referral-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.referral-link-box {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.referral-link-box input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.referral-link-box .btn {
    background: var(--white);
    color: var(--primary);
}

.referral-link-box .btn:hover {
    background: var(--gray-100);
}

.referral-code {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.referral-code strong {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 16px;
}

/* Recent Section */
.recent-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

/* Data Table */
.table-responsive {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background: var(--gray-100);
}

.data-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 14px;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table tbody tr:hover {
    background: var(--gray-50);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.status-processing {
    background: #dbeafe;
    color: #1e40af;
}

.status-badge.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge.status-paid {
    background: #d1fae5;
    color: #065f46;
}

.badge-credit {
    background: #d1fae5;
    color: #065f46;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-debit {
    background: #fee2e2;
    color: #991b1b;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.text-success {
    color: #10b981;
}

.text-danger {
    color: #ef4444;
}

.btn-icon {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--gray-600);
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--primary);
    color: var(--white);
}

/* Wallet Balance */
.wallet-balance {
    margin-bottom: 30px;
}

.balance-card {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.balance-label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.balance-amount {
    display: block;
    font-size: 3em;
    font-weight: 700;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.empty-state i {
    font-size: 60px;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    color: var(--gray-700);
    margin: 0 0 10px 0;
}

.empty-state p {
    color: var(--gray-500);
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 992px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-cards {
        grid-template-columns: 1fr;
    }

    .referral-link-box {
        flex-direction: column;
    }

    .data-table {
        font-size: 13px;
    }

    .data-table th,
    .data-table td {
        padding: 10px;
    }
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    margin: 40px 0;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.checkout-card .card-header {
    background: linear-gradient(135deg, #d25351 0%, #e67e7c 100%);
    color: #fff;
    padding: 20px 25px;
}

.checkout-card .card-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-card .card-body {
    padding: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #d25351;
    width: 16px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #d25351;
    box-shadow: 0 0 0 3px rgba(210, 83, 81, 0.1);
}

.form-control[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    background: #fff;
}

.payment-card i {
    font-size: 2rem;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.payment-card span {
    display: block;
    font-weight: 500;
    color: #333;
}

.payment-option input[type="radio"]:checked+.payment-card {
    border-color: #d25351;
    background: linear-gradient(135deg, rgba(210, 83, 81, 0.05) 0%, rgba(230, 126, 124, 0.05) 100%);
}

.payment-option input[type="radio"]:checked+.payment-card i {
    color: #d25351;
}

.order-summary-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-card,
.discount-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 25px;
}

.summary-card h3 {
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-items {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.item-name {
    font-weight: 500;
    color: #333;
}

.item-qty {
    font-size: 0.85rem;
    color: #666;
}

.item-price {
    font-weight: 600;
    color: #d25351;
}

.summary-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 15px 0;
}

.summary-totals {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.summary-row.discount {
    color: #28a745;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    padding-top: 10px;
}

.discount-card h4 {
    margin: 0 0 15px 0;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bonus-available {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 0.9rem;
}

.bonus-available strong {
    color: #d25351;
    font-size: 1.1rem;
}

.discount-form .input-group {
    display: flex;
    gap: 10px;
}

.discount-form .form-control {
    flex: 1;
}

.discount-form .btn {
    white-space: nowrap;
}

.secure-checkout {
    background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.secure-checkout i {
    font-size: 1.2rem;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-danger {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

/* ============================================
   ORDER SUCCESS PAGE
   ============================================ */

.order-success-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.success-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 1.5s ease-in-out;
}

.success-icon i {
    font-size: 4rem;
    color: #fff;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-card h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.order-number {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.order-number strong {
    color: #d25351;
    font-size: 1.3rem;
}

.success-message {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.success-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.info-item i {
    font-size: 2rem;
    color: #d25351;
}

.info-item span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    color: #d25351;
    border: 2px solid #d25351;
}

.btn-outline:hover {
    background: #d25351;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .order-summary-sidebar {
        order: -1;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .success-card {
        padding: 40px 25px;
    }

    .success-card h1 {
        font-size: 1.5rem;
    }

    .success-info {
        flex-direction: column;
        gap: 20px;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
    }
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 40px 0;
}

.product-gallery {
    display: flex;
    gap: 20px;
    flex-direction: row;
}

.thumbnail-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 120px;
    order: 1;
}

.thumbnail-images img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    opacity: 0.7;
}

.thumbnail-images img:hover {
    border-color: #d25351;
    transform: scale(1.05);
    opacity: 1;
}

.thumbnail-images img.active {
    border-color: #d25351;
    opacity: 1;
}

.main-image {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    order: 2;
    cursor: zoom-in;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.main-image:hover img {
    transform: scale(1.02);
}

.zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.main-image:hover .zoom-hint {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: #d25351;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    text-align: center;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 30px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    border-radius: 5px;
    z-index: 100000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(210, 83, 81, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}

.product-details h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-details .category {
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-details .category i {
    color: #d25351;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.price-section .regular-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
}

.price-section .sale-price,
.price-section .current-price {
    font-size: 2rem;
    color: #d25351;
    font-weight: 700;
}

.discount-badge {
    background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.short-description {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    line-height: 1.6;
    color: #666;
}

.stock-status {
    margin-bottom: 25px;
}

.in-stock {
    color: #28a745;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.out-of-stock {
    color: #dc3545;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-to-cart-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-selector label {
    font-weight: 600;
    color: #333;
}

.quantity-selector input {
    width: 100px;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
}

.add-to-cart-form .btn {
    width: 100%;
}

/* Product Tabs */
.product-tabs {
    margin: 60px 0;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: #d25351;
}

.tab-btn.active {
    color: #d25351;
    border-bottom-color: #d25351;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tab-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.tab-content p {
    line-height: 1.8;
    color: #666;
}

/* Reviews Section */
.reviews-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.rating-overview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avg-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d25351;
    display: block;
}

.avg-rating .stars {
    margin: 10px 0;
}

.avg-rating .stars i {
    font-size: 1.5rem;
    color: #ddd;
}

.avg-rating .stars i.filled {
    color: #ffc107;
}

.avg-rating p {
    color: #666;
    margin: 0;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.review-item {
    padding: 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-header strong {
    color: #333;
    font-size: 1.1rem;
}

.review-stars {
    margin-top: 5px;
}

.review-stars i {
    color: #ddd;
    font-size: 0.9rem;
}

.review-stars i.filled {
    color: #ffc107;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.review-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.review-comment {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Review Form */
.review-form-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.review-form-section h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
}

.review-form .form-group {
    margin-bottom: 20px;
}

.review-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.review-form input[type="text"]:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #d25351;
    box-shadow: 0 0 0 3px rgba(210, 83, 81, 0.1);
}

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-input input[type="radio"] {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    font-size: 2rem;
    color: #ddd;
    transition: all 0.2s;
    margin: 0;
}

.star-rating-input label:hover,
.star-rating-input label:hover~label,
.star-rating-input input[type="radio"]:checked~label {
    color: #ffc107;
}

.already-reviewed,
.login-to-review {
    background: #e7f3ff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.already-reviewed i,
.login-to-review i {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 10px;
    display: block;
}

.already-reviewed p,
.login-to-review p {
    margin: 0;
    color: #666;
}

.login-to-review a {
    color: #d25351;
    font-weight: 600;
    text-decoration: none;
}

.login-to-review a:hover {
    text-decoration: underline;
}

/* Related Products */
.related-products {
    margin: 60px 0;
}

.related-products h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-image {
        height: auto;
    }

    .tab-buttons {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .product-details h1 {
        font-size: 1.5rem;
    }

    .price-section .sale-price,
    .price-section .current-price {
        font-size: 1.5rem;
    }

    .main-image {
        height: auto;
    }

    .product-gallery {
        flex-direction: column;
        gap: 15px;
    }

    .thumbnail-images {
        flex-direction: row;
        max-width: 100%;
        order: 2;
        overflow-x: auto;
        gap: 8px;
        padding: 5px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .thumbnail-images::-webkit-scrollbar {
        height: 4px;
    }

    .thumbnail-images::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .thumbnail-images::-webkit-scrollbar-thumb {
        background: #d25351;
        border-radius: 10px;
    }

    .thumbnail-images img {
        min-width: 90px;
        max-width: 90px;
        height: 90px;
        flex-shrink: 0;
    }

    .main-image {
        order: 1;
        border-radius: 10px;
    }

    .review-header {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
   ENHANCED DASHBOARD STYLES
   ============================================ */

/* Enhanced User Card with Gradient */
.dashboard-sidebar .user-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    box-shadow: 0 15px 40px rgba(210, 83, 81, 0.35);
    position: relative;
    overflow: hidden;
}

.dashboard-sidebar .user-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: dashboardPulse 4s ease-in-out infinite;
}

@keyframes dashboardPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.8;
    }
}

.dashboard-sidebar .user-avatar {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.dashboard-sidebar .user-avatar .edit-profile-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    z-index: 10;
    border: 3px solid white;
}

.dashboard-sidebar .user-avatar .edit-profile-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.dashboard-sidebar .user-avatar .edit-profile-btn i {
    font-size: 16px;
}

.dashboard-sidebar .user-card h3,
.dashboard-sidebar .user-card p {
    color: #fff;
    position: relative;
    z-index: 1;
}

.dashboard-sidebar .member-since {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

/* Enhanced Navigation */
.dashboard-nav {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.dashboard-nav .nav-link {
    position: relative;
    overflow: hidden;
}

.dashboard-nav .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #d25351 0%, #e67e7c 100%);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.dashboard-nav .nav-link.active::before,
.dashboard-nav .nav-link:hover::before {
    transform: scaleY(1);
}

.dashboard-nav .nav-link::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid currentColor;
    opacity: 0;
    transition: all 0.3s;
}

.dashboard-nav .nav-link.active::after {
    opacity: 1;
    right: 20px;
}

/* Enhanced Stats Cards */
.stats-cards .stat-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stats-cards .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--card-gradient-start) 0%, var(--card-gradient-end) 100%);
}

.stats-cards .stat-card.blue {
    --card-gradient-start: #3b82f6;
    --card-gradient-end: #2563eb;
}

.stats-cards .stat-card.green {
    --card-gradient-start: #10b981;
    --card-gradient-end: #059669;
}

.stats-cards .stat-card.orange {
    --card-gradient-start: #f59e0b;
    --card-gradient-end: #d97706;
}

.stats-cards .stat-card.purple {
    --card-gradient-start: var(--primary);
    --card-gradient-end: var(--primary-dark);
}

.stats-cards .stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.stats-cards .stat-icon {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.stats-cards .stat-value {
    background: linear-gradient(135deg, #333 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Referral Card */
.referral-card {
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.referral-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 6s ease-in-out infinite;
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 20px);
    }
}

.referral-link-box {
    position: relative;
    z-index: 1;
}

.referral-link-box input {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.referral-link-box input:focus {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.referral-link-box .btn {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.referral-link-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.referral-code {
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.referral-code strong {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: codeGlow 2s ease-in-out infinite;
}

@keyframes codeGlow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Enhanced Section Headers */
.dashboard-section h2 {
    position: relative;
    display: inline-block;
}

.dashboard-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #d25351 0%, #e67e7c 100%);
    border-radius: 3px;
    box-shadow: 0 3px 10px rgba(210, 83, 81, 0.4);
}

/* Enhanced Tables */
.data-table {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.data-table thead {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.data-table tbody tr {
    transition: all 0.3s;
}

.data-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(210, 83, 81, 0.05) 0%, transparent 100%);
    transform: scale(1.01);
}

/* Enhanced Status Badges */
.status-badge {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.status-badge:hover {
    transform: scale(1.05);
}

.status-badge.status-pending {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.status-badge.status-processing {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.status-badge.status-completed {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.status-badge.status-cancelled {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

/* Enhanced Wallet Balance */
.balance-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(245, 87, 108, 0.4);
}

.balance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: walletPulse 5s ease-in-out infinite;
}

@keyframes walletPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

.balance-amount {
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Enhanced Empty State */
.empty-state {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.empty-state i {
    animation: emptyBounce 2s ease-in-out infinite;
}

@keyframes emptyBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Enhanced Button Icons */
.btn-icon {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-icon:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 5px 20px rgba(210, 83, 81, 0.4);
}

/* Recent Section Enhancement */
.recent-section {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(210, 83, 81, 0.1);
}

.recent-section h3 {
    position: relative;
    padding-bottom: 15px;
}

.recent-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d25351 0%, #e67e7c 100%);
    border-radius: 2px;
}

/* Smooth Transitions */
.dashboard-section.active {
    animation: dashboardFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dashboardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Layout Spacing */
.dashboard-layout {
    grid-template-columns: 320px 1fr;
    gap: 35px;
}

/* Responsive Enhancements */
@media (max-width: 1200px) {
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-cards {
        grid-template-columns: 1fr;
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ENHANCED HOMEPAGE STYLES
   ============================================ */

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(210, 83, 81, 0.1) 0%, rgba(230, 126, 124, 0.05) 100%);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(210, 83, 81, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    animation: heroTitleSlide 1s ease-out;
}

@keyframes heroTitleSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    animation: heroTextSlide 1s ease-out 0.2s both;
}

@keyframes heroTextSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    animation: heroButtonSlide 1s ease-out 0.4s both;
}

@keyframes heroButtonSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Enhanced Feature Cards */
.features-section .feature-box {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.features-section .feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(210, 83, 81, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.features-section .feature-box:hover::before {
    opacity: 1;
}

.features-section .feature-box:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.features-section .feature-icon {
    transition: all 0.4s;
}

.features-section .feature-box:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Enhanced Category Cards */
.category-card {
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: all 0.4s;
}

.category-card:hover::before {
    background: linear-gradient(180deg, transparent 0%, rgba(210, 83, 81, 0.9) 100%);
}

.category-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover img {
    transform: scale(1.15) rotate(2deg);
}

.category-info {
    position: relative;
    z-index: 2;
    transition: all 0.4s;
}

.category-card:hover .category-info {
    transform: translateY(-10px);
}

.category-card .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s;
}

.category-card:hover .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Product Cards */
.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: inherit;
    z-index: -1;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.12);
}

.product-actions {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-actions .action-btn {
    transition: all 0.3s;
}

.product-actions .action-btn:hover {
    transform: scale(1.15) rotate(10deg);
}

/* Enhanced Promo Banner */
.promo-banner {
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: promoPulse 6s ease-in-out infinite;
}

@keyframes promoPulse {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

.promo-banner h2 {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-banner .btn {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.promo-banner .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Enhanced Why Choose Us */
.why-choose-us .feature-item {
    transition: all 0.4s;
    position: relative;
}

.why-choose-us .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(210, 83, 81, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: inherit;
}

.why-choose-us .feature-item:hover::before {
    opacity: 1;
}

.why-choose-us .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.why-choose-us .feature-icon {
    transition: all 0.4s;
}

.why-choose-us .feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(-10deg);
}

/* ============================================
   ENHANCED SHOP PAGE STYLES
   ============================================ */

/* Enhanced Filters */
@media (min-width: 993px) {
    .shop-sidebar {
        position: sticky;
        top: 100px;
    }
}

.filter-section {
    transition: all 0.3s;
}

.filter-section:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.filter-section h3 {
    position: relative;
    padding-bottom: 12px;
}

.filter-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #d25351 0%, #e67e7c 100%);
    border-radius: 2px;
}

.category-filter label {
    transition: all 0.3s;
    position: relative;
    padding-left: 30px;
}

.category-filter label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s;
}

.category-filter input:checked+label::before {
    background: linear-gradient(135deg, #d25351 0%, #e67e7c 100%);
    border-color: #d25351;
}

.category-filter input:checked+label::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 12px;
}

.category-filter label:hover {
    color: #d25351;
    padding-left: 35px;
}

/* Enhanced Sort Dropdown */
.sort-dropdown select {
    transition: all 0.3s;
}

.sort-dropdown select:focus {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(210, 83, 81, 0.2);
}

/* Enhanced Pagination */
.pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.pagination a,
.pagination span {
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pagination a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.pagination a:hover::before {
    width: 100px;
    height: 100px;
}

.pagination a:hover,
.pagination span.active {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(210, 83, 81, 0.4);
}

/* ============================================
   ENHANCED BUTTON STYLES
   ============================================ */

.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-primary {
    box-shadow: 0 5px 15px rgba(210, 83, 81, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(210, 83, 81, 0.5);
}

/* ============================================
   ENHANCED FORM STYLES
   ============================================ */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
    transition: all 0.3s;
}

input:focus,
textarea:focus,
select:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(210, 83, 81, 0.15);
}

/* ============================================
   ENHANCED ANIMATIONS
   ============================================ */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations on scroll */
.animate-on-scroll {
    animation: slideInUp 0.8s ease-out;
}

/* ============================================
   ENHANCED LOADING STATES
   ============================================ */

.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #d25351;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================================
   ENHANCED TOOLTIPS
   ============================================ */

[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 1000;
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* ============================================
   ENHANCED MICRO-INTERACTIONS & POLISH
   ============================================ */

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 86px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d25351 0%, #e67e7c 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(210, 83, 81, 0.4);
    transition: all 0.3s;
    z-index: 999;
    cursor: pointer;
    animation: backToTopFloat 3s ease-in-out infinite;
}

@keyframes backToTopFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(210, 83, 81, 0.6);
}

.back-to-top:active {
    transform: translateY(-3px) scale(1.05);
}

/* Enhanced Header Scroll Effect */
.header-scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    animation: headerSlideDown 0.3s ease-out;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Enhanced Search Bar */
.search-bar input {
    transition: all 0.3s;
}

.search-bar input:focus {
    width: 110%;
    box-shadow: 0 8px 30px rgba(210, 83, 81, 0.2);
}

.search-bar button {
    transition: all 0.3s;
}

.search-bar button:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Enhanced Cart Icon */
.cart-icon {
    position: relative;
    transition: all 0.3s;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(239, 68, 68, 0.5);
    animation: cartPulse 2s ease-in-out infinite;
}

@keyframes cartPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Enhanced Dropdown Menus */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    transition: all 0.3s;
}

.dropdown-menu li:hover {
    transform: translateX(5px);
    background: linear-gradient(90deg, rgba(210, 83, 81, 0.1) 0%, transparent 100%);
}

/* Enhanced Price Tags */
.price {
    position: relative;
}

.sale-price {
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {

    0%,
    100% {
        text-shadow: 0 0 5px rgba(210, 83, 81, 0.3);
    }

    50% {
        text-shadow: 0 0 15px rgba(210, 83, 81, 0.6);
    }
}

/* Enhanced Sale Badge */
.sale-badge {
    position: relative;
    overflow: hidden;
}

.sale-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Enhanced Image Hover Effects */
.image-zoom {
    overflow: hidden;
}

.image-zoom img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-zoom:hover img {
    transform: scale(1.15);
}

/* Enhanced Card Shadows */
.card-shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s;
}

.card-shadow:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

/* Enhanced Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, #d25351 0%, #e67e7c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Dividers */
.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #d25351 50%, transparent 100%);
    margin: 40px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #d25351;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #fff, 0 0 0 7px #d25351;
}

/* Enhanced Newsletter Section */
.newsletter-section {
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: newsletterFloat 8s ease-in-out infinite;
}

@keyframes newsletterFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, 30px);
    }
}

.newsletter-form {
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    transition: all 0.3s;
}

.newsletter-form input:focus {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: translateX(5px);
}

/* Enhanced Social Icons */
.social-icons a {
    transition: all 0.3s;
    position: relative;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-icons a:hover::before {
    width: 100%;
    height: 100%;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Enhanced Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    transition: all 0.3s;
    position: relative;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s;
}

.breadcrumb a:hover::after {
    width: 100%;
}

.breadcrumb a:hover {
    transform: translateX(3px);
}

/* Enhanced Alert Messages */
.alert {
    animation: alertSlideIn 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: currentColor;
}

/* Enhanced Modal Animations */
.modal {
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s ease-in-out infinite;
}

@keyframes skeletonLoading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Enhanced Progress Bar */
.progress-bar {
    height: 6px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress, 0%);
    background: linear-gradient(90deg, #d25351 0%, #e67e7c 100%);
    border-radius: 10px;
    transition: width 0.5s ease-out;
    box-shadow: 0 0 10px rgba(210, 83, 81, 0.5);
}

/* Enhanced Star Ratings */
.star-rating {
    display: inline-flex;
    gap: 3px;
}

.star-rating i {
    transition: all 0.2s;
    cursor: pointer;
}

.star-rating i:hover,
.star-rating i:hover~i {
    transform: scale(1.2);
    color: #ffc107;
}

/* Enhanced Quantity Selector */
.quantity-selector {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 5px;
    border-radius: 8px;
}

.quantity-selector button {
    width: 35px;
    height: 35px;
    border: none;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.quantity-selector button:hover {
    background: linear-gradient(135deg, #d25351 0%, #e67e7c 100%);
    color: #fff;
    transform: scale(1.1);
}

.quantity-selector button:active {
    transform: scale(0.95);
}

/* Enhanced Checkbox & Radio */
input[type="checkbox"],
input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

input[type="radio"] {
    border-radius: 50%;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
    background: linear-gradient(135deg, #d25351 0%, #e67e7c 100%);
    border-color: #d25351;
}

input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

/* Enhanced Focus States */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid #d25351;
    outline-offset: 2px;
}

/* Enhanced Selection */
::selection {
    background: #d25351;
    color: #fff;
}

::-moz-selection {
    background: #d25351;
    color: #fff;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d25351 0%, #e67e7c 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #c24947 0%, #d56d6b 100%);
}

/* Performance Optimization */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
}


/* ============================================
   CATEGORY CARDS ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.category-card:nth-child(2) {
    animation-delay: 0.2s;
}

.category-card:nth-child(3) {
    animation-delay: 0.3s;
}

.category-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Pulse animation for category icons */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.category-card:hover .category-overlay i {
    animation: pulse 1s ease-in-out infinite;
}

/* Shine effect on hover */
.category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
    z-index: 3;
    pointer-events: none;
}

.category-card:hover::after {
    opacity: 1;
    left: 100%;
}


/* ============================================
   MEGA MENU - NEW DESIGN
   ============================================ */
.has-megamenu {
    position: static !important;
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
    border-top: 3px solid var(--primary);
}

/* Override main-nav white color for mega menu links */
.megamenu a {
    color: var(--gray-700) !important;
}

.megamenu a:hover {
    color: var(--primary) !important;
}

.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    min-height: 320px;
    background: var(--white);
}

/* Left Sidebar Categories */
.megamenu-sidebar {
    width: 220px;
    background: var(--white);
    border-right: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.mega-categories {
    list-style: none !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.mega-categories li {
    margin: 0 !important;
    list-style: none !important;
    display: block !important;
    width: 100% !important;
}

.mega-categories li a {
    display: flex !important;
    align-items: center;
    padding: 15px 20px;
    color: var(--gray-800) !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    text-decoration: none;
    background: transparent;
}

.mega-categories li a i {
    margin-right: 12px;
    font-size: 18px;
    color: var(--primary);
    width: 22px;
    text-align: center;
}

.mega-categories li a .arrow {
    margin-left: auto;
    font-size: 11px;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.mega-categories li:hover a,
.mega-categories li.active a {
    background: linear-gradient(90deg, rgba(210, 83, 81, 0.15) 0%, transparent 100%) !important;
    color: var(--primary) !important;
    border-left-color: var(--primary);
}

.mega-categories li:hover a i,
.mega-categories li.active a i {
    color: var(--primary) !important;
}

.mega-categories li:hover a .arrow,
.mega-categories li.active a .arrow {
    color: var(--primary) !important;
    transform: translateX(3px);
    opacity: 1 !important;
}

/* Right Content Area */
.megamenu-content {
    flex: 1;
    padding: 25px 30px;
    position: relative;
    background: var(--white);
}

.mega-panel {
    display: none;
}

.mega-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mega-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 180px;
    gap: 30px;
}

.mega-col {
    min-width: 0;
}

.mega-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900) !important;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mega-col ul li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.mega-col ul li a {
    color: var(--gray-700) !important;
    font-size: 13px;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    text-decoration: none;
}

.mega-col ul li:last-child a {
    border-bottom: none;
}

.mega-col ul li a:hover {
    color: var(--primary) !important;
    padding-left: 10px;
    background: var(--gray-100);
}

/* Featured Product Box */
.mega-featured {
    background: var(--gray-100);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.mega-featured img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.mega-featured .featured-content {
    padding: 15px;
    text-align: center;
}

.mega-featured .badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mega-featured h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.mega-featured p {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

/* Mega Menu Responsive */
@media (max-width: 992px) {
    .megamenu-wrapper {
        flex-direction: column;
    }

    .megamenu-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .mega-categories {
        display: flex;
        overflow-x: auto;
        padding: 10px;
    }

    .mega-categories li a {
        white-space: nowrap;
        padding: 10px 15px;
        border-left: none;
        border-bottom: 3px solid transparent;
    }

    .mega-categories li:hover a,
    .mega-categories li.active a {
        border-left-color: transparent;
        border-bottom-color: var(--primary);
    }

    .mega-panel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .megamenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }

    .has-megamenu:hover .megamenu {
        display: block;
    }

    .mega-panel-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mega-featured {
        grid-column: span 1;
    }
}

.megamenu-column h4 {
    color: var(--gray-900);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.megamenu-column h4 i {
    color: var(--primary);
    font-size: 18px;
}

.megamenu-column ul {
    list-style: none;
}

.megamenu-column ul li {
    margin-bottom: 10px;
}

.megamenu-column ul li a {
    color: var(--gray-600);
    font-size: 14px;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.megamenu-column ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    opacity: 0;
    transition: all 0.3s ease;
}

.megamenu-column ul li a:hover {
    color: var(--primary);
    padding-left: 20px;
}

.megamenu-column ul li a:hover::before {
    opacity: 1;
}

.megamenu-promo {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 30px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    grid-column: span 3;
    text-align: center;
}

.megamenu-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.megamenu-promo::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.promo-card {
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.megamenu-promo h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.megamenu-promo p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

.megamenu-promo .btn {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
}

.megamenu-promo .btn:hover {
    background: var(--accent);
    color: var(--black);
    transform: translateY(-2px);
}

/* Mega Menu Responsive */
@media (max-width: 992px) {
    .megamenu-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .megamenu-promo {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .megamenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }

    .has-megamenu:hover .megamenu {
        display: block;
    }

    .megamenu-container {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .megamenu-promo {
        grid-column: span 1;
    }
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.cart-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--white);
    z-index: 11000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-sidebar-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-500);
}

.cart-empty-state i {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--gray-300);
}

.cart-empty-state p {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
    animation: fadeIn 0.3s ease;
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--gray-100);
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    color: var(--gray-800);
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.cart-item-meta {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    background: var(--gray-100);
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
    color: var(--gray-600);
}

.qty-btn:hover {
    background: var(--gray-200);
}

.qty-input {
    width: 30px;
    height: 24px;
    border: none;
    text-align: center;
    font-size: 12px;
    -moz-appearance: textfield;
}

.remove-item {
    color: var(--gray-400);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
}

.remove-item:hover {
    color: var(--primary);
}

.cart-sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-100);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.total-amount {
    color: var(--primary);
}

.cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cart-actions .btn {
    width: 100%;
    padding: 10px;
    font-size: 14px;
}

/* ============================================
   SEARCH RESULTS
   ============================================ */
.search-bar {
    position: relative;
}

.search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    border: 1px solid var(--gray-200);
    padding: 10px 0;
}

.search-results.active {
    display: block;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
    text-decoration: none;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background: var(--gray-100);
}

.search-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.search-item-info {
    flex: 1;
}

.search-item-info h4 {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--gray-800);
    font-weight: 600;
}

.search-item-info .price {
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   MOBILE BOTTOM NAV
   ============================================ */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray-200);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--gray-500);
    font-size: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    padding: 5px;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 2px;
}

.nav-item.active,
.nav-item:hover {
    color: var(--primary);
}

.nav-item .icon-wrapper {
    position: relative;
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid var(--white);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 992px) {
    .hide-mobile {
        display: none !important;
    }

    .mobile-hide-shop {
        display: none !important;
    }

    .header-content {
        padding: 15px 0;
        flex-wrap: wrap;
    }

    .logo {
        order: 1;
    }

    .mobile-menu-btn {
        order: 2;
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--gray-800);
        cursor: pointer;
    }

    .search-bar {
        order: 3;
        width: 100%;
        margin-top: 15px;
        display: block;
        /* Show search on mobile */
    }

    .search-bar {
        order: 3;
        width: 100%;
        margin-top: -6px;
        display: block;
        border: solid 1px red;
        border-radius: 9px;

    }

    .header-actions {
        display: none;
        /* Hide desktop actions */
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100%;
        background: var(--white);
        z-index: 10001;
        transition: var(--transition);
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
        padding-top: 20px;
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid var(--gray-100);
    }

    .main-nav a {
        padding: 15px 20px;
        display: block;
        color: var(--gray-800) !important;
    }

    .main-nav a:hover {
        background: var(--gray-100) !important;
        color: var(--primary) !important;
    }

    .mobile-bottom-nav {
        display: flex;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
        z-index: 11000;
    }

    .cart-sidebar-overlay {
        z-index: 10999;
    }

    body {
        padding-bottom: 70px;
        /* Space for bottom nav */
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Mobile Accordion */
@media (max-width: 768px) {
    .footer-grid {
        display: block;
        gap: 0;
        margin-bottom: 20px;
    }

    .footer-col {
        margin-bottom: 0;
    }

    /* Target only columns that are NOT the about/logo column */
    .footer-col:not(.footer-about) h4 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        margin-bottom: 0;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
    }

    /* Reset the desktop decorative line and create cleaner arrow */
    .footer-col:not(.footer-about) h4::after {
        content: '';
        /* Reset specific desktop properties */
        position: static;
        background: none;
        width: 8px;
        height: 8px;
        border-radius: 0;

        /* New arrow style */
        border-right: 2px solid var(--gray-400);
        border-bottom: 2px solid var(--gray-400);
        transform: rotate(45deg);
        transition: all 0.3s ease;
        margin-right: 5px;
    }

    /* Active state arrow */
    .footer-col:not(.footer-about).active h4::after {
        transform: rotate(-135deg);
        border-color: var(--white);
        margin-top: 5px;
    }

    /* Active Header Text Color */
    .footer-col:not(.footer-about).active h4 {
        color: var(--white);
    }

    /* Hide content by default */
    .footer-col:not(.footer-about)>*:not(h4) {
        display: none;
    }

    /* Show content when active with padding */
    .footer-col:not(.footer-about).active>*:not(h4) {
        display: block;
        animation: fadeIn 0.3s ease;
        padding-bottom: 10px;
    }

    .footer-col:not(.footer-about).active ul {
        margin-top: 5px;
        margin-bottom: 10px;
    }

    /* About column styles */
    .footer-col.footer-about {
        display: block !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        margin-bottom: 0;
    }
}

/* ============================================
   FIXES (RATING, DASHBOARD, FOOTER)
   ============================================ */

/* 1. Rating Stars Fix */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    /* Default gray */
    transition: color 0.2s;
}

/* Hover and Checked states */
.star-rating-input label:hover,
.star-rating-input label:hover~label,
.star-rating-input input:checked~label {
    color: #ffd700;
    /* Gold color */
}

/* Icon fix if text is showing */
.star-rating-input label i {
    font-style: normal;
}

/* 2. Dashboard Updates */
.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 25px;
    padding: 30px 0;
}

@media (max-width: 992px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    /* Soft square instead of circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.stat-info .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    display: block;
    line-height: 1.2;
}

.stat-info .stat-label {
    font-size: 0.85rem;
    color: #777;
    margin-top: 4px;
    display: block;
}

/* Softer Color Scheme */
.stat-card.blue .stat-icon {
    background: #e0f2fe;
    color: #0284c7;
}

.stat-card.green .stat-icon {
    background: #dcfce7;
    color: #16a34a;
}

.stat-card.orange .stat-icon {
    background: #ffedd5;
    color: #ea580c;
}

.stat-card.purple .stat-icon {
    background: #f3e8ff;
    color: #9333ea;
}

/* 3. Footer Accordion Re-alignment (Left Arrow) */
@media (max-width: 768px) {
    .footer-col:not(.footer-about) h4 {
        justify-content: flex-start;
        /* Align start */
        gap: 15px;
        /* Space between arrow and text */
    }

    /* Remove the old ::after arrow */
    .footer-col:not(.footer-about) h4::after {
        display: none;
    }

    /* Add new ::before arrow to the left */
    .footer-col:not(.footer-about) h4::before {
        content: '';
        display: inline-block;
        width: 8px;
        height: 8px;
        border-right: 2px solid var(--gray-400);
        border-bottom: 2px solid var(--gray-400);
        transform: rotate(-45deg);
        /* Arrow Pointing Right */
        transition: all 0.3s ease;
        margin-top: -2px;
    }

    /* Active state rotation */
    .footer-col:not(.footer-about).active h4::before {
        transform: rotate(45deg);
        /* Arrow Pointing Down */
        border-color: var(--white);
        margin-top: -5px;
    }
}


/* Short Description Styling */
.short-description ul {
    padding-left: 20px;
    margin: 0;
}

.short-description li {
    margin-bottom: 5px;
    list-style-type: disc;
}

/* Product Specifications Table Styling */
.product-specs-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.product-specs-content table td,
.product-specs-content table th {
    padding: 12px 15px;
    border: 1px solid #e9ecef;
}

.product-specs-content table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.product-specs-content table th {
    background-color: #333;
    font-weight: 600;
    text-align: left;
    color: white;
}


/* Product FAQs styling */
.product-faqs {
    margin-top: 1rem;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    background: #f8f9fa;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

details[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    color: #555;
    line-height: 1.6;
}


.product-faq-section.mt-5 {
    margin-top: 3rem !important;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.product-faq-section h3.mb-4 {
    margin-bottom: 1.5rem !important;
    color: #333;
    font-size: 1.5rem;
}

/* Breadcrumb Styling */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--gray-600);
}

.breadcrumb a {
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb i {
    font-size: 10px;
    color: var(--gray-400);
    margin: 0 5px;
}

.breadcrumb span {
    color: var(--gray-400);
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 10px 0;
        font-size: 13px;
        gap: 5px;
        line-height: 2;
    }

    .breadcrumb i {
        margin: 0 2px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 10px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-float i {
    animation: whatsapp-icon-bounce 1s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

@keyframes whatsapp-icon-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 70px;
        right: 15px;
    }
}
