/* =========================================================================
   HS Store — Design System
   A single luxury theme for both Jewellery and Cosmetics:
   gold accents, ivory canvas, charcoal text, blush highlight for beauty.
   ========================================================================= */

:root {
    /* ---- Brand palette ---- */
    --hs-gold: #b8912f;
    --hs-gold-dark: #97751f;
    --hs-gold-light: #d9bd70;
    --hs-champagne: #f2e7cf;
    --hs-blush: #c9767b;
    --hs-blush-soft: #f6e6e6;

    /* ---- Neutrals ---- */
    --hs-ink: #1c1a17;
    --hs-ink-soft: #4a453e;
    --hs-muted: #8b8378;
    --hs-line: #e7e1d6;
    --hs-ivory: #faf8f4;
    --hs-cream: #f4efe6;
    --hs-white: #ffffff;

    /* ---- Feedback ---- */
    --hs-success: #2f7a55;
    --hs-danger: #b3382f;
    --hs-warning: #c98a17;
    --hs-info: #2c6b86;

    /* ---- Type ---- */
    --hs-font-display: "Playfair Display", "Georgia", "Times New Roman", serif;
    --hs-font-body: "Jost", "Segoe UI", -apple-system, "Helvetica Neue", Arial, sans-serif;

    /* ---- Shape & depth ---- */
    --hs-radius: 4px;
    --hs-radius-lg: 10px;
    --hs-shadow-sm: 0 2px 8px rgba(28, 26, 23, .06);
    --hs-shadow: 0 8px 28px rgba(28, 26, 23, .09);
    --hs-shadow-lg: 0 18px 48px rgba(28, 26, 23, .14);
    --hs-transition: .28s cubic-bezier(.25, .8, .35, 1);

    --hs-header-h: 76px;
}

/* =========================================================================
   Base
   ========================================================================= */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--hs-font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--hs-ink-soft);
    background: var(--hs-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--hs-font-display);
    color: var(--hs-ink);
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

a {
    color: var(--hs-ink);
    text-decoration: none;
    transition: color var(--hs-transition);
}

a:hover { color: var(--hs-gold); }

img { max-width: 100%; height: auto; }

::selection { background: var(--hs-champagne); color: var(--hs-ink); }

.text-gold { color: var(--hs-gold) !important; }
.text-blush { color: var(--hs-blush) !important; }
.text-muted-2 { color: var(--hs-muted) !important; }
.bg-ivory { background: var(--hs-ivory) !important; }
.bg-cream { background: var(--hs-cream) !important; }
.bg-ink { background: var(--hs-ink) !important; }

.font-display { font-family: var(--hs-font-display); }

/* Small uppercase labels — "NEW ARRIVAL", "FREE SHIPPING", etc. */
.eyebrow {
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--hs-gold);
    display: inline-block;
}

/* =========================================================================
   Buttons
   ========================================================================= */

.btn {
    font-family: var(--hs-font-body);
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: var(--hs-radius);
    padding: .78rem 1.7rem;
    border: 1px solid transparent;
    transition: all var(--hs-transition);
}

.btn:focus-visible {
    outline: 2px solid var(--hs-gold);
    outline-offset: 2px;
    box-shadow: none;
}

.btn-gold {
    background: var(--hs-gold);
    border-color: var(--hs-gold);
    color: var(--hs-white);
}

.btn-gold:hover,
.btn-gold:focus {
    background: var(--hs-gold-dark);
    border-color: var(--hs-gold-dark);
    color: var(--hs-white);
    transform: translateY(-1px);
    box-shadow: var(--hs-shadow-sm);
}

.btn-outline-gold {
    border-color: var(--hs-gold);
    color: var(--hs-gold);
    background: transparent;
}

.btn-outline-gold:hover {
    background: var(--hs-gold);
    color: var(--hs-white);
}

.btn-ink {
    background: var(--hs-ink);
    border-color: var(--hs-ink);
    color: var(--hs-white);
}

.btn-ink:hover {
    background: #000;
    border-color: #000;
    color: var(--hs-white);
    transform: translateY(-1px);
}

.btn-outline-ink {
    border-color: var(--hs-ink);
    color: var(--hs-ink);
    background: transparent;
}

.btn-outline-ink:hover {
    background: var(--hs-ink);
    color: var(--hs-white);
}

.btn-light-line {
    border-color: var(--hs-line);
    color: var(--hs-ink);
    background: var(--hs-white);
}

.btn-light-line:hover {
    border-color: var(--hs-ink);
    color: var(--hs-ink);
}

.btn-sm { padding: .5rem 1.1rem; font-size: .74rem; }
.btn-lg { padding: .95rem 2.4rem; font-size: .86rem; }

/* Text link with animated underline */
.link-underline {
    position: relative;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 3px;
}

.link-underline::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform var(--hs-transition);
}

.link-underline:hover::after { transform: scaleX(0); }

/* =========================================================================
   Icons (local SVG sprite — /images/icons.svg)
   ========================================================================= */

.hs-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: -.18em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* =========================================================================
   Top announcement bar
   ========================================================================= */

.hs-topbar {
    background: var(--hs-ink);
    color: rgba(255, 255, 255, .82);
    font-size: .78rem;
    letter-spacing: .06em;
    padding: .55rem 0;
}

.hs-topbar a { color: rgba(255, 255, 255, .82); }
.hs-topbar a:hover { color: var(--hs-gold-light); }

.hs-topbar .hs-icon { width: 15px; height: 15px; }

/* =========================================================================
   Header
   ========================================================================= */

.hs-header {
    background: var(--hs-white);
    border-bottom: 1px solid var(--hs-line);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: box-shadow var(--hs-transition);
}

.hs-header.is-stuck { box-shadow: var(--hs-shadow-sm); }

.hs-header-inner {
    min-height: var(--hs-header-h);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* ---- Logo ---- */
.hs-logo {
    display: flex;
    align-items: center;
    gap: .65rem;
    flex-shrink: 0;
}

.hs-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hs-gold-light), var(--hs-gold-dark));
    color: var(--hs-white);
    display: grid;
    place-items: center;
    font-family: var(--hs-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: inset 0 -2px 6px rgba(0, 0, 0, .18);
}

.hs-logo-text { line-height: 1.05; }

.hs-logo-name {
    font-family: var(--hs-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--hs-ink);
    display: block;
}

.hs-logo-tag {
    font-size: .6rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--hs-muted);
    display: block;
}

/* ---- Search ---- */
.hs-search {
    flex: 1 1 auto;
    max-width: 480px;
    position: relative;
}

.hs-search input {
    width: 100%;
    border: 1px solid var(--hs-line);
    background: var(--hs-ivory);
    border-radius: 40px;
    padding: .62rem 3rem .62rem 1.15rem;
    font-size: .88rem;
    color: var(--hs-ink);
    transition: all var(--hs-transition);
}

