.price-box {
    background: #f8f9fa;
    border: 2px solid #ffc107; /* Warning yellow to match your theme */
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.price_large {
    line-height: 1.2;
}
.price_large .text-dark {
    font-size: 2.2rem;
    display: block;
}
/* Ensure the trust bar icons look uniform */
.trust-bar strong {
    color: #333;
    letter-spacing: 0.5px;
}
/* Container for the image needs to be relative */
.product-image-container {
    position: relative;
    display: inline-block;
}

/* The Floating Sash */
.promo-sash {
    position: absolute;
    top: 15px;
    left: -5px; /* Slight offset for "wrapped" look */
    background: #990000; /* Danger Red */
    color: white;
    padding: 8px 20px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    z-index: 10;
    border-radius: 0 4px 4px 0;
}

/* Small "fold" effect for the sash */
.promo-sash::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 5px solid #790000; /* Darker red */
    border-left: 5px solid transparent;
}

/* MOBILE OPTIMIZATION (Screens smaller than 768px) */
@media (max-width: 767px) {
    .promo-sash {
        top: 10px;        /* Move it closer to the top */
        left: -5px;       /* Tighter to the edge */
        padding: 5px 12px; /* Slimmer padding */
        font-size: 0.7rem; /* Smaller text */
        letter-spacing: 0.5px;
    }
    .promo-sash::after {
        border-top: 4px solid #790000; /* Smaller "fold" */
        border-left: 4px solid transparent;
    }
}

      /* Pop Up Tooltip Styling */
    .popup-icon {
        font-size: 0.8rem;
        color: #0d6efd;
        cursor: help;
        margin-left: 6px;
        position: relative;
        display: inline-block;
    }

    .popup-tooltip {
        visibility: hidden;
        width: 220px;
        background-color: #2c3e50;
        color: #fff;
        text-align: left;
        border-radius: 6px;
        padding: 10px;
        position: absolute;
        z-index: 100;
        top: 130%; 
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.65rem;
        font-weight: normal;
        line-height: 1.4;
        opacity: 0;
        transition: opacity 0.3s;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        pointer-events: none;
    }

    .popup-icon:hover .popup-tooltip {
        visibility: visible;
        opacity: 1;
    }