.hr-cards {
    background-color: #f8f9fa; /* Light background to show the cards clearly */
}

/* --- General Card Styling --- */
.promo-card {
    position: relative;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
}

/* --- Image Cards (Left & Right) --- */
.card-image-bg {
    /* Fallback dark overlay just in case image is too bright */
    box-shadow: inset 0 100px 80px -50px rgba(0,0,0,0.3);
}

.card-content-top {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
}

.card-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    font-family: var(--font-02);
}

.see-products-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
    font-family: var(--font-02);
}

.see-products-link:hover {
    color: #ffffff;
    opacity: 0.8;
}

/* --- The Corner "Blob" Badge --- */
/* --- Modified Corner Badge (Using Image Background) --- */
.discount-badge {
    position: absolute;
    bottom: 0;
    right: -1px;
    width: 190px;  /* Adjust these dimensions to match your actual image */
    height:173px; 
    
    /* Set your background image here */
    background-image: url('https://www.myeventzpro.com/public/MEVNTZPRO/themeaB9xY12z/assets/images/about/badge.svg'); 
    background-size: contain; /* Ensures the whole image fits within the width/height */
    background-position: bottom right;
    background-repeat: no-repeat;
    background-color: transparent;
    
    /* Ensure old border-radius is removed so it doesn't clip your image */
    border-radius: 0; 

    /* Flexbox keeps the text aligned inside the badge */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    /* You may need to tweak this padding depending on the exact shape of your image 
       to get the text perfectly centered visually */
    padding-top: 25px;
    padding-left: 20px;
    z-index: 2;
    border-bottom-right-radius: 15px;
}

.discount-amount {
    color: #e66d4e;
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    margin: 0;
    font-family: var(--font-04);
    right: -20px;
    position: relative;
}

.discount-text {
    color: #e35d4f;
    font-size: 16px;
    font-weight: 400;
    margin: 12px 0 0;
    line-height: 1em;
    font-family: var(--font-02);
    right: -12px;
    position: relative;
}

/* --- Center Dark Card --- */
.card-dark-bg {
    background-color: #050505;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.sale-title {
    font-family:var(--font-04);
    color: #ddab77;
    font-size: 47px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.btn-sale {
    background-color: #ffffff;
    color: #e66d4e;
    font-size: 14px;
    line-height: 17px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 5em;
    text-decoration: none;
    letter-spacing: 0px;
    transition: all 0.3s ease;
    font-family:var(--font-02);
}

.btn-sale:hover {
    background-color: var(--color-1);
    color: #ffffff;
}

.client-text {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    line-height: 1.5;
    font-family:var(--font-02);
}