/* ============================================
   JUCHI AFRICANA - PREMIUM MARKETPLACE STYLES
   Color Palette: #990012, #083B9A, #000000, #E5FFDE, #CBFF8C
   Prefix: ind2-
   ============================================ */

:root {
    --ind2-primary: #990012;
    --ind2-secondary: #083B9A;
    --ind2-dark: #000000;
    --ind2-light: #E5FFDE;
    --ind2-accent: #CBFF8C;
    --ind2-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: var(--ind2-white);
    color: var(--ind2-dark);
    line-height: 1.6;
}

/* ===== NAVIGATION STYLES ===== */
.ind2-navbar {
    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--ind2-primary);
    box-shadow: 0 4px 10px rgba(153, 0, 18, 0.3);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 4px solid orange;
}

.ind2-navbar.ind2-scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 6px 30px rgba(153, 0, 18, 0.4);
}

.ind2-toggler {
    border: 2px solid orange;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.ind2-toggler:hover {
    background: orange;
    transform: scale(1.05);
}

.ind2-toggler:hover .ind2-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.ind2-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(203, 255, 140, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand img {
    filter: drop-shadow(0 2px 8px rgba(203, 255, 140, 0.4));
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* ===== CATEGORY DROPDOWN ===== */
.ind2-drop-category-selector {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.ind2-drop-btn {
    background: var(--ind2-secondary);
    border: 3px solid orange;
    color: orange;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(8, 59, 154, 0.3);
}

.ind2-drop-btn:hover {
    background: orange;
    color: var(--ind2-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 255, 140, 0.4);
}

.ind2-drop-btn-text {
    flex: 1;
    text-align: left;
}

.ind2-drop-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.ind2-drop-btn.ind2-active {
    background: orange;
    color: var(--ind2-dark);
}

.ind2-drop-btn.ind2-active .ind2-drop-arrow {
    transform: rotate(180deg);
}

.ind2-drop-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    right: 0;
    background: var(--ind2-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1000;
    border: 3px solid var(--ind2-light);
}

.ind2-drop-menu.ind2-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ind2-drop-item {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    color: var(--ind2-dark);
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--ind2-light);
    position: relative;
}

.ind2-drop-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--ind2-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.ind2-drop-item:hover::before {
    transform: scaleY(1);
}

.ind2-drop-item:last-child {
    border-bottom: none;
}

.ind2-drop-item:hover {
    background: var(--ind2-light);
    padding-left: 2rem;
}

.ind2-drop-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ind2-drop-item:hover .ind2-drop-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: currentColor;
}

.ind2-drop-food {
    background: var(--ind2-primary);
    color: white;
}

.ind2-drop-fashion {
    background: var(--ind2-secondary);
    color: white;
}

.ind2-drop-beauty {
    background: orange;
    color: var(--ind2-dark);
}

.ind2-drop-events {
    background: var(--ind2-dark);
    color: orange;
}

.ind2-drop-info {
    flex: 1;
}

.ind2-drop-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ind2-dark);
    margin-bottom: 0.2rem;
}

.ind2-drop-subtitle {
    font-size: 0.9rem;
    color: #666;
}

.ind2-drop-arrow-right {
    margin-left: auto;
    color: var(--ind2-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.ind2-drop-item:hover .ind2-drop-arrow-right {
    opacity: 1;
    transform: translateX(0);
}

/* ===== CART ICON ===== */
.ind2-cart-wrapper {
    position: relative;
    cursor: pointer;
    padding: 0.7rem 1.2rem;
    background: var(--ind2-info);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 0px solid orange;
}


.ind2-cart-icon {
    color: orange;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.ind2-cart-wrapper:hover .ind2-cart-icon {
    color: orange;
    transform: scale(1.1);
}

.ind2-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: orange;
    color: var(--ind2-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 30px;
    min-width: 18px;
    text-align: center;
    border: 1px solid var(--ind2-primary);
}

/* ===== NAV MENU ===== */
.ind2-nav-menu {
    gap: 0.5rem;
}

#ind2NavMenu ul li{
    color: white    !important;
}


.ind2-drop-menu a {
    color: white    !important;
}

.ind2-nav-link {
    color: orange !important;
    padding: 0.75rem 0.7rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.ind2-nav-link:hover,
.ind2-nav-link.active {
    background: orange;
    color: var(--ind2-dark) !important;
    transform: translateY(-2px);
    border-color: var(--ind2-secondary);
}

/* ===== FLASH MESSAGES ===== */
.ind2-flash-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 1050;
    max-width: 400px;
}

.ind2-flash-message {
    animation: ind2-slideIn 0.5s ease;
    border-radius: 12px;
    border: 3px solid;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
    font-weight: 600;
}

.ind2-flash-message.alert-success {
    background: orange;
    border-color: var(--ind2-secondary);
    color: var(--ind2-dark);
}

.ind2-flash-message.alert-danger {
    background: var(--ind2-primary);
    border-color: orange;
    color: white;
}

@keyframes ind2-slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== HERO SECTION ===== */
.ind2-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--ind2-primary);
    overflow: hidden;
    padding: 7rem 0 4rem;
}

