/* inherits base splits and layout from collection-base.css */

.bloomingdales-theme .exclusive-label {
    font-size: 1.1rem;
    letter-spacing: 4px;
    font-weight: 100;
    margin-bottom: 25px;
    color: var(--title-clr);
    text-transform: uppercase;
}

.bloomingdales-theme .hero-title.italic {
    font-family: "Baskervville", serif;
    font-style: italic;
    font-size: 3.8rem;
    text-transform: none;
    font-weight: 400;
    color: var(--title-clr);
}

/* Styling the button with the new background variable */
.bloomingdales-theme .hero-button {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    
    /* Using the variables */
    background-color: var(--btn-bg); 
    border: 1px solid var(--btn-brd);
    color: var(--btn-clr);
    
    transition: 0.3s ease;
}

/* Hover state logic */
.bloomingdales-theme .hero-button:hover {
    /* On hover, we usually flip the colors or darken them */
    background-color: var(--btn-brd);
    color: var(--hero-bg); /* Uses the section background color as the text color on hover */
}

@media (max-width: 1025px) {
    .bloomingdales-theme .exclusive-label {
        color: #ffffff;
    }

    .bloomingdales-theme .hero-title.italic {
        font-size: 2.8rem;
        color: #ffffff;
    }

    .bloomingdales-theme .hero-button {
        background-color: #ffffff;
        color: #000000;
        border-color: #ffffff;
        display: block;
        margin-top: 20px;
    }
}