        .global-promo-bar {
            padding: 9px 0;
            text-align: center;
            color: #ffffff;
            font-weight: 600;
            font-size: 14px;
            position: relative;
            z-index: 1030; /* Keep promo bar below Bootstrap modal layers */
            letter-spacing: 0.35px;
            background: linear-gradient(95deg, var(--promo-c1, #e53e3e), var(--promo-c2, #e14e78));
            box-shadow: 0 8px 18px rgba(15, 23, 42, .16);
        }
        .global-promo-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .global-promo-text {
            font-weight: 700;
            text-shadow: 0 1px 2px rgba(0, 0, 0, .22);
        }
        .global-promo-bar a {
            color: #ffffff;
            text-decoration: underline;
            transition: opacity 0.2s;
        }
        .global-promo-bar a:hover {
            opacity: 0.8;
            color: #ffffff;
        }
        .global-promo-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: 999px;
            padding: 5px 11px;
            font-size: 12px;
            font-weight: 700;
            border: 1px solid rgba(255, 255, 255, .28);
            background: rgba(255, 255, 255, .2);
            backdrop-filter: blur(2px);
        }
        .global-promo-coupon {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            border-radius: 999px;
            padding: 5px 12px;
            font-size: 12px;
            font-weight: 800;
            border: 1px solid rgba(255, 255, 255, .35);
            background: #fff;
            color: #0f172a;
            box-shadow: 0 6px 14px rgba(2, 6, 23, .16);
            cursor: pointer;
            transition: transform .16s ease, box-shadow .16s ease;
        }
        .global-promo-coupon:hover {
            transform: translateY(-1px);
            box-shadow: 0 9px 18px rgba(2, 6, 23, .2);
        }
        .global-promo-coupon i {
            color: var(--promo-c1, #e53e3e);
        }

        .special-offer-fab {
            position: fixed;
            right: 26px;
            bottom: 118px;
            z-index: 1115;
            display: none;
            align-items: center;
            gap: 6px;
            border: 0;
            border-radius: 999px;
            padding: 8px 12px;
            color: #fff;
            background: var(--theme-color, #e14e78);
            box-shadow: 0 10px 28px rgba(225, 78, 120, .35);
            font-size: .76rem;
            font-weight: 800;
            line-height: 1;
            cursor: pointer;
        }
        .special-offer-fab .sof-ripple {
            position: absolute;
            inset: -4px;
            border-radius: 999px;
            border: 2px solid rgba(225, 78, 120, .45);
            animation: sofRipple 1.8s ease-out infinite;
            pointer-events: none;
        }
        .special-offer-fab .sof-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #fff;
            display: inline-block;
            box-shadow: 0 0 0 0 rgba(255, 255, 255, .75);
            animation: sofDotPulse 1.8s ease-in-out infinite;
        }
        .special-offer-fab.is-visible {
            display: inline-flex;
        }
        @keyframes sofDotPulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .68); }
            70% { box-shadow: 0 0 0 9px rgba(255, 255, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
        }
        @keyframes sofRipple {
            0% { opacity: .9; transform: scale(.98); }
            80% { opacity: 0; transform: scale(1.08); }
            100% { opacity: 0; transform: scale(1.08); }
        }
        @media (max-width: 767px) {
            .special-offer-fab {
                right: 14px;
                bottom: 102px;
                padding: 8px 10px;
            }
        }

        /* Site-wide flat/free shipping badge (admin → shippingsetup) */
        .site-wide-ship-badge {
            position: fixed;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1100;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            pointer-events: none;
            max-width: 88px;
            text-align: center;
        }
        .site-wide-ship-circle {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0f766e, #14b8a6);
            color: #fff;
            box-shadow: 0 10px 24px rgba(15, 118, 110, .28);
            border: 1px solid rgba(255, 255, 255, .28);
        }
        .site-wide-ship-circle svg {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .site-wide-ship-label {
            font-size: 11px;
            font-weight: 800;
            line-height: 1.15;
            color: #0f172a;
            background: rgba(255, 255, 255, .92);
            padding: 4px 8px;
            border-radius: 8px;
            border: 1px solid rgba(15, 23, 42, .1);
            box-shadow: 0 6px 16px rgba(2, 6, 23, .1);
        }
        @media (max-width: 767px) {
            .site-wide-ship-badge {
                left: 10px;
                top: auto;
                bottom: 120px;
                transform: none;
                z-index: 1200;
                max-width: 86px;
            }
            .site-wide-ship-circle {
                width: 46px;
                height: 46px;
            }
        }
        @media (max-width: 575px) {
            .site-wide-ship-badge {
                left: 6px;
                bottom: 108px;
                max-width: 72px;
            }
            .site-wide-ship-circle {
                width: 40px;
                height: 40px;
            }
            .site-wide-ship-label {
                font-size: 9px;
            }
        }
