@charset "UTF-8";
/* =============================================================================
   Priyaas — conversion layer
   Loaded after priyaas-modern.css. Everything here earns its place by making a
   shopper more likely to finish: legible copy, a reachable human, honest
   urgency, and trust marks that line up instead of drawing the eye to a wonky
   icon. Tokens come from priyaas-modern.css; nothing here hard-codes the brand
   colour, so a white-label storefront recolours with the rest of the site.
   ========================================================================== */

/* -- 1. Readability -------------------------------------------------------- */
/*
 * The stock theme paints body copy in --sky-color (#647589, a blue-grey) at
 * 1.2–1.4rem. Against white that lands near 3.9:1 — under AA for small text,
 * and the reason product copy read as washed out. Push the muted tones up and
 * give long-form copy a wider measure.
 */
:root {
    --sky-color: var(--pm-muted);
    --light-color2: var(--pm-faint);
}

.product__details--info__desc,
.product__details--tab__content p,
.about__content--desc,
.shipping__items2--content__desc {
    color: var(--pm-ink-2);
    font-size: 1.55rem;
    line-height: 1.75;
}

/*
 * The footer copy wants the same measure, but it sits on the near-black
 * .bg__black panel (#1c1a19) — --pm-ink-2 there is 1.5:1 and reads as an empty
 * column. It gets a light ink of its own instead, a touch softer than the
 * #f2f2f2 the footer links use so the paragraphs stay secondary to them.
 */
.footer__widget--desc {
    color: #dcd7d2;
    font-size: 1.55rem;
    line-height: 1.75;
}

.product__details--tab__content p,
.product__details--tab__content li {
    color: var(--pm-ink-2);
    font-size: 1.55rem;
    line-height: 1.8;
}

.product__details--info__title {
    color: var(--pm-ink);
    letter-spacing: -0.01em;
}

.current__price {
    color: var(--pm-ink);
    font-weight: 700;
}

.old__price {
    color: var(--pm-faint);
}

/* -- 2. Trust strip -------------------------------------------------------- */
/*
 * Four items on one baseline. The old markup fed four PNGs of four different
 * intrinsic sizes (51x38, 3000x2663, 50x50 …) into a box with no fixed height,
 * two of them carrying an inline 40x40 override — which is exactly why Return
 * sat off the line. Grid tracks plus a fixed icon well make that impossible.
 */
.pm-trust .pm-trust__inner {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.4rem;
    align-items: center;
    border-radius: var(--pm-radius);
    box-shadow: var(--pm-shadow) !important;
}

.pm-trust__item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 1.4rem;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    text-decoration: none;
    color: inherit;
    border-radius: var(--pm-radius-sm);
    transition: transform 0.25s var(--pm-ease), background-color 0.25s var(--pm-ease);
}

a.pm-trust__item:hover {
    background: var(--pm-accent-soft);
    transform: translateY(-2px);
    color: inherit;
}

.pm-trust__icon {
    flex: none;
    width: 4.6rem !important;
    height: 4.6rem !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    border-radius: 50%;
    background: var(--pm-accent-soft);
    color: var(--pm-accent);
    /* The old rule greyed out the PNG marks; these are inline SVGs on the
       accent, so neither filter nor opacity should reach them. */
    filter: none !important;
    opacity: 1 !important;
}

.pm-trust__content {
    display: block;
    padding-left: 0 !important;
    min-width: 0;
}

.pm-trust .shipping__items2--content__title {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1.6rem;
    line-height: 1.3;
    color: var(--pm-ink);
}

.pm-trust .shipping__items2--content__desc {
    display: block;
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.4;
    color: var(--pm-muted);
}

@media (max-width: 991px) {
    .pm-trust .pm-trust__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 1.6rem;
    }
}