.ind2-hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(203, 255, 140, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(8, 59, 154, 0.15) 0%, transparent 40%);
}

.ind2-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(203, 255, 140, 0.03) 40px,
            rgba(203, 255, 140, 0.03) 80px
        );
}

.ind2-hero-content {
    position: relative;
    z-index: 2;
}

.ind2-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: orange;
    color: var(--ind2-dark);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 2rem;
    border: 3px solid var(--ind2-secondary);
    box-shadow: 0 4px 20px rgba(203, 255, 140, 0.4);
    font-size: 0.95rem;
    animation: ind2-pulse 3s infinite;
}

@keyframes ind2-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.ind2-hero-badge i {
    color: var(--ind2-primary);
    animation: ind2-spin 4s linear infinite;
}

@keyframes ind2-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.ind2-hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--ind2-white);
    line-height: 1.1;
    margin-bottom: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ind2-hero-highlight {
    background: orange;
    color: var(--ind2-dark);
    padding: 0.2rem 1.2rem;
    border-radius: 8px;
    display: inline-block;
    border: 3px solid var(--ind2-secondary);
    font-weight: 900;
}

.ind2-hero-subtitle {
    font-size: 1.3rem;
    color: var(--ind2-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.ind2-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.ind2-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid;
    font-size: 1.05rem;
}

.ind2-btn-primary {
    background: orange;
    color: var(--ind2-dark);
    border-color: var(--ind2-secondary);
    box-shadow: 0 4px 15px rgba(203, 255, 140, 0.4);
}

.ind2-btn-primary:hover {
    background: var(--ind2-secondary);
    color: orange;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(8, 59, 154, 0.5);
}

.ind2-btn-outline {
    background: transparent;
    color: orange;
    border-color: orange;
}

.ind2-btn-outline:hover {
    background: orange;
    color: var(--ind2-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(203, 255, 140, 0.4);
}

.ind2-hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.ind2-stat-item {
    text-align: center;
    position: relative;
}

.ind2-stat-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: orange;
    border-radius: 2px;
}

.ind2-stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: orange;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ind2-stat-label {
    font-size: 1rem;
    color: var(--ind2-light);
    margin-top: 0.6rem;
    font-weight: 600;
}

.ind2-hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.ind2-hero-image {
    position: relative;
    animation: ind2-float 6s ease-in-out infinite;
}

@keyframes ind2-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.ind2-hero-image img {
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
    border-radius: 20px;
    border: 5px solid orange;
}

.ind2-hero-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.ind2-decoration-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, orange 0%, transparent 70%);
    opacity: 0.2;
    top: -60px;
    right: -60px;
    animation: ind2-rotate 20s linear infinite;
}

.ind2-decoration-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--ind2-secondary) 0%, transparent 70%);
    opacity: 0.3;
    bottom: -40px;
    left: -40px;
    animation: ind2-rotate 15s linear infinite reverse;
}

@keyframes ind2-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.ind2-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.ind2-hero-scroll a {
    color: orange;
    font-size: 2.5rem;
    animation: ind2-bounce 2s infinite;
    display: block;
}

@keyframes ind2-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px);
    }
}

/* ===== CATEGORIES SECTION ===== */
.ind2-categories-section {
    padding: 6rem 0;
    background: var(--ind2-light);
    position: relative;
}

.ind2-section-header {
    margin-bottom: 4rem;
}

