
/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */


:root {
    /* Ring showcase positioning */
    --ring-top  : 37%;
    --ring-left : 49%;
    --ring-size : 100px;

    /* Recently Added tokens */
    --ra-bg:            #faf5ef;
    --ra-surface:       #ffffff;
    --ra-img-bg:        #f0e8df;
    --ra-terra:         #b5614a;
    --ra-terra-deep:    #8f4535;
    --ra-terra-light:   #cd8b78;
    --ra-terra-pale:    #f2ddd7;
    --ra-gold:          #9a6b1e;
    --ra-gold-mid:      #b8842a;
    --ra-text:          #2b1a13;
    --ra-text-mid:      #6b3f2e;
    --ra-text-dim:      #b08070;
    --ra-border:        rgba(181,97,74,.15);
    --ra-border-gold:   rgba(154,107,30,.18);
    --ra-shadow:        0 6px 28px rgba(120,60,40,.10);
    --ra-shadow-hov:    0 14px 44px rgba(120,60,40,.18);
    --ra-r-img:         20px;
    --ra-r-card:        16px;
    --ra-ease:          .26s cubic-bezier(.4,0,.2,1);

    /* Sergi / JLX tokens (mirrors RA tokens) */
    --jlx-bg:           #faf5ef;
    --jlx-surface:      #ffffff;
    --jlx-surface2:     #fdf7f2;
    --jlx-img-bg:       #f0e8df;
    --jlx-terra:        #b5614a;
    --jlx-terra-deep:   #8f4535;
    --jlx-terra-light:  #cd8b78;
    --jlx-terra-pale:   #f2ddd7;
    --jlx-gold:         #9a6b1e;
    --jlx-gold-mid:     #b8842a;
    --jlx-text:         #2b1a13;
    --jlx-text-mid:     #6b3f2e;
    --jlx-text-dim:     #b08070;
    --jlx-border:       rgba(181,97,74,.15);
    --jlx-border-gold:  rgba(154,107,30,.18);
    --jlx-shadow:       0 6px 28px rgba(120,60,40,.10);
    --jlx-shadow-hov:   0 14px 44px rgba(120,60,40,.18);
    --jlx-r-img:        20px;
    --jlx-r-card:       16px;
    --jlx-ease:         .26s cubic-bezier(.4,0,.2,1);

    /* Promo section variables */
    --royal-green:      #2d5a3d;
    --forest-green:     #1a3d2a;
    --white:            #ffffff;
    --text-primary:     #2b1a0c;
    --accent-gold:      #b8975a;
}


/* ============================================================
   2. HERO VIDEO
   ============================================================ */
.champa-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 77vh;
    overflow: hidden;
}

.champa-hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.champa-hero__video.is-active {
    display: block;
}

.champa-hero__content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.champa-hero__btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.champa-hero__btn--outline {
    background: transparent;
    border: 1.5px solid #ffffff;
    color: #ffffff;
}

.champa-hero__btn--outline:hover {
    background: #ffffff;
    color: #000000;
}

.champa-hero__btn--filled {
    background: #ffffff;
    border: 1.5px solid #ffffff;
    color: #000000;
}

.champa-hero__btn--filled:hover {
    background: transparent;
    color: #ffffff;
}

@media (max-width: 768px) {
    .champa-hero {
        aspect-ratio: 3 / 4;
        max-height: 78vh;
    }

    .champa-hero__content {
        bottom: 8%;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 24px;
    }

    .champa-hero__btn {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
        font-size: 13px;
    }
}


/* ============================================================
   3. TRUST BAR
   ============================================================ */
.trust-bar {
    background: #2b1a0c;
    padding: 0;
    overflow: hidden;
}

.trust-bar-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    flex: 1;
    min-width: 0;
}

.trust-item svg {
    width: 26px;
    height: 26px;
    stroke: #b8975a;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: #f5f0ea;
    letter-spacing: .04em;
    white-space: nowrap;
}

.trust-item span {
    display: block;
    font-size: .72rem;
    color: rgba(255,255,255,.45);
    white-space: nowrap;
}

.trust-sep {
    width: 1px;
    background: rgba(255,255,255,.08);
    flex-shrink: 0;
    align-self: stretch;
}

