/* Agaro — Jusson-inspired earth-tone storefront theme */
:root {
    --js-brown: #6D5B4B;
    --js-brown-dark: #5A4A3A;
    --js-brown-light: #8a7562;
    --js-tan: #a69076;
    --js-tan-light: #c4b5a5;
    --js-gold: #B8956B;
    --js-black: #111111;
    --js-text: #222222;
    --js-white: #ffffff;
    --js-bg: #ffffff;
    --js-bg-soft: #f7f5f2;
    --js-border: #dddddd;
    --js-font-display: 'Cormorant Garamond', Georgia, serif;
    --js-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --js-transition: all 0.25s ease;
}

body.js-jusson {
    background: var(--js-bg);
    color: var(--js-text);
    font-family: var(--js-font-body);
}

body.js-jusson a {
    color: inherit;
}

/* ── Announcement Bar ── */
body.js-jusson.sc-body .pr-announcement,
body.js-jusson .pr-announcement.js-announcement,
.js-jusson .pr-announcement,
.js-announcement {
    background: var(--js-brown-dark) !important;
    background-color: var(--js-brown-dark) !important;
    color: var(--js-white) !important;
    border-bottom: none !important;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: none;
    min-height: 36px;
    display: flex;
    align-items: center;
}

body.js-jusson.sc-body .pr-announcement::before,
.js-jusson .pr-announcement::before,
.js-announcement::before {
    display: none !important;
}

.js-announcement-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    font-size: 12px;
    letter-spacing: 0.03em;
}

.js-announcement-left,
.js-announcement-right {
    color: var(--js-white);
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .js-announcement-bar {
        flex-direction: column;
        text-align: center;
        gap: 0.15rem;
        font-size: 11px;
    }

    .js-announcement-left,
    .js-announcement-right {
        white-space: normal;
    }
}

.js-announcement-inner {
    width: 100%;
    text-align: center;
    position: relative;
    min-height: 20px;
}

.js-announcement-msg {
    display: block;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    left: 0;
    right: 0;
}

.js-announcement-msg.is-active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.js-jusson .sc-countdown {
    display: none !important;
}

/* ── Header ── */
.js-header {
    background: var(--js-white);
    border-bottom: 1px solid var(--js-border);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.js-header-inner {
    padding-top: 1.25rem;
    padding-bottom: 0.85rem;
}

/* Desktop row 1: search | logo | icons */
.js-header-row1 {
    display: none;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    padding-bottom: 0.85rem;
}

@media (min-width: 992px) {
    .js-header-row1 {
        display: grid;
    }
}

.js-header-slot {
    display: flex;
    align-items: center;
}

.js-header-slot--left {
    justify-content: flex-start;
}

.js-header-slot--center {
    justify-content: center;
}

.js-header-slot--right {
    justify-content: flex-end;
}

.js-header-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Desktop row 2: centered nav on full width */
.js-header-row2,
.js-nav-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.js-logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--js-black);
    padding: 0.35rem 1.15rem;
    min-height: 38px;
    text-decoration: none !important;
    color: var(--js-black) !important;
    transition: var(--js-transition);
}

.js-logo-box:hover {
    background: var(--js-bg-soft);
    color: var(--js-black) !important;
}

.js-logo-text {
    font-family: var(--js-font-display);
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 1;
}

.js-nav-links,
.js-header-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0.15rem 0 0;
    border-top: none;
    width: 100%;
}

.js-nav-links .nav-item,
.js-header-nav .nav-item {
    display: inline-flex;
    flex-shrink: 0;
}

.js-nav-links .nav-link,
.js-header-nav .nav-link {
    color: var(--js-brown-light) !important;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0 !important;
    text-decoration: none;
    position: relative;
    background: none !important;
    white-space: nowrap;
}

.js-nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--js-gold);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.js-nav-links .nav-link:hover {
    color: var(--js-brown) !important;
}

.js-nav-links .nav-link.active {
    color: var(--js-gold) !important;
}

.js-nav-links .nav-link.active::after {
    transform: scaleX(1);
}

.js-header .btn-js-icon {
    background: transparent;
    border: none;
    color: var(--js-black);
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    font-size: 1.05rem;
    transition: var(--js-transition);
}

.js-header .btn-js-icon:hover {
    color: var(--js-brown);
    background: transparent;
}

