.product-hero {
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
}

.product-hero .container {
    position: relative;
    z-index: 1;
}

.product-hero .hero-content {
    max-width: 600px;
}

.product-hero h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.product-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}

.product-hero .hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.product-hero .stat {
    text-align: center;
}

.product-hero .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #f5a623;
}

.product-hero .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.product-hero.tapes-hero {
    background: linear-gradient(135deg, #34495E 0%, #1a252f 100%);
}

.product-hero.bags-hero {
    background: linear-gradient(135deg, #1E3A5F 0%, #0f1f33 100%);
}

.breadcrumb {
    margin-bottom: 32px;
}

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

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-light);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}

.filter-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.filter-section h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-options .form-check {
    margin-bottom: 10px;
}

.filter-options .form-check:last-child {
    margin-bottom: 0;
}

.filter-options .form-check-input {
    margin-top: 0.2em;
}

.filter-options .form-check-label {
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
}

.form-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: none;
}