@media (max-width: 860px) {
    .trust-bar-inner {
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .trust-bar-inner::-webkit-scrollbar { display: none; }

    .trust-item { padding: 14px 20px; flex: 0 0 auto; }

    .trust-sep { display: none; }
}


/* ============================================================
   4. SHAWL SHOWCASE (SHS)
   ============================================================ */
.shs {
    position: relative;
    background: #f4efe5;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 620px;
    max-height: 920px;
    overflow: hidden;
}

/* Arrows */
.shs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(100,75,50,0.22);
    background: rgba(244,239,229,0.88);
    color: #5a3e28;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.shs-arrow svg { width: 18px; height: 18px; }
.shs-arrow:hover { background: #fff; color: #2d1a0a; }
.shs-arrow-l { left: 16px; }
.shs-arrow-r { right: 16px; }

/* Main grid */
.shs-grid {
    display: grid;
    grid-template-columns: 1fr 460px 1fr;
    height: 100%;
    width: 100%;
}

/* Side columns */
.shs-col-left,
.shs-col-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    padding-top: 80px;
}

.shs-col-left  { padding-left: 56px; align-items: flex-end;   text-align: right; }
.shs-col-right { padding-right: 56px; align-items: flex-start; text-align: left; }

.shs-side-text {
    font-family: 'Georgia', serif;
    font-size: 13px;
    line-height: 1.8;
    color: #6b4a30;
    max-width: 200px;
    margin: 0 0 10px;
}

/* Cards */
.shs-card {
    background: rgba(255,253,248,0.92);
    border: 1px solid rgba(185,155,110,0.28);
    border-radius: 14px;
    padding: 16px 18px;
    width: 100%;
    max-width: 230px;
    transition: transform 0.2s;
}

.shs-card:hover { transform: translateY(-3px); }

.shs-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(190,155,100,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.shs-card-icon svg { width: 16px; height: 16px; stroke: #7a5225; }

.shs-card strong {
    display: block;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 14px;
    font-weight: 700;
    color: #2d1a0a;
    margin-bottom: 6px;
}

.shs-card p { font-size: 12px; line-height: 1.6; color: #8a6545; margin: 0; }

/* Center column */
.shs-center {
    position: relative;
    height: 100%;
}

/* Title */
.shs-word {
    position: absolute;
    top: 0; left: 0; right: 0;
    text-align: center;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(78px, 9.5vw, 140px);
    font-weight: 700;
    color: #2b1a0c;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
    padding-top: 22px;
    white-space: nowrap;
    z-index: 2;
}

/* Panel */
.shs-panel {
    position: absolute;
    top: 0%;
    height: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 44%;
    background: #d3c7b3;
    border-radius: 4px;
    z-index: 1;
}

/* Shawl image */
.shs-img-wrap {
    position: absolute;
    top: 118px;
    left: 50%;
    transform: translateX(-50%);
    width: 115%;
    bottom: 80px;
    z-index: 4;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    pointer-events: none;
}

.shs-img {
    width: 100%;
    height: 120%;
    object-fit: contain;
    object-position: top center;
    filter: drop-shadow(-6px 14px 28px rgba(60,30,10,0.28));
    transition: opacity 0.3s, transform 0.3s;
    transform-origin: top center;
}

.shs-img.fade-out { opacity: 0; transform: scale(0.97) translateY(8px); }

/* Decorative curves */
.shs-deco {
    position: absolute;
    width: 110px;
    height: 240px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.45;
}

.shs-deco-l { left: -14px; top: 25%; }
.shs-deco-r { right: -14px; top: 25%; }

/* Buy button */
.shs-btn {
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(244,239,229,0.97);
    border: 1px solid rgba(120,85,45,0.3);
    color: #2b1a0c;
    font-family: 'Georgia', serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-decoration: none;
    padding: 12px 36px;
    border-radius: 40px;
    box-shadow: 0 4px 16px rgba(60,30,10,0.12);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.shs-btn:hover { background: #fff; color: #8B1538; }

/* Dots */
.shs-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 12;
    white-space: nowrap;
}

.shs-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1.5px solid rgba(100,70,35,0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.18s;
    flex-shrink: 0;
}

.shs-dot.active { background: #7a5225; border-color: #7a5225; transform: scale(1.3); }

/* Mobile card grid — hidden on desktop */
.shs-mobile-cards { display: none; }

@media (max-width: 860px) {
    .shs {
        height: auto;
        min-height: unset;
        max-height: unset;
        overflow: visible;
        padding-bottom: 20px;
    }

    .shs-col-left, .shs-col-right { display: none; }

    .shs-grid { grid-template-columns: 1fr; }

    .shs-center {
        height: 88vw;
        min-height: 300px;
        max-height: 460px;
    }

    .shs-word {
        font-size: clamp(52px, 16vw, 84px);
        padding-top: 12px;
    }

    .shs-panel { display: none; }

    .shs-img-wrap {
        top: 54px;
        width: 99%;
        bottom: 58px;
    }

    .shs-btn { bottom: 26px; padding: 10px 30px; font-size: 12px; }

    .shs-dots { bottom: 6px; }

    .shs-arrow { top: 44%; }
    .shs-arrow-l { left: 3px; }
    .shs-arrow-r { right: 3px; }

    .shs-deco { display: none; }

    .shs-mobile-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 4px 12px 20px;
    }

    .shs-mobile-cards .shs-card {
        max-width: 100%;
        padding: 12px 12px;
        text-align: left;
    }

    .shs-mobile-cards .shs-card-icon { width: 30px; height: 30px; margin-bottom: 7px; }
    .shs-mobile-cards .shs-card-icon svg { width: 13px; height: 13px; }
    .shs-mobile-cards .shs-card strong { font-size: 12px; margin-bottom: 4px; }
    .shs-mobile-cards .shs-card p { font-size: 11px; line-height: 1.5; }
}


/* ============================================================
   5. BRAND STATS STRIP
   ============================================================ */
.brand-stats {
    background: #faf5ef;
    border-top: 1px solid rgba(154,107,30,.14);
    border-bottom: 1px solid rgba(154,107,30,.14);
    padding: 40px 40px;
}

.brand-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.bstat {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.bstat-num {
    display: block;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: #8f4535;
    line-height: 1;
    margin-bottom: 6px;
}

.bstat-label {
    display: block;
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #9a7860;
}

.bstat-div {
    width: 1px;
    height: 48px;
    background: rgba(154,107,30,.22);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .brand-stats { padding: 28px 20px; }
    .brand-stats-inner { flex-wrap: wrap; gap: 24px; }
    .bstat { flex: 0 0 calc(50% - 12px); }
    .bstat-div { display: none; }
}


/* ============================================================
   6. HOME DECOR PROMO
   ============================================================ */
.hd-promo {
    background: var(--ra-bg);
    padding: 72px 0;
    border-top: 1px solid rgba(154,107,30,.1);
    border-bottom: 1px solid rgba(154,107,30,.1);
    overflow: hidden;
}

.hd-promo-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hd-promo-img-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.hd-promo-img-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    overflow: hidden;
    background: #f0e8df;
    box-shadow: 0 14px 44px rgba(120,60,40,.14);
}

.hd-promo-img-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.hd-promo-img-frame:hover img { transform: scale(1.04); }

.hd-promo-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(181,97,74,.18);
    pointer-events: none;
}

.hd-promo-deco-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(181,97,74,.12);
    pointer-events: none;
}

.hd-promo-deco-dot--1 {
    width: 120px; height: 120px;
    bottom: -30px; left: -30px;
    z-index: 0;
}

.hd-promo-deco-dot--2 {
    width: 70px; height: 70px;
    top: -20px; right: 20px;
    background: rgba(154,107,30,.1);
    z-index: 0;
}

.hd-promo-text-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hd-promo-label {
    font-family: 'Jost', sans-serif;
    font-size: .68rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--ra-text-dim);
    margin: 0 0 10px;
}

.hd-promo-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 300;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    color: var(--ra-text);
    line-height: 1.05;
    letter-spacing: .04em;
    margin: 0 0 14px;
}

.hd-promo-title em {
    font-style: italic;
    color: var(--ra-terra);
}

.hd-promo-bar {
    display: block;
    width: 52px; height: 2px;
    background: linear-gradient(to right, var(--ra-terra), var(--ra-gold-mid));
    border-radius: 2px;
    margin-bottom: 22px;
}

.hd-promo-desc {
    font-family: 'Jost', sans-serif;
    font-size: .93rem;
    line-height: 1.85;
    color: var(--ra-text-mid);
    margin: 0 0 28px;
    max-width: 400px;
}

.hd-promo-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 18px 0;
    border-top: 1px solid var(--ra-border-gold);
    border-bottom: 1px solid var(--ra-border-gold);
}

.hd-promo-stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hd-promo-stat span {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--ra-terra);
    line-height: 1;
}

.hd-promo-stat small {
    font-family: 'Jost', sans-serif;
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ra-text-dim);
}

.hd-promo-stat-div {
    width: 1px; height: 36px;
    background: var(--ra-border-gold);
    flex-shrink: 0;
}