.hs-search input::placeholder { color: var(--hs-muted); }

.hs-search input:focus {
    outline: none;
    background: var(--hs-white);
    border-color: var(--hs-gold-light);
    box-shadow: 0 0 0 3px rgba(184, 145, 47, .12);
}

.hs-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--hs-ink);
    color: var(--hs-white);
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background var(--hs-transition);
}

.hs-search button:hover { background: var(--hs-gold); }

/* ---- Header action icons ---- */
.hs-actions {
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-left: auto;
    flex-shrink: 0;
}

.hs-action {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--hs-ink);
    background: transparent;
    border: 0;
    transition: background var(--hs-transition), color var(--hs-transition);
}

.hs-action:hover {
    background: var(--hs-ivory);
    color: var(--hs-gold);
}

.hs-action .hs-icon { width: 21px; height: 21px; }

.hs-badge {
    position: absolute;
    top: 3px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--hs-gold);
    color: var(--hs-white);
    font-size: .66rem;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    border: 2px solid var(--hs-white);
    box-sizing: content-box;
}

.hs-badge.is-empty { display: none; }

/* =========================================================================
   Primary nav + mega menu
   ========================================================================= */

.hs-nav {
    border-top: 1px solid var(--hs-line);
    background: var(--hs-white);
}

.hs-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.hs-nav-link {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .95rem 1.1rem;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--hs-ink);
    position: relative;
}

.hs-nav-link::after {
    content: "";
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: .6rem;
    height: 1px;
    background: var(--hs-gold);
    transform: scaleX(0);
    transition: transform var(--hs-transition);
}

.hs-nav-link:hover,
.hs-nav-link.active { color: var(--hs-gold); }

.hs-nav-link:hover::after,
.hs-nav-link.active::after { transform: scaleX(1); }

.hs-nav-link .hs-icon { width: 14px; height: 14px; }

/* ---- Mega menu panel ---- */
.hs-has-mega { position: static; }

.hs-mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--hs-white);
    border-top: 1px solid var(--hs-line);
    box-shadow: var(--hs-shadow);
    padding: 2.2rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--hs-transition);
    z-index: 1029;
}

.hs-has-mega:hover .hs-mega,
.hs-has-mega:focus-within .hs-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hs-mega-title {
    font-family: var(--hs-font-body);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--hs-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hs-mega-links { list-style: none; padding: 0; margin: 0; }

.hs-mega-links li { margin-bottom: .55rem; }

.hs-mega-links a {
    font-size: .92rem;
    color: var(--hs-ink-soft);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.hs-mega-links a:hover { color: var(--hs-gold); padding-left: 3px; }

.hs-mega-promo {
    background: var(--hs-cream);
    border-radius: var(--hs-radius-lg);
    padding: 1.6rem;
    height: 100%;
}

/* ---- Mobile drawer ---- */
.hs-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(86vw, 340px);
    background: var(--hs-white);
    z-index: 1055;
    transform: translateX(-100%);
    transition: transform var(--hs-transition);
    overflow-y: auto;
    padding: 1.25rem;
    box-shadow: var(--hs-shadow-lg);
}

.hs-drawer.is-open { transform: translateX(0); }

.hs-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 26, 23, .45);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--hs-transition), visibility var(--hs-transition);
}

.hs-drawer-overlay.is-open { opacity: 1; visibility: visible; }

.hs-drawer .accordion-button {
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500;
    padding: .8rem .25rem;
    background: transparent;
    color: var(--hs-ink);
    box-shadow: none;
}

.hs-drawer .accordion-button:not(.collapsed) { color: var(--hs-gold); background: transparent; }
.hs-drawer .accordion-item { border: 0; border-bottom: 1px solid var(--hs-line); }
.hs-drawer .accordion-body { padding: .25rem .25rem 1rem; }

/* =========================================================================
   Section headings
   ========================================================================= */

.hs-section { padding: 4.5rem 0; }
.hs-section-sm { padding: 3rem 0; }

.hs-section-head { margin-bottom: 2.75rem; }

.hs-section-head h2 { margin: .35rem 0 .6rem; }

.hs-section-head p {
    color: var(--hs-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* Gold divider with a diamond in the middle */
.hs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    margin: .85rem auto 0;
    max-width: 190px;
    color: var(--hs-gold);
}

.hs-divider::before,
.hs-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, var(--hs-gold-light));
}

.hs-divider::after { background: linear-gradient(90deg, var(--hs-gold-light), transparent); }

.hs-divider span {
    width: 7px;
    height: 7px;
    background: var(--hs-gold);
    transform: rotate(45deg);
}

/* =========================================================================
   Product card
   ========================================================================= */

.hs-product {
    background: var(--hs-white);
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--hs-transition), box-shadow var(--hs-transition), border-color var(--hs-transition);
}

.hs-product:hover {
    transform: translateY(-5px);
    box-shadow: var(--hs-shadow);
    border-color: transparent;
}

.hs-product-media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    background: var(--hs-ivory);
    overflow: hidden;
}

.hs-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25, .8, .35, 1);
}

.hs-product:hover .hs-product-media img { transform: scale(1.07); }

/* Corner badges */
.hs-product-tags {
    position: absolute;
    top: .7rem;
    left: .7rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    z-index: 2;
}

.hs-tag {
    font-size: .64rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    padding: .28rem .6rem;
    border-radius: 3px;
    color: var(--hs-white);
    background: var(--hs-ink);
}

.hs-tag-sale { background: var(--hs-blush); }
.hs-tag-new { background: var(--hs-gold); }
.hs-tag-out { background: var(--hs-muted); }

/* Hover action rail */
.hs-product-tools {
    position: absolute;
    top: .7rem;
    right: .7rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    z-index: 2;
    opacity: 0;
    transform: translateX(8px);
    transition: all var(--hs-transition);
}

.hs-product:hover .hs-product-tools { opacity: 1; transform: translateX(0); }

.hs-tool {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--hs-line);
    background: var(--hs-white);
    color: var(--hs-ink);
    display: grid;
    place-items: center;
    transition: all var(--hs-transition);
}

.hs-tool:hover { background: var(--hs-ink); color: var(--hs-white); border-color: var(--hs-ink); }
.hs-tool.is-active { background: var(--hs-blush); border-color: var(--hs-blush); color: var(--hs-white); }
.hs-tool .hs-icon { width: 17px; height: 17px; }

/* Slide-up add-to-cart */
.hs-product-cart {
    position: absolute;
    left: .7rem;
    right: .7rem;
    bottom: .7rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(12px);
    transition: all var(--hs-transition);
}

.hs-product:hover .hs-product-cart { opacity: 1; transform: translateY(0); }

.hs-product-body {
    padding: 1.1rem 1.15rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hs-product-brand {
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--hs-muted);
    margin-bottom: .3rem;
}

