
        .breadcrumb {
            padding: 15px 0;
            font-size: 14px;
            color: var(--gray);
        }

        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }

        /* Team Header */
        .team-header {
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 30px 0;
            margin: 20px 0;
        }

        .team-logo-large {
            width: 150px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--light);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .team-logo-large img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }

        .team-info {
            flex: 1;
        }

        .team-info h1 {
            font-size: 36px;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .team-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 15px 0;
        }

        .team-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--gray);
        }

        .team-description {
            margin-top: 15px;
            line-height: 1.6;
        }

        /* Team Colors */
        .team-colors {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }

        .team-color {
            width: 30px;
            height: 30px;
            border-radius: 50%;
        }

        /* Main Content */
        .store-container {
            display: flex;
            gap: 30px;
            margin: 30px 0;
        }

        /* Filters Sidebar */
        .filters {
            flex: 0 0 250px;
            background: var(--white);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            height: fit-content;
        }

        .filter-section {
            margin-bottom: 20px;
        }

        .filter-section h3 {
            font-size: 16px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--light-gray);
        }

        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .filter-option {
            display: flex;
            align-items: center;
        }

        .filter-option input {
            margin-right: 10px;
        }

        .filter-option label {
            font-size: 14px;
        }

        .color-options {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .color-option {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .color-option.active {
            border-color: var(--dark);
        }

        .color-red {
            background: #e53e3e;
        }

        .color-blue {
            background: #3182ce;
        }

        .color-green {
            background: #38a169;
        }

        .color-black {
            background: #1a202c;
        }

        .color-white {
            background: #ffffff;
            border: 1px solid #e2e8f0;
        }

        .color-yellow {
            background: #d69e2e;
        }

        .price-range {
            width: 100%;
        }

        .price-values {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: var(--gray);
            margin-top: 5px;
        }

        /* Products Grid */
        .products {
            flex: 1;
        }

        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .products-count {
            font-size: 14px;
            color: var(--gray);
        }

        .sort-select {
            padding: 8px 12px;
            border: 1px solid var(--light-gray);
            border-radius: 5px;
            background: var(--white);
            font-size: 14px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
        }

        .product-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }

        .product-image {
            height: 200px;
            width: 100%;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .product-image img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--secondary);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
        }

        .product-info {
            padding: 15px;
        }

        .product-category {
            font-size: 12px;
            color: var(--gray);
            margin-bottom: 5px;
        }

        .product-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .current-price {
            font-weight: 700;
            font-size: 18px;
            color: var(--primary);
        }

        .original-price {
            text-decoration: line-through;
            color: var(--gray);
            font-size: 14px;
        }

        .discount {
            color: var(--secondary);
            font-size: 14px;
            font-weight: 600;
        }

        .product-actions {
            display: flex;
            justify-content: space-between;
        }

        .add-to-cart {
            flex: 1;
            background: var(--primary);
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .add-to-cart:hover {
            background: var(--primary-dark);
        }

        .wishlist-btn {
            width: 40px;
            margin-left: 10px;
            background: var(--light);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .wishlist-btn:hover {
            background: var(--light-gray);
        }

        /* Categories Section */
        .categories-section {
            margin: 50px 0;
        }

        .section-title {
            font-size: 24px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-gray);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
        }

        .category-card {
            background: var(--white);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-5px);
        }

        .category-icon {
            font-size: 30px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .category-name {
            font-weight: 600;
        }

        /* Team Spotlight */
        .team-spotlight {
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            padding: 40px 0;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
        }

        .team-spotlight h2 {
            color: white;
            margin-bottom: 20px;
        }

        .team-spotlight p {
            max-width: 700px;
            margin: 0 auto 20px;
            font-size: 18px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .store-container {
                flex-direction: column;
            }

            .filters {
                width: 100%;
                margin-bottom: 20px;
            }

            .team-header {
                flex-direction: column;
                text-align: center;
            }

            .team-meta {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .products-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            }

            .team-logo-large {
                width: 120px;
                height: 120px;
            }

            .team-info h1 {
                font-size: 28px;
            }
        }
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
