/* Shop Hero Section */
.shop-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.shop-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.shop-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.shop-hero h1 {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.shop-hero p {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.shop-hero-promo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 215, 0, 0.1);
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid #FFD700;
}

.promo-badge {
    background: #FFD700;
    color: #000000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-hero-promo > span:last-child {
    color: #ffffff;
    font-size: 1.1rem;
}

/* Shop Categories */
.shop-categories-section {
    padding: 60px 0;
    background: #0a0a0a;
}

.shop-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background: #000000;
    border: 2px solid #333;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-card h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.category-card p {
    color: #999999;
    font-size: 1rem;
}

/* Shop Main Section */
.shop-main-section {
    padding: 60px 0;
    background: #000000;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Filters Sidebar */
.shop-filters {
    background: #0a0a0a;
    border: 2px solid #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.shop-filters h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-group {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #1a1a1a;
}

.filter-group:last-of-type {
    border-bottom: none;
}

.filter-group h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    color: #cccccc;
    transition: color 0.3s ease;
}

.filter-checkbox:hover {
    color: #FFD700;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #FFD700;
}

.size-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.size-btn {
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #333;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.size-btn:hover {
    border-color: #FFD700;
    color: #FFD700;
}

.size-btn.active {
    background: #FFD700;
    color: #000000;
    border-color: #FFD700;
}

.price-range {
    margin-top: 15px;
}

.price-slider {
    width: 100%;
    height: 6px;
    background: #1a1a1a;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}

.price-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 50%;
    cursor: pointer;
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #999999;
}

.full-width {
    width: 100%;
    margin-top: 10px;
}

/* Products Section */
.shop-products {
    width: 100%;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.shop-header h2 {
    color: #ffffff;
    font-size: 2rem;
    text-transform: uppercase;
}

.product-count {
    color: #999999;
    font-size: 1.2rem;
    font-weight: normal;
}

.sort-select {
    background: #0a0a0a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.sort-select:hover {
    border-color: #FFD700;
}

.sort-select:focus {
    outline: none;
    border-color: #FFD700;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: #0a0a0a;
    border: 2px solid #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.product-badge.new {
    background: #FFD700;
    color: #000000;
}

.product-badge.sale {
    background: #ff4444;
    color: #ffffff;
}

.product-image {
    height: 300px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.product-logo {
    width: 120px;
    height: auto;
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 44px;
}

.product-category {
    color: #FFD700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.product-sizes {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-sizes span {
    background: #1a1a1a;
    color: #cccccc;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    border: 1px solid #333;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.product-price {
    color: #FFD700;
    font-size: 1.4rem;
    font-weight: bold;
}

.product-price del {
    color: #666666;
    font-size: 1rem;
    margin-left: 8px;
}

.btn-add-cart {
    background: #FFD700;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-cart:hover {
    background: #ffed4e;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Pagination */
.shop-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    background: #0a0a0a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 50px;
}

.page-btn:hover {
    border-color: #FFD700;
    color: #FFD700;
}

.page-btn.active {
    background: #FFD700;
    color: #000000;
    border-color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .shop-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-filters {
        position: static;
        margin-bottom: 30px;
    }

    .shop-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .shop-hero {
        padding: 60px 0;
    }

    .shop-hero h1 {
        font-size: 2rem;
    }

    .shop-hero p {
        font-size: 1.2rem;
    }

    .shop-hero-promo {
        flex-direction: column;
        gap: 10px;
    }

    .shop-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        padding: 30px 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .shop-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .sort-select {
        width: 100%;
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-add-cart {
        width: 100%;
    }

    .size-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-group {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}