.ind2-section-badge {
    display: inline-block;
    background: var(--ind2-secondary);
    color: orange;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    border: 3px solid var(--ind2-primary);
    box-shadow: 0 4px 15px rgba(8, 59, 154, 0.3);
}

.ind2-section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--ind2-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ind2-section-subtitle {
    font-size: 1.15rem;
    color: #555;
    font-weight: 400;
}

.ind2-category-card {
    position: relative;
    background: var(--ind2-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
}

.ind2-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--ind2-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ind2-category-card:hover::before {
    transform: scaleX(1);
}

.ind2-category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border-color: orange;
}

.ind2-category-icon {
    width: 85px;
    height: 85px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    border: 3px solid;
}

.ind2-category-card:hover .ind2-category-icon {
    transform: scale(1.1) rotate(5deg);
}

.ind2-icon-food {
    background: var(--ind2-primary);
    color: white;
    border-color: orange;
}

.ind2-icon-fashion {
    background: var(--ind2-secondary);
    color: white;
    border-color: orange;
}

.ind2-icon-beauty {
    background: orange;
    color: var(--ind2-dark);
    border-color: var(--ind2-secondary);
}

.ind2-icon-events {
    background: var(--ind2-dark);
    color: orange;
    border-color: var(--ind2-primary);
}

.ind2-category-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ind2-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.ind2-category-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 0.98rem;
}

.ind2-category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--ind2-primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

.ind2-category-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--ind2-primary);
    transition: width 0.3s ease;
}

.ind2-category-link:hover {
    gap: 1rem;
    color: var(--ind2-secondary);
}

.ind2-category-link:hover::after {
    width: 100%;
    background: var(--ind2-secondary);
}

.ind2-category-overlay {
    position: absolute;
    inset: 0;
    background: orange;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.ind2-category-card:hover .ind2-category-overlay {
    opacity: 0.05;
}

/* ===== FEATURES SECTION ===== */
.ind2-features-section {
    padding: 6rem 0;
    background: var(--ind2-secondary);
    position: relative;
    overflow: hidden;
}

.ind2-features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(203, 255, 140, 0.02) 40px,
            rgba(203, 255, 140, 0.02) 80px
        );
}

.ind2-features-section .ind2-section-badge {
    background: orange;
    color: var(--ind2-dark);
    border-color: var(--ind2-primary);
}

.ind2-features-section .ind2-section-title {
    color: var(--ind2-white);
}

.ind2-features-section .ind2-section-subtitle {
    color: var(--ind2-light);
}

.ind2-feature-card {
    background: var(--ind2-white);
    border: 4px solid orange;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ind2-feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ind2-light);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ind2-feature-card:hover::after {
    opacity: 0.3;
}

.ind2-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    border-color: var(--ind2-primary);
}

.ind2-feature-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 1.8rem;
    background: orange;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--ind2-dark);
    border: 4px solid var(--ind2-primary);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.ind2-feature-card:hover .ind2-feature-icon {
    transform: scale(1.15) rotate(360deg);
    background: var(--ind2-primary);
    color: orange;
}

.ind2-feature-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ind2-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.ind2-feature-description {
    color: #666;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 0.98rem;
}

/* ===== CTA SECTION ===== */
.ind2-cta-section {
    position: relative;
    padding: 6rem 0;
    background: var(--ind2-dark);
    overflow: hidden;
}

.ind2-cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(153, 0, 18, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(8, 59, 154, 0.3) 0%, transparent 40%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(203, 255, 140, 0.02) 60px,
            rgba(203, 255, 140, 0.02) 120px
        );
}

.ind2-cta-content {
    position: relative;
    z-index: 2;
}

.ind2-cta-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--ind2-white);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.ind2-cta-highlight {
    color: orange;
    position: relative;
    display: inline-block;
}

.ind2-cta-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: orange;
    border-radius: 2px;
}

.ind2-cta-subtitle {
    font-size: 1.25rem;
    color: var(--ind2-light);
    line-height: 1.6;
}

.ind2-cta-buttons {
    position: relative;
    z-index: 2;
}

