/* Mumbejja — layout layer (loads after style.css + desktop.css) */

:root {
    --site-width: 1160px;
    --app-width: var(--site-width);
    --banner-h: 140px;
    --header-h: 56px;
    --tabbar-h: 80px;
}
/* Shell */
.site-shell {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: var(--background);
}

.site-main {
    flex: 1 0 auto;
    padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom) + 8px);
}

.site-container {
    width: 100%;
    max-width: var(--site-width);
    margin-left: auto;
    margin-right: auto;
    padding: 24px var(--page-pad) 40px;
    box-sizing: border-box;
}

/* Legacy app header hidden — we use site-header + tabbar */
.app-header,
.product-topbar {
    display: none !important;
}

/* Site header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 600;
    background: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.site-header__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 10px var(--page-pad) 12px;
    min-height: var(--header-h);
}

.site-header__logo {
    flex-shrink: 0;
    order: 1;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.site-header__logo-img {
    height: 44px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.site-header__logo-text {
    max-width: 140px;
    line-height: 1.2;
}

.site-nav {
    display: none;
    align-items: center;
    gap: 4px;
}

.site-nav__link {
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    transition: background var(--ease), color var(--ease);
}

.site-nav__link:hover,
.site-nav__link.is-active {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.site-header__search {
    display: flex;
    flex: 1 1 100%;
    order: 10;
    max-width: none;
    position: relative;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    padding: 0 14px;
    height: 40px;
    margin-left: 0;
}

.site-header__search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--text);
    outline: none;
    min-width: 0;
}

.site-header__search svg {
    color: var(--muted);
    flex-shrink: 0;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    order: 2;
}

.site-header__action {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    transition: background var(--ease);
}

.site-header__action:hover,
.site-header__action.is-active {
    background: rgba(255, 255, 255, 0.24);
}

.site-header__badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #fff;
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header__badge[hidden] {
    display: none !important;
}

.site-header__menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    padding: 0 11px;
}

.site-header__menu-btn span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* Mobile nav drawer */
.mobile-nav[hidden] {
    display: none !important;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 800;
}

.mobile-nav__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100%;
    background: var(--surface-card);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    animation: slideNavIn 220ms ease;
}

@keyframes slideNavIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav__head strong {
    font-size: 16px;
    color: var(--text);
}

.mobile-nav__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-input);
    font-size: 24px;
    line-height: 1;
    color: var(--text);
}

.mobile-nav__link {
    padding: 14px 12px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

.mobile-nav__link:hover {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.mobile-nav__install {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
    color: var(--primary);
    font-weight: 600;
}

body.nav-open {
    overflow: hidden;
}

/* Compact page banners (inner pages) */
.page-banner {
    position: relative;
    height: var(--banner-h);
    min-height: var(--banner-h);
    max-width: var(--site-width);
    margin: 12px auto 0;
    width: calc(100% - var(--page-pad) * 2);
    border-radius: var(--radius-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

.page-banner__photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.page-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(30, 30, 30, 0.72) 0%,
        rgba(94, 158, 154, 0.52) 55%,
        rgba(45, 45, 45, 0.65) 100%
    );
}

.page-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 24px var(--page-pad);
    max-width: 820px;
}

.page-banner__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 11px;
}
.page-banner__breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.page-banner__breadcrumb a:hover {
    text-decoration: underline;
}

.page-banner__sep {
    opacity: 0.6;
}