@media (max-width: 575px) {
    .pm-trust .pm-trust__inner {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .pm-trust__icon {
        width: 4.2rem !important;
        height: 4.2rem !important;
    }
}

/* -- 3. Floating WhatsApp button ------------------------------------------ */
/*
 * Bottom-left on every breakpoint: #scroll__top owns the bottom-right corner,
 * and on phones the sticky tab bar owns the bottom edge.
 */
.pm-wa-fab {
    position: fixed;
    left: 2.5rem;
    bottom: 2.5rem;
    z-index: 98;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.6rem 1rem 1.1rem;
    border-radius: 999px;
    background: #25d366;
    color: #06301a;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(6, 48, 26, 0.28);
    transition: transform 0.25s var(--pm-ease), box-shadow 0.25s var(--pm-ease);
}

.pm-wa-fab:hover,
.pm-wa-fab:focus-visible {
    color: #06301a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 48, 26, 0.34);
}

.pm-wa-fab__icon {
    flex: none;
    width: 2.8rem;
    height: 2.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #128c7e;
}

/* A quiet pulse the first few seconds, then it stops asking for attention. */
.pm-wa-fab::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid #25d366;
    animation: pm-wa-pulse 2.4s var(--pm-ease) 3;
    pointer-events: none;
}

@keyframes pm-wa-pulse {
    0% { opacity: 0.7; transform: scale(1); }
    70% { opacity: 0; transform: scale(1.28); }
    100% { opacity: 0; transform: scale(1.28); }
}

@media (max-width: 991px) {
    /* Icon only, tucked close to the tab bar so it covers as little of the
       page as a fixed control can. #scroll__top holds the mirror position on
       the right, so the two never stack. */
    .pm-wa-fab {
        left: 1.6rem;
        bottom: calc(7.6rem + env(safe-area-inset-bottom, 0px));
        padding: 0;
        width: 4.6rem;
        height: 4.6rem;
        justify-content: center;
        gap: 0;
    }

    .pm-wa-fab__label {
        display: none;
    }

    .pm-wa-fab__icon {
        width: 3rem;
        height: 3rem;
        background: transparent;
        color: #06301a;
    }

    /* No tab bar on this page (see includes/site_whatsapp_fab.php), so the
       button sits where it would on any other bottom edge. */
    .pm-wa-fab--low {
        bottom: calc(2.5rem + env(safe-area-inset-bottom, 0px));
    }
}

/* -- 4. Header track / WhatsApp links -------------------------------------- */
.header__track--link,
.header__whatsapp--link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 999px;
    padding: 0.2rem 0.9rem 0.2rem 0.6rem;
    transition: background-color 0.25s var(--pm-ease);
}

.header__track--link:hover,
.header__whatsapp--link:hover {
    background: rgba(255, 255, 255, 0.16);
}

.header__whatsapp--icon {
    flex: none;
}

/* -- 5. Product page: honest urgency & proof ------------------------------- */
.pm-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
}

.pm-signal {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    background: var(--pm-sand);
    border: 1px solid var(--pm-line);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--pm-ink-2);
}

.pm-signal svg {
    flex: none;
    color: var(--pm-accent);
}

.pm-signal--hot {
    background: var(--pm-accent-soft);
    border-color: var(--pm-accent-line);
    color: var(--pm-accent-strong);
}

.pm-signal--gold {
    background: rgba(176, 138, 74, 0.12);
    border-color: rgba(176, 138, 74, 0.3);
    color: #7a5c28;
}

.pm-signal--gold svg {
    color: #a8813f;
}

/* A stock line only appears when the count is genuinely low. */
.pm-stockbar {
    margin-bottom: 1.8rem;
}

.pm-stockbar__label {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--pm-ink-2);
}

.pm-stockbar__track {
    height: 0.6rem;
    border-radius: 999px;
    background: var(--pm-sand-2);
    overflow: hidden;
}

.pm-stockbar__fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--pm-accent), var(--pm-accent-strong));
}

/* -- 6. Buy it now: a nudge, not a jitter ---------------------------------- */
/*
 * The page's one primary action, so it carries the display face and outsizes
 * Add To Cart beside it rather than sitting a size below it. Everything else on
 * the page is Jost; the serif is what marks this button as the one that ends
 * the visit.
 */