.js-header .pr-badge-count {
    background: var(--js-brown);
    color: var(--js-white);
    box-shadow: none;
}

.js-header .navbar-toggler {
    border: 1px solid var(--js-border);
    border-radius: 0;
    padding: 0.4rem 0.55rem;
}

.js-header .navbar-toggler:focus {
    box-shadow: none;
}

.js-header-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 0.5rem;
}

.js-header .dropdown-menu {
    border-radius: 0 !important;
    border: 1px solid var(--js-border) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    padding: 0.35rem !important;
}

.js-header .dropdown-item {
    font-size: 12px;
    letter-spacing: 0.04em;
    border-radius: 0;
}

.js-header .dropdown-item:hover {
    background: var(--js-bg-soft);
    color: var(--js-brown);
}

/* ── Hero Banner ── */
.js-hero-section {
    padding: 1.25rem 0 3rem;
    background: var(--js-white);
}

.js-hero-container {
    width: min(1400px, 95vw);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(0.75rem, 2vw, 1.5rem);
    padding-right: clamp(0.75rem, 2vw, 1.5rem);
}

.js-hero-prelabel {
    text-align: center;
    font-size: clamp(11px, 1.8vw, 14px);
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--js-black);
    margin: 0 0 1.5rem;
}

.js-hero-frame {
    border: 1px solid var(--js-black);
    border-radius: 24px;
    background: var(--js-white);
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.75rem);
    text-align: center;
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.js-hero-eyebrow {
    display: block;
    font-family: var(--js-font-body);
    font-size: clamp(11px, 1.5vw, 13px);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.85rem;
    line-height: 1.2;
}

.js-hero-title {
    font-family: var(--js-font-display);
    font-size: clamp(2.25rem, 6.5vw, 4.25rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #B8956B;
    margin: 0 0 0.85rem;
    line-height: 1.02;
}

.js-hero-subtitle {
    font-size: clamp(0.8rem, 1.8vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.65rem;
}

.js-hero-url {
    font-size: clamp(11px, 1.4vw, 13px);
    color: var(--js-black);
    letter-spacing: 0.04em;
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
    display: block;
    text-transform: lowercase;
}

.js-hero-products {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(0.35rem, 1vw, 0.85rem);
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.5rem clamp(0.25rem, 1vw, 1rem) 1rem;
    margin: 0;
    min-height: clamp(240px, 32vw, 380px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.js-hero-products::-webkit-scrollbar {
    display: none;
}

.js-arch-item {
    flex: 1 1 0;
    min-width: clamp(88px, 12vw, 200px);
    max-width: 210px;
    position: relative;
    display: block;
    text-decoration: none !important;
    padding-top: 8px;
    transition: var(--js-transition);
}

.js-arch-item:first-child,
.js-arch-item:last-child {
    transform: translateY(6px);
}

.js-arch-item:hover {
    transform: translateY(-4px);
}

.js-arch-item:first-child:hover,
.js-arch-item:last-child:hover {
    transform: translateY(2px);
}

.js-arch-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 8px);
    height: calc(100% - 8px);
    min-height: clamp(220px, 30vw, 360px);
    background: #E8E8E8;
    border-radius: 50% 50% 0 0;
    z-index: 0;
}

.js-arch-frame {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    min-height: clamp(220px, 30vw, 360px);
    border-radius: 50% 50% 0 0;
    overflow: hidden;
    background: var(--js-white);
    aspect-ratio: 2 / 3.2;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.js-arch-item:first-child .js-arch-frame,
.js-arch-item:last-child .js-arch-frame,
.js-arch-item:first-child .js-arch-bg,
.js-arch-item:last-child .js-arch-bg {
    min-height: clamp(250px, 33vw, 380px);
}

.js-arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.js-hero-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.5rem;
}

.js-hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #ccc;
    cursor: pointer;
    transition: var(--js-transition);
}

.js-hero-dot.is-active,
.js-hero-dot:hover {
    background: var(--js-brown);
}

.js-hero-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.js-hero-nav-btn {
    background: transparent;
    border: 1px solid var(--js-border);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--js-black);
    cursor: pointer;
    transition: var(--js-transition);
}

.js-hero-nav-btn:hover {
    border-color: var(--js-brown);
    color: var(--js-brown);
}

/* ── Product Grid Section ── */
.js-section {
    padding: 2.5rem 0;
    background: var(--js-white);
}

