.sticky-buy {
    z-index: 2;
    opacity: 1;
    color: var(--black);
    justify-content: center;
    align-items: center;
    display: flex;
    position: fixed;
    bottom: 4vw;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Martell', sans-seif;
    font-weight: 500;
    font-size: 10px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.07);
}

.ctbuy-button {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.buy-pdp-wrapper {
    display: flex;
    background-color: white;
    border-radius: 2px;
    justify-content: center;
    align-items: center;
    height:52px;
}

.pdp-btn-content {
    padding: 8px 64px 8px 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.pdp-btn-thumbnail {
    background-image: url(http://localhost:8888/martell-2024/wp-content/uploads/2024/11/packshot-2.png);
    width: 40px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-height: 720px) {
    .sticky-buy {
        transform: translateX(-50%) scale(.8) translateY(10%);
    }

}



@media (max-width: 991px) {
    .sticky-buy {
        bottom: 6vh;
    }

}

@media (max-width: 767px) {
    .sticky-buy {
        width: 90%;
    }

    .buy-pdp-wrapper {
        width: 100%;
    }

    .pdp-btn-content {
        flex-grow: 1;
        padding-right: 16px;
        padding-top: 2px;
        padding-bottom: 0px;
    }

    .pdp-btn-thumbnail {
        display: none;
    }

    .pdp-btn {
        padding: 20px 25px 18px;
    }
}