/* ==========================================================================
   Hero & Pagination - BRAND COLOR UPDATES
   ========================================================================== */

/* *********** Hero-Section ************ */
#page-header{
    background-image: url(images/onlineshop/img/banner/b1.jpg);
    background-size: cover;
    width: 100%;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 14px;
}

#page-header h2,
#page-header p{
    color: white; /* This is fine, no changes needed here */
}

/* *********** Slider-Section ************ */
#pagination{
    text-align: center;
    padding-top: 0;
}

#pagination a{
    text-decoration: none;
    background-color: transparent; /* UPDATED */
    padding: 15px 20px;
    margin: 0 5px;
    border-radius: 50px;
    border: 1px solid var(--primary-gold); /* ADDED */
    color: var(--primary-gold); /* UPDATED */
    line-height: 40px;
    font-size: 600;
    font-weight: 600;
    transition: all 0.3s ease; /* ADDED for smooth transition */
}

#pagination a:hover{
    background-color: var(--primary-gold); /* UPDATED */
    color: #fff; /* UPDATED */
}

#pagination a i{
    font-size: 16px;
    font-weight: 600;
}