.ind2-btn-light {
    background: var(--ind2-white);
    color: var(--ind2-primary);
    border-color: orange;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

.ind2-btn-light:hover {
    background: orange;
    color: var(--ind2-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(203, 255, 140, 0.4);
    border-color: var(--ind2-primary);
}

/* ===== FOOTER ===== */
.ind2-footer {
    background: var(--ind2-dark);
    color: var(--ind2-light);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.ind2-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: orange;
}

.ind2-footer-brand {
    margin-bottom: 2rem;
}

.ind2-footer-brand img {
    filter: drop-shadow(0 4px 12px rgba(203, 255, 140, 0.3));
    transition: all 0.3s ease;
}

.ind2-footer-brand:hover img {
    transform: scale(1.05);
}

.ind2-footer-description {
    color: var(--ind2-light);
    line-height: 1.7;
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.ind2-footer-column {
    margin-bottom: 2rem;
}

.ind2-footer-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: orange;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.ind2-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--ind2-primary);
    border-radius: 2px;
}

.ind2-footer-links {
    list-style: none;
    padding: 0;
}

.ind2-footer-links li {
    margin-bottom: 0.9rem;
}

.ind2-footer-links a {
    color: var(--ind2-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.98rem;
    position: relative;
    opacity: 0.9;
}

.ind2-footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: orange;
    transition: width 0.3s ease;
}

.ind2-footer-links a:hover {
    color: orange;
    padding-left: 0.6rem;
    opacity: 1;
}

.ind2-footer-links a:hover::before {
    width: 100%;
}

.ind2-footer-links i {
    color: orange;
    font-size: 1.1rem;
}

.ind2-footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(203, 255, 140, 0.2);
}

.ind2-copyright,
.ind2-developer {
    color: var(--ind2-light);
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

.ind2-developer {
    font-weight: 700;
    color: orange;
    opacity: 1;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .ind2-hero-title {
        font-size: 3rem;
    }

    .ind2-section-title {
        font-size: 2.4rem;
    }

    .ind2-cta-title {
        font-size: 2.4rem;
    }

    .ind2-hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .ind2-hero-title {
        font-size: 2.5rem;
    }

    .ind2-section-title {
        font-size: 2rem;
    }

    .ind2-cta-title {
        font-size: 2rem;
    }

    .ind2-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .ind2-btn {
        width: 100%;
        justify-content: center;
    }

    .ind2-drop-category-selector {
        width: 100%;
        margin: 0.5rem 0;
    }

    .ind2-cart-wrapper {
        margin-top: 1rem;
    }

    .ind2-hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }

    .ind2-stat-number {
        font-size: 2.3rem;
    }

    .ind2-navbar {
        padding: 0.8rem 0;
    }

    .ind2-flash-container {
        right: 15px;
        left: 15px;
        max-width: none;
    }

    .ind2-categories-section,
    .ind2-features-section,
    .ind2-cta-section {
        padding: 4rem 0;
    }

    .ind2-section-header {
        margin-bottom: 3rem;
    }

    .ind2-footer {
        padding: 4rem 0 2rem;
    }

    .ind2-footer-bottom {
        margin-top: 3rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .ind2-hero-title {
        font-size: 2rem;
    }

    .ind2-hero-subtitle {
        font-size: 1.1rem;
    }

    .ind2-section-title {
        font-size: 1.75rem;
    }

    .ind2-stat-number {
        font-size: 2rem;
    }

    .ind2-drop-btn {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }

    .ind2-category-card,
    .ind2-feature-card {
        padding: 2rem 1.5rem;
    }

    .ind2-category-icon,
    .ind2-feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .ind2-category-title,
    .ind2-feature-title {
        font-size: 1.4rem;
    }

    .ind2-btn {
        padding: 0.85rem 1.6rem;
        font-size: 0.95rem;
    }

    .ind2-footer-title {
        font-size: 1.2rem;
    }

    .ind2-hero-section {
        padding: 5rem 0 3rem;
    }
}

/* ===== LOADING ANIMATIONS ===== */
@keyframes ind2-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ind2-category-card,
.ind2-feature-card {
    animation: ind2-fadeInUp 0.6s ease-out backwards;
}

.ind2-category-card:nth-child(1) { animation-delay: 0s; }
.ind2-category-card:nth-child(2) { animation-delay: 0.1s; }
.ind2-category-card:nth-child(3) { animation-delay: 0.2s; }
.ind2-category-card:nth-child(4) { animation-delay: 0.3s; }

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--ind2-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--ind2-primary);
    border-radius: 6px;
    border: 2px solid var(--ind2-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: orange;
}