.js-section-heading {
    font-family: var(--js-font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--js-black);
    margin-bottom: 1.5rem;
}

.js-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
}

@media (min-width: 768px) {
    .js-product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem 1.25rem;
    }
}

.js-product-card {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.js-product-card-image {
    position: relative;
    border: 1px solid var(--js-border);
    background: var(--js-white);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 0.65rem;
}

.js-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.js-product-card:hover .js-product-card-image img {
    transform: scale(1.03);
}

.js-sale-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--js-tan-light);
    color: var(--js-black);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    letter-spacing: 0.04em;
    z-index: 2;
}

.js-product-card-title {
    font-size: 12px;
    font-weight: 400;
    color: var(--js-black);
    margin: 0 0 0.35rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.js-product-card-price {
    font-size: 12px;
    color: var(--js-black);
}

.js-price-original {
    text-decoration: line-through;
    color: #888;
    margin-right: 0.35rem;
}

.js-price-sale {
    font-weight: 700;
}

.js-select-size {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: underline;
    text-underline-offset: 2px;
    color: var(--js-black);
}

.js-product-card:hover .js-select-size {
    color: var(--js-brown);
}

/* Shop sidebar layout — 3 columns on desktop */
.js-product-grid--shop {
    grid-template-columns: repeat(2, 1fr);
}

.js-product-grid-empty {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .js-product-grid--shop {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* List view (shop page toggle) */
.js-product-grid.list-view {
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.js-product-grid.list-view .js-product-card {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0 1rem;
}

.js-product-grid.list-view .js-product-card-image {
    width: 140px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.js-product-grid.list-view .js-product-card-title,
.js-product-grid.list-view .js-product-card-price,
.js-product-grid.list-view .js-select-size {
    flex: 1 1 calc(100% - 156px);
}

.js-product-grid.list-view .js-product-card-title {
    margin-top: 0.25rem;
}

@media (min-width: 576px) {
    .js-product-grid.list-view .js-product-card-image {
        width: 180px;
    }

    .js-product-grid.list-view .js-product-card-title,
    .js-product-grid.list-view .js-product-card-price,
    .js-product-grid.list-view .js-select-size {
        flex: 1 1 calc(100% - 196px);
    }
}

.js-btn-view-all {
    display: inline-block;
    margin-top: 2rem;
    background: var(--js-brown);
    color: var(--js-white) !important;
    border: none;
    padding: 0.65rem 2.5rem;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none !important;
    transition: var(--js-transition);
}

.js-btn-view-all:hover {
    background: var(--js-brown-dark);
    color: var(--js-white) !important;
}

.js-view-all-wrap {
    text-align: center;
}

/* ── Mid-page Promo ── */
.js-mid-promo {
    padding: 3rem 0;
    background: var(--js-white);
}

.js-mid-promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 992px) {
    .js-mid-promo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.js-promo-url {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--js-black);
    margin-bottom: 0.75rem;
    display: block;
}

.js-promo-eyebrow {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--js-tan);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.js-promo-title {
    font-family: var(--js-font-body);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    color: var(--js-black);
    margin-bottom: 0.5rem;
}

.js-promo-tagline {
    font-size: 14px;
    color: #555;
    margin-bottom: 1.25rem;
}

.js-promo-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.js-promo-badge {
    display: inline-block;
    background: var(--js-black);
    color: var(--js-white);
    font-size: 12px;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 999px;
}

.js-promo-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 13px;
    color: #444;
}

.js-promo-list li {
    margin-bottom: 0.35rem;
}

.js-btn-shop-now {
    display: inline-block;
    background: var(--js-black);
    color: var(--js-white) !important;
    border: none;
    padding: 0.7rem 2rem;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none !important;
    transition: var(--js-transition);
}

.js-btn-shop-now:hover {
    background: var(--js-brown);
    color: var(--js-white) !important;
}

.js-promo-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
}

.js-promo-image-col {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border: 1px solid var(--js-border);
    background: var(--js-bg-soft);
}

.js-promo-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Featured Product ── */
.js-featured-section {
    padding: 3rem 0 4rem;
    background: var(--js-white);
    border-top: 1px solid var(--js-border);
}

.js-featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 992px) {
    .js-featured-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.js-featured-image {
    border: 1px solid var(--js-border);
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--js-bg-soft);
}

.js-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.js-featured-category {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
}

.js-featured-category:hover {
    color: var(--js-brown);
}

.js-featured-title {
    font-family: var(--js-font-body);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--js-black);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.js-featured-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 14px;
}

