/* ============================================================
   VRUĆI SRPANJ −7 %  ·  svojaljekarna.hr
   Promo styling (banner, badges). The theme already renders
   struck old + new prices when a discount is active, so this
   file only adds the banner and image badges.
   ============================================================ */

/* ---- Sticky top promo bar ---- */
.promo-bar{
    position: sticky;
    top: 0;
    z-index: 1200;
    background: linear-gradient(90deg,#0c5a41 0%,#12805e 50%,#0c5a41 100%);
    border-bottom: 2px solid #d4af37;
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
    color: #fff;
    -webkit-font-smoothing: antialiased;
}
.promo-bar__inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 11px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: Arial, "Segoe UI", Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.25;
}
.promo-bar__icon{ font-size: 18px; line-height: 1; }
.promo-bar__text b{ color: #ffe6a3; font-weight: 800; }
.promo-bar__badge{
    background: linear-gradient(180deg,#f0d489,#d4af37);
    color: #123527;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: .04em;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
    white-space: nowrap;
}
@media (max-width: 680px){
    .promo-bar__inner{ font-size: 11.5px; gap: 9px; padding: 9px 10px; letter-spacing: .03em; }
    .promo-bar__badge{ display: none; }
}

/* ---- Circular −7% badge on product images ---- */
.box-thumbnail{ position: relative; }
.product-preview{ position: relative; }
.promo-badge{
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 6;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 32% 28%, #f2d488 0%, #d9a83a 55%, #c2912b 100%);
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    transform: rotate(-8deg);
    box-shadow: 0 4px 10px rgba(0,0,0,.28), inset 0 0 0 2px rgba(255,255,255,.55);
    pointer-events: none;
}
.product-preview .promo-badge{
    top: 10px;
    right: 10px;
    width: 62px;
    height: 62px;
    font-size: 16px;
}
@media (max-width: 680px){
    .promo-badge{ width: 44px; height: 44px; font-size: 12px; }
    .product-preview .promo-badge{ width: 52px; height: 52px; font-size: 13px; }
}

/* ---- Front top-cards: struck old price next to discounted ---- */
.promo-old{
    text-decoration: line-through;
    color: #d9d0c4;
    font-weight: 400;
    font-size: .82em;
    margin-right: 5px;
    opacity: .85;
}