.variant__buy--now__btn {
    position: relative;
    overflow: hidden;
    font-family: var(--pm-display);
    font-optical-sizing: auto;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.005em;
    height: 5.4rem;
    line-height: 5.4rem;
}

@media only screen and (max-width: 767px) {
    .variant__buy--now__btn {
        font-size: 1.85rem;
        height: 5rem;
        line-height: 5rem;
    }
}

/*
 * A nudge every four seconds, and only while the button is on screen
 * (priyaas-conversion.js adds .is-visible). It ran on an eight-second cycle,
 * which is long enough that a shopper reading the description never saw it —
 * the shake may as well not have been there. A permanently shaking control
 * reads as broken, so the idle stretch stays much longer than the motion.
 */
.variant__buy--now__btn.is-visible:not(:disabled):not(:hover) {
    animation: pm-shake 4s var(--pm-ease) infinite;
}

@keyframes pm-shake {
    0%, 84%, 100% { transform: translate3d(0, 0, 0); }
    86% { transform: translate3d(-4px, 0, 0) rotate(-0.6deg); }
    88% { transform: translate3d(4px, 0, 0) rotate(0.6deg); }
    90% { transform: translate3d(-3px, 0, 0) rotate(-0.4deg); }
    92% { transform: translate3d(3px, 0, 0) rotate(0.4deg); }
    94% { transform: translate3d(-1px, 0, 0); }
}

/* A single sheen sweep rides along with the shake. */
.variant__buy--now__btn.is-visible:not(:disabled)::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: pm-sheen 4s linear infinite;
    pointer-events: none;
}

@keyframes pm-sheen {
    0%, 80% { left: -60%; }
    95%, 100% { left: 130%; }
}

/* Out of stock: the button becomes a way to reach a human. */
.pm-enquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.4rem 2rem;
    border: 0;
    border-radius: var(--pm-radius-sm);
    background: #25d366;
    color: #06301a;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s var(--pm-ease), box-shadow 0.25s var(--pm-ease);
}

.pm-enquire-btn:hover {
    color: #06301a;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(6, 48, 26, 0.24);
}

/* -- 7. Terms & policy pages ---------------------------------------------- */
.pm-policy {
    padding: 4rem 0 6rem;
}

.pm-policy__lede {
    max-width: 74ch;
    font-size: 1.7rem;
    line-height: 1.7;
    color: var(--pm-ink-2);
}

.pm-policy__toc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2.8rem 0 3.6rem;
    padding: 0;
    list-style: none;
}

.pm-policy__toc a {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    border: 1px solid var(--pm-line);
    border-radius: 999px;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--pm-ink-2);
    text-decoration: none;
    transition: all 0.25s var(--pm-ease);
}

.pm-policy__toc a:hover {
    border-color: var(--pm-accent-line);
    background: var(--pm-accent-soft);
    color: var(--pm-accent-strong);
}

.pm-policy__block {
    scroll-margin-top: 12rem;
    padding: 2.8rem 0;
    border-top: 1px solid var(--pm-line);
}

.pm-policy__block h2 {
    font-family: var(--pm-display);
    font-size: clamp(2.1rem, 2.6vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--pm-ink);
}

.pm-policy__block h3 {
    font-size: 1.7rem;
    margin: 2.2rem 0 0.8rem;
    color: var(--pm-ink);
}

.pm-policy__block p,
.pm-policy__block li {
    max-width: 78ch;
    font-size: 1.55rem;
    line-height: 1.8;
    color: var(--pm-ink-2);
}

.pm-policy__block ul,
.pm-policy__block ol {
    margin: 0 0 1.6rem 2rem;
    padding: 0;
}

.pm-policy__block li {
    margin-bottom: 0.8rem;
}