.js-featured-price-row .js-price-original {
    font-size: 14px;
}

.js-featured-price-row .js-price-sale {
    font-size: 16px;
}

.js-featured-sale-tag {
    background: var(--js-tan-light);
    color: var(--js-black);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
}

.js-pack-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    display: block;
}

.js-pack-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.js-pack-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--js-border);
    background: var(--js-white);
    font-size: 10px;
    font-weight: 600;
    color: var(--js-black);
    cursor: pointer;
    transition: var(--js-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.js-pack-btn.is-active,
.js-pack-btn:hover {
    border-color: var(--js-black);
    background: var(--js-black);
    color: var(--js-white);
}

.js-pack-btn--wide {
    width: auto;
    min-width: 42px;
    border-radius: 999px;
    padding: 0 0.85rem;
}

.js-qty-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.js-qty-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.js-qty-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--js-border);
    width: fit-content;
}

.js-qty-input button {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    color: var(--js-black);
    cursor: pointer;
}

.js-qty-input input {
    width: 44px;
    border: none;
    text-align: center;
    font-size: 14px;
    background: transparent;
    -moz-appearance: textfield;
}

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

.js-btn-add-cart {
    display: block;
    width: 100%;
    max-width: 320px;
    background: transparent;
    color: var(--js-black);
    border: 1.5px solid var(--js-black);
    padding: 0.85rem 1.5rem;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--js-transition);
    cursor: pointer;
}

.js-btn-add-cart:hover:not(:disabled) {
    background: var(--js-black);
    color: var(--js-white);
}

.js-btn-add-cart:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.js-featured-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
    font-size: 12px;
}

.js-featured-links a {
    color: var(--js-black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.js-featured-links a:hover {
    color: var(--js-brown);
}

/* ── Footer ── */
body.js-jusson.sc-body .js-footer.pr-footer,
body.js-jusson .js-footer.pr-footer,
.js-footer {
    background: var(--js-brown-dark) !important;
    background-color: var(--js-brown-dark) !important;
    color: var(--js-white) !important;
    margin-top: 0 !important;
    border-top: none !important;
}

.js-footer-newsletter {
    padding: 2.5rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.js-footer-newsletter h3 {
    font-family: var(--js-font-body);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--js-white);
}

.js-footer-newsletter-form {
    display: flex;
    max-width: 420px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.js-footer-newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--js-white);
    padding: 0.65rem 0;
    font-size: 13px;
    outline: none;
}

.js-footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.js-footer-newsletter-form button {
    background: transparent;
    border: none;
    color: var(--js-white);
    padding: 0.65rem 0.5rem;
    cursor: pointer;
    font-size: 1.1rem;
}

.js-footer-main {
    padding: 2.5rem 0;
}

.js-footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .js-footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.js-footer-col h4 {
    font-family: var(--js-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--js-white);
}

.js-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.js-footer-links li {
    margin-bottom: 0.55rem;
}

body.js-jusson.sc-body .js-footer .js-footer-links a,
body.js-jusson .js-footer .js-footer-links a,
.js-footer-links a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 13px;
    text-decoration: none !important;
    transition: var(--js-transition);
}

body.js-jusson.sc-body .js-footer .js-footer-links a::after,
body.js-jusson .js-footer .js-footer-links a::after,
.js-footer-links a::after {
    display: none !important;
}

body.js-jusson.sc-body .js-footer .js-footer-links a:hover,
body.js-jusson .js-footer .js-footer-links a:hover,
.js-footer-links a:hover {
    color: var(--js-white) !important;
}

.js-footer-service-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

.js-footer-service-text a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.js-jusson.sc-body .js-footer .js-footer-bottom,
body.js-jusson .js-footer .js-footer-bottom,
.js-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 1.25rem 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75) !important;
}

body.js-jusson.sc-body .js-footer .js-footer-col h4,
body.js-jusson.sc-body .js-footer .js-footer-newsletter h3,
body.js-jusson.sc-body .js-footer .js-footer-service-text,
body.js-jusson.sc-body .js-footer .js-footer-service-text a {
    color: var(--js-white) !important;
}