/* ===== UTILITY CLASSES ===== */
.ind2-text-primary {
    color: var(--ind2-primary) !important;
}

.ind2-text-secondary {
    color: var(--ind2-secondary) !important;
}

.ind2-text-accent {
    color: orange !important;
}

.ind2-bg-primary {
    background-color: var(--ind2-primary) !important;
}

.ind2-bg-secondary {
    background-color: var(--ind2-secondary) !important;
}

.ind2-bg-accent {
    background-color: orange !important;
}

.ind2-bg-light {
    background-color: var(--ind2-light) !important;
}

/* ===== HOVER EFFECTS ===== */
.ind2-hover-lift {
    transition: transform 0.3s ease;
}

.ind2-hover-lift:hover {
    transform: translateY(-5px);
}

/* ===== FOCUS STATES ===== */
.ind2-btn:focus,
.ind2-drop-btn:focus,
.ind2-nav-link:focus {
    outline: 3px solid orange;
    outline-offset: 1px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .ind2-navbar,
    .ind2-hero-scroll,
    .ind2-cta-section,
    .ind2-footer {
        display: none;
    }
    
    .ind2-hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        background: white;
    }
}

/* ===== ACCESSIBILITY ===== */
.ind2-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;
}

.ind2-skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: orange;
    color: var(--ind2-dark);
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    z-index: 100;
}

.ind2-skip-link:focus {
    top: 0;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    .ind2-category-card,
    .ind2-feature-card {
        border-width: 4px;
    }
    
    .ind2-btn {
        border-width: 4px;
    }
}

/* ===== DARK MODE SUPPORT (Optional) ===== */
@media (prefers-color-scheme: dark) {
    /* Keep original colors as they work well in both modes */
}

/* ===== ADDITIONAL COMPONENTS ===== */

/* Badge Styles */
.ind2-badge {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    border: 2px solid;
}

.ind2-badge-primary {
    background: var(--ind2-primary);
    color: white;
    border-color: orange;
}

.ind2-badge-secondary {
    background: var(--ind2-secondary);
    color: white;
    border-color: orange;
}

.ind2-badge-accent {
    background: orange;
    color: var(--ind2-dark);
    border-color: var(--ind2-primary);
}

/* Card Styles */
.ind2-card {
    background: var(--ind2-white);
    border-radius: 16px;
    padding: 2rem;
    border: 3px solid var(--ind2-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ind2-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Alert Styles */
.ind2-alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 3px solid;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ind2-alert-success {
    background: orange;
    color: var(--ind2-dark);
    border-color: var(--ind2-secondary);
}

.ind2-alert-error {
    background: var(--ind2-primary);
    color: white;
    border-color: orange;
}

.ind2-alert-info {
    background: var(--ind2-secondary);
    color: white;
    border-color: orange;
}

/* Input Styles */
.ind2-input {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 3px solid var(--ind2-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--ind2-white);
}

.ind2-input:focus {
    outline: none;
    border-color: orange;
    box-shadow: 0 0 0 3px rgba(203, 255, 140, 0.2);
}

.ind2-input:hover {
    border-color: var(--ind2-secondary);
}

/* Form Group */
.ind2-form-group {
    margin-bottom: 1.5rem;
}

.ind2-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--ind2-dark);
}

/* Table Styles */
.ind2-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ind2-table thead {
    background: var(--ind2-secondary);
    color: orange;
}

.ind2-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 3px solid orange;
}

.ind2-table td {
    padding: 1rem;
    border-bottom: 2px solid var(--ind2-light);
}

.ind2-table tbody tr {
    background: var(--ind2-white);
    transition: all 0.3s ease;
}

.ind2-table tbody tr:hover {
    background: var(--ind2-light);
}

/* Modal Styles */
.ind2-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ind2-modal-overlay.ind2-active {
    opacity: 1;
    visibility: visible;
}

.ind2-modal {
    background: var(--ind2-white);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 4px solid orange;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.ind2-modal-overlay.ind2-active .ind2-modal {
    transform: scale(1);
}

.ind2-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--ind2-light);
}

.ind2-modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ind2-dark);
}