.hs-product-name {
    font-family: var(--hs-font-display);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--hs-ink);
    margin-bottom: .45rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.hs-product-name a:hover { color: var(--hs-gold); }

.hs-price { display: flex; align-items: baseline; gap: .5rem; margin-top: auto; }

.hs-price-now { font-size: 1.05rem; font-weight: 600; color: var(--hs-ink); }
.hs-price-was { font-size: .85rem; color: var(--hs-muted); text-decoration: line-through; }
.hs-price-off { font-size: .72rem; font-weight: 600; color: var(--hs-blush); }

/* Star rating */
.hs-stars { display: inline-flex; gap: 1px; color: var(--hs-gold); }
.hs-stars .hs-icon { width: 14px; height: 14px; fill: currentColor; stroke: none; }
.hs-stars .is-off { color: var(--hs-line); }

/* =========================================================================
   Category tiles
   ========================================================================= */

.hs-cat-tile {
    position: relative;
    display: block;
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--hs-cream);
}

.hs-cat-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.25, .8, .35, 1);
}

.hs-cat-tile:hover img { transform: scale(1.06); }

.hs-cat-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 26, 23, .62) 0%, rgba(28, 26, 23, .12) 45%, transparent 70%);
}

.hs-cat-tile-body {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.4rem;
    z-index: 2;
    color: var(--hs-white);
}

.hs-cat-tile-body h3 { color: var(--hs-white); margin-bottom: .15rem; font-size: 1.3rem; }
.hs-cat-tile-body span { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; opacity: .85; }

/* =========================================================================
   Hero
   ========================================================================= */

.hs-hero {
    position: relative;
    background: linear-gradient(120deg, var(--hs-cream) 0%, var(--hs-ivory) 55%, var(--hs-blush-soft) 100%);
    overflow: hidden;
}

.hs-hero-slide { min-height: clamp(460px, 62vh, 640px); display: flex; align-items: center; }

.hs-hero h1 { margin-bottom: 1rem; }

.hs-hero p { font-size: 1.05rem; color: var(--hs-ink-soft); max-width: 480px; }

/* Decorative gold rings behind the hero art */
.hs-hero-orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(184, 145, 47, .28);
    pointer-events: none;
}

.hs-hero-orb-1 { width: 420px; height: 420px; right: -80px; top: -90px; }
.hs-hero-orb-2 { width: 280px; height: 280px; right: 120px; bottom: -110px; border-color: rgba(201, 118, 123, .25); }

.hs-hero-art {
    position: relative;
    z-index: 2;
    border-radius: 200px 200px 12px 12px;
    overflow: hidden;
    box-shadow: var(--hs-shadow-lg);
    aspect-ratio: 3 / 4;
    max-height: 520px;
    margin-inline: auto;
}

.hs-hero-art img { width: 100%; height: 100%; object-fit: cover; }

/* Carousel dots */
.hs-hero .carousel-indicators { margin-bottom: 1.2rem; }

.hs-hero .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--hs-ink);
    opacity: .25;
    border: 0;
    margin: 0 5px;
    transition: all var(--hs-transition);
}

.hs-hero .carousel-indicators .active { opacity: 1; background: var(--hs-gold); width: 26px; border-radius: 5px; }

/* =========================================================================
   Feature strip (shipping / returns / support)
   ========================================================================= */

.hs-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1rem;
}

.hs-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--hs-champagne);
    color: var(--hs-gold-dark);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.hs-feature h6 {
    font-family: var(--hs-font-body);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .04em;
    margin: 0 0 .1rem;
    color: var(--hs-ink);
}

.hs-feature p { margin: 0; font-size: .8rem; color: var(--hs-muted); }

/* =========================================================================
   Banners & CTA
   ========================================================================= */

.hs-banner {
    position: relative;
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    padding: 2.5rem;
    background: var(--hs-cream);
}

.hs-banner-blush { background: var(--hs-blush-soft); }

.hs-newsletter {
    background: var(--hs-ink);
    color: rgba(255, 255, 255, .8);
    padding: 4rem 0;
}

.hs-newsletter h2 { color: var(--hs-white); }

.hs-newsletter input {
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .06);
    color: var(--hs-white);
    border-radius: var(--hs-radius);
    padding: .8rem 1.1rem;
    width: 100%;
}

.hs-newsletter input::placeholder { color: rgba(255, 255, 255, .45); }
.hs-newsletter input:focus { outline: none; border-color: var(--hs-gold); background: rgba(255, 255, 255, .1); }

/* =========================================================================
   Footer
   ========================================================================= */

.hs-footer {
    background: var(--hs-ivory);
    border-top: 1px solid var(--hs-line);
    padding: 3.75rem 0 0;
    color: var(--hs-ink-soft);
}

.hs-footer h6 {
    font-family: var(--hs-font-body);
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--hs-ink);
    margin-bottom: 1.15rem;
}

.hs-footer-links { list-style: none; padding: 0; margin: 0; }
.hs-footer-links li { margin-bottom: .55rem; }
.hs-footer-links a { font-size: .9rem; color: var(--hs-ink-soft); }
.hs-footer-links a:hover { color: var(--hs-gold); }

.hs-social { display: flex; gap: .5rem; }

.hs-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--hs-line);
    display: grid;
    place-items: center;
    color: var(--hs-ink);
    background: var(--hs-white);
}

.hs-social a:hover { background: var(--hs-ink); color: var(--hs-white); border-color: var(--hs-ink); }

.hs-footer-bottom {
    border-top: 1px solid var(--hs-line);
    margin-top: 2.75rem;
    padding: 1.4rem 0;
    font-size: .82rem;
    color: var(--hs-muted);
}

/* =========================================================================
   Breadcrumb / page head
   ========================================================================= */

.hs-page-head {
    background: var(--hs-ivory);
    border-bottom: 1px solid var(--hs-line);
    padding: 2.5rem 0;
}

.hs-page-head h1 { margin: 0 0 .35rem; font-size: clamp(1.6rem, 3vw, 2.3rem); }

.breadcrumb { margin: 0; font-size: .82rem; }
.breadcrumb-item + .breadcrumb-item::before { content: "/"; color: var(--hs-muted); }
.breadcrumb-item a { color: var(--hs-muted); }
.breadcrumb-item a:hover { color: var(--hs-gold); }
.breadcrumb-item.active { color: var(--hs-ink); }

/* =========================================================================
   Shop — filter sidebar, toolbar, chips
   ========================================================================= */

.hs-filter-block {
    padding-bottom: 1.4rem;
    margin-bottom: 1.4rem;
    border-bottom: 1px solid var(--hs-line);
}

.hs-filter-block:last-of-type { border-bottom: 0; }

