.hcc-db4687e1-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
    overflow: hidden;
}

.hcc-db4687e1-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide standard Firefox scrollbar */
    padding: 20px 0;
}

.hcc-db4687e1-carousel::-webkit-scrollbar {
    display: none; /* Hide Chrome/Safari scrollbar */
}

.hcc-db4687e1-card {
    display: flex;
    flex-direction: row;
    flex: 0 0 calc(43% - 15px); /* Allows 2 full cards + portion of third visible */
    scroll-snap-align: start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #faf8f2;
    overflow: hidden;
}

.hcc-db4687e1-image-wrapper {
    flex: 0 0 45%;
    position: relative;
}

.hcc-db4687e1-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hcc-db4687e1-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hcc-db4687e1-title {
    font-family: 'Playfair Display', 'Didot', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 15px 0;
    color: #031737;
}

.hcc-db4687e1-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 25px;
}

.hcc-db4687e1-price-prefix,
.hcc-db4687e1-price-suffix {
    font-size: 0.9rem;
    color: #7c7c7c;
    font-family: inherit;
}

.hcc-db4687e1-price-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #031737;
}

.hcc-db4687e1-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 0 30px 0;
}

.hcc-db4687e1-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 16px 40px;
    background-color: #a48238;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.hcc-db4687e1-btn:hover {
    background-color: #8e7030;
    color: #ffffff;
}

/* Nav Arrows */
.hcc-db4687e1-nav {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    padding-left: 5px;
}

.hcc-db4687e1-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #031737;
    background-color: transparent;
    color: #031737;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hcc-db4687e1-arrow:hover {
    background-color: #031737;
    color: #ffffff;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hcc-db4687e1-card {
        flex: 0 0 calc(75% - 15px); /* Show one card completely + half of next */
    }
}

@media (max-width: 767px) {
    .hcc-db4687e1-card {
        flex: 0 0 90%;
        flex-direction: column;
    }
    .hcc-db4687e1-image-wrapper {
        flex: 0 0 250px;
    }
    .hcc-db4687e1-image-wrapper img {
        border-radius: inherit;
    }
    .hcc-db4687e1-content {
        padding: 30px 20px;
    }
    .hcc-db4687e1-title {
        font-size: 1.8rem;
    }
}