.hd-promo-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 13px 32px;
    border: 1.5px solid var(--ra-terra);
    background: transparent;
    color: var(--ra-terra);
    font-family: 'Jost', sans-serif;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: background var(--ra-ease), color var(--ra-ease);
}

.hd-promo-btn:hover {
    background: var(--ra-terra);
    color: #fff;
}

@media (max-width: 860px) {
    .hd-promo { padding: 48px 0; }

    .hd-promo-inner {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 32px;
    }

    .hd-promo-img-col { order: 2; }
    .hd-promo-text-col { order: 1; }

    .hd-promo-img-frame { max-width: 100%; }

    .hd-promo-title { font-size: clamp(2rem, 8vw, 2.8rem); }

    .hd-promo-desc { max-width: 100%; }

    .hd-promo-btn { align-self: flex-start; }
}


/* ============================================================
   7. CATEGORY SHOWCASE (CS)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.cs {
    background: #faf6f0;
    font-family: 'Lato', sans-serif;
    position: relative;
    overflow: hidden;
    padding: 52px 0 52px 56px;
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: start;
}

.cs-left {
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.cs-heading h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 58px;
    font-weight: 700;
    color: #2a1c0e;
    line-height: 1.04;
    margin-bottom: 52px;
}

.cs-list {
    display: flex;
    flex-direction: column;
}

.cs-item {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: #bdb3a8;
    cursor: pointer;
    padding: 8px 0;
    border: none;
    background: none;
    text-align: left;
    position: relative;
    transition: color 0.2s;
    line-height: 1.2;
    width: fit-content;
}

.cs-item.active { color: #2a1c0e; font-weight: 700; }

.cs-item.active::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 2px;
    background: #c4703a;
    border-radius: 1px;
}

.cs-item:hover:not(.active) { color: #8a7260; }

.cs-right {
    position: relative;
    align-self: stretch;
    z-index: 1;
}

.cs-blob {
    position: absolute;
    width: 320px;
    height: 340px;
    background: #f5dfd0;
    border-radius: 50% 50% 20% 20% / 55% 55% 20% 20%;
    top: 10px;
    left: 60px;
    z-index: 0;
}

.cs-img-zone {
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    z-index: 2;
    pointer-events: none;
}

.cs-img-zone img {
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: top right;
    display: block;
    transition: opacity 0.3s;
    opacity: 1;
}

.cs-img-zone img.cs-fade { opacity: 0; }

.cs-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 260px;
    z-index: 5;
    transform: translateX(-180px);
    display: flex;
    align-items: flex-end;
    gap: 60px;
    pointer-events: all;
}

.cs-info-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.cs-from {
    font-size: 11.5px;
    color: #9a8270;
    letter-spacing: 0.04em;
}

.cs-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: #2a1c0e;
    line-height: 1;
    white-space: nowrap;
    transition: opacity 0.25s;
}

.cs-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: #6e5c4c;
    max-width: 240px;
    transition: opacity 0.25s;
}

.cs-btn {
    flex-shrink: 0;
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border: 1.5px solid #2a1c0e;
    background: transparent;
    color: #2a1c0e;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 40px;
    font-family: 'Lato', sans-serif;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    cursor: pointer;
}

.cs-btn:hover { background: #2a1c0e; color: #faf6f0; }

@media (max-width: 860px) {
    .cs {
        grid-template-columns: 1fr;
        padding: 36px 24px 36px 24px;
    }

    .cs-heading h2 { font-size: 32px; margin-bottom: 16px; }

    .cs-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 0;
        padding-bottom: 4px;
        width: calc(100vw - 48px);
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .cs-list::-webkit-scrollbar { display: none; }

    .cs-item {
        font-size: 13px;
        padding: 6px 0;
        white-space: nowrap;
        border: 1.5px solid #e0d5cc;
        border-radius: 20px;
        flex: 0 0 calc(33.333% - 5.5px);
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .cs-item.active {
        background: #2a1c0e;
        color: #faf6f0;
        border-color: #2a1c0e;
    }

    .cs-item.active::after { display: none; }

    .cs-item:hover:not(.active) { border-color: #8a7260; color: #8a7260; }

    .cs-right {
        margin-top: 20px;
        margin-right: -24px;
        min-height: 0;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .cs-blob {
        width: 160px;
        height: 180px;
        left: auto;
        right: 1;
        top: 180px;
        z-index: 1;
    }

    .cs-img-zone {
        position: relative;
        top: auto; right: auto; left: auto; bottom: auto;
        min-height: 260px;
        justify-content: flex-end;
        align-items: flex-start;
        order: 2;
        z-index: 2;
    }

    .cs-info {
        position: relative !important;
        bottom: auto !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        width: calc(100vw - 48px);
        max-width: calc(100vw - 48px);
        margin-bottom: 24px;
        padding-right: 0 !important;
        order: 1;
        z-index: 3;
    }

    .cs-info-left { width: 100%; }
    .cs-price { font-size: 28px; }

    .cs-desc {
        max-width: 100% !important;
        font-size: 13px;
        white-space: normal;
    }

    .cs-btn {
        align-self: flex-start;
        white-space: nowrap;
        padding: 11px 22px;
        font-size: 10px;
        max-width: 100%;
    }
}


/* ============================================================
   7. RECENTLY ADDED (RA)
   ============================================================ */
.ra-section {
    position: relative;
    padding: 60px 0 72px;
    background: var(--ra-bg);
    font-family: 'Jost', sans-serif;
}

.ra-container {
    max-width: 100%;
    padding: 0 40px;
}

.ra-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.ra-label {
    font-family: 'Jost', sans-serif;
    font-size: .68rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--ra-text-dim);
    margin: 0 0 6px;
    font-weight: 400;
}

.ra-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    color: var(--ra-text);
    letter-spacing: .05em;
    margin: 0;
    line-height: 1;
}

.ra-title em {
    font-style: italic;
    color: var(--ra-terra);
    font-weight: 300;
}

.ra-title-bar {
    display: block;
    width: 52px;
    height: 2px;
    background: linear-gradient(to right, var(--ra-terra), var(--ra-gold-mid));
    margin-top: 9px;
    border-radius: 2px;
}

.ra-view-all {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--ra-terra);
    text-decoration: none;
    border-bottom: 1px solid var(--ra-terra-light);
    padding-bottom: 2px;
    transition: color var(--ra-ease), border-color var(--ra-ease);
}

.ra-view-all:hover { color: var(--ra-terra-deep); border-color: var(--ra-terra-deep); }

.ra-carousel-outer {
    position: relative;
    padding: 0 54px;
}

