
       .breadcrumb-wrap {
            background: linear-gradient(
                to right,
                rgba(218,165,32,0.08),
                rgba(218,165,32,0.02)
            );
            border-bottom: 1px solid #eee;
        }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    /* font-size: 0.75rem; */
    font-weight: 500;
    color: var(--gray);
    justify-content: center
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.breadcrumb a i {
    font-size: 1rem;
    opacity: 0.7;
}

.breadcrumb a:hover {
    color: var(--primary-blue);
}

.breadcrumb .divider {
    color: #bbb;
    font-size: 0.8rem;
}

.breadcrumb .active {
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 0.2px;
}


        /* Products Container */
        .products-page-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        .page-header {
            margin-bottom: 30px;
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .page-header p {
            color: var(--gray);
            font-size: 1.1rem;
        }

        /* Category Scroll */
        .category-scroll {
            overflow-x: auto;
            padding: 15px 0;
            border-bottom: 1px solid #e5e5e5;
            margin-bottom: 30px;
            scrollbar-width: thin;
        }

        .category-track {
            display: flex;
            gap: 12px;
            min-width: max-content;
            padding: 0 5px;
        }

        .cat-pill {
            border: 1px solid #000;
            background: #fff;
            padding: 7px 16px;
            font-size: 0.75rem;
            border-radius: 20px;
            white-space: nowrap;
            cursor: pointer;
            font-weight: 500;
            color: #000;
            outline: none;
        }

        .cat-pill:hover {
            background: #f5f5f5;
            border-color: var(--primary-blue);
        }

        .cat-pill.active {
            background: #000;
            color: #fff;
            border-color: #000;
        }

        /* Two Column Layout */
        .products-layout {
            display: grid;
            grid-template-columns:  21% 76%;
            gap: 3%;
            /* gap: 40px; */
            align-items: flex-start;
        }

        /* Sidebar Filters */
        .filter-sidebar {
            background: var(--white);
            border-radius: 12px;
            padding: 25px;
            height: fit-content;
            position: sticky;
            top: 120px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .filter-group {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e8e8e8;
        }

        .filter-group:last-child {
            border-bottom: none;
        }

        .filter-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .filter-title h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            margin: 0;
        }

        .filter-options {
            max-height: 300px;
            overflow-y: auto;
            padding-right: 10px;
        }

        .filter-option {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .filter-checkbox {
            width: 18px;
            height: 18px;
            border: 2px solid #ddd;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .filter-checkbox.checked {
            background: var(--primary-blue);
            border-color: var(--primary-blue);
        }

        .filter-checkbox.checked::after {
            content: '✓';
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        .filter-label {
            font-size: 0.75rem;
            color: var(--dark);
            flex: 1;
        }

        .filter-count {
            color: var(--gray);
            font-size: 0.75rem;
        }

        .see-more {
            color: var(--primary-blue);
            font-size: 0.75rem;
            font-weight: 500;
            display: block;
            margin-top: 10px;
            text-decoration: none;
        }

        .btn-clear-filters {
            background: transparent;
            border: 1px solid var(--primary-blue);
            color: var(--primary-blue);
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
        }

        .btn-clear-filters:hover {
            background: var(--primary-blue);
            color: white;
        }

        /* Products Main */
        .products-main {
            flex: 1;
        }

        .products-header {
            background: var(--white);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .results-count {
            font-size: 0.75rem;
            color: var(--gray);
        }

        .sort-options {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .sort-label {
            font-weight: 500;
            color: var(--dark);
            white-space: nowrap;
        }

        .sort-select {
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background: var(--white);
            font-size: 0.75rem;
            color: var(--dark);
            min-width: 200px;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        /* Product Card */
        .product-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid transparent;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: var(--primary-blue);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-blue);
            color: var(--white);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
        }

        .new-badge {
            background: #10b981;
        }

        .product-image-container {
            padding: 30px 20px;
            text-align: center;
            background: #f9f9f9;
            position: relative;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image {
            max-width: 160px;
            max-height: 160px;
            object-fit: contain;
        }

        .product-info {
            padding: 20px;
            border-top: 1px solid #f0f0f0;
        }

        .product-title {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .product-description {
            color: var(--gray);
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 15px;
            height: 40px;
            overflow: hidden;
        }

        .product-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .product-category {
            background: #f0f7ff;
            color: #2563eb;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .product-price-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .product-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
        }

        .original-price {
            text-decoration: line-through;
            color: var(--gray);
            font-size: 0.9rem;
            margin-left: 8px;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 15px;
        }

        .rating-stars {
            color: #ffc107;
            font-size: 0.9rem;
        }

        .rating-count {
            color: var(--gray);
            font-size: 0.85rem;
        }

        .product-actions {
            display: flex;
            gap: 10px;
        }

        .btn-quick-view {
            flex: 1;
            background: transparent;
            border: 1px solid #ddd;
            color: var(--dark);
            padding: 10px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            text-decoration: none;
        }

        .btn-quick-view:hover {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
        }

        .btn-add-cart {
            flex: 2;
            background: var(--primary-blue);
            border: none;
            color: var(--white);
            padding: 10px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .btn-add-cart:hover {
            background: #c79102;
        }

        /* Quiz Banner */
        .quiz-banner {
            background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
            border: 2px dashed var(--primary-blue);
            border-radius: 12px;
            padding: 25px;
            margin-top: 40px;
            text-align: center;
        }

        .quiz-banner h3 {
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .quiz-banner p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .btn-quiz {
            background: var(--primary-blue);
            color: var(--white);
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-quiz:hover {
            background: #c79102;
        }

        /* Footer */
        .main-footer {
            background: var(--dark);
            color: var(--white);
            padding: 80px 20px 30px;
            margin-top: 80px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto 50px;
        }

        .footer-brand {
            margin-bottom: 20px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            margin-bottom: 15px;
            display: inline-block;
        }

        .footer-tagline {
            color: var(--primary-blue);
            font-style: italic;
            margin-bottom: 15px;
        }

        .footer-description {
            color: #aaa;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--primary-blue);
        }

        .footer-column h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--white);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
            font-size: 0.9rem;
        }
/* Mobile filter button */
.mobile-filter-btn {
    display: none;
    border: 1px solid #ddd;
    background: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
    gap: 6px;
}

/* Drawer */
.filter-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    z-index: 1001;
    transition: left 0.3s ease;
    box-shadow: 5px 0 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.filter-drawer.active {
    left: 0;
}

.filter-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.filter-drawer-header h4 {
    margin: 0;
    font-size: 1rem;
}

.filter-drawer-body {
    padding: 20px;
    overflow-y: auto;
}

/* Overlay */
.filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    display: none;
}

.filter-overlay.active {
    display: block;
}

/* MOBILE ONLY */
@media (max-width: 992px) {
    .mobile-filter-btn {
        display: inline-flex;
    }
    .results-count{
            display: flex;
    justify-content: space-between;
    width: 100%;
    }
    .filter-button {
    border: none;
    font-size: 21px;
    background: none;
}
}
        /* Responsive Design */
        @media (max-width: 1200px) {
            .products-layout {
                grid-template-columns: 250px 1fr;
                gap: 30px;
            }
            
            .nav-container {
                padding: 0 20px;
            }
        }

        @media (max-width: 992px) {
            .products-layout {
                /* grid-template-columns: 21% 76%; */
                grid-template-columns: 100%
            }
            
            .filter-sidebar {
                position: static;
                display: none;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .search-box {
                width: 200px;
            }
            
            .products-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .sort-options {
                width: 100%;
                /* flex-direction: column;
                align-items: flex-start; */
                        display: flex;
        flex-wrap: wrap;
            }
            
            .sort-select {
                width: 70%;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 20px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .category-track {
                gap: 8px;
            }
            
            .cat-pill {
                padding: 6px 12px;
                font-size: 0.7rem;
            }
        }

        /* Hide scrollbar for category scroll */
        .category-scroll::-webkit-scrollbar {
            height: 4px;
        }

        .category-scroll::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .category-scroll::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 2px;
        }
        .product-detail-container {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 50px;
}

.product-gallery {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 16px;
}

.main-image {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.thumbs img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
}

.thumbs img.active {
  border-color: var(--primary-blue);
}

.product-detail-info {
  padding-top: 10px;
}

.pd-badge {
  background: var(--primary-blue);
  color: #fff;
  padding: 6px 10px;
  font-size: 0.7rem;
  border-radius: 4px;
  display: inline-block;
}

.pd-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 15px 0;
}

.pd-rating {
  color: #f5a623;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.pd-rating span {
  color: #777;
}

.pd-price {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 15px 0;
}

.pd-price .old {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
}

.pd-short-desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.pd-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.btn-buy {
  flex: 1;
  background: var(--primary-blue);
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
}

.btn-wishlist {
  width: 50px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 10px;
}

.pd-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pd-highlights li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #333;
}
.latest-products {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.latest-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform .2s ease;
    cursor: pointer;
}

.latest-card:hover {
    transform: translateY(-5px);
}

.latest-card img {
    max-width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 15px;
}

.latest-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.latest-card span {
    font-weight: 700;
    color: #111;
}
.latest-card .price {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
}

.btn-view {
    display: inline-block;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #111;
    transition: all 0.2s ease;
}

.btn-view:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}
.latest-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.btn-view,
.btn-cart {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* View */
.btn-view {
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
}

.btn-view:hover {
    background: #f5f5f5;
}

/* Add to Cart */
.btn-cart {
    background: var(--primary-blue);
    color: #fff;
    border: 1px solid var(--primary-blue);
}

.btn-cart:hover {
    background: #c79102;
}
