.category-header {
    text-align: center;
    padding: 5px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* אפקט של ברק עדין יוקרתי */
.category-header::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -20%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 70%);
    animation: shine 6s infinite linear;
    pointer-events: none;
}

@keyframes shine {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* כותרת ה־H1 */
.category-header h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
    color: #0c0c0c;
    text-transform: uppercase;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

/* תיאור קטגוריה */
.category-description p {
    font-size: 18px;
    margin-top: 12px;
    color: #555;
    line-height: 1.6;
    font-weight: 300;
}

/* קו יוקרתי קטן שמתחת לכותרת */
.category-header h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 18px auto 0;
    background: #c6a667; /* צבע 'זהב רולקס' */
    border-radius: 10px;
}


@media (min-width: 1025px) {
.category-header {
    margin-bottom: 30px;
}
}

@media (max-width: 1024px) {
    .category-header {
    margin-bottom: 5px;
}
}