.hs-filter-title {
    font-family: var(--hs-font-body);
    font-size: .76rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--hs-ink);
    margin-bottom: .8rem;
}

.hs-filter-list, .hs-filter-sublist { list-style: none; padding: 0; margin: 0; }

.hs-filter-list > li { margin-bottom: .5rem; }

.hs-filter-list a {
    font-size: .9rem;
    color: var(--hs-ink-soft);
    display: inline-block;
}

.hs-filter-list a:hover { color: var(--hs-gold); }

.hs-filter-list a.is-active {
    color: var(--hs-gold);
    font-weight: 600;
}

.hs-filter-sublist {
    margin: .35rem 0 .8rem .85rem;
    padding-left: .75rem;
    border-left: 1px solid var(--hs-line);
}

.hs-filter-sublist li { margin-bottom: .35rem; }
.hs-filter-sublist a { font-size: .86rem; color: var(--hs-muted); }

.hs-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: .85rem 1.1rem;
    background: var(--hs-ivory);
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius);
    margin-bottom: 1.25rem;
}

/* Active filter pills */
.hs-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 1.25rem;
}

.hs-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    padding: .32rem .7rem;
    border-radius: 40px;
    border: 1px solid var(--hs-line);
    background: var(--hs-white);
    color: var(--hs-ink-soft);
}

.hs-chip:hover { border-color: var(--hs-danger); color: var(--hs-danger); }

/* =========================================================================
   Product details
   ========================================================================= */

.hs-gallery-main {
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius-lg);
    overflow: hidden;
    background: var(--hs-ivory);
    aspect-ratio: 1 / 1;
}

.hs-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.hs-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .5rem;
    margin-top: .6rem;
}

.hs-thumb {
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius);
    overflow: hidden;
    background: var(--hs-ivory);
    aspect-ratio: 1 / 1;
    padding: 0;
    transition: border-color var(--hs-transition);
}

.hs-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hs-thumb.is-active, .hs-thumb:hover { border-color: var(--hs-gold); }

.hs-detail-price {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    padding: .85rem 0;
    border-block: 1px solid var(--hs-line);
    margin: .85rem 0 1.15rem;
}

.hs-detail-price .now { 
    font-size: 1.85rem; 
    font-weight: 700; 
    color: var(--hs-ink); 
    font-family: var(--hs-font-body); 
    letter-spacing: -0.02em; 
}

.hs-detail-price .was { 
    font-size: 1.05rem; 
    color: var(--hs-muted); 
    text-decoration: line-through; 
    font-weight: 500;
}

.hs-detail-price .hs-price-off { 
    font-size: .78rem; 
    font-weight: 600; 
    color: var(--hs-blush); 
    background: rgba(201, 118, 123, 0.12);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.hs-reassurance-box {
    background: var(--hs-ivory);
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius-lg);
    padding: 1rem 1.15rem;
    margin-top: 1.25rem;
}

.hs-reassurance-box .hs-icon {
    color: var(--hs-gold);
    flex-shrink: 0;
}

/* Quantity stepper */
.hs-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius);
    overflow: hidden;
}

.hs-qty button {
    width: 42px;
    height: 46px;
    border: 0;
    background: var(--hs-white);
    color: var(--hs-ink);
    display: grid;
    place-items: center;
    transition: background var(--hs-transition);
}

.hs-qty button:hover { background: var(--hs-ivory); color: var(--hs-gold); }

.hs-qty input {
    width: 56px;
    height: 46px;
    border: 0;
    border-inline: 1px solid var(--hs-line);
    text-align: center;
    font-weight: 600;
    color: var(--hs-ink);
    -moz-appearance: textfield;
}

.hs-qty input::-webkit-outer-spin-button,
.hs-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Spec table */
.hs-spec-list { list-style: none; padding: 0; margin: 0; font-size: .9rem; }

.hs-spec-list li {
    display: flex;
    gap: 1rem;
    padding: .55rem 0;
    border-bottom: 1px dashed var(--hs-line);
}

.hs-spec-list li:last-child { border-bottom: 0; }
.hs-spec-list .label { color: var(--hs-muted); min-width: 130px; }
.hs-spec-list .value { color: var(--hs-ink); font-weight: 500; }

/* Stock pill */
.hs-stock {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 500;
    padding: .3rem .75rem;
    border-radius: 40px;
}

.hs-stock-in { background: #eaf5ef; color: var(--hs-success); }
.hs-stock-low { background: #fdf5e3; color: #8a6410; }
.hs-stock-out { background: #fbeceb; color: var(--hs-danger); }

/* Tabs */
.nav-tabs { border-bottom: 1px solid var(--hs-line); gap: .25rem; }

.nav-tabs .nav-link {
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    color: var(--hs-muted);
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
    padding: .85rem 1.15rem;
}

.nav-tabs .nav-link:hover { color: var(--hs-ink); border-bottom-color: var(--hs-line); }
.nav-tabs .nav-link.active { color: var(--hs-gold); border-bottom-color: var(--hs-gold); background: transparent; }

/* Review list */
.hs-review {
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--hs-line);
}

.hs-review:last-child { border-bottom: 0; }

.hs-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--hs-champagne);
    color: var(--hs-gold-dark);
    display: grid;
    place-items: center;
    font-weight: 600;
    flex-shrink: 0;
}

.hs-rating-bar {
    height: 6px;
    border-radius: 3px;
    background: var(--hs-line);
    overflow: hidden;
    flex: 1;
}

.hs-rating-bar span { display: block; height: 100%; background: var(--hs-gold); }

/* Star picker (review form) */
.hs-star-input { display: inline-flex; flex-direction: row-reverse; gap: .2rem; }
.hs-star-input input { position: absolute; opacity: 0; width: 0; height: 0; }

.hs-star-input label {
    cursor: pointer;
    color: var(--hs-line);
    transition: color var(--hs-transition);
    margin: 0;
}

.hs-star-input label .hs-icon { width: 26px; height: 26px; fill: currentColor; stroke: none; }

.hs-star-input input:checked ~ label,
.hs-star-input label:hover,
.hs-star-input label:hover ~ label { color: var(--hs-gold); }

.hs-star-input input:focus-visible + label { outline: 2px solid var(--hs-gold); outline-offset: 2px; }

/* =========================================================================
   Cart
   ========================================================================= */

.hs-cart-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .9rem 1.25rem;
    background: var(--hs-ivory);
    border-bottom: 1px solid var(--hs-line);
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--hs-muted);
}

.hs-cart-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--hs-line);
}

.hs-cart-line:last-child { border-bottom: 0; }

.hs-cart-thumb {
    width: 78px;
    height: 78px;
    flex-shrink: 0;
    border-radius: var(--hs-radius);
    overflow: hidden;
    background: var(--hs-ivory);
    border: 1px solid var(--hs-line);
}