.ind2-modal-close {
    background: var(--ind2-primary);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ind2-modal-close:hover {
    background: orange;
    color: var(--ind2-dark);
    transform: rotate(90deg);
}

/* Tooltip Styles */
.ind2-tooltip {
    position: relative;
    display: inline-block;
}

.ind2-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ind2-dark);
    color: orange;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 2px solid orange;
}

.ind2-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Spinner Styles */
.ind2-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid var(--ind2-light);
    border-top-color: var(--ind2-primary);
    border-radius: 50%;
    animation: ind2-spin-animation 1s linear infinite;
}

@keyframes ind2-spin-animation {
    to {
        transform: rotate(360deg);
    }
}

/* Progress Bar */
.ind2-progress {
    width: 100%;
    height: 20px;
    background: var(--ind2-light);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--ind2-secondary);
}

.ind2-progress-bar {
    height: 100%;
    background: var(--ind2-primary);
    transition: width 0.3s ease;
}

/* Divider */
.ind2-divider {
    height: 3px;
    background: orange;
    margin: 2rem 0;
    border-radius: 2px;
}

/* Section Spacing */
.ind2-section {
    padding: 4rem 0;
}

.ind2-section-lg {
    padding: 6rem 0;
}

.ind2-section-sm {
    padding: 3rem 0;
}

/* Container */
.ind2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid System */
.ind2-grid {
    display: grid;
    gap: 2rem;
}

.ind2-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ind2-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.ind2-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Flexbox Utilities */
.ind2-flex {
    display: flex;
}

.ind2-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind2-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ind2-flex-column {
    display: flex;
    flex-direction: column;
}

/* Spacing Utilities */
.ind2-mt-1 { margin-top: 0.5rem; }
.ind2-mt-2 { margin-top: 1rem; }
.ind2-mt-3 { margin-top: 1.5rem; }
.ind2-mt-4 { margin-top: 2rem; }
.ind2-mt-5 { margin-top: 3rem; }

.ind2-mb-1 { margin-bottom: 0.5rem; }
.ind2-mb-2 { margin-bottom: 1rem; }
.ind2-mb-3 { margin-bottom: 1.5rem; }
.ind2-mb-4 { margin-bottom: 2rem; }
.ind2-mb-5 { margin-bottom: 3rem; }

.ind2-pt-1 { padding-top: 0.5rem; }
.ind2-pt-2 { padding-top: 1rem; }
.ind2-pt-3 { padding-top: 1.5rem; }
.ind2-pt-4 { padding-top: 2rem; }
.ind2-pt-5 { padding-top: 3rem; }

.ind2-pb-1 { padding-bottom: 0.5rem; }
.ind2-pb-2 { padding-bottom: 1rem; }
.ind2-pb-3 { padding-bottom: 1.5rem; }
.ind2-pb-4 { padding-bottom: 2rem; }
.ind2-pb-5 { padding-bottom: 3rem; }

/* Text Alignment */
.ind2-text-left { text-align: left; }
.ind2-text-center { text-align: center; }
.ind2-text-right { text-align: right; }

/* Font Weights */
.ind2-font-light { font-weight: 300; }
.ind2-font-normal { font-weight: 400; }
.ind2-font-medium { font-weight: 500; }
.ind2-font-semibold { font-weight: 600; }
.ind2-font-bold { font-weight: 700; }
.ind2-font-extrabold { font-weight: 800; }
.ind2-font-black { font-weight: 900; }

/* Display Utilities */
.ind2-block { display: block; }
.ind2-inline { display: inline; }
.ind2-inline-block { display: inline-block; }
.ind2-hidden { display: none; }

/* Position Utilities */
.ind2-relative { position: relative; }
.ind2-absolute { position: absolute; }
.ind2-fixed { position: fixed; }
.ind2-sticky { position: sticky; }

/* Width Utilities */
.ind2-w-full { width: 100%; }
.ind2-w-auto { width: auto; }
.ind2-w-fit { width: fit-content; }

/* Height Utilities */
.ind2-h-full { height: 100%; }
.ind2-h-auto { height: auto; }
.ind2-h-screen { height: 100vh; }

/* Z-Index Utilities */
.ind2-z-0 { z-index: 0; }
.ind2-z-10 { z-index: 10; }
.ind2-z-20 { z-index: 20; }
.ind2-z-30 { z-index: 30; }
.ind2-z-40 { z-index: 40; }
.ind2-z-50 { z-index: 50; }