.pm-policy__callout {
    margin: 2rem 0;
    padding: 1.8rem 2rem;
    border-radius: var(--pm-radius);
    border: 1px solid var(--pm-accent-line);
    background: var(--pm-accent-soft);
}

.pm-policy__callout p:last-child,
.pm-policy__callout ul:last-child,
.pm-policy__callout ol:last-child {
    margin-bottom: 0;
}

.pm-policy__callout--warn {
    border-color: rgba(176, 138, 74, 0.34);
    background: rgba(176, 138, 74, 0.1);
}

.pm-policy__steps {
    counter-reset: pm-step;
    list-style: none;
    margin-left: 0;
}

.pm-policy__steps > li {
    position: relative;
    counter-increment: pm-step;
    padding-left: 4.4rem;
    margin-bottom: 1.6rem;
}

.pm-policy__steps > li::before {
    content: counter(pm-step);
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pm-accent);
    color: var(--pm-on-accent);
    font-size: 1.4rem;
    font-weight: 700;
}

.pm-policy__help {
    margin-top: 3.2rem;
    padding: 2.4rem;
    border-radius: var(--pm-radius);
    background: var(--pm-sand);
    border: 1px solid var(--pm-line);
}

/* -- 8. Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .variant__buy--now__btn.is-visible:not(:disabled):not(:hover),
    .variant__buy--now__btn.is-visible:not(:disabled)::after,
    .pm-wa-fab::before {
        animation: none !important;
    }

    .variant__buy--now__btn.is-visible:not(:disabled)::after {
        display: none;
    }
}

/* -- 9. Storefront hero banners -------------------------------------------- */
/*
 * Only applied when a storefront supplied its own artwork (.hero__slider--custom).
 * The bundled blog banners stay on their 16:9 crop everywhere; uploaded phone
 * artwork is portrait, and forcing it into 16:9 would cut the garment in half.
 */
.hero__slider--custom .hero__banner--img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.hero__slider--custom picture {
    display: block;
}

@media (max-width: 767px) {
    .hero__slider--custom .hero__banner--img {
        aspect-ratio: 4 / 5;
    }
}

/* -- 10. Footer clearance for the floating button -------------------------- */
/*
 * The chat button is pinned bottom-left, which is exactly where the copyright
 * line sits once the page is scrolled to the end. A little extra room under the
 * footer keeps the two off each other without moving the button somewhere the
 * scroll-to-top control already owns.
 */
.footer__bottom,
.checkout__footer {
    /* Clears the 4.8rem button plus its 2.5rem offset, so the copyright line
       is never printed underneath it at the very bottom of the page. */
    padding-bottom: 8rem;
}

@media (max-width: 991px) {
    /* On phones the button sits above the sticky tab bar, which the theme
       already reserves space for. */
    .footer__bottom {
        padding-bottom: 1.5rem;
    }

    /*
     * Checkout, thank-you and payment-failed carry their own footer and have no
     * tab bar, so there is nothing holding the button off the copyright line —
     * it was printed straight through the middle of it. They keep the full
     * clearance the shared footer gives up here.
     */
    .checkout__footer {
        padding-bottom: 8rem;
    }
}

/* -- 11. Drawer: WhatsApp row & secondary links ---------------------------- */
/*
 * Matches the shape of .pm-drawer__cta--call / --social in priyaas-modern.css,
 * with the WhatsApp mark in its own green so it reads as the messaging channel
 * rather than another phone link.
 */
.pm-drawer__cta--whatsapp {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 4.4rem;
    color: var(--pm-ink);
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s var(--pm-ease);
}

.pm-drawer__cta--whatsapp svg {
    flex-shrink: 0;
    color: #25d366;
}

.pm-drawer__cta--whatsapp:hover {
    color: #128c7e;
}

/* The secondary drawer list reads as a footnote to the main navigation. */
.offcanvas__menu_ul--secondary {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--pm-line);
}

.offcanvas__menu_ul--secondary .offcanvas__menu_item {
    font-size: 1.45rem;
    color: var(--pm-muted);
}