.page-banner__current {
    color: rgba(255, 255, 255, 0.75);
    max-width: 240px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-banner__title {
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.page-banner__subtitle {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    margin: 0 auto;
}
/* Hide old page heads — replaced by banners */
.page-head:not(.page-head--keep) {
    display: none !important;
}

/* ─── Product page — boutique PDP ─── */
.page-product .cat-banner {
    height: clamp(148px, 28vw, 200px);
}

.page-product .cat-banner__title {
    font-size: clamp(20px, 4.5vw, 32px);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-product .cat-banner__meta {
    font-size: 12px;
}

.page-product .product-page.pdp {
    background: #f7f5f2;
    padding-bottom: calc(24px + var(--tabbar-h) + env(safe-area-inset-bottom));
}

.page-product .pdp__stage {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 16px var(--page-pad) 12px;
}

.page-product .pdp-hero {
    position: relative;
    margin-bottom: 18px;
}

.page-product .pdp-hero__viewport {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.page-product .pdp-hero__chip {
    position: absolute;
    top: 14px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: #1f1f1f;
    border: 0;
    box-shadow: 0 6px 18px rgba(20, 30, 28, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.page-product .pdp-hero__chip--back { left: 14px; }
.page-product .pdp-hero__chip--wish { right: 14px; }

.page-product .pdp-hero__chip:hover {
    transform: scale(1.04);
}

.page-product .pdp-hero__chip--wish.active {
    color: #c0392b;
    background: #fff5f4;
}

.page-product .pdp-hero__chip--wish.active svg {
    fill: currentColor;
}

.page-product .pdp-hero__frame {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(160deg, #f0ebe4, #e7e2db);
    aspect-ratio: 5 / 6;
    max-height: min(36vh, 320px);
    box-shadow: 0 14px 32px rgba(45, 55, 52, 0.09);
    touch-action: pan-y pinch-zoom;
}

.page-product .pdp-hero__frame--multi {
    cursor: grab;
}

.page-product .pdp-hero__frame--multi:active {
    cursor: grabbing;
}

.page-product .pdp-hero__frame > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.page-product .pdp-hero__count {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 3;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(20, 28, 26, 0.62);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
    pointer-events: none;
}

.page-product .pdp-hero__nav {
    display: none;
}

.page-product .pdp-hero__thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(230, 226, 220, 0.9);
    box-shadow: 0 8px 24px rgba(20, 30, 28, 0.08);
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.page-product .pdp-hero__thumbs::-webkit-scrollbar { display: none; }

.page-product .pdp-hero__thumb {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    background: #fff;
    cursor: pointer;
    transition: border-color 180ms ease, transform 180ms ease;
}

.page-product .pdp-hero__thumb.is-active,
.page-product .pdp-hero__thumb:hover {
    border-color: #1f1f1f;
    transform: translateY(-1px);
}

.page-product .pdp-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-product .pdp-hero__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    padding: 2px 0;
}

.page-product .pdp-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: #cfc8bf;
    cursor: pointer;
    transition: width 180ms ease, background 180ms ease, transform 180ms ease;
}

.page-product .pdp-hero__dot:hover {
    background: #a8a097;
    transform: scale(1.08);
}

.page-product .pdp-hero__dot.is-active {
    width: 20px;
    background: #2d5a58;
}

.page-product .pdp-info {
    background: #fff;
    border-radius: 28px;
    padding: 22px 18px 20px;
    box-shadow: 0 10px 32px rgba(45, 55, 52, 0.06);
}

.page-product .pdp-info__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #c62828;
    margin-bottom: 10px;
    text-decoration: none;
}

.page-product .pdp-info__category:hover {
    color: #a61f1f;
}

.page-product .pdp-info__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.page-product .pdp-info__title {
    flex: 1 1 auto;
    min-width: 0;
    font-family: var(--font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    color: #171717;
    letter-spacing: -0.02em;
    margin: 0;
}

.page-product .pdp-info__price-wrap {
    flex-shrink: 0;
    text-align: right;
}

.page-product .pdp-info__price {
    display: block;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #171717;
    font-variant-numeric: tabular-nums;
}

.page-product .pdp-info__was {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    font-weight: 500;
    color: #9a9a9a;
    text-decoration: line-through;
}

.page-product .pdp-info__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.page-product .pdp-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid #e6e2dc;
    background: #faf9f7;
    color: #4a4a4a;
    font-size: 12px;
    font-weight: 600;
}

.page-product .pdp-meta-pill svg {
    flex-shrink: 0;
    color: #2d5a58;
}

.page-product .pdp-meta-pill--sale {
    border-color: #f3d3a8;
    background: #fff8ee;
    color: #9a5b14;
}

.page-product .pdp-meta-pill--sale svg { color: #c47a1a; }

.page-product .pdp-meta-pill--new {
    border-color: #cfe3e1;
    background: #f1f8f7;
    color: #2d5a58;
}

.page-product .pdp-info__option {
    margin-bottom: 16px;
}

.page-product .pdp-info__label {
    font-size: 13px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.page-product .pdp-info__qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.page-product .pdp-info__qty .pdp-info__label {
    margin-bottom: 0;
}

.page-product .pdp-info__qty .qty-pill {
    height: 42px;
    background: #f3f1ed;
    border: 1px solid #e6e2dc;
    border-radius: 999px;
}

.page-product .pdp-info__qty .qty-pill__btn {
    width: 40px;
    height: 42px;
    font-size: 18px;
}

.page-product .pdp-info__qty .qty-pill__val {
    min-width: 28px;
    font-size: 15px;
    font-weight: 700;
}

.page-product .pdp-info__copy {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #ece8e3;
}

.page-product .pdp-info__lead {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.65;
    color: #3a3a3a;
    font-weight: 500;
}

.page-product .pdp-info__lead:last-child {
    margin-bottom: 0;
}

.page-product .pdp-info__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #5c5c5c;
}

.page-product .pdp-bar {
    position: static;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 0 0;
    background: transparent;
    border-top: 1px solid #e6e2dc;
    box-shadow: none;
}

.page-product .pdp-bar__cart {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #d8d3cc;
    background: #fff;
    color: #1f1f1f;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.page-product .pdp-bar__cart:hover:not(:disabled) {
    border-color: #2d5a58;
    color: #2d5a58;
    transform: translateY(-1px);
}

.page-product .pdp-bar__cart:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.page-product .pdp-bar__buy {
    flex: 1 1 auto;
    min-width: 0;
    height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #234846;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(35, 72, 70, 0.32);
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.page-product .pdp-bar__buy .ui-icon {
    background-color: #fff;
    flex-shrink: 0;
}

.page-product .pdp-bar__cart .ui-icon {
    background-color: #1f1f1f;
}

.page-product .pdp-bar__cart:hover:not(:disabled) .ui-icon {
    background-color: #2d5a58;
}

.page-product .pdp-bar__buy:hover {
    background: #1b3836;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(35, 72, 70, 0.38);
}

.page-product .pdp-bar__buy[aria-disabled="true"] {
    opacity: 0.45;
    pointer-events: none;
}

.page-product .product-page__recs {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 20px var(--page-pad) calc(32px + var(--tabbar-h) + env(safe-area-inset-bottom));
}

.page-product .product-rec {
    border-top: 1px solid #e8e4de;
    padding-top: 28px;
    margin-top: 4px;
}

.page-product .product-rec--alt {
    margin-top: 12px;
}

.page-product .product-rec__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding: 0;
}

.page-product .product-rec__head h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #171717;
}

.page-product .product-rec__head a {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-dark);
    white-space: nowrap;
    text-decoration: none;
}

.page-product .product-rec__head a:hover {
    text-decoration: underline;
}

.page-product .product-rec .product-grid {
    padding: 0;
    width: 100%;
}

.page-product .product-rec .shop-card__cta {
    gap: 5px;
    min-width: 0;
}

.page-product .product-rec .shop-card__buy-now {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    padding: 0 6px;
    font-size: 10px;
    gap: 3px;
    white-space: nowrap;
    overflow: hidden;
}

.page-product .product-rec .shop-card__buy-now-label {
    display: inline;
    white-space: nowrap;
}

.page-product .product-rec .shop-card__buy-now-label-mini {
    display: none !important;
}

.page-product .product-rec .shop-card__buy-now .ui-icon {
    width: 11px !important;
    height: 11px !important;
    flex-shrink: 0;
}

.page-product .product-rec .shop-card__cart {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    min-height: 34px;
}

@media (min-width: 640px) {
    .page-product .product-rec .shop-card__buy-now {
        padding: 0 14px;
        font-size: 13px;
        gap: 7px;
    }

    .page-product .product-rec .shop-card__buy-now .ui-icon {
        width: 17px !important;
        height: 17px !important;
    }

    .page-product .product-rec .shop-card__cart {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        min-height: 42px;
    }

    .page-product .product-rec .shop-card__cta {
        gap: 8px;
    }
}

.page-product .page-banner__current {
    max-width: min(90vw, 420px);
}

@media (min-width: 768px) {
    .page-product .product-page__recs {
        padding-bottom: 56px;
    }

    .page-product .cat-banner {
        height: clamp(180px, 22vw, 230px);
    }
}

@media (max-width: 767px) {
    .page-product .pdp-info__title {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .page-product .pdp-info__head {
        justify-content: flex-end;
        margin-bottom: 12px;
    }
}

/* Shop cards — base styles + responsive grid live in style.css */

/* Contact page — editorial boutique composition */
@keyframes contactReveal {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-composition {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background:
        radial-gradient(640px 380px at 92% -8%, rgba(94, 158, 154, 0.14), transparent 62%),
        radial-gradient(520px 320px at -4% 102%, rgba(94, 158, 154, 0.1), transparent 58%),
        linear-gradient(180deg, var(--surface) 0%, var(--background) 48%, #e2e9e8 100%);
    border-bottom: 1px solid rgba(94, 158, 154, 0.12);
}

.contact-composition .site-container {
    padding-top: 28px;
    padding-bottom: 40px;
}

.contact-composition__stage {
    max-width: 920px;
    margin: 0 auto;
}

.contact-composition__brand {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 32px;
}

.contact-composition__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.contact-composition__eyebrow::before,
.contact-composition__eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: currentColor;
    opacity: 0.4;
}

.contact-composition__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 5.5vw, 36px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--text);
    margin-bottom: 12px;
}

.contact-composition__lead {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
}

.contact-composition__main {
    display: grid;
    gap: 28px;
}

.contact-reveal {
    animation: contactReveal 0.55s ease both;
}

.contact-reveal--d1 {
    animation-delay: 0.12s;
}

.contact-reveal--d2 {
    animation-delay: 0.22s;
}

/* Reach panel — stacked lines, no icon cards */
.contact-reach__wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 54px;
    padding: 14px 20px;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: background var(--ease), transform var(--ease);
}

.contact-reach__wa .ui-icon {
    background-color: #fff;
    flex-shrink: 0;
}

.contact-reach__wa-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    text-align: left;
}

.contact-reach__wa-copy strong {
    font-weight: 600;
    font-size: 15px;
}

.contact-reach__wa-copy em {
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.88;
}

.contact-reach__wa:hover {
    background: var(--primary-dark);
}

.contact-reach__wa:active {
    transform: scale(0.99);
}

.contact-reach__details {
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(94, 158, 154, 0.18);
}

.contact-reach__item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: baseline;
    padding: 11px 0;
    border-bottom: 1px solid rgba(221, 229, 228, 0.85);
}