.ra-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 28px;
    scrollbar-width: none;
}

.ra-track::-webkit-scrollbar { display: none; }

.ra-nav-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(250,245,239,.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--ra-border);
    color: var(--ra-terra);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background var(--ra-ease), color var(--ra-ease);
    box-shadow: 0 3px 14px rgba(120,60,40,.15);
}

.ra-nav-btn:hover { background: var(--ra-terra); color: #fff; }
.ra-nav-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
.ra-nav-btn.prev { left: 6px; }
.ra-nav-btn.next { right: 6px; }

.ra-card {
    flex: 0 0 256px;
    scroll-snap-align: start;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    animation: raUp .45s both;
}

.ra-card:nth-child(2) { animation-delay: .07s; }
.ra-card:nth-child(3) { animation-delay: .14s; }
.ra-card:nth-child(4) { animation-delay: .21s; }
.ra-card:nth-child(5) { animation-delay: .28s; }
.ra-card:nth-child(6) { animation-delay: .35s; }
.ra-card.ra-appeared  { animation: none; opacity: 1; transform: translateZ(0); }

@keyframes raUp {
    from { opacity: 0; transform: translateY(16px) translateZ(0); }
    to   { opacity: 1; transform: translateY(0) translateZ(0); }
}

.ra-img-wrap {
    position: relative;
    border-radius: var(--ra-r-img);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    width: 100%;
    flex-shrink: 0;
    background: var(--ra-img-bg);
    box-shadow: var(--ra-shadow);
    transition: box-shadow var(--ra-ease), transform var(--ra-ease);
}

.ra-card:hover .ra-img-wrap { box-shadow: var(--ra-shadow-hov); transform: translateY(-4px); }

.ra-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0; left: 0;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.ra-card:hover .ra-product-img { transform: scale(1.05); }

.ra-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(40,15,5,.28) 100%);
    pointer-events: none;
}

.ra-new-ribbon {
    position: absolute;
    top: 13px;
    left: 0;
    background: linear-gradient(90deg, #b5614a, #c8820a);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: .65rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 5px 14px 5px 10px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
    z-index: 3;
    box-shadow: 2px 2px 8px rgba(143,69,53,.3);
    white-space: nowrap;
}

.ra-new-ribbon svg { width: 8px; height: 8px; fill: rgba(255,255,255,.9); }


.ra-discount-pill {
    position: absolute;
    bottom: 12px; left: 12px;
    background: var(--ra-terra-deep);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .05em;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,.22);
}

.ra-wishlist-btn {
    position: absolute;
    top: 11px; right: 11px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(250,245,239,.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(181,97,74,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background var(--ra-ease), transform var(--ra-ease);
    box-shadow: 0 2px 8px rgba(80,30,15,.12);
}

.ra-wishlist-btn:hover { background: rgba(250,245,239,1); transform: scale(1.1); }

.ra-wishlist-btn svg {
    width: 15px; height: 15px;
    stroke: var(--ra-terra);
    fill: none;
    stroke-width: 1.8;
    transition: fill var(--ra-ease);
}

.ra-wishlist-btn.active svg { fill: var(--ra-terra); }
.ra-wishlist-btn:hover svg  { fill: var(--ra-terra-light); }

.ra-review-badge {
    position: absolute;
    bottom: 12px; right: 12px;
    background: rgba(250,245,239,.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(181,97,74,.18);
    border-radius: 20px;
    padding: 4px 9px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(80,30,15,.12);
}

.ra-review-star  { color: #c8820a; font-size: .75rem; line-height: 1; }
.ra-review-score { font-family: 'Jost', sans-serif; font-weight: 500; font-size: .72rem; color: var(--ra-text); line-height: 1; }
.ra-review-count { font-family: 'Jost', sans-serif; font-weight: 300; font-size: .67rem; color: var(--ra-text-dim); line-height: 1; }

.ra-ornament {
    display: flex;
    justify-content: center;
    margin: -14px 0 -14px;
    position: relative;
    z-index: 4;
    flex-shrink: 0;
}

.ra-ornament-inner {
    width: 30px; height: 30px;
    background: var(--ra-bg);
    border: 1px solid var(--ra-border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px var(--ra-bg);
}

.ra-ornament-inner svg { width: 13px; height: 13px; stroke: var(--ra-gold-mid); fill: none; stroke-width: 1.2; }

.ra-info-card {
    background: var(--ra-surface);
    border-radius: var(--ra-r-card);
    border: 1px solid var(--ra-border);
    padding: 18px 15px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow var(--ra-ease), border-color var(--ra-ease);
    box-shadow: 0 3px 18px rgba(120,60,40,.07);
    min-height: 152px;
}

.ra-card:hover .ra-info-card { box-shadow: 0 6px 28px rgba(120,60,40,.13); border-color: rgba(181,97,74,.28); }

.ra-info-top { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }

.ra-name-wrap { flex: 1; min-width: 0; }

.ra-product-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.06rem;
    color: var(--ra-text);
    line-height: 1.3;
    margin: 0 0 6px;
    letter-spacing: .02em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ra-name-deco { display: flex; align-items: center; gap: 5px; }
.ra-name-deco-line { flex: 1; height: 1px; max-width: 26px; background: var(--ra-border-gold); }
.ra-name-deco svg { width: 7px; height: 7px; fill: var(--ra-gold-mid); }

.ra-divider-v {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--ra-border-gold), transparent);
    flex-shrink: 0;
    align-self: center;
}

.ra-price-wrap { text-align: right; flex-shrink: 0; }

.ra-price-original {
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    color: var(--ra-text-dim);
    text-decoration: line-through;
    display: block;
    margin-bottom: 1px;
}

.ra-price-current {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--ra-gold);
    line-height: 1;
    display: block;
    letter-spacing: .01em;
}

.ra-price-savings {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(181,97,74,.10);
    border: 1px solid rgba(181,97,74,.22);
    color: var(--ra-terra-deep);
    font-family: 'Jost', sans-serif;
    font-size: .63rem;
    font-weight: 500;
    padding: 3px 7px;
    border-radius: 10px;
    margin-top: 5px;
    white-space: nowrap;
}

.ra-price-savings svg { width: 8px; height: 8px; stroke: var(--ra-terra-deep); fill: none; stroke-width: 2.5; flex-shrink: 0; }

.ra-info-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--ra-border-gold) 30%, var(--ra-border-gold) 70%, transparent);
    margin: 0 0 13px;
    flex-shrink: 0;
    position: relative;
}

.ra-info-divider::after {
    content: '✦';
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    font-size: .48rem;
    color: var(--ra-gold-mid);
    background: var(--ra-surface);
    padding: 0 4px;
}

