.product-scroller {
    overflow: hidden;

}

.product-image{
    width:100%;
    height:700px;
    object-fit: cover;
    border-radius: 5px;

}

.product-item {
    position: relative;
}

.product-text {
    font-family: 'Playfair Display', serif;
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 50%;
    background-color: rgba(150, 20, 100,.1);
    color: #fff;
    padding: 100px;
    font-size: 46px;
    font-style: italic;
    text-align: center;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}


.cursive-font {
    font-family: 'Open Sans', 'tahoma';
}


#tagline {
    font-family: 'Playfair Display', serif;
    font-size: 18px; /* adjust as needed */
    font-style: italic;
    position: relative;
    top:-30px;
    left:255px;
}

#cart_summary_total{
    text-align: right;
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 1s;
}

.animate-on-scroll.animate {
    opacity: 1;

}

.animate-on-hover {
    transition: transform 0.3s;
}

.animate-on-hover:hover {
    transform: scale(1.1);
}

.text-descriptor {
    /*
       MIN: 1.4rem (approx 22px on mobile)
       PREF: 4vw (grows based on screen width)
       MAX: 2.5rem (approx 40px on large desktop)
    */
    font-size: clamp(1.4rem, 4vw, 2.5rem);

    font-weight: 700;       /* Bold for higher visibility */
    display: block;
    width: 100%;
    line-height: 1.2;      /* Prevents large gaps between lines if it wraps */
    letter-spacing: -0.5px; /* Tighter spacing looks more modern at large sizes */

    /* Adds a subtle 'pop' to the green text */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}