.contact-reach__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-reach__item dt {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-dark);
}

.contact-reach__item dd {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--text);
}

.contact-reach__item a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(94, 158, 154, 0.35);
    text-underline-offset: 3px;
    transition: color var(--ease), text-decoration-color var(--ease);
}

.contact-reach__item a:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary);
}

/* Form panel */
.contact-composition__form {
    padding: 24px 20px;
    background: rgba(250, 252, 251, 0.82);
    border: 1px solid rgba(221, 229, 228, 0.95);
    border-radius: var(--radius-card);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.contact-form__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.contact-form__hint {
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
    margin-bottom: 20px;
}

.page-contact .contact-form {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.page-contact .contact-form__submit {
    width: 100%;
}

.page-contact .contact-layout .site-container {
    padding-top: 0;
}

@media (prefers-reduced-motion: reduce) {
    .contact-reveal {
        animation: none;
    }
}

.home-page {
    max-width: var(--site-width);
    margin: 0 auto;
}

.shop-layout .site-container,
.about-layout .site-container,
.cart-layout .site-container,
.contact-layout .site-container {
    padding-top: 32px;
}

.shop-layout {
    width: 100%;
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0;
}

.shop-layout .cat-circles--shop {
    margin-bottom: 16px;
}

.shop-layout .app-section--products {
    padding-top: 0;
}

.shop-cats {
    padding-top: 28px;
    padding-bottom: 0;
}

.shop-products {
    padding-top: 28px;
}

button.cat-tile {
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.cat-tile--all {
    background: linear-gradient(155deg, var(--primary) 0%, #3d6b61 100%);
}

.cat-tile--all .cat-tile__shade {
    background: linear-gradient(to top, rgba(10, 18, 16, 0.35) 0%, transparent 55%);
}

.cat-tile--active {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary), 0 10px 24px rgba(41, 49, 47, 0.18);
}

.cat-tile--active:hover {
    transform: none;
}

.about-layout,
.cart-layout,
.contact-layout,
.search-layout,
.wishlist-layout {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* Cart page — mobile-first polish */
.page-cart .cart-layout .site-container {
    padding-top: 24px;
}

.page-cart .cart-page:not(.cart-page--empty) {
    --cart-checkout-h: 148px;
    padding-bottom: calc(var(--cart-checkout-h) + env(safe-area-inset-bottom) + 12px);
}

.page-cart .cart-page__items {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.page-cart .cart-page__head {
    padding: 0 var(--page-pad) 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}

.page-cart .cart-list {
    margin-top: 4px;
    padding: 0 var(--page-pad);
}

.page-cart .cart-details {
    margin-top: 16px;
}

.page-cart .cart-checkout__row strong {
    color: var(--primary-dark);
}

.page-cart .cart-checkout__link {
    font-size: 12px;
    margin-top: 8px;
}

@media (min-width: 768px) {
    .page-cart .cart-layout .site-container {
        padding-top: 48px;
    }

    .page-cart .cart-page:not(.cart-page--empty) {
        padding-bottom: 0;
    }

    .page-cart .cart-page__items {
        background: transparent;
        border: 0;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }

    .page-cart .cart-page__head {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 16px;
    }

    .page-cart .cart-list {
        margin-top: 0;
    }
}

.product-grid > .shop-card,
.product-list > .shop-card {
    height: auto !important;
    min-height: 0 !important;
}

.cart-toast {
    padding-bottom: calc(var(--tabbar-h) + 12px + env(safe-area-inset-bottom)) !important;
}

.toast {
    bottom: calc(var(--tabbar-h) + 16px + env(safe-area-inset-bottom)) !important;
}

@media (min-width: 768px) {
    :root {
        --header-h: 72px;
        --site-width: 1200px;
        --app-width: var(--site-width);
        --banner-h: 168px;
        --tabbar-h: 0px;
    }

    .page-product {
        --banner-h: 168px;
    }

    .page-banner {
        width: calc(100% - var(--page-pad) * 2);
        margin-top: 12px;
    }

    .site-header__inner {
        flex-wrap: nowrap;
        gap: 16px;
        padding: 12px var(--page-pad);
    }

    .site-header__logo {
        order: 0;
        margin-right: 32px;
    }

    .site-nav {
        display: flex;
        order: 0;
    }

    .site-header__search {
        flex: 1 1 auto;
        order: 0;
        max-width: 380px;
        height: 44px;
        margin-left: auto;
    }

    .site-header__actions {
        flex-shrink: 0;
        margin-left: 0;
        order: 0;
    }

    .site-header__menu-btn {
        display: none;
    }

    .site-header__logo-img {
        height: 64px;
        max-width: 130px;
    }

    .page-product .product-page.pdp {
        padding-bottom: 48px;
    }

    .page-product .pdp__stage {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
        gap: 36px;
        align-items: stretch;
        padding-top: 28px;
        padding-bottom: 24px;
    }

    .page-product .pdp-hero {
        margin-bottom: 0;
        position: sticky;
        top: calc(var(--header-h) + 20px);
        display: flex;
        flex-direction: column;
        align-self: stretch;
        min-height: 100%;
    }

    .page-product .pdp-hero__viewport {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .page-product .pdp-hero__frame {
        flex: 1 1 auto;
        aspect-ratio: unset;
        max-height: none;
        min-height: 360px;
        border-radius: 28px;
    }

    .page-product .pdp-hero__nav {
        position: absolute;
        top: 50%;
        z-index: 4;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.94);
        color: #1f1f1f;
        box-shadow: 0 8px 22px rgba(20, 30, 28, 0.14);
        cursor: pointer;
        transform: translateY(-50%);
        transition: transform 180ms ease, background 180ms ease, color 180ms ease;
    }

    .page-product .pdp-hero__nav:hover {
        background: #fff;
        color: #2d5a58;
        transform: translateY(-50%) scale(1.04);
    }

    .page-product .pdp-hero__nav--prev { left: 14px; }
    .page-product .pdp-hero__nav--next { right: 14px; }

    .page-product .pdp-hero__thumbs {
        flex-shrink: 0;
        margin-top: 14px;
        padding: 10px;
        border-radius: 18px;
    }

    .page-product .pdp-hero__thumb {
        flex: 0 0 60px;
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }

    .page-product .pdp-info {
        padding: 28px 30px 26px;
        border-radius: 32px;
        position: sticky;
        top: calc(var(--header-h) + 16px);
        display: flex;
        flex-direction: column;
        align-self: stretch;
        min-height: 100%;
    }

    .page-product .pdp-info__title {
        font-size: 30px;
    }

    .page-product .pdp-info__price {
        font-size: 30px;
    }

    .page-product .pdp-bar {
        position: static;
        margin-top: auto;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .page-product .pdp-bar__cart {
        width: 56px;
        height: 56px;
    }

    .page-product .pdp-bar__buy {
        height: 56px;
        font-size: 16px;
    }

    .page-product .size-chip {
        min-width: 48px;
        height: 42px;
        border-radius: 12px;
    }

    .page-product .color-swatch {
        width: 36px;
        height: 36px;
    }

    .contact-composition .site-container {
        padding-top: 40px;
        padding-bottom: 56px;
    }

    .contact-composition__brand {
        margin-bottom: 40px;
    }

    .contact-composition__main {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 36px;
        align-items: start;
    }

    .contact-composition__form {
        padding: 28px 28px 32px;
    }

    .page-contact .contact-form__submit {
        width: auto;
        min-width: 200px;
    }
}

@media (min-width: 1024px) {
    :root {
        --site-width: 1200px;
        --banner-h: 176px;
    }
}

@media (max-width: 767px) {
    :root {
        --banner-h: 132px;
    }

    .page-product {
        --banner-h: 132px;
    }

    .page-banner__subtitle {
        display: none;
    }

    .page-product .pdp__stage {
        padding-top: 10px;
    }

    .page-product .pdp-info__price {
        font-size: 22px;
    }
}

/* ═══════════════════════════════════════════
   Home redesign — boutique hero, categories,
   collection (2026)
   ═══════════════════════════════════════════ */

.home-page {
    padding-bottom: 24px;
}

/* Section heading — centered, editorial */
.home-sec-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 24px;
}

.home-sec-head__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.home-sec-head__eyebrow::before,
.home-sec-head__eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.45;
}

.home-sec-head__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text);
}

.home-sec-head__meta {
    margin-top: 6px;
    font-size: 13px;
    color: var(--muted);
}

/* ─── Boutique hero ─── */
.bq-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background:
        radial-gradient(680px 340px at 88% -10%, rgba(94, 158, 154, 0.16), transparent 65%),
        radial-gradient(520px 300px at -6% 108%, rgba(198, 166, 116, 0.18), transparent 60%),
        linear-gradient(165deg, #FAF6EF 0%, #F1EBDF 100%);
    border-bottom: 1px solid rgba(198, 166, 116, 0.22);
    overflow: hidden;
}

.bq-hero__inner {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 36px var(--page-pad) 44px;
    display: grid;
    gap: 32px;
    align-items: center;
}

.bq-hero__copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bq-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(94, 158, 154, 0.35);
    background: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--primary-dark);
    margin-bottom: 18px;
}

