html, body {
  overflow-x: hidden;
  font-family: 'DM Sans', sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}


.shipping-note {
    font-size: 12px;
    color: #b78b5d;
    margin-top: 4px;
}



/* ===============================
   GLOBAL LAUNCH PROMOTION BAR
================================ */

.launch-promo-bar {
    position: relative;
    z-index: 50;
    width: 100%;

    background:
        linear-gradient(
            to right,
            #181512,
            #221a14
        );

    border-top:
        1px solid rgba(212, 175, 55, .08);

    border-bottom:
        1px solid rgba(212, 175, 55, .14);
}

.launch-promo-inner {
    min-height: 44px;

    max-width: 1440px;

    margin: 0 auto;

    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    text-align: center;
}

.launch-promo-label {
    color: #c8a96b;

    font-size: 10px;

    letter-spacing: .24em;

    text-transform: uppercase;

    font-weight: 600;

    opacity: .9;
}

.launch-promo-divider {
    width: 28px;
    height: 1px;

    background:
        rgba(212, 175, 55, .38);
}

.launch-promo-text {
    color: #f4efe7;

    font-size: 12px;

    letter-spacing: .08em;

    text-transform: uppercase;

    font-weight: 500;

    line-height: 1.4;
}

/* ===============================
   PROMO BAR RESPONSIVE
================================ */

@media (max-width: 767px) {

    .launch-promo-inner {
        min-height: 40px;

        padding: 0 14px;

        gap: 10px;
    }

    .launch-promo-label,
    .launch-promo-divider {
        display: none;
    }

    .launch-promo-text {
        font-size: 10px;

        letter-spacing: .06em;

        line-height: 1.5;
    }
}




/* ===============================
   CHECKOUT PROMOTION NOTE
================================ */

.checkout-promo-note{
    display:flex;
    align-items:flex-start;
    gap:12px;

    margin-top:18px;
    padding:14px 16px;

    border:
        1px solid rgba(198,167,94,.14);

    background:
        rgba(255,255,255,.04);

    border-radius:14px;
}

.checkout-promo-icon{
    flex-shrink:0;

    width:28px;
    height:28px;

    border-radius:50%;

    background:
        rgba(198,167,94,.12);

    color:#d2b06b;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:12px;
}

.checkout-promo-title{
    color:#f3ede4;

    font-size:12px;

    font-weight:600;

    letter-spacing:.04em;

    line-height:1.4;
}

.checkout-promo-sub{
    margin-top:2px;

    color:
        rgba(255,255,255,.54);

    font-size:11px;

    line-height:1.5;
}