.hs-cart-thumb img { width: 100%; height: 100%; object-fit: cover; }

.hs-cart-info { flex: 1 1 auto; min-width: 0; }

.hs-cart-name {
    display: block;
    font-weight: 500;
    color: var(--hs-ink);
    line-height: 1.35;
}

.hs-cart-name:hover { color: var(--hs-gold); }

.hs-cart-qty { width: 130px; display: flex; justify-content: center; }

.hs-cart-total {
    width: 120px;
    text-align: right;
    font-weight: 600;
    color: var(--hs-ink);
}

.hs-cart-remove {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--hs-muted);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: color var(--hs-transition), background var(--hs-transition);
}

.hs-cart-remove:hover { color: var(--hs-danger); background: #fbeceb; }

/* Small stepper — for cart lines */
.hs-qty-sm button { width: 34px; height: 38px; }
.hs-qty-sm input { width: 44px; height: 38px; font-size: .9rem; }

@media (max-width: 767.98px) {
    .hs-cart-line { flex-wrap: wrap; position: relative; padding-right: 3rem; }
    .hs-cart-info { flex: 1 1 calc(100% - 94px); }
    .hs-cart-qty { width: auto; margin-left: 94px; }
    .hs-cart-total { width: auto; margin-left: auto; }
    .hs-cart-remove { position: absolute; top: 1rem; right: .75rem; }
}

/* Summary rows */
.hs-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .55rem 0;
    font-size: .92rem;
    color: var(--hs-ink-soft);
}

.hs-summary-total {
    margin-top: .35rem;
    padding-top: .85rem;
    border-top: 1px solid var(--hs-line);
    font-family: var(--hs-font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--hs-ink);
}

/* Free-shipping progress */
.hs-ship-note {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--hs-ink-soft);
    margin-top: .75rem;
}

.hs-ship-bar {
    height: 5px;
    border-radius: 3px;
    background: var(--hs-line);
    overflow: hidden;
    margin-top: .5rem;
}

.hs-ship-bar span {
    display: block;
    height: 100%;
    background: var(--hs-gold);
    transition: width var(--hs-transition);
}

.hs-trust-mini {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem 1rem;
    justify-content: center;
    padding-top: .9rem;
    border-top: 1px solid var(--hs-line);
    font-size: .74rem;
    color: var(--hs-muted);
}

.hs-trust-mini span { display: inline-flex; align-items: center; gap: .3rem; }

/* =========================================================================
   Checkout
   ========================================================================= */

.hs-pay-option {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius);
    margin-bottom: .75rem;
    cursor: pointer;
    transition: border-color var(--hs-transition), background var(--hs-transition);
}

.hs-pay-option:hover { border-color: var(--hs-gold-light); }

.hs-pay-option.is-selected {
    border-color: var(--hs-gold);
    background: var(--hs-champagne-soft, #fdfaf3);
}

.hs-pay-option .form-check-input { margin-top: .2rem; flex-shrink: 0; }
.hs-pay-body { flex: 1 1 auto; }
.hs-pay-title { display: block; font-weight: 600; color: var(--hs-ink); }
.hs-pay-desc { display: block; font-size: .82rem; color: var(--hs-muted); margin-top: .15rem; }
.hs-pay-icon { color: var(--hs-gold); flex-shrink: 0; }

/* "Pay Online" pill, shown on a wallet that has a live hosted checkout */
.hs-pay-tag {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    margin-left: .45rem;
    padding: .1rem .5rem;
    border-radius: 999px;
    background: #eaf5ef;
    color: var(--hs-success);
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    vertical-align: middle;
}

/* Payment method that is built but not switched on yet — visible, never selectable */
.hs-pay-option.is-soon {
    cursor: default;
    opacity: .72;
    border-style: dashed;
    background: var(--hs-ivory);
}

.hs-pay-option.is-soon:hover { border-color: var(--hs-line); }
.hs-pay-option.is-soon .hs-pay-icon { color: var(--hs-muted); }

.hs-pay-tag.is-soon {
    background: #f3ede0;
    color: var(--hs-gold);
}

.hs-bank-box {
    padding: 1.1rem;
    border: 1px dashed var(--hs-gold-light);
    border-radius: var(--hs-radius);
    background: var(--hs-ivory);
}

/* Order line items (checkout + confirmation) */
.hs-checkout-items { max-height: 340px; overflow-y: auto; }

.hs-checkout-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .6rem 0;
    border-bottom: 1px solid var(--hs-line);
}

.hs-checkout-item:last-child { border-bottom: 0; }

.hs-checkout-thumb {
    position: relative;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: var(--hs-radius);
    overflow: visible;
}

.hs-checkout-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--hs-radius);
    border: 1px solid var(--hs-line);
    background: var(--hs-ivory);
}

.hs-checkout-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background: var(--hs-ink);
    color: #fff;
    font-size: .68rem;
    font-weight: 600;
    display: grid;
    place-items: center;
}

/* =========================================================================
   Order confirmation + status
   ========================================================================= */

.hs-success-head { text-align: center; margin-bottom: 2rem; }

.hs-success-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto;
    border-radius: 50%;
    background: #eaf5ef;
    color: var(--hs-success);
    display: grid;
    place-items: center;
}

/* The same circle, for a payment that did not go through */
.hs-success-icon.is-danger {
    width: 72px;
    height: 72px;
    background: #fdeaea;
    color: var(--hs-danger);
}

.hs-next-step {
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: var(--hs-white);
}

.hs-next-step-head { display: flex; align-items: flex-start; gap: .85rem; }

.hs-step-num {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--hs-gold);
    color: #fff;
    font-weight: 600;
    font-size: .85rem;
    display: grid;
    place-items: center;
}

/* Status pill */
.hs-status {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 40px;
    white-space: nowrap;
}

/* Wallet accents — each provider keeps its own colour on the payment option and
   on the "send it here" box, so the customer can tell them apart at a glance. */
