/* ================= COLLECTION HEADER STYLES ================= */
.category-heading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 40px auto 30px;
    padding: 20px 15px;
    position: relative;
    max-width: 900px;
    gap: 20px;
}

.ch-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.ch-side-illustration {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ch-side-illustration svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.ch-eyebrow {
    color: #D4A12A;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    margin-bottom: 5px;
}

.collections h2.ch-title {
    font-family: 'Cinzel', serif;
    color: #D4A12A;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.ch-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 10px 0 8px;
}

.ch-line {
    flex-grow: 1;
    height: 1px;
    background-color: #D4A12A;
    max-width: 130px;
    position: relative;
}

/* Base style for the small diamond/dot on the inner ends (near lotus) */
.ch-line::after {
    content: '';
    position: absolute;
    top: -2px;
    width: 5px;
    height: 5px;
    background-color: #D4A12A;
    border-radius: 50%;
}

/* Inner dot for left line */
.ch-divider > .ch-line:first-child::after {
    right: 0;
}

/* Inner dot for right line */
.ch-divider > .ch-line:last-child::after {
    left: 0;
}

/* Add arrow heads pointing outward on the outer ends */
.ch-divider > .ch-line:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: -4px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #D4A12A;
    border-left: 1px solid #D4A12A;
    transform: rotate(45deg);
    background: transparent;
}

.ch-divider > .ch-line:last-child::before {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #D4A12A;
    border-right: 1px solid #D4A12A;
    transform: rotate(45deg);
    background: transparent;
}


.ch-lotus {
    width: 26px;
    height: 26px;
    margin: 0 15px;
}

.ch-subtitle {
    color: #fff;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .category-heading-container {
        gap: 15px;
        max-width: 95%;
    }
    .ch-side-illustration {
        width: 70px;
        height: 70px;
    }
    .collections h2.ch-title {
        font-size: 2.2rem;
    }
    .ch-line {
        max-width: 90px;
    }
}

@media (max-width: 600px) {
    .category-heading-container {
        flex-direction: column;
        padding: 15px 10px;
        margin: 20px auto;
        gap: 5px;
    }
    .ch-side-illustration {
        display: none; /* Hide illustrations on small screens to keep it clean */
    }
    .ch-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    .collections h2.ch-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    .ch-subtitle {
        font-size: 0.85rem;
    }
    .ch-line {
        max-width: 70px;
    }
}