.ra-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-height: 42px;
}

.ra-cart-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--ra-terra);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 14px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: .73rem;
    font-weight: 500;
    letter-spacing: .11em;
    text-transform: uppercase;
    transition: background var(--ra-ease), box-shadow var(--ra-ease), opacity var(--ra-ease);
    box-shadow: 0 3px 14px rgba(143,69,53,.28);
    white-space: nowrap;
    height: 40px;
    overflow: hidden;
}

.ra-cart-btn:hover:not(:disabled) { background: var(--ra-terra-deep); box-shadow: 0 5px 20px rgba(143,69,53,.4); }
.ra-cart-btn:disabled { opacity: .65; cursor: not-allowed; }
.ra-cart-btn.ra-added { background: #4a7c59 !important; box-shadow: 0 3px 14px rgba(74,124,89,.35) !important; }
.ra-cart-btn.ra-error { background: #a03030 !important; }
.ra-cart-btn svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 1.8; flex-shrink: 0; }

.ra-btn-label {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
    transition: opacity .15s;
}

.ra-out-of-stock {
    width: 100%;
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-size: .71rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ra-text-dim);
    border: 1px dashed var(--ra-border);
    border-radius: 50px;
}

@media (max-width: 900px) {
    .ra-container { padding: 0 20px; }
    .ra-track { padding: 8px 0 24px; }
}

@media (max-width: 600px) {
    .ra-section { padding: 40px 0 52px; }
    .ra-container { padding: 0; }
    .ra-carousel-outer { padding: 0 16px; }
    .ra-track { padding: 8px 12px 20px; gap: 14px; }
    .ra-card { flex: 0 0 175px; }
    .ra-img-wrap { height: 175px; }
    .ra-info-card { padding: 14px 11px 12px; min-height: 140px; }
    .ra-product-name { font-size: .93rem; }
    .ra-price-current { font-size: 1.25rem; }
    .ra-ornament-inner { width: 26px; height: 26px; }
    .ra-nav-btn { display: none; }
}

@media (max-width: 380px) {
    .ra-card { flex: 0 0 158px; }
    .ra-img-wrap { height: 158px; }
}


/* ============================================================
   8. TESTIMONIALS (TST)
   ============================================================ */
.tst-section {
    background: #fdf8f3;
    padding: 64px 0 56px;
    border-top: 1px solid rgba(154,107,30,.1);
}

.tst-header {
    text-align: center;
    margin-bottom: 36px;
    padding: 0 24px;
}

.tst-label {
    font-size: .68rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #b08070;
    margin: 0 0 8px;
}

.tst-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: #2b1a13;
    letter-spacing: .05em;
    margin: 0;
    line-height: 1;
}

.tst-bar {
    display: block;
    width: 48px; height: 2px;
    background: linear-gradient(to right, #b5614a, #b8842a);
    margin: 10px auto 0;
    border-radius: 2px;
}

.tst-track-wrap { position: relative; }

.tst-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 60px 24px;
    scrollbar-width: none;
}

.tst-track::-webkit-scrollbar { display: none; }

.tst-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid rgba(181,97,74,.13);
    border-radius: 16px;
    padding: 28px 24px 22px;
    box-shadow: 0 4px 20px rgba(120,60,40,.07);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow .2s, transform .2s;
}

.tst-card:hover { box-shadow: 0 8px 32px rgba(120,60,40,.13); transform: translateY(-3px); }

.tst-stars { color: #c8820a; font-size: 1rem; letter-spacing: .06em; }

.tst-text {
    font-size: .88rem;
    line-height: 1.75;
    color: #5a3a2a;
    flex: 1;
    font-style: italic;
}

.tst-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(154,107,30,.12);
    padding-top: 14px;
}

.tst-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b5614a, #b8842a);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tst-author strong { display: block; font-size: .82rem; color: #2b1a13; }
.tst-author span   { font-size: .72rem; color: #b08070; }

.tst-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(250,245,239,.92);
    border: 1px solid rgba(181,97,74,.2);
    color: #b5614a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(120,60,40,.12);
    transition: background .2s, color .2s;
}

.tst-nav:hover { background: #b5614a; color: #fff; }
.tst-nav svg { width: 16px; height: 16px; }
.tst-prev { left: 14px; }
.tst-next { right: 14px; }

.tst-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    padding: 0 24px;
}

.tst-sum-score {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 500;
    color: #8f4535;
    line-height: 1;
}

.tst-sum-stars { color: #c8820a; font-size: 1.1rem; margin-bottom: 4px; }
.tst-sum-label { font-size: .76rem; color: #9a7860; letter-spacing: .05em; }

@media (max-width: 600px) {
    .tst-track { padding: 8px 20px 20px; gap: 14px; }
    .tst-card { flex: 0 0 260px; padding: 22px 18px 18px; }
    .tst-nav { display: none; }
}


/* ============================================================
   9. SERGI LUXURY CARDS (JLX)
   ============================================================ */
.jlx-section {
    padding: 60px 0 72px;
    background: var(--jlx-bg);
}

.jlx-container {
    max-width: 100%;
    padding: 0 40px;
}

.jlx-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.jlx-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    color: var(--jlx-text);
    letter-spacing: .05em;
    margin: 0;
    line-height: 1;
}

.jlx-title-bar {
    display: block;
    width: 52px; height: 2px;
    background: linear-gradient(to right, var(--jlx-terra), var(--jlx-gold-mid));
    margin-top: 9px;
    border-radius: 2px;
}

.jlx-view-all {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--jlx-terra);
    text-decoration: none;
    border-bottom: 1px solid var(--jlx-terra-light);
    padding-bottom: 2px;
    transition: color var(--jlx-ease), border-color var(--jlx-ease);
}

.jlx-view-all:hover { color: var(--jlx-terra-deep); border-color: var(--jlx-terra-deep); }

.jlx-carousel-outer {
    position: relative;
    padding: 0 54px;
}

.jlx-products-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 28px;
    scrollbar-width: none;
}

.jlx-products-container::-webkit-scrollbar { display: none; }

.jlx-card {
    flex: 0 0 256px;
    scroll-snap-align: start;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    animation: jlxUp .45s both;
}

.jlx-card:nth-child(2) { animation-delay:.07s; }
.jlx-card:nth-child(3) { animation-delay:.14s; }
.jlx-card:nth-child(4) { animation-delay:.21s; }
.jlx-card:nth-child(5) { animation-delay:.28s; }
.jlx-card:nth-child(6) { animation-delay:.35s; }

.jlx-card.jlx-appeared { animation: none; opacity: 1; transform: translateZ(0); }