.hs-pay-option.is-jazzcash .hs-pay-icon { background: #fdeaea; color: #c0392b; }
.hs-pay-option.is-easypaisa .hs-pay-icon { background: #e6f4ec; color: #1f8b4c; }
.hs-pay-option.is-bank .hs-pay-icon { background: #e9eef6; color: #2c5aa0; }

.hs-pay-option.is-jazzcash.is-selected { border-color: #c0392b; }
.hs-pay-option.is-easypaisa.is-selected { border-color: #1f8b4c; }

.hs-card.is-jazzcash { border-top: 3px solid #c0392b; }
.hs-card.is-easypaisa { border-top: 3px solid #1f8b4c; }
.hs-card.is-bank { border-top: 3px solid #2c5aa0; }

.hs-status.is-pending    { background: #f3f0ea; color: #6b6459; }
.hs-status.is-review     { background: #fdf5e3; color: #8a6410; }
.hs-status.is-processing { background: #eaf1fb; color: #2a5aa8; }
.hs-status.is-shipped    { background: #eef3ff; color: #3a4fa8; }
.hs-status.is-delivered  { background: #eaf5ef; color: var(--hs-success); }
.hs-status.is-cancelled  { background: #fbeceb; color: var(--hs-danger); }

/* Timeline */
.hs-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: .5rem;
}

.hs-timeline li {
    flex: 1 1 0;
    text-align: center;
    position: relative;
    color: var(--hs-muted);
}

/* Connecting line between dots */
.hs-timeline li::before {
    content: "";
    position: absolute;
    top: 17px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: var(--hs-line);
    z-index: 0;
}

.hs-timeline li:first-child::before { display: none; }
.hs-timeline li.is-done::before { background: var(--hs-gold); }

.hs-timeline-dot {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    margin: 0 auto .45rem;
    border-radius: 50%;
    border: 2px solid var(--hs-line);
    background: var(--hs-white);
    display: grid;
    place-items: center;
    color: var(--hs-muted);
}

.hs-timeline li.is-done .hs-timeline-dot {
    border-color: var(--hs-gold);
    background: var(--hs-gold);
    color: #fff;
}

.hs-timeline li.is-current .hs-timeline-dot {
    box-shadow: 0 0 0 4px rgba(184, 145, 47, .18);
}

.hs-timeline-label { font-size: .74rem; line-height: 1.3; display: block; }
.hs-timeline li.is-done .hs-timeline-label { color: var(--hs-ink); font-weight: 500; }

/* Payment proof thumbnail */
.hs-proof-thumb {
    display: block;
    max-width: 280px;
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius);
    overflow: hidden;
    background: var(--hs-ivory);
}

.hs-proof-thumb img { width: 100%; height: auto; display: block; }

/* Order list rows */
.hs-order-row {
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius-lg);
    background: var(--hs-white);
    margin-bottom: 1rem;
    overflow: hidden;
}

.hs-order-row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: .85rem 1.1rem;
    background: var(--hs-ivory);
    border-bottom: 1px solid var(--hs-line);
}

.hs-order-row-body {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 1.1rem;
}

.hs-order-thumbs { display: flex; gap: .4rem; }

.hs-order-thumb {
    width: 48px;
    height: 48px;
    border-radius: var(--hs-radius);
    overflow: hidden;
    border: 1px solid var(--hs-line);
    background: var(--hs-ivory);
    display: grid;
    place-items: center;
    font-size: .75rem;
    color: var(--hs-muted);
    flex-shrink: 0;
}

.hs-order-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hs-order-thumb-more { font-weight: 600; }

/* =========================================================================
   Forms
   ========================================================================= */

.form-label {
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--hs-ink);
    margin-bottom: .4rem;
}

.form-control, .form-select {
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius);
    padding: .68rem .9rem;
    font-size: .92rem;
    color: var(--hs-ink);
    background-color: var(--hs-white);
    transition: border-color var(--hs-transition), box-shadow var(--hs-transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--hs-gold-light);
    box-shadow: 0 0 0 3px rgba(184, 145, 47, .12);
}

.form-control::placeholder { color: var(--hs-muted); }

.form-check-input:checked { background-color: var(--hs-gold); border-color: var(--hs-gold); }
.form-check-input:focus { border-color: var(--hs-gold-light); box-shadow: 0 0 0 3px rgba(184, 145, 47, .12); }

.text-danger, .field-validation-error { color: var(--hs-danger) !important; font-size: .82rem; }
.input-validation-error { border-color: var(--hs-danger) !important; }
.validation-summary-errors ul { margin: 0; padding-left: 1.1rem; }

/* Auth / form card */
.hs-card {
    background: var(--hs-white);
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius-lg);
    padding: 2rem;
}

.hs-card-flush { padding: 0; overflow: hidden; }

/* =========================================================================
   Alerts / toasts
   ========================================================================= */

.alert {
    border: 1px solid transparent;
    border-radius: var(--hs-radius);
    font-size: .9rem;
    padding: .9rem 1.1rem;
}

.alert-success { background: #eaf5ef; border-color: #cbe5d7; color: var(--hs-success); }
.alert-danger { background: #fbeceb; border-color: #f2d2cf; color: var(--hs-danger); }
.alert-warning { background: #fdf5e3; border-color: #f2e2bc; color: #8a6410; }
.alert-info { background: #eaf2f6; border-color: #cfe1ea; color: var(--hs-info); }

.hs-toast-wrap {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.hs-toast {
    background: var(--hs-ink);
    color: var(--hs-white);
    border-radius: var(--hs-radius);
    padding: .85rem 1.1rem;
    font-size: .88rem;
    box-shadow: var(--hs-shadow);
    display: flex;
    align-items: center;
    gap: .6rem;
    min-width: 250px;
    animation: hs-toast-in .3s ease;
}

.hs-toast .hs-icon { color: var(--hs-gold-light); }

@keyframes hs-toast-in {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================================================
   Pagination
   ========================================================================= */

.pagination { gap: .35rem; }

.page-link {
    border: 1px solid var(--hs-line);
    border-radius: var(--hs-radius) !important;
    color: var(--hs-ink);
    font-size: .85rem;
    padding: .5rem .85rem;
    min-width: 40px;
    text-align: center;
}

.page-link:hover { background: var(--hs-ivory); color: var(--hs-gold); border-color: var(--hs-gold-light); }

.page-item.active .page-link {
    background: var(--hs-ink);
    border-color: var(--hs-ink);
    color: var(--hs-white);
}

.page-item.disabled .page-link { color: var(--hs-muted); background: var(--hs-ivory); }

/* =========================================================================
   Empty state
   ========================================================================= */

.hs-empty { text-align: center; padding: 4rem 1rem; }

.hs-empty-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--hs-ivory);
    color: var(--hs-muted);
    display: grid;
    place-items: center;
    margin: 0 auto 1.3rem;
}

.hs-empty-icon .hs-icon { width: 34px; height: 34px; }

/* =========================================================================
   Utilities
   ========================================================================= */

.hs-hover-lift { transition: transform var(--hs-transition), box-shadow var(--hs-transition); }
.hs-hover-lift:hover { transform: translateY(-4px); box-shadow: var(--hs-shadow); }

.hs-line { border-color: var(--hs-line) !important; }

.hs-sticky-side { position: sticky; top: calc(var(--hs-header-h) + 20px); }

/* Fade-in on scroll (site.js toggles .is-visible) */
.hs-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.hs-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .hs-reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* =========================================================================
   Mobile bottom navigation (only shown below 992px)
   ========================================================================= */

.hs-bottom-nav {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1040;
    background: var(--hs-white);
    border-top: 1px solid var(--hs-line);
    box-shadow: 0 -4px 16px rgba(28, 26, 23, .07);
    padding-bottom: env(safe-area-inset-bottom);
}

.hs-bottom-nav-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    list-style: none;
    margin: 0;
    padding: 0;
}

.hs-bottom-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: .55rem 0 .5rem;
    font-size: .64rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--hs-muted);
    /* Tap target at least 48px — accessibility guideline */
    min-height: 54px;
}

.hs-bottom-link .hs-icon { width: 21px; height: 21px; }

.hs-bottom-link.active,
.hs-bottom-link:hover { color: var(--hs-gold); }

.hs-bottom-link .hs-badge {
    top: 2px;
    right: 50%;
    margin-right: -20px;
    border-color: var(--hs-white);
}

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 991.98px) {
    .hs-bottom-nav { display: block; }

    /* Keep content from hiding behind the bottom bar */
    body { padding-bottom: 62px; }

    .hs-footer { padding-bottom: .5rem; }
}

@media (max-width: 991.98px) {
    .hs-section { padding: 3rem 0; }
    .hs-hero-slide { 
        min-height: auto; 
        padding: 1.75rem 0 2.75rem; 
        text-align: center;
    }
    .hs-hero-slide h1 { 
        font-size: clamp(1.65rem, 5.5vw, 2.25rem); 
        margin-bottom: 0.65rem; 
    }
    .hs-hero-slide p { 
        font-size: 0.95rem; 
        margin-inline: auto; 
        margin-bottom: 1.25rem;
    }
    .hs-hero-slide .d-flex { 
        justify-content: center; 
    }
    .hs-hero-art { 
        max-height: 220px; 
        aspect-ratio: 4 / 3.8;
        border-radius: 120px 120px 12px 12px;
        margin-bottom: 0.5rem;
    }
    .hs-hero-orb { display: none; }
    .hs-product-tools { opacity: 1; transform: none; }
}

.hs-cart-btn-mobile {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--hs-ink);
    background: var(--hs-ink);
    color: var(--hs-white);
    display: inline-grid;
    place-items: center;
    transition: all var(--hs-transition);
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hs-cart-btn-mobile:hover,
.hs-cart-btn-mobile:active {
    background: var(--hs-gold);
    border-color: var(--hs-gold);
    color: var(--hs-white);
    transform: scale(1.06);
}

.hs-cart-btn-mobile .hs-icon {
    width: 15px;
    height: 15px;
}

@media (max-width: 767.98px) {
    body { font-size: 14.5px; }
    .hs-header-inner { min-height: 64px; gap: .5rem; }
    .hs-logo-mark { width: 36px; height: 36px; font-size: .9rem; }
    .hs-logo-name { font-size: 1.15rem; }
    .hs-hero-slide { padding: 1.25rem 0 2.25rem; }
    .hs-hero-art { 
        max-height: 185px; 
        aspect-ratio: 4 / 3.5;
        border-radius: 100px 100px 10px 10px;
    }
    .hs-hero-slide .btn { 
        padding: .5rem 1.1rem; 
        font-size: .8rem; 
    }
    .hs-product-body { padding: .75rem .75rem .85rem; }
    .hs-product-brand { font-size: .62rem; margin-bottom: .15rem; }
    .hs-product-name { 
        font-size: .92rem; 
        margin-bottom: .35rem; 
        min-height: 2.3em;
        line-height: 1.25;
    }
    .hs-product-tools { top: .5rem; right: .5rem; }
    .hs-tool { width: 30px; height: 30px; }
    .hs-tool .hs-icon { width: 14px; height: 14px; }
    .hs-product-tags { top: .5rem; left: .5rem; }
    .hs-price-now { font-size: .98rem; }
    .hs-banner { padding: 1.75rem; min-height: 240px; }

    /* Product details page mobile */
    .hs-section-sm { padding: 1.25rem 0.5rem 2.25rem; }
    .hs-product-info {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .hs-gallery-main { max-width: 420px; margin-inline: auto; border-radius: 14px; }
    .hs-gallery-thumbs { max-width: 420px; margin-inline: auto; gap: .4rem; }
    .hs-gallery-main img { object-fit: cover; padding: 0; }
    .hs-gallery-main img[src$=".svg"] { object-fit: contain; padding: 16px; }
    .hs-thumb img { object-fit: cover; padding: 0; }
    .hs-thumb img[src$=".svg"] { object-fit: contain; padding: 4px; }
    .hs-detail-price { padding: .65rem 0; margin: .75rem 0; }
    .hs-detail-price .now { font-size: 1.5rem; }
    .hs-qty { height: 42px; }
    .hs-qty button { width: 36px; height: 42px; }
    .hs-qty input { width: 44px; height: 42px; font-size: .9rem; }
    .hs-spec-list { font-size: .84rem; }
    .hs-spec-list li { padding: .4rem 0; }
    .hs-spec-list .label { min-width: 100px; }
}

.hs-product-info {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

@media (min-width: 992px) {
    .hs-product-info {
        padding-left: 1.75rem;
        padding-right: 0;
    }
}


/* =========================================================================
   Account / Auth pages
   ========================================================================= */

.hs-auth {
    padding: 3.5rem 0 4.5rem;
    background: linear-gradient(180deg, var(--hs-cream) 0%, var(--hs-ivory) 100%);
}

.hs-auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1020px;
    margin: 0 auto;
}

.hs-auth-aside .eyebrow { display: block; margin-bottom: .75rem; }

.hs-auth-aside h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.25;
    margin-bottom: .75rem;
}

.hs-auth-aside > p {
    color: var(--hs-muted);
    max-width: 40ch;
    margin-bottom: 1.6rem;
}

.hs-auth-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .85rem;
}

.hs-auth-perks li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .92rem;
    color: var(--hs-ink-soft);
}

.hs-auth-perks .hs-icon {
    flex: 0 0 auto;
    color: var(--hs-gold);
}

.hs-auth-form .hs-card { padding: 2rem; }

.hs-auth-sep {
    position: relative;
    text-align: center;
    margin: 1.25rem 0;
}

.hs-auth-sep::before {
    content: "";
    position: absolute;
    inset: 50% 0 auto 0;
    height: 1px;
    background: var(--hs-line);
}

.hs-auth-sep span {
    position: relative;
    padding: 0 .75rem;
    background: var(--hs-white);
    font-size: .8rem;
    color: var(--hs-muted);
}

/* ---- Password field with show/hide eye ---- */

.hs-pass-wrap { position: relative; }

.hs-pass-wrap .form-control { padding-right: 2.75rem; }

.hs-pass-eye {
    position: absolute;
    top: 50%;
    right: .45rem;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: var(--hs-radius);
    background: transparent;
    color: var(--hs-muted);
    cursor: pointer;
    transition: color var(--hs-transition), background var(--hs-transition);
}

.hs-pass-eye:hover {
    color: var(--hs-ink);
    background: rgba(28, 26, 23, .05);
}

.hs-pass-eye.is-on { color: var(--hs-gold); }

/* ---- Account sidebar ---- */

.hs-account-card {
    text-align: center;
    padding: 1.5rem 1rem;
}

.hs-account-avatar {
    width: 62px;
    height: 62px;
    margin: 0 auto .75rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--hs-ink);
    color: var(--hs-gold);
    font-family: var(--hs-font-display);
    font-size: 1.5rem;
}

.hs-account-nav { display: grid; gap: .2rem; }

.hs-account-link {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .7rem .9rem;
    border: 0;
    border-radius: var(--hs-radius);
    background: transparent;
    color: var(--hs-ink-soft);
    font-size: .93rem;
    text-align: left;
    text-decoration: none;
    transition: background var(--hs-transition), color var(--hs-transition);
}

.hs-account-link:hover {
    background: var(--hs-white);
    color: var(--hs-ink);
}

.hs-account-link.active {
    background: var(--hs-white);
    color: var(--hs-ink);
    font-weight: 600;
    box-shadow: inset 3px 0 0 var(--hs-gold), var(--hs-shadow-sm);
}

.hs-account-link .hs-icon {
    flex: 0 0 auto;
    color: var(--hs-gold);
}

.hs-account-link.text-danger .hs-icon { color: inherit; }

/* ---- Stat tiles ---- */

.hs-stat {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1.1rem;
    height: 100%;
}

.hs-stat-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: var(--hs-radius-lg);
    background: var(--hs-cream);
    color: var(--hs-gold);
}

.hs-stat-num {
    font-family: var(--hs-font-display);
    font-size: 1.2rem;
    line-height: 1.25;
}

@media (max-width: 991.98px) {
    .hs-auth { padding: 2rem 0 3rem; }
    .hs-auth-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 520px; }
    .hs-auth-aside { text-align: center; }
    .hs-auth-aside > p { margin-inline: auto; }
    .hs-auth-perks { max-width: 320px; margin-inline: auto; }
    .hs-auth-form .hs-card { padding: 1.5rem; }
}

/* ---- Social (Google) login button ---- */

.hs-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}

.hs-social-btn + .hs-social-btn { margin-top: .5rem; }

.hs-google-mark { flex: 0 0 auto; }


/* =========================================================================
   About Us + Contact Us
   ========================================================================= */

/* Small gold label above a section heading */
.hs-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hs-gold);
}