/* -- 12. Mobile: reachable controls, committed actions ---------------------- */
/*
 * Measured on a 375px viewport. The theme sizes its controls for a mouse, so on
 * a phone the two buttons that end a sale — Check Out and Place order — were
 * 98x40 and 111x35 pills sitting beside a text link, and the header's menu and
 * cart controls were 32x32 and 27x23. Everything here raises a touch target or
 * commits a primary action to the full width; none of it changes the desktop.
 */
@media only screen and (max-width: 767px) {
    /*
     * The cart and checkout CTAs go full width and lead their own row. A
     * shopper on a phone should not have to aim, and the secondary link should
     * not sit at the same weight beside the thing it undoes.
     */
    .cart__summary--footer ul,
    .cart__summary--footer li {
        display: block;
        width: 100%;
    }

    .cart__summary--footer__btn,
    .continue__shipping--btn {
        display: block;
        width: 100%;
        height: auto;
        min-height: 5rem;
        line-height: 5rem;
        padding: 0 2rem;
        font-size: 1.6rem;
        text-align: center;
    }

    .checkout__content--step__footer {
        display: block !important;
    }

    /* The link under it reads as the way back, not a second button. */
    .previous__link--content {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 4.4rem;
        margin-top: 0.6rem;
        text-align: center;
    }

    /*
     * Continue Shopping / Clear Cart were 28px tall and 12px apart. They keep
     * their places, with room to hit one without catching the other.
     */
    .continue__shopping--link,
    .continue__shopping--clear {
        display: inline-flex;
        align-items: center;
        min-height: 4.4rem;
    }

    /*
     * The native input here is opacity:0 and 13px square; the label is the real
     * target, and it was 28px tall across the full width. Consent and
     * save-my-details are the last things a shopper should have to tap twice.
     */
    .checkout__checkbox--label,
    .minicart__conditions--label {
        display: flex;
        align-items: center;
        min-height: 4.4rem;
    }

    /* Sits directly under Add To Cart at 28px tall — the easiest thing on the
       page to hit by accident and the hardest to hit on purpose. */
    .variant__wishlist--icon {
        display: inline-flex;
        align-items: center;
        min-height: 4.4rem;
    }

    /*
     * The signal chips under the price carry links (returns, shipping) as bare
     * inline text 16px tall inside a 32px pill. The link takes the whole pill,
     * and the pill grows enough to be tapped.
     */
    .pm-signal {
        min-height: 3.8rem;
    }

    .pm-signal a {
        display: inline-flex;
        align-items: center;
        align-self: stretch;
    }

    /* Contact's Submit Now was a 35px pill; it is the page's only action. */
    .contact__form--btn {
        display: block;
        width: 100%;
        height: auto;
        min-height: 5rem;
        line-height: 5rem;
        font-size: 1.6rem;
        text-align: center;
    }

    /* tel: and mailto: are the fastest way to reach this shop from a phone. */
    .contact__info--content__desc a,
    .breadcrumb__content--menu__items a,
    .breadcrumb__link {
        display: inline-flex;
        align-items: center;
        min-height: 4.4rem;
    }
}

/*
 * Small round controls keep their size and gain a 4.4rem hit area, same overlay
 * trick as the header icons above: share links and the theme's carousel dots
 * are drawn small on purpose.
 */
@media only screen and (max-width: 991px) {
    .quickview__social--icon,
    .social__shear--list__icon,
    .contact__info--social__icon {
        position: relative;
    }

    .quickview__social--icon::after,
    .social__shear--list__icon::after,
    .contact__info--social__icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 4.4rem;
        height: 4.4rem;
        transform: translate(-50%, -50%);
    }
}

/*
 * Header controls: the hit area grows, the icon does not. Padding would push
 * the logo off centre, so the target is an overlay on top of the existing box —
 * the same trick the theme's carousel bullets already use.
 */
