.the-lap-banner {
    height: 590px;
    display: flex;
    background: url("/assets/images/front-office/homepage/banner-background.jpg")
        no-repeat center;
    background-size: cover;
    overflow: hidden;
    position: relative;
    color: #fff;
}

/* Layout container */
.drip-content-container {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 20px;
    gap: 20px;
    max-width: 1576px;
    margin: auto;
    box-sizing: border-box;
}

/* Left column (text) */
.drip-left {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.breadcrumbs {
    margin: 0;
    font-size: 14px;
    color: #ffffffbf;

    padding: 0 0 40px 0;
}

.breadcrumbs a {
    color: #ffffffbf;
    text-decoration: none;
}

.breadcrumbs span {
    margin: 0 5px;
}

/* Title */
.drip-title {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 70px;
    line-height: 84px;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 30px;
}

/* Paragraph text */
.drip-text {
    font-family: "InterFace", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 28.5px;
    letter-spacing: 0%;
    color: #ffffffbf;
    margin-bottom: 20px;
}

/* Right column (background + centered product image) */
.drip-right {
    width: 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("/assets/images/front-office/drip-bag/coffee.png") center
        no-repeat;
    background-size: contain; /* show full image */
    background-color: transparent;
    border: none; /* remove any border line */
    outline: none;
    /* overflow: hidden; */
}

/* Centered Drip Bag image */
.drip-bag-img {
    width: 60%;
    max-width: 320px;
    z-index: 2;
}

/* Optional: dark overlay for subtle contrast */
.drip-right::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.1); */
    z-index: 1;
}

.product-card-div {
    display: flex;
    align-content: flex-start;
    justify-content: space-between;
}

.products-section {
    width: 100%;
    max-width: 1576px;
    margin: auto;
    padding: 20px;
    gap: 20px;
}

.product-count {
        font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 25.5px;
    text-align: start;
    color: #332624bf;
}

.product-grid {
    display: flex;
    /* justify-content: center; */
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.product-card {
    width: 300px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.badge {
    position: absolute;
    top: 15px;
    right: 0;
    transform: translateX(-50%);
    background: #f1ede3;
    border-radius: 3px;
   font-family: "InterFace", sans-serif;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #000;
    padding: 5px 15px;
}

.product-img {
    width: 100%;
    height: auto;
    margin-top: 50px;
    transition: all 0.4s ease;
}

.product-name {
   font-family: "InterFace", sans-serif;
    font-size: 16px;
    line-height: 20.1px;
    color: #000;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.product-price {
   font-family: "InterFace", sans-serif;
    font-size: 14px;
    line-height: 16.1px;
    color: #4d4341bf;
}

/* Hover content (hidden initially) */
.hover-content {
    position: absolute;
    top: 0;
    left: 0;
    background: #f1ede3;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 25px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.roast-title,
.detail-title {
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 500;
    font-size: 11.13px;
    color: #000;
    text-align: start;
}

.roast-options {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.roast-options label {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 11px;
    color: #000;
}

.roast-options input[type="radio"] {
    margin-top: 5px;
}

.details {
    text-align: center;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
   font-family: "InterFace", sans-serif;
    font-size: 11.13px;
    color: #000;
    margin: 25px 0;
    padding: 11px 0 0 0;
    border-top: 1px solid #00000033;
}

.detail-value {
    text-align: right;
    width: 60%;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.add-btn,
.buy-btn {
   font-family: "InterFace", sans-serif;
    font-size: 13.34px;
    text-transform: uppercase;
    line-height: 16.1px;
    letter-spacing: 2.5px;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.add-btn {
    border: 1px solid #00000080;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.buy-btn {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

/* Hover animation */
.product-card:hover .hover-content {
    opacity: 1;
    visibility: visible;
}

.product-card:hover .product-img,
.product-card:hover .badge {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .drip-content-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }


.the-lap-banner {
    height: 100%;
}

    .drip-left,
    .drip-right {
        width: 100%;
    }

    .drip-title {
        font-size: 50px;
        line-height: 60px;
    }

    .drip-bag-img {
        width: 70%;
        margin: 20px auto;
        position: static;
        transform: none;
    }

    .drip-right {
        background-position: center;
        background-size: contain;
        min-height: 300px;
    }
}