.bq-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(30px, 7.5vw, 52px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: #29312F;
    max-width: 13em;
    margin-bottom: 14px;
}

.bq-hero__text {
    font-size: 15px;
    line-height: 1.65;
    color: #5f6663;
    max-width: 430px;
    margin-bottom: 24px;
}

.bq-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.bq-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
}

.bq-hero__btn--solid {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 10px 24px rgba(78, 136, 134, 0.32);
}

.bq-hero__btn--solid:hover {
    background: #3f716f;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(78, 136, 134, 0.38);
}

.bq-hero__btn--ghost {
    background: transparent;
    color: #3c4441;
    border: 1.5px solid rgba(60, 68, 65, 0.35);
}

.bq-hero__btn--ghost:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.6);
}

.bq-hero__perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    font-size: 12px;
    font-weight: 500;
    color: #6d7471;
}

.bq-hero__perks li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bq-hero__perks svg {
    color: var(--primary-dark);
    flex-shrink: 0;
}

.bq-hero__media {
    position: relative;
    justify-self: center;
    width: min(320px, 82vw);
}

.bq-hero__frame {
    border: 1px solid rgba(198, 166, 116, 0.55);
    border-radius: 999px 999px 26px 26px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
}

.bq-hero__frame img {
    width: 100%;
    aspect-ratio: 4 / 4.9;
    object-fit: cover;
    object-position: center top;
    border-radius: 999px 999px 18px 18px;
    display: block;
}