/* Round icon badge on the About value cards */
.hs-about-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--hs-champagne-soft, #fdfaf3);
    color: var(--hs-gold);
    display: grid;
    place-items: center;
}

/* Ticked list — the icon sits on the first line, text wraps under itself */
.hs-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hs-check-list li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    padding: .5rem 0;
    font-size: .88rem;
    border-bottom: 1px solid var(--hs-line);
}

.hs-check-list li:last-child { border-bottom: 0; }
.hs-check-list .hs-icon { color: var(--hs-gold); flex-shrink: 0; margin-top: .15rem; }

/* Numbered steps, reusing the gold .hs-step-num circle */
.hs-step-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    counter-reset: none;
}

.hs-step-list li {
    display: flex;
    gap: .7rem;
    align-items: center;
    padding: .4rem 0;
    font-size: .88rem;
}

/* Contact channels */
.hs-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hs-contact-list li {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    padding: .75rem 0;
    border-bottom: 1px solid var(--hs-line);
    font-size: .9rem;
}

.hs-contact-list li:last-child { border-bottom: 0; }
.hs-contact-list a { color: var(--hs-ink); text-decoration: none; }
.hs-contact-list a:hover { color: var(--hs-gold); }

.hs-contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--hs-champagne-soft, #fdfaf3);
    color: var(--hs-gold);
    display: grid;
    place-items: center;
}