/* Opacity Utilities */
.ind2-opacity-0 { opacity: 0; }
.ind2-opacity-25 { opacity: 0.25; }
.ind2-opacity-50 { opacity: 0.5; }
.ind2-opacity-75 { opacity: 0.75; }
.ind2-opacity-100 { opacity: 1; }

/* Border Radius Utilities */
.ind2-rounded-sm { border-radius: 4px; }
.ind2-rounded { border-radius: 8px; }
.ind2-rounded-lg { border-radius: 12px; }
.ind2-rounded-xl { border-radius: 16px; }
.ind2-rounded-full { border-radius: 9999px; }

/* Shadow Utilities */
.ind2-shadow-sm { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
.ind2-shadow { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.ind2-shadow-lg { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); }
.ind2-shadow-xl { box-shadow: 0 12px 45px rgba(0, 0, 0, 0.2); }

/* END OF STYLESHEET */





/* General Section Styles */
.ind22-hero-section {
    position: relative;
    padding: 60px 0;
    background: var(--ind2-primary);
}

.ind22-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    pointer-events: none;
}

.ind22-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    pointer-events: none;
}

/* Product Grid */
.ind22-products-grid {
    margin-bottom: 40px;
}

/* Product Card - Uniform Size */
.ind22-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ind22-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Card Image - Fixed Height */
.ind22-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind22-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind22-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 48px;
    color: #ddd;
}

/* Card Badge */
.ind22-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.ind22-badge-hot {
    background: #ff4444;
    color: white;
}

.ind22-badge-featured {
    background: #ffd700;
    color: #333;
}

.ind22-badge-new {
    background: #28a745;
    color: white;
}

.ind22-badge-sale {
    background: #ff6b6b;
    color: white;
}

/* Card Content */
.ind22-card-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ind22-product-brand {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}

.ind22-product-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 36px;
}

.ind22-product-name-link {
    text-decoration: none;
    color: inherit;
}

.ind22-product-name-link:hover .ind22-product-name {
    color: #007bff;
}

/* Price */
.ind22-product-price {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
}

.ind22-current-price {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b35;
}

.ind22-original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.ind22-discount-percent {
    font-size: 12px;
    color: #28a745;
    margin-left: 5px;
}

.ind22-discount-badge {
    font-size: 11px;
    background: #ff6b6b;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
}

/* Cart Icon */
.ind22-cart-icon {
    position: relative;
    display: inline-block;
    margin-left: 5px;
}

.ind22-cart-plus {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

/* Rating */
.ind22-product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    font-size: 12px;
}

.ind22-stars {
    color: #ffc107;
}

.ind22-rating-count {
    color: #888;
    font-size: 11px;
}

/* Stock Status */
.ind22-stock-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    margin-bottom: 10px;
}

.ind22-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.ind22-in-stock .ind22-stock-dot {
    background: #28a745;
}

.ind22-out-of-stock .ind22-stock-dot {
    background: #dc3545;
}

/* Actions */
.ind22-product-actions {
    margin-top: auto;
}

.ind22-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.ind22-btn-primary {
    background: #007bff;
    color: white;
}

.ind22-btn-primary:hover {
    background: #0056b3;
}

.ind22-btn-danger {
    background: #dc3545;
    color: white;
}

.ind22-btn-danger:hover {
    background: #c82333;
}

.ind22-product-link {
    text-decoration: none;
    color: inherit;
}