@media only screen and (max-width: 991px) {
    .offcanvas__header--menu__open--btn,
    .header__account--btn.minicart__open--btn,
    .minicart__close--btn,
    .predictive__search--close__btn {
        position: relative;
    }

    .offcanvas__header--menu__open--btn::after,
    .header__account--btn.minicart__open--btn::after,
    .minicart__close--btn::after,
    .predictive__search--close__btn::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 4.4rem;
        height: 4.4rem;
        transform: translate(-50%, -50%);
    }
}

/* -- 13. Product page: name, copy and the price ---------------------------- */
/*
 * The price is what a shopper came to the page for, and it was set two sizes
 * below the product name with the MRP beside it at 13.5px. The discount was
 * there but nothing about the block said "offer": the strike-through was doing
 * all the work at a size nobody reads. The current price now leads the block at
 * roughly twice the MRP, the MRP sits struck through beside it, and the saving
 * is stated on a badge rather than left to be worked out.
 */
.product__details--info__title {
    font-size: clamp(2.6rem, 3.2vw, 3.6rem);
    line-height: 1.16;
    letter-spacing: -0.015em;
    color: var(--pm-ink);
}

.product__details--info__desc {
    max-width: 58ch;
    font-size: 1.65rem;
    line-height: 1.7;
}

.product__details--info__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem 1.2rem;
    margin-bottom: 1.4rem;
}

.product__details--info__price .current__price {
    /* !important only to outbid the card-level .current__price rule in
       priyaas-modern.css, which carries one and would otherwise size the
       detail page's price like a thumbnail's. */
    font-size: clamp(3rem, 3.8vw, 3.8rem) !important;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--pm-accent);
}

.product__details--info__price .old__price {
    margin-left: 0;
    font-size: 1.8rem !important;
    font-weight: 500;
    color: var(--pm-faint);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 0;
}

/* The theme draws a dash between the two prices. With the current price this
   much larger and the MRP struck through, it only adds noise. */
.product__details--info__price .price__divided {
    display: none;
}

.product__details--info__price .product__offer--badge {
    position: relative;
    overflow: hidden;
    margin-left: 0;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.03em;
}

/* -- 13b. Price motion ------------------------------------------------------ */
/*
 * Two moments, both short. The block lifts into place once when the page
 * settles, and the price pops again whenever a variant changes it — that
 * second one is feedback, not decoration: without it a size change that moves
 * the price by fifty rupees is easy to miss.
 */
.product__details--info__price .current__price,
.product__details--info__price .old__price,
.product__details--info__price .product__offer--badge {
    animation: pm-price-in 0.5s var(--pm-ease) both;
}

.product__details--info__price .old__price {
    animation-delay: 0.06s;
}

.product__details--info__price .product__offer--badge {
    animation-delay: 0.12s;
}

@keyframes pm-price-in {
    from { opacity: 0; transform: translateY(0.8rem); }
    to { opacity: 1; transform: none; }
}

/* Set by priyaas-conversion.js when the price text actually changes. */
.current__price.is-repriced {
    animation: pm-price-pop 0.45s var(--pm-ease);
}

@keyframes pm-price-pop {
    0% { transform: scale(1); }
    35% { transform: scale(1.09); }
    100% { transform: scale(1); }
}

/* A slow sweep across the badge — the one element on the block whose whole job
   is to be noticed. Long gap, short sweep, so it reads as a highlight rather
   than a blinking sign. */
.product__details--info__price .product__offer--badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -70%;
    width: 45%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    animation: pm-badge-sheen 5s linear infinite;
    pointer-events: none;
}

@keyframes pm-badge-sheen {
    0%, 82% { left: -70%; }
    97%, 100% { left: 150%; }
}

@media (prefers-reduced-motion: reduce) {
    .product__details--info__price .current__price,
    .product__details--info__price .old__price,
    .product__details--info__price .product__offer--badge,
    .product__details--info__price .product__offer--badge::after,
    .current__price.is-repriced {
        animation: none;
    }
}