.hs-contact-icon.is-whatsapp { background: #e6f4ec; color: #1f8b4c; }

.hs-contact-label {
    display: block;
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--hs-muted);
    margin-bottom: .1rem;
}

/* Honeypot: off-screen rather than display:none, because some bots skip hidden fields */
.hs-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* =========================================================================
   Mobile Category Stories Bar
   ========================================================================= */
.hs-story-bar {
    background: var(--hs-white);
    border-bottom: 1px solid var(--hs-line);
    padding: 0.65rem 0 0.5rem;
    position: relative;
    z-index: 10;
}

.hs-story-scroll {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.15rem 1rem 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hs-story-scroll::-webkit-scrollbar {
    display: none;
}

.hs-story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
    width: 66px;
    text-align: center;
    transition: transform 0.2s ease;
}

.hs-story-item:hover,
.hs-story-item:active {
    transform: scale(1.05);
}

.hs-story-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 2.5px;
    background: linear-gradient(135deg, var(--hs-gold), var(--hs-gold-light), #ecd6a0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.25s ease;
    box-shadow: 0 2px 8px rgba(184, 145, 47, 0.18);
}

.hs-story-ring.is-sale {
    background: linear-gradient(135deg, #c0392b, #e74c3c, #f39c12);
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.25);
}

.hs-story-item:hover .hs-story-ring {
    box-shadow: 0 4px 14px rgba(184, 145, 47, 0.35);
}

.hs-story-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--hs-white);
    border: 2px solid var(--hs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hs-story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hs-story-avatar.is-icon {
    background: #fdf5e3;
    color: #c0392b;
}

.hs-story-label {
    margin-top: 0.35rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--hs-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 64px;
    line-height: 1.2;
}

/* =========================================================================
   Hero Slider Smooth Micro-Animations (Ken Burns)
   ========================================================================= */
@keyframes hsKenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.07);
    }
}

.hs-hero .carousel-item.active .hs-hero-art img {
    animation: hsKenBurns 7s ease-out forwards;
}

.hs-hero-art img {
    transition: transform 0.8s ease;
}

/* =========================================================================
   Sticky Mobile Add to Cart Bar
   ========================================================================= */
.hs-sticky-mobile-cart {
    position: fixed;
    bottom: 62px;
    left: 0;
    right: 0;
    z-index: 1039;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(229, 222, 210, 0.8);
    box-shadow: 0 -4px 20px rgba(28, 26, 23, 0.09);
    padding: 0.55rem 0.75rem;
    transform: translateY(140%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.hs-sticky-mobile-cart.is-visible {
    transform: translateY(0);
}

.hs-sticky-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--hs-line);
    background: var(--hs-ivory);
    flex-shrink: 0;
}

.hs-sticky-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--hs-ink);
    line-height: 1.2;
    max-width: 170px;
}

.hs-sticky-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--hs-gold-dark);
}

@media (min-width: 992px) {
    .hs-sticky-mobile-cart {
        display: none !important;
    }
}