.bq-hero__chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(41, 49, 47, 0.16);
    font-size: 11.5px;
    font-weight: 600;
    color: #3c4441;
    white-space: nowrap;
}

.bq-hero__chip svg {
    color: var(--primary-dark);
}

.bq-hero__chip--top {
    top: 12%;
    left: -8%;
}

.bq-hero__chip--bottom {
    bottom: 9%;
    right: -6%;
}

/* ─── Category tiles ─── */
.home-cats {
    padding: 40px var(--page-pad) 8px;
    scroll-margin-top: calc(var(--header-h) + 8px);
}

.home-cats__scroller {
    position: relative;
}

.home-cats__track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 8px;
}

.home-cats__track::-webkit-scrollbar {
    display: none;
}

.home-cats__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--surface-card);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: 0 6px 18px rgba(41, 49, 47, 0.16);
    transition: background var(--ease), color var(--ease), opacity var(--ease);
}

.home-cats__nav:hover {
    background: var(--primary);
    color: #fff;
}

.home-cats__nav[hidden] {
    display: none !important;
}

.home-cats__nav--prev { left: -8px; }
.home-cats__nav--next { right: -8px; }

.cat-tile {
    position: relative;
    display: block;
    flex: 0 0 46%;
    max-width: 46%;
    scroll-snap-align: start;
    aspect-ratio: 4 / 4.6;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(160deg, #ece7de, #ddd6c8);
    box-shadow: 0 2px 10px rgba(41, 49, 47, 0.07);
    transition: transform var(--ease), box-shadow var(--ease);
}

.cat-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(41, 49, 47, 0.16);
}