.js-header.sc-header-scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Desktop: always show nav row, override Bootstrap collapse + navbar-nav column */
@media (min-width: 992px) {
    .js-header .js-nav-collapse {
        display: flex !important;
        flex-basis: auto;
        flex-grow: 0;
        height: auto !important;
        visibility: visible !important;
        overflow: visible !important;
    }

    .js-header-row2,
    .js-nav-row {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        padding-top: 0.15rem;
        width: 100%;
    }

    .js-header .js-nav-links,
    .js-header .js-header-nav,
    .js-header .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .js-header .js-nav-links .nav-item,
    .js-header .js-header-nav .nav-item {
        display: inline-flex !important;
        width: auto !important;
    }

    .js-header .js-nav-links .nav-link,
    .js-header .js-header-nav .nav-link {
        display: inline-flex !important;
        width: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .js-nav-links,
    .js-header-nav {
        gap: 0 1.1rem;
    }

    .js-nav-links .nav-link,
    .js-header-nav .nav-link {
        font-size: 10px;
        letter-spacing: 0.1em;
    }
}

@media (min-width: 1200px) {
    .js-nav-links,
    .js-header-nav {
        gap: 0 2rem;
    }
}

/* Mobile header */
@media (max-width: 991.98px) {
    .js-header-inner {
        padding-top: 0.75rem;
        padding-bottom: 0.65rem;
    }

    .js-header-actions--desktop {
        display: none !important;
    }

    .js-nav-collapse {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--js-border);
    }

    .js-header-row2,
    .js-nav-row {
        display: block;
    }

    .js-nav-links,
    .js-header-nav {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 0;
        padding: 0;
    }

    .js-nav-links .nav-item,
    .js-header-nav .nav-item {
        display: block;
        width: 100%;
    }

    .js-nav-links .nav-link,
    .js-header-nav .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid var(--js-border);
    }

    .js-nav-links .nav-link::after {
        display: none;
    }

    .js-nav-links .nav-link.active {
        color: var(--js-gold) !important;
    }

    .js-promo-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .js-hero-container {
        width: 100%;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .js-hero-frame {
        border-radius: 18px;
        padding: 1.75rem 1rem 1.5rem;
    }

    .js-hero-title {
        font-size: clamp(1.85rem, 8vw, 2.75rem);
    }

    .js-hero-products {
        justify-content: flex-start;
        gap: 0.5rem;
        min-height: 220px;
        padding-bottom: 0.75rem;
        scroll-snap-type: x mandatory;
    }

    .js-arch-item {
        flex: 0 0 auto;
        min-width: clamp(100px, 28vw, 140px);
        max-width: 140px;
        scroll-snap-align: center;
    }

    .js-arch-item:first-child,
    .js-arch-item:last-child {
        transform: none;
    }

    .js-arch-frame,
    .js-arch-bg {
        min-height: clamp(200px, 52vw, 280px);
    }

    .js-arch-item:first-child .js-arch-frame,
    .js-arch-item:last-child .js-arch-frame,
    .js-arch-item:first-child .js-arch-bg,
    .js-arch-item:last-child .js-arch-bg {
        min-height: clamp(200px, 52vw, 280px);
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .js-arch-item {
        min-width: clamp(100px, 11vw, 160px);
    }

    .js-arch-frame,
    .js-arch-bg {
        min-height: clamp(240px, 28vw, 320px);
    }
}

@media (min-width: 992px) {
    .js-header-actions--mobile {
        display: none !important;
    }

    .js-header-mobile-auth {
        display: none !important;
    }
}

/* Override pulserelax/agaro nav-link underline inside Jusson header */
body.js-jusson .js-header .nav-link::after {
    background: var(--js-gold) !important;
}

body.js-jusson .js-header .nav-link:hover,
body.js-jusson .js-header .nav-link.active {
    color: var(--js-gold) !important;
    background: none !important;
}

body.js-jusson .js-header .nav-link:hover::after {
    transform: scaleX(0);
}

body.js-jusson .js-header .nav-link.active::after {
    width: auto !important;
    transform: scaleX(1);
}

@media (min-width: 992px) {
    body.js-jusson .js-header .nav-link {
        color: var(--js-brown-light) !important;
    }

    body.js-jusson .js-header .nav-link:hover {
        color: var(--js-brown) !important;
    }

    body.js-jusson .js-header .nav-link.active {
        color: var(--js-gold) !important;
    }
}