@keyframes jlxUp {
    from { opacity:0; transform:translateY(16px) translateZ(0); }
    to   { opacity:1; transform:translateY(0)    translateZ(0); }
}

.jlx-img-wrap {
    position: relative;
    border-radius: var(--jlx-r-img);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    width: 100%;
    flex-shrink: 0;
    background: var(--jlx-img-bg);
    box-shadow: var(--jlx-shadow);
    transition: box-shadow var(--jlx-ease), transform var(--jlx-ease);
}

.jlx-card:hover .jlx-img-wrap { box-shadow: var(--jlx-shadow-hov); transform: translateY(-4px); }

.jlx-product-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0; left: 0;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.jlx-card:hover .jlx-product-img { transform: scale(1.05); }

.jlx-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(40,15,5,.28) 100%);
    pointer-events: none;
}

.jlx-new-ribbon {
    position: absolute;
    top: 13px;
    left: 0;
    background: linear-gradient(90deg, #b5614a, #c8820a);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: .65rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 5px 14px 5px 10px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
    z-index: 3;
    box-shadow: 2px 2px 8px rgba(143,69,53,.3);
    white-space: nowrap;
}

.jlx-new-ribbon svg { width: 8px; height: 8px; fill: rgba(255,255,255,.9); }


.jlx-discount-pill {
    position: absolute; bottom:12px; left:12px;
    background: var(--jlx-terra-deep);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .05em;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,.22);
}

.jlx-wishlist-btn {
    position: absolute; top:11px; right:11px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(250,245,239,.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(181,97,74,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background var(--jlx-ease), transform var(--jlx-ease);
    box-shadow: 0 2px 8px rgba(80,30,15,.12);
}

.jlx-wishlist-btn:hover { background:rgba(250,245,239,1); transform:scale(1.1); }

.jlx-wishlist-btn svg {
    width:15px; height:15px;
    stroke:var(--jlx-terra);
    fill:none;
    stroke-width:1.8;
    transition: fill var(--jlx-ease);
}

.jlx-wishlist-btn.active svg { fill:var(--jlx-terra); }
.jlx-wishlist-btn:hover svg  { fill:var(--jlx-terra-light); }

.jlx-review-badge {
    position: absolute; bottom:12px; right:12px;
    background: rgba(250,245,239,.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(181,97,74,.18);
    border-radius: 20px;
    padding: 4px 9px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(80,30,15,.12);
}

.jlx-review-star  { color:#c8820a; font-size:.75rem; line-height:1; }
.jlx-review-score { font-family:'Jost',sans-serif; font-weight:500; font-size:.72rem; color:var(--jlx-text); line-height:1; }
.jlx-review-count { font-family:'Jost',sans-serif; font-weight:300; font-size:.67rem; color:var(--jlx-text-dim); line-height:1; }

.jlx-ornament {
    display: flex;
    justify-content: center;
    margin: -14px 0 -14px;
    position: relative;
    z-index: 4;
    flex-shrink: 0;
}

.jlx-ornament-inner {
    width: 30px; height: 30px;
    background: var(--jlx-bg);
    border: 1px solid var(--jlx-border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px var(--jlx-bg);
}

.jlx-ornament-inner svg { width:13px; height:13px; stroke:var(--jlx-gold-mid); fill:none; stroke-width:1.2; }

.jlx-info-card {
    background: var(--jlx-surface);
    border-radius: var(--jlx-r-card);
    border: 1px solid var(--jlx-border);
    padding: 18px 15px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow var(--jlx-ease), border-color var(--jlx-ease);
    box-shadow: 0 3px 18px rgba(120,60,40,.07);
    min-height: 152px;
}

.jlx-card:hover .jlx-info-card { box-shadow: 0 6px 28px rgba(120,60,40,.13); border-color: rgba(181,97,74,.28); }

.jlx-info-top { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; }

.jlx-name-wrap { flex:1; min-width:0; }

.jlx-product-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.06rem;
    color: var(--jlx-text);
    line-height: 1.3;
    margin: 0 0 6px;
    letter-spacing: .02em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jlx-name-deco { display:flex; align-items:center; gap:5px; }
.jlx-name-deco-line { flex:1; height:1px; max-width:26px; background:var(--jlx-border-gold); }
.jlx-name-deco svg { width:7px; height:7px; fill:var(--jlx-gold-mid); }

.jlx-divider-v {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, transparent, var(--jlx-border-gold), transparent);
    flex-shrink: 0;
    align-self: center;
}

.jlx-price-wrap { text-align:right; flex-shrink:0; }

.jlx-price-original {
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    color: var(--jlx-text-dim);
    text-decoration: line-through;
    display: block;
    margin-bottom: 1px;
}

.jlx-price-current {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--jlx-gold);
    line-height: 1;
    display: block;
    letter-spacing: .01em;
}

.jlx-price-savings {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(181,97,74,.10);
    border: 1px solid rgba(181,97,74,.22);
    color: var(--jlx-terra-deep);
    font-family: 'Jost', sans-serif;
    font-size: .63rem;
    font-weight: 500;
    padding: 3px 7px;
    border-radius: 10px;
    margin-top: 5px;
    white-space: nowrap;
}

.jlx-price-savings svg { width:8px; height:8px; stroke:var(--jlx-terra-deep); fill:none; stroke-width:2.5; flex-shrink:0; }

.jlx-info-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--jlx-border-gold) 30%, var(--jlx-border-gold) 70%, transparent);
    margin: 0 0 13px;
    flex-shrink: 0;
    position: relative;
}

.jlx-info-divider::after {
    content: '✦';
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    font-size: .48rem;
    color: var(--jlx-gold-mid);
    background: var(--jlx-surface);
    padding: 0 4px;
}

.jlx-actions { display:flex; align-items:center; flex-shrink:0; min-height:42px; }

.jlx-cart-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--jlx-terra);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 14px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: .73rem;
    font-weight: 500;
    letter-spacing: .11em;
    text-transform: uppercase;
    transition: background var(--jlx-ease), box-shadow var(--jlx-ease), opacity var(--jlx-ease);
    box-shadow: 0 3px 14px rgba(143,69,53,.28);
    white-space: nowrap;
    height: 40px;
    overflow: hidden;
}