.cat-tile__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cat-tile__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 26, 25, 0.72) 0%, rgba(20, 26, 25, 0.12) 46%, transparent 70%);
}

.cat-tile__info {
    position: absolute;
    left: 14px;
    right: 44px;
    bottom: 12px;
    color: #fff;
}

.cat-tile__info strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.cat-tile__info span {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
}

.cat-tile__arrow {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    backdrop-filter: blur(4px);
    transition: background var(--ease), transform var(--ease);
}

.cat-tile:hover .cat-tile__arrow {
    background: var(--primary);
    transform: translateX(2px);
}

/* ─── Category page ─── */
.cat-banner {
    position: relative;
    height: 180px;
    width: 100%;
    margin: 0;
    border-radius: 0;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
}

.cat-banner__photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    pointer-events: none;
}

.cat-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(16, 22, 21, 0.78) 0%, rgba(16, 22, 21, 0.28) 55%, rgba(16, 22, 21, 0.05) 100%);
}

.cat-banner__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--site-width);
    margin: 0 auto;
    color: #fff;
    padding: 20px var(--page-pad);
}

.cat-banner__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 5vw, 38px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.cat-banner__meta {
    margin-top: 3px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.category-layout {
    max-width: var(--site-width);
    margin: 0 auto;
}

.home-products.category-products {
    padding-top: 24px;
}

.home-products.category-suggested {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

@media (min-width: 880px) {
    .cat-banner {
        height: 230px;
    }

    .cat-banner__content {
        padding: 26px var(--page-pad);
    }

    .home-products.category-products {
        padding-top: 32px;
    }

    .home-products.category-suggested {
        margin-top: 56px;
        padding-top: 44px;
    }
}

/* ─── Collection section ─── */
.home-products {
    padding: 36px var(--page-pad) 8px;
}

.home-products__more {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.home-products__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 48px 20px;
    text-align: center;
    color: var(--muted);
    background: var(--surface-card);
    border: 1px dashed var(--border);
    border-radius: var(--radius-card);
}

.home-testimonials {
    padding-top: 36px;
}

@media (min-width: 880px) {
    .bq-hero__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 48px;
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .bq-hero__copy {
        text-align: left;
        align-items: flex-start;
    }

    .bq-hero__actions,
    .bq-hero__perks {
        justify-content: flex-start;
    }

    .bq-hero__media {
        width: min(400px, 100%);
    }

    .home-sec-head {
        margin-bottom: 32px;
    }

    .home-sec-head__title {
        font-size: 34px;
    }

    .home-cats {
        padding-top: 64px;
    }

    .home-cats__track {
        gap: 18px;
    }

    .home-cats__nav {
        display: flex;
    }

    .cat-tile {
        flex: 0 0 calc((100% - 3 * 18px) / 4);
        max-width: calc((100% - 3 * 18px) / 4);
        aspect-ratio: 4 / 4.4;
        border-radius: 20px;
    }

    .cat-tile__info {
        left: 18px;
        bottom: 16px;
    }

    .cat-tile__info strong {
        font-size: 19px;
    }

    .cat-tile__arrow {
        right: 16px;
        bottom: 16px;
        width: 34px;
        height: 34px;
    }

    .home-products {
        padding-top: 56px;
    }

    .home-testimonials {
        padding-top: 56px;
    }
}

@media (min-width: 480px) and (max-width: 879px) {
    .cat-tile {
        flex: 0 0 31%;
        max-width: 31%;
    }
}

@media (min-width: 768px) {
    .site-main {
        padding-bottom: 48px;
    }

    .toast {
        bottom: 24px !important;
    }

    .cart-toast {
        padding-bottom: 24px !important;
    }

    .shop-layout .site-container,
    .about-layout .site-container,
    .cart-layout .site-container,
    .contact-layout .site-container {
        padding-top: 48px;
    }

    .shop-layout .category-cards,
    .shop-layout .app-section--products,
    .shop-layout .app-section,
    .shop-layout .filter-bar {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
}
