/*ddcrmelasky adjust curtain position*/
.mega-menu-curtain { top: 315px !important; }

/* ===== Tall Vertical coupons: rounded corners + gentle drop shadow (site-wide) ngroy1 ===== */
/* Covers Vehicle offer types.
   Excludes EVENT, VEHICLE, SERVICE, PARTS and INCENTIVE (new) offers. */
.ws-specials .coupon-listing .promo.promo-type-vehicle,
.ws-specials .coupon-carousel .promo.promo-type-vehicle,
.ws-specials .single-promo .promo.promo-type-vehicle {
  border-radius: 12px;
  overflow: hidden; /* clips the inner image/background to the radius */
  box-shadow: 0 2px 4px rgba(0, 0, 0, .06), 0 6px 16px rgba(0, 0, 0, .10);
  transition: box-shadow .2s ease-in-out, transform .2s ease-in-out;
}

/* Inner background layers inherit the radius (no-ops where there's no radius) */
.ws-specials .promo.promo-type-vehicle > div,
.ws-specials .promo.promo-type-vehicle .aspect-ratio-box-inner-wrapper {
  border-radius: inherit;
}

/* Optional gentle lift on hover — delete this block if you don't want it */
@media (hover: hover) {
  .ws-specials .coupon-listing .promo.promo-type-vehicle:hover,
.ws-specials .coupon-carousel .promo.promo-type-vehicle:hover,
  .ws-specials .single-promo .promo.promo-type-vehicle:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .08), 0 12px 24px rgba(0, 0, 0, .14);
    transform: translateY(-2px);
  }
}