/* ============================================================
   SOMMERSALG −10 %  ·  generiskapoteket.com
   Sticky promo banner + −10% image badges. The theme already
   renders struck old / discounted prices when the vendor
   discount is active, so this only adds the banner and 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 −10% badge on product images (top-right, so it
       does not collide with the top-left "Gratis bonus" ribbon) ---- */
.product-image-wrap{ position: relative; }
.category-sub-image{ position: relative; }
.promo-badge{
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 6;
    width: 46px;
    height: 46px;
    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: 13px;
    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 page main image (170px) */
.product-image-wrap .promo-badge{ top: 6px; right: 6px; width: 50px; height: 50px; font-size: 14px; }
/* Category tiles (103px) — smaller */
.category-sub-image .promo-badge{ top: 3px; right: 3px; width: 38px; height: 38px; font-size: 11px; }
@media (max-width: 680px){
    .product-image-wrap .promo-badge{ width: 44px; height: 44px; font-size: 12px; }
    .category-sub-image .promo-badge{ width: 34px; height: 34px; font-size: 10px; }
}