.jlx-cart-btn:hover:not(:disabled) { background: var(--jlx-terra-deep); box-shadow: 0 5px 20px rgba(143,69,53,.4); }
.jlx-cart-btn:disabled { opacity:.65; cursor:not-allowed; }
.jlx-cart-btn.jlx-added { background:#4a7c59 !important; box-shadow:0 3px 14px rgba(74,124,89,.35) !important; }
.jlx-cart-btn.jlx-error { background:#a03030 !important; }
.jlx-cart-btn svg { width:15px; height:15px; stroke:#fff; fill:none; stroke-width:1.8; flex-shrink:0; }

.jlx-btn-label {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
    transition: opacity .15s;
}

.jlx-out-of-stock-label {
    width: 100%;
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-size: .71rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--jlx-text-dim);
    border: 1px dashed var(--jlx-border);
    border-radius: 50px;
}

.sergi-collection .carousel-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(250,245,239,.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--jlx-border);
    color: var(--jlx-terra);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background var(--jlx-ease), color var(--jlx-ease), opacity var(--jlx-ease);
    box-shadow: 0 3px 14px rgba(120,60,40,.15);
}

.sergi-collection .carousel-nav:hover { background:var(--jlx-terra); color:#fff; }
.sergi-collection .carousel-nav.prev { left:6px; }
.sergi-collection .carousel-nav.next { right:6px; }
.sergi-collection .carousel-nav svg { width:18px; height:18px; stroke:currentColor; stroke-width:2; fill:none; }

@media (max-width: 900px) {
    .jlx-container { padding: 0 20px; }
    .jlx-products-container { padding: 8px 0 24px; }
}

@media (max-width: 600px) {
    .jlx-section { padding: 40px 0 52px; }
    .jlx-container { padding: 0 16px; }
    .jlx-carousel-outer { padding: 0 10px; }
    .jlx-products-container { padding: 8px 12px 20px; gap: 14px; }
    .jlx-card { flex: 0 0 175px; }
    .jlx-carousel-outer::before, .jlx-carousel-outer::after { display: none; }
    .jlx-img-wrap { aspect-ratio: 1 / 1; height: 175px; }
    .jlx-info-card { padding:14px 11px 12px; min-height:140px; }
    .jlx-product-name { font-size:.93rem; }
    .jlx-price-current { font-size:1.25rem; }
    .jlx-ornament-inner { width:26px; height:26px; }
    .sergi-collection .carousel-nav { display:none; }
}

@media (max-width: 380px) {
    .jlx-card { flex: 0 0 158px; }
    .jlx-img-wrap { height: 158px; }
}


/* ============================================================
   10. RING SHOWCASE (RSS)
   ============================================================ */
.rss-section {
    position: relative;
    background: #070707;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 88px 1fr 1fr;
    grid-template-rows: 1fr;
    align-items: center;
}

.rss-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 80% at 38% 60%, rgba(139,21,56,0.24) 0%, transparent 62%),
        radial-gradient(ellipse 40% 50% at 75% 40%, rgba(184,151,90,0.06) 0%, transparent 55%);
    z-index: 0;
}

.rss-thumbstrip {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 0 0 20px;
    z-index: 3;
}

.rss-thumb {
    width: 58px; height: 58px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    padding: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.rss-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.rss-thumb:hover { border-color: rgba(184,151,90,0.5); transform: scale(1.08); }
.rss-thumb.active { border-color: #b8975a; box-shadow: 0 0 0 3px rgba(184,151,90,0.22); transform: scale(1.1); }

.rss-hand-zone {
    grid-column: 2;
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
}

.rss-hand-wrap {
    position: relative;
    height: 95%;
    width: auto;
    aspect-ratio: 0.58 / 1;
    flex-shrink: 0;
}

.rss-hand-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center bottom;
    z-index: 2;
    filter: drop-shadow(0 -10px 60px rgba(139,21,56,0.15)) drop-shadow(0 40px 80px rgba(0,0,0,0.95));
}

.rss-ring-wrap {
    position: absolute;
    top:  var(--ring-top);
    left: var(--ring-left);
    width:  var(--ring-size);
    height: var(--ring-size);
    transform: translate(-50%, 0%) rotate(-4deg);
    z-index: 3;
    pointer-events: none;
}

.rss-ring-img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.7));
    display: block;
}

@keyframes rssFromLeft {
    0%   { opacity: 0; transform: translate(calc(-50% - 120px), 0%) rotate(-4deg); }
    60%  { opacity: 1; transform: translate(calc(-50% + 8px),   0%) rotate(-4deg); }
    100% { opacity: 1; transform: translate(-50%, 0%) rotate(-4deg); }
}

.rss-ring-wrap.rss-anim {
    animation: rssFromLeft 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.rss-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.16);
    background: rgba(0,0,0,0.40);
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
    backdrop-filter: blur(4px);
}

.rss-arrow svg { width: 18px; height: 18px; }

.rss-arrow:hover {
    border-color: #b8975a;
    background: rgba(184,151,90,0.12);
    color: #b8975a;
    transform: translateY(-50%) scale(1.08);
}

.rss-arrow:active { transform: translateY(-50%) scale(0.95); }
.rss-arrow-l { left: 8px; }
.rss-arrow-r { right: 8px; }

.rss-info {
    grid-column: 3;
    padding: 0 60px 0 40px;
    z-index: 3;
    color: #fff;
}

.rss-eyebrow {
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #b8975a;
    margin: 0 0 16px;
}

.rss-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(32px, 3.2vw, 52px);
    font-weight: 400;
    line-height: 1.06;
    color: #f5f0ea;
    margin: 0 0 16px;
    transition: opacity 0.2s ease;
}

.rss-desc {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.45);
    margin: 0 0 24px;
    max-width: 360px;
    transition: opacity 0.2s ease;
}

.rss-price {
    font-size: 32px;
    font-weight: 700;
    color: #b8975a;
    margin-bottom: 30px;
    transition: opacity 0.2s ease;
}

.rss-actions { display: flex; flex-direction: column; gap: 12px; }

.rss-btn-buy,
.rss-btn-col {
    display: block;
    text-align: center;
    padding: 15px 28px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.22s ease;
    cursor: pointer;
    max-width: 320px;
}