/* Mobile Responsive - 3 items per row */
@media (max-width: 768px) {
    .ind22-card-image {
        height: 150px;
    }
    
    .ind22-product-name {
        font-size: 12px;
        min-height: 32px;
    }
    
    .ind22-product-price,
    .ind22-current-price {
        font-size: 14px;
    }
    
    .ind22-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .ind22-card-content {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .ind22-card-image {
        height: 120px;
    }
    
    .ind22-hero-section {
        padding: 30px 0;
    }
}



/* Fashion categories css*/

/* Category Header */
        .category-header {
            background: linear-gradient(135deg, var(--brand-black) 0%, #333 100%);
            color: white;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .category-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 50%;
            height: 200%;
            background: var(--brand-orange);
            opacity: 0.1;
            transform: rotate(45deg);
        }

        .header-content {
            position: relative;
            z-index: 2;
        }

        .category-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, white, var(--brand-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .category-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Filters Sidebar */
        .filters-sidebar {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            padding: 2rem;
            position: sticky;
            top: 20px;
        }

        .filter-section {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }

        .filter-section:last-child {
            border-bottom: none;
        }

        .filter-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--brand-black);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .filter-title i {
            color: var(--brand-orange);
            margin-right: 0.5rem;
        }

        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .filter-option {
            display: flex;
            align-items: center;
        }

        .filter-option input[type="checkbox"],
        .filter-option input[type="radio"] {
            margin-right: 0.5rem;
            accent-color: var(--brand-orange);
        }

        .filter-option label {
            cursor: pointer;
            color: #666;
            transition: color 0.3s ease;
        }

        .filter-option:hover label {
            color: var(--brand-orange);
        }

        .price-range-inputs {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .price-input {
            flex: 1;
            padding: 0.5rem;
            border: 2px solid #eee;
            border-radius: 8px;
            transition: border-color 0.3s ease;
        }

        .price-input:focus {
            border-color: var(--brand-orange);
            outline: none;
        }

        .color-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .color-option {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 3px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .color-option:hover,
        .color-option.selected {
            border-color: var(--brand-orange);
            transform: scale(1.1);
        }

        .color-option.selected::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
        }

        /* Sort and Filter Bar */
        .sort-filter-bar {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .results-info {
            color: #666;
            font-weight: 500;
        }

        .sort-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .sort-select {
            padding: 0.5rem 1rem;
            border: 2px solid #eee;
            border-radius: 8px;
            background: white;
            cursor: pointer;
            transition: border-color 0.3s ease;
        }

        .sort-select:focus {
            border-color: var(--brand-orange);
            outline: none;
        }

        .view-toggle {
            display: flex;
            border: 2px solid #eee;
            border-radius: 8px;
            overflow: hidden;
        }

        .view-btn {
            background: none;
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
            color: #666;
            transition: all 0.3s ease;
        }

        .view-btn.active {
            background: var(--brand-orange);
            color: white;
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .product-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .product-image-container {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--brand-orange);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 3;
        }

        .product-badge.new {
            background: var(--brand-gold);
            color: var(--brand-black);
        }

        .product-badge.sale {
            background: #dc3545;
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-brand {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .product-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--brand-black);
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .stars {
            color: var(--brand-gold);
            margin-right: 0.5rem;
        }

        .rating-count {
            color: #666;
            font-size: 0.9rem;
        }

        .product-price {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .current-price {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--brand-orange);
        }

        .original-price {
            font-size: 1rem;
            color: #999;
            text-decoration: line-through;
            margin-left: 0.5rem;
        }

        .discount-badge {
            background: var(--brand-orange);
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.8rem;
            margin-left: 0.5rem;
        }

        .btn-brand {
            background: linear-gradient(45deg, var(--brand-orange), var(--brand-dark-orange));
            border: none;
            color: white;
            padding: 10px 20px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-brand:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
            color: white;
        }

        /* Pagination */
        .pagination-custom {
            display: flex;
            justify-content: center;
            margin-top: 3rem;
        }

        .pagination-custom .page-link {
            color: var(--brand-orange);
            border: 2px solid #eee;
            padding: 0.75rem 1rem;
            margin: 0 2px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .pagination-custom .page-item.active .page-link {
            background: var(--brand-orange);
            border-color: var(--brand-orange);
            color: white;
        }

        .pagination-custom .page-link:hover {
            background: var(--brand-cream);
            border-color: var(--brand-orange);
            color: var(--brand-orange);
        }

        /* List View Styles */
        .product-card-list {
            display: flex;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 200px;
        }

        .product-card-list:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .product-card-list .product-image-container {
            width: 250px;
            height: 200px;
            flex-shrink: 0;
        }

        .product-card-list .product-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .breadcrumb {
            background: none;
            padding: 1rem 0;
        }

        .breadcrumb-item a {
            color: var(--brand-orange);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: #666;
        }

        @media (max-width: 768px) {
            .category-title {
                font-size: 2rem;
            }
            
            .sort-filter-bar {
                flex-direction: column;
                align-items: stretch;
            }
            
            .sort-controls {
                justify-content: space-between;
            }
            
            .filters-sidebar {
                position: static;
                margin-bottom: 2rem;
            }
            
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 1.5rem;
            }
        }