.rss-btn-buy { background: #8B1538; color: #fff; border: 1.5px solid #8B1538; }
.rss-btn-buy:hover { background: #a01a42; border-color: #a01a42; }
.rss-btn-col { background: transparent; color: #f5f0ea; border: 1.5px solid rgba(245,240,234,0.28); }
.rss-btn-col:hover { border-color: rgba(245,240,234,0.70); color: #fff; }

@media (max-width: 860px) {
    .rss-section {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto auto;
        height: calc(100vh - 60px);
        min-height: 580px;
        max-height: 860px;
        padding: 0;
        align-items: stretch;
        overflow: hidden;
    }

    .rss-thumbstrip {
        grid-column: 1;
        grid-row: 2;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 10px 0 8px;
        gap: 14px;
        z-index: 3;
    }

    .rss-thumb { width: 52px; height: 52px; }

    .rss-hand-zone {
        grid-column: 1;
        grid-row: 1;
        height: 100%;
        min-height: 0;
        max-height: none;
        align-items: flex-end;
    }

    .rss-hand-wrap { height: 92%; aspect-ratio: 0.58 / 1; }

    .rss-info {
        grid-column: 1;
        grid-row: 3;
        padding: 14px 24px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .rss-eyebrow { display: none; }
    .rss-title   { font-size: clamp(20px, 5vw, 28px); margin-bottom: 6px; }
    .rss-desc    { display: none; }
    .rss-price   { font-size: 22px; margin-bottom: 14px; }
    .rss-actions { flex-direction: row; gap: 10px; justify-content: center; }

    .rss-btn-buy,
    .rss-btn-col { padding: 12px 20px; font-size: 10px; max-width: 160px; }

    :root { --ring-size: 60px; }
}


/* ============================================================
   11. BLOG POSTS
   ============================================================ */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 24px;
}

.section-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: #2b1a13;
    letter-spacing: .05em;
    margin: 0 0 10px;
    line-height: 1;
}

.title-underline {
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, #b5614a, #b8842a);
    border-radius: 2px;
    margin-bottom: 16px;
}

.view-all-link {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #b5614a;
    text-decoration: none;
    border-bottom: 1px solid #cd8b78;
    padding-bottom: 2px;
    transition: color .26s, border-color .26s;
}

.view-all-link:hover { color: #8f4535; border-color: #8f4535; }

.homepage-blog-section {
    margin-bottom: 120px;
    position: relative;
}

.homepage-blog-carousel-wrapper {
    position: relative;
    overflow: visible;
    padding: 0 60px;
}

.homepage-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    transition: transform 0.3s ease;
}

.homepage-blog-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    max-height: 480px;
    display: flex;
    flex-direction: column;
}

.homepage-blog-card:hover { transform: translateY(-8px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }

.homepage-blog-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }

.homepage-blog-card-image {
    position: relative;
    width: calc(100% - 40px);
    height: 160px;
    margin: 20px 20px 0 20px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.homepage-blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.homepage-blog-card:hover .homepage-blog-card-image img { transform: scale(1.08); }

.homepage-blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0 20px;
    margin-top: 12px;
}

.homepage-blog-tag {
    background: white;
    color: #7e484f;
    padding: 6px 14px;
    border: 1.5px solid #7e484f;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 500;
}

.homepage-blog-card-content { padding: 0 20px 20px 20px; display: flex; flex-direction: column; flex-grow: 1; }

.homepage-blog-card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 12px;
    line-height: 1.3;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.homepage-blog-card:hover .homepage-blog-card-title { color: #8B1538; }

.homepage-blog-card-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.homepage-blog-card-meta { display: flex; align-items: center; margin-top: auto; }

.homepage-blog-date { font-size: 15px; color: #888; }

.blog-carousel-prev,
.blog-carousel-next { display: none; }

@media (max-width: 1200px) { .homepage-blog-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 992px)  { .homepage-blog-grid { grid-template-columns: repeat(2,1fr); } }

@media (max-width: 768px) {
    .homepage-blog-section { margin-bottom: 80px; }
    .homepage-blog-carousel-wrapper { padding: 20px 50px; }
    .homepage-blog-grid {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 20px;
    }
    .homepage-blog-grid::-webkit-scrollbar { display: none; }
    .homepage-blog-card { min-width: 280px; max-width: 280px; flex-shrink: 0; }
    .blog-carousel-prev, .blog-carousel-next { display: flex; }
}

@media (max-width: 576px) {
    .homepage-blog-carousel-wrapper { padding: 20px 0; }
    .homepage-blog-grid { padding: 0 20px; }
    .homepage-blog-card { min-width: 260px; max-width: 260px; }
    .blog-carousel-prev, .blog-carousel-next { display: none; }
}


/* ============================================================
   12. NEWSLETTER
   ============================================================ */
.nl-section {
    position: relative;
    background: #2b1a0c;
    padding: 64px 40px;
    overflow: hidden;
    text-align: center;
}

.nl-inner {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.nl-eyebrow {
    font-size: .68rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #b8975a;
    margin: 0 0 8px;
}

.nl-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 300;
    color: #f5f0ea;
    letter-spacing: .06em;
    margin: 0;
    line-height: 1.1;
}

.nl-desc {
    font-size: .88rem;
    line-height: 1.75;
    color: rgba(255,255,255,.45);
    margin: 6px 0 0;
}

.nl-form { width: 100%; }

.nl-field-wrap {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(184,151,90,.35);
    background: rgba(255,255,255,.05);
}

.nl-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 22px;
    font-size: .88rem;
    color: #f5f0ea;
    outline: none;
    min-width: 0;
}

.nl-input::placeholder { color: rgba(255,255,255,.3); }

.nl-btn {
    flex-shrink: 0;
    background: #8B1538;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.nl-btn:hover { background: #a01a42; }

.nl-note { font-size: .7rem; color: rgba(255,255,255,.25); margin: 10px 0 0; letter-spacing: .04em; }
.nl-success { color: #b8975a; font-size: .88rem; margin: 10px 0 0; }

.nl-deco {
    position: absolute;
    width: 160px; height: 300px;
    pointer-events: none;
    z-index: 0;
    top: 50%;
    transform: translateY(-50%);
}

.nl-deco-l { left: 0; }
.nl-deco-r { right: 0; }

@media (max-width: 600px) {
    .nl-section { padding: 48px 20px; }
    .nl-field-wrap { flex-direction: column; border-radius: 12px; }
    .nl-input { padding: 14px 18px; border-radius: 0; }
    .nl-btn { border-radius: 0; padding: 13px 18px; }
    .nl-deco { display: none; }
}
.scroll-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}
.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(184, 151, 90, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
}
.scroll-dot.active {
    background: #b8975a;
    width: 22px;
    border-radius: 4px;
}

.trust-bar {
    overflow: hidden;
}
.trust-bar-track {
    display: flex;
    width: max-content;
    animation: trust-bar-scroll 40s linear infinite;
}
.trust-bar:hover .trust-bar-track {
    animation-play-state: paused;
}
.trust-bar-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-icon svg {
    width: 26px;
    height: 26px;
    stroke: #b8975a;
    fill: none;
    flex-shrink: 0;
}
.trust-text-title {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: #f5f0ea;
    letter-spacing: .04em;
    white-space: nowrap;
}
.trust-text-sub {
    display: block;
    font-size: .72rem;
    font-weight: 400;
    color: rgba(255,255,255,.45);
    white-space: nowrap;
}
@keyframes trust-bar-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}