:root {
    --bg: #f4ece2;
    --card: #fff8f2;
    --brand: #8a5b3c;
    --accent-soft: #c89674;
    --ink: #3d2b24;
    --muted: #725446;
    --pastel-bg: #efe0d2;
    --pastel-bd: #d8bda8;
    --accent: var(--brand);
    --vio-100: #ead2c0;
    --vio-200: #ddbea7;
}

body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
}

.top-ticker {
    background: linear-gradient(90deg, var(--brand), var(--accent-soft));
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
}

.top-ticker__viewport {
    overflow: hidden;
}

.top-ticker__track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    will-change: transform;
}

.top-ticker__chunk {
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-ticker__chunk::before {
    content: '•';
    font-size: 0.7rem;
    opacity: 0.8;
}

.top-ticker__chunk:first-child::before {
    display: none;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    color: var(--brand);
}

.navbar {
    background: var(--card);
    border-bottom: 1px solid var(--pastel-bd);
}

.navbar .nav-link {
    color: var(--ink) !important;
    font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--brand) !important;
}

.dropdown-menu {
    border: 1px solid var(--pastel-bd);
    border-radius: 14px;
    padding: 0.4rem;
    background: var(--card);
    box-shadow: 0 16px 32px rgba(61, 43, 36, 0.12);
    min-width: 240px;
    margin-top: 0.4rem;
}

.dropdown-item {
    border-radius: 10px;
    color: var(--muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.75rem;
}

.dropdown-item i,
.dropdown-item svg {
    width: 16px;
    height: 16px;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--pastel-bg);
    color: var(--brand);
}

.btn-222-primary,
.btn-222-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.55rem 1.4rem;
    font-size: 0.82rem;
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease, border-color 0.2s ease;
}

.btn-222-primary.btn-sm,
.btn-222-outline.btn-sm {
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
}

.btn-222-primary {
    background: linear-gradient(130deg, #b06b41, #7a3e24);
    color: #fff;
    border: 0;
    box-shadow: 0 12px 28px rgba(122, 62, 36, 0.35);
}

.btn-222-primary:hover,
.btn-222-primary:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(122, 62, 36, 0.45);
    filter: brightness(1.04);
    color: #fff;
}

.btn-222-primary:focus-visible {
    outline: 3px solid rgba(176, 107, 65, 0.3);
    outline-offset: 2px;
}

.btn-222-outline {
    background: rgba(255, 255, 255, 0.82);
    border: 2px solid rgba(122, 62, 36, 0.32);
    color: #6a3b21;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.btn-222-outline:hover,
.btn-222-outline:focus-visible {
    border-color: rgba(122, 62, 36, 0.6);
    color: #7a3e24;
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.95);
}

.btn-222-outline:focus-visible {
    outline: 3px solid rgba(122, 62, 36, 0.22);
    outline-offset: 2px;
}

.featured-cat-card {
    position: relative;
    display: block;
    border-radius: 28px;
    overflow: hidden;
    min-height: 320px;
    box-shadow: 0 25px 60px rgba(61, 43, 36, 0.18);
}

.featured-cat-card img,
.featured-cat-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-cat-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pastel-bg);
    color: var(--muted);
}

.featured-cat-card__overlay {
    position: absolute;
    inset: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,0.75) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.featured-cat-card__overlay h3 {
    color: #fff;
    margin-bottom: 0.4rem;
}

.featured-cat-card .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.featured-brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(138, 91, 60, 0.2);
    border-radius: 16px;
    padding: 0.8rem 0.7rem;
    min-height: 130px;
    text-align: center;
    transition: transform 0.16s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.featured-brand-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.featured-brand-card span {
    font-weight: 700;
    font-size: 0.85rem;
    color: #6e4b3b;
}

.featured-brand-card:hover {
    transform: translateY(-2px);
    border-color: rgba(138, 91, 60, 0.35);
    box-shadow: 0 18px 34px rgba(61, 43, 36, 0.12);
}

.home-feed {
    width: 100%;
}

.home-feed__intro {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-feed__intro .section-kicker {
    letter-spacing: 0.28em;
    font-size: clamp(0.68rem, 0.9vw, 0.85rem);
    margin-bottom: 0.5rem;
    color: #b38a6c;
    text-transform: uppercase;
}

.home-feed__intro .section-title {
    font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    margin-bottom: 0.4rem;
    line-height: 1.15;
    color: #7d4d2f;
    font-weight: 600;
}

.home-feed__intro .section-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #5b4438;
    max-width: 640px;
    margin: 0 auto;
}

.home-feed__handle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted);
    font-weight: 600;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.home-feed__handle-name {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    color: var(--ink);
}

.home-feed__grid-wrapper {
    width: 100%;
}

.home-feed__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(0.75rem, 2vw, 1.5rem);
    padding: 0 clamp(1rem, 4vw, 4rem);
}

.home-feed__item img,
.home-feed__placeholder {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    height: clamp(220px, 24vw, 360px);
}

.home-feed__thumb {
    display: block;
    border-radius: 24px;
    overflow: hidden;
}

.home-feed__thumb img {
    width: 100%;
    height: clamp(220px, 24vw, 360px);
    object-fit: cover;
    display: block;
}

.home-feed__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pastel-bg);
    color: var(--muted);
    text-decoration: none;
}

@media (min-width: 992px) {
    .home-feed__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    border-radius: 10px;
    font-weight: 600;
}

.btn-primary:hover {
    filter: brightness(0.96);
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(232, 108, 153, 0.25);
}

.btn-outline-primary {
    background: var(--card);
    border: 1px solid var(--pastel-bd);
    color: var(--brand);
    border-radius: 10px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--pastel-bg);
    color: var(--brand);
}

.btn-success {
    background: var(--accent-soft);
    color: var(--ink);
    border: 0;
    border-radius: 10px;
    font-weight: 600;
}

.btn-success:hover {
    background: var(--pastel-bg);
    color: var(--ink);
}

.btn-outline-secondary {
    background: var(--card);
    border: 1px solid var(--pastel-bd);
    color: var(--muted);
    border-radius: 10px;
    font-weight: 600;
}

.btn-outline-secondary:hover {
    background: var(--pastel-bg);
    color: var(--muted);
}

.brand-circle {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: var(--pastel-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--brand);
    box-shadow: inset 0 0 0 1px rgba(58, 30, 16, 0.08);
}

.table > :not(caption) > * > * {
    padding: 0.45rem 0.5rem;
}

.table thead {
    background: var(--pastel-bg);
    color: var(--brand);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.85rem;
}

.form-label {
    color: var(--muted);
    font-weight: 500;
}

.form-control,
.form-select {
    border-radius: 10px;
    border-color: var(--pastel-bd);
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(232, 108, 153, 0.15);
    border-color: var(--accent);
}

.pastel-pagination .page-link {
    border: 1px solid var(--pastel-bd);
    color: var(--brand);
    background: var(--card);
    border-radius: 10px;
    margin: 0 0.2rem;
    min-width: 38px;
    text-align: center;
}

.pastel-pagination .page-item.active .page-link {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.pastel-pagination .page-link:hover {
    background: var(--pastel-bg);
}

.pastel-filter {
    background: var(--pastel-bg);
    border: 1px solid var(--pastel-bd);
    border-radius: 12px;
}

.pastel-input {
    border-radius: 10px;
    border-color: var(--pastel-bd);
}

.pastel-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(232, 108, 153, 0.15);
    border-color: var(--accent);
}

.pastel-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 10px;
}

.pastel-btn:hover {
    filter: brightness(0.95);
}

.pastel-btn-outline {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--pastel-bd);
    border-radius: 10px;
    font-weight: 600;
}

.pastel-btn-outline:hover {
    background: var(--pastel-bg);
}

.pastel-card {
    background: var(--card);
    border: 1px solid var(--pastel-bd);
    border-radius: 1rem;
}

.text-pastel {
    color: var(--muted);
}

.text-ink {
    color: var(--ink) !important;
}

.text-muted-222 {
    color: var(--muted) !important;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(138, 91, 60, 0.12) 0%, var(--pastel-bg) 45%, var(--card) 100%);
}

.card-rounded-18 {
    border-radius: 18px;
}

.input-max-420 {
    max-width: 420px;
}

.badge-222 {
    border: 1px solid var(--pastel-bd);
    color: var(--ink);
    background: #fff;
}

.badge-222-vio {
    border-color: var(--vio-200) !important;
    color: var(--ink) !important;
}

.badge-222-rose {
    border-color: var(--pastel-bd) !important;
    color: var(--brand) !important;
}

.badge-222-lilac {
    border-color: var(--vio-100) !important;
    color: var(--ink) !important;
}

.icon-circle-34 {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--vio-100);
    color: var(--ink);
    display: grid;
    place-items: center;
}

.pastel-img {
    background: var(--pastel-bg);
    border-radius: 12px;
}

.pastel-img-160 {
    height: 160px;
}

.pastel-img-360 {
    height: 360px;
    border-radius: 16px;
}

.thumb-56 {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--pastel-bg);
    object-fit: contain;
    display: block;
}

.input-max-90 {
    max-width: 90px;
}

.col-w-160 {
    width: 160px;
}

.col-w-170 {
    width: 170px;
}

.btn-222-soft {
    background: var(--pastel-bg);
    color: var(--ink);
    font-weight: 600;
    border-radius: 8px;
}

.navbar-222 {
    background: #f8ecf5;
}

.user-pill {
    width: 28px;
    height: 28px;
    background: var(--vio-100);
    color: var(--ink);
    font-weight: 800;
}

.user-name-truncate {
    max-width: 140px;
}

.pp-wrap {
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

@media (max-width: 992px) {
    .grid { grid-template-columns: 1fr; }
}

.table-prod td {
    vertical-align: middle;
    font-size: 0.9rem;
}

.example-wrapper {
    margin: 1em auto;
    max-width: 800px;
    width: 95%;
    font: 18px/1.5 sans-serif;
}

.example-wrapper code {
    background: #f5f5f5;
    padding: 2px 6px;
}

.is-hidden {
    display: none;
}

.toast-222 {
    z-index: 2000;
}

.minw-90 { min-width: 90px; }
.minw-100 { min-width: 100px; }
.minw-120 { min-width: 120px; }
.minw-140 { min-width: 140px; }
.minw-150 { min-width: 150px; }
.minw-160 { min-width: 160px; }
.minw-200 { min-width: 200px; }
.minw-260 { min-width: 260px; }

.maxw-100 { max-width: 100px; }
.w-40 { width: 40px; }
.product-form-img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    background: var(--pastel-bg);
    padding: 5px;
}

.product-img-contain {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background-color: var(--pastel-bg);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.place-items-center {
    display: grid;
    place-items: center;
}

.hero-222 {
    background: linear-gradient(135deg, rgba(138, 91, 60, 0.12), rgba(255, 248, 242, 0.9));
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid var(--pastel-bd);
}

.hero-222__content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-222__copy {
    flex: 1 1 320px;
}

.hero-222__copy h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--brand);
}

.hero-222__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    color: var(--muted);
}

.hero-222__badges {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.hero-222__badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: var(--pastel-bg);
}

.hero-222__preview {
    flex: 0 0 280px;
}

.hero-222__preview-card {
    background: var(--card);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(61, 43, 36, 0.1);
}

.section-title {
    font-size: 1.4rem;
    color: var(--brand);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.collections-222 .collection-card {
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-decoration: none;
    color: var(--ink);
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.collection-card span.btn {
    align-self: flex-start;
    border-color: rgba(255,255,255,0.6);
    color: inherit;
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(61, 43, 36, 0.15);
}

.collection-card--rose {
    background: linear-gradient(135deg, #f8e1d8, #fdf3ee);
}

.collection-card--citrus {
    background: linear-gradient(135deg, #fce5c2, #fff4e4);
}

.collection-card--night {
    background: linear-gradient(135deg, #eadcf4, #f9f0ff);
}

.product-card img {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.products-highlight .product-card {
    height: 100%;
}

.testimonial-card {
    border-radius: 18px;
    background: var(--card);
    padding: 1.5rem;
    border: 1px solid var(--pastel-bd);
    box-shadow: 0 12px 30px rgba(61, 43, 36, 0.08);
}

.testimonial-card__quote {
    font-style: italic;
    color: var(--ink);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.testimonial-card .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--pastel-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--brand);
}

.footer-222 {
    background: #ece0d5;
    color: #4a342c;
    padding: 2.5rem 0 1rem;
    margin-top: 4rem;
}

.footer-222__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-222__brand {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-222__links li {
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-222__links a {
    color: #f4ede5;
    text-decoration: none;
}

.footer-222__links a:hover {
    text-decoration: underline;
}

.footer-222__credit {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(244, 237, 229, 0.8);
}
footer {
    background: var(--pastel-bg);
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--muted);
}

@media (max-width: 576px) {
    .btn-sm {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    input,
    select,
    textarea {
        font-size: 1rem;
        padding: 0.75rem !important;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--card);
    border-bottom: 1px solid var(--pastel-bd);
    box-shadow: 0 8px 18px rgba(61, 43, 36, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0.75rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    flex-wrap: wrap;
}

.site-header__controls,
.site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-header__logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.site-header__logo img {
    height: 34px;
    width: auto;
    display: block;
}

.site-header__session {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-header__greet {
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .site-header__inner {
        padding: 1rem 2.5rem;
        gap: 18px;
        flex-wrap: nowrap;
    }
    .site-header__logo img {
        height: 38px;
    }
}

@media (max-width: 640px) {
    .site-header__inner {
        flex-direction: column;
        align-items: stretch;
    }
    .site-header__logo {
        order: -1;
        justify-content: center;
    }
    .site-header__actions {
        justify-content: space-between;
        width: 100%;
    }
    .site-header__controls {
        justify-content: space-between;
        width: 100%;
    }
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    display: grid;
    place-items: center;
    background: var(--brand);
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 6px 14px rgba(157, 108, 79, 0.18);
}

.icon-btn--soft {
    background: var(--pastel-bg);
    color: var(--brand);
    box-shadow: none;
    border: 1px solid transparent;
}

.icon-btn--soft:hover {
    background: var(--card);
}

.icon-btn:hover {
    background: #7f4d35;
    transform: translateY(-1px);
}

.icon-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.cart-btn {
    position: relative;
}

.cart-badge,
.pill {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: grid;
    place-items: center;
}

.pill {
    position: static;
    margin-left: auto;
}

.show-md.collapse:not(.show) {
    display: none;
}
@media (min-width: 768px) {
    .show-md.collapse {
        display: block;
    }
}

.header-search {
    background: var(--card);
    border-top: 1px solid var(--pastel-bd);
    border-bottom: 1px solid var(--pastel-bd);
}

.header-search__inner {
    padding: 0.75rem 1rem;
}

.header-search__form {
    display: flex;
    gap: 12px;
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto;
}

.header-search__field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid var(--pastel-bd);
    padding: 0.35rem 0.9rem;
    background: var(--pastel-bg);
}

.header-search__field svg {
    width: 18px;
    height: 18px;
    color: var(--brand);
}

.header-search__input {
    flex: 1;
    border: 0;
    background: transparent;
    font-size: 0.95rem;
    color: var(--ink);
}

.header-search__input:focus {
    outline: none;
}

.header-search__submit {
    border-radius: 999px;
    padding: 0.45rem 1.5rem;
    font-weight: 600;
    border: 0;
}

.menu-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    color: var(--ink);
    text-decoration: none;
    background: var(--card);
    border: none;
    box-shadow: 0 8px 20px rgba(61, 43, 36, 0.05);
}

.menu-item:hover {
    background: var(--pastel-bg);
}

.submenu-item {
    display: block;
    padding: 0.55rem 0.9rem;
    color: var(--muted);
    text-decoration: none;
    border-top: 1px dashed var(--pastel-bd);
}

.submenu-item:hover {
    color: var(--ink);
    background: var(--pastel-bg);
}

.menu-accordion .accordion-item {
    border: 0;
    background: transparent;
}

.menu-accordion .accordion-button {
    background: var(--card);
    border-radius: 12px;
    border: none;
    color: var(--ink);
    box-shadow: none;
}

.menu-accordion .accordion-button:focus {
    box-shadow: none;
}

.menu-accordion .accordion-button:not(.collapsed) {
    background: var(--vio-100);
}

.offcanvas {
    background: var(--card);
}

.offcanvas-header {
    border-bottom: 1px solid var(--pastel-bd);
}

.offcanvas-body {
    padding-top: 1.5rem;
}

.login-drawer {
    max-width: 360px;
}

.login-drawer__form .form-control {
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--pastel-bd);
}

.login-drawer__cta {
    border: 1px solid var(--pastel-bd);
    border-radius: 14px;
    padding: 1rem;
    background: var(--pastel-bg);
}

.cart-drawer__header {
    background: var(--pastel-bg);
    border-bottom: 1px solid var(--pastel-bd);
}

.cart-drawer__title {
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--ink);
}

.cart-lines {
    display: grid;
    gap: 12px;
}

.cart-line {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--pastel-bd);
    border-radius: 12px;
    background: var(--card);
}

.cart-line__img img,
.cart-line__imgph {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: var(--pastel-bg);
    object-fit: contain;
    display: block;
}

.cart-line__name {
    font-weight: 600;
    color: var(--ink);
    font-size: 0.92rem;
    margin-bottom: 6px;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--pastel-bd);
    border-radius: 999px;
    overflow: hidden;
    background: var(--card);
}

.cart-qty__btn {
    width: 28px;
    height: 28px;
    border: 0;
    background: var(--vio-100);
    color: var(--ink);
    font-weight: 700;
}

.cart-qty__input {
    width: 34px;
    border: 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--ink);
    background: transparent;
}

.cart-qty--inline .cart-qty__input {
    width: 46px;
}

.cart-remove {
    border: 0;
    background: transparent;
    color: var(--muted);
}

.cart-line__price {
    font-weight: 700;
    color: var(--ink);
    font-size: 0.9rem;
}

.cart-line__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.cart-shiphint {
    margin-top: 12px;
    background: var(--pastel-bg);
    border: 1px dashed var(--pastel-bd);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 0.85rem;
    color: var(--muted);
}

.cart-totals {
    margin: 12px 0;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--pastel-bd);
    background: var(--card);
}

.cart-totals__row {
    display: flex;
    justify-content: space-between;
    color: var(--ink);
    font-weight: 600;
}

.cart-accord__btn {
    width: 100%;
    border: 1px solid var(--pastel-bd);
    background: var(--card);
    border-radius: 12px;
    padding: 0.6rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    margin-top: 8px;
}

.cart-accord__content {
    padding: 0.6rem 0.75rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.cart-toast {
    border: 1px solid var(--pastel-bd);
    border-radius: 14px;
    background: var(--card);
    box-shadow: 0 10px 22px rgba(61, 43, 36, 0.12);
}

.cart-toast__grid {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 12px;
    align-items: center;
}

.cart-toast__img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--pastel-bg);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-toast__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.cart-toast__img.has-image img {
    display: block;
}

.cart-toast__img.is-empty::after {
    content: '';
    width: 26px;
    height: 26px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%239d6c4f' fill='none' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' stroke-width='1.4'/%3E%3Cpath d='M9 11.5l2 2 4-4' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    opacity: 0.55;
}

.cart-toast__name {
    font-weight: 700;
    color: var(--ink);
    font-size: 0.95rem;
}

.cart-toast__meta {
    color: var(--muted);
    font-size: 0.82rem;
}

.cart-toast__ok {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
}

.cart-toast__total {
    font-size: 0.85rem;
    color: var(--ink);
}

.cart-card {
    background: var(--card);
    border-radius: 18px;
}

.cart-card .card-body {
    padding: 1.5rem;
}

.cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    padding: 0 1.5rem 1.5rem;
}

.cart-summary {
    background: linear-gradient(180deg, var(--pastel-bg), var(--card));
    border-radius: 18px;
}

.cart-summary__total {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand);
}

.cart-summary__list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.cart-summary__list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.cart-summary__list svg {
    width: 18px;
    height: 18px;
    color: var(--brand);
}
.product-table {
    border-radius: 18px;
    background: var(--card);
    overflow: hidden;
}

.product-table tbody tr:hover {
    background: rgba(138, 91, 60, 0.04);
}

.product-table .btn-group .btn {
    min-width: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.cart-qty__input::-webkit-inner-spin-button,
.cart-qty__input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-qty__input[type=number] {
    -moz-appearance: textfield;
}

/* === 2026 Redesign Layer === */
:root {
    --surface: #fffdf9;
    --surface-2: #fff5ec;
}

body {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--ink);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    color: var(--brand);
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.section-sub {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.section-title {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    margin-bottom: 0.25rem;
}

.site-header {
    background: rgba(255, 248, 242, 0.92);
    backdrop-filter: blur(8px);
}

.site-header__inner {
    max-width: 1280px;
    gap: 20px;
}

.site-header__logo {
    flex: 0 0 auto;
    justify-content: flex-start;
}

.site-nav {
    align-items: center;
    gap: 1.2rem;
}

.site-nav__link {
    font-weight: 600;
    color: var(--ink);
    background: transparent;
    border: 0;
    padding: 0.35rem 0;
}

.site-nav__link:hover {
    color: var(--brand);
}

.site-nav__menu {
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid var(--pastel-bd);
    box-shadow: 0 18px 36px rgba(61, 43, 36, 0.12);
    min-width: 420px;
}

.site-nav__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.site-nav__item {
    display: grid;
    gap: 0.2rem;
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
    border: 1px solid transparent;
    color: var(--ink);
    background: var(--surface);
}

.site-nav__item:hover {
    border-color: var(--pastel-bd);
    background: var(--pastel-bg);
}

.site-nav__title {
    font-weight: 600;
}

.site-nav__meta {
    font-size: 0.8rem;
    color: var(--muted);
}

.site-search {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex: 1 1 280px;
    max-width: 360px;
}

.site-search__field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--pastel-bd);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    flex: 1;
}

.site-search__field svg {
    width: 18px;
    height: 18px;
    color: var(--brand);
}

.site-search__input {
    border: 0;
    background: transparent;
    width: 100%;
    font-size: 0.9rem;
}

.site-search__input:focus {
    outline: none;
}

.site-search__btn {
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-weight: 600;
}

.hero-222 {
    position: relative;
    background: radial-gradient(1200px 400px at 15% -20%, rgba(138, 91, 60, 0.2), transparent 60%),
        linear-gradient(135deg, rgba(255, 248, 242, 0.9), rgba(239, 224, 210, 0.9));
    border-radius: 30px;
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid var(--pastel-bd);
}

.hero-222__content {
    gap: 2.5rem;
}

.hero-222__media {
    flex: 1 1 240px;
    display: flex;
    justify-content: flex-end;
}

.hero-222__frame {
    background: var(--surface);
    border: 1px solid var(--pastel-bd);
    border-radius: 22px;
    padding: 1.6rem;
    max-width: 280px;
    box-shadow: 0 20px 40px rgba(61, 43, 36, 0.12);
}

.hero-222__chip {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: var(--pastel-bg);
    margin-bottom: 0.75rem;
}

.benefit-card {
    background: var(--surface);
    border: 1px solid var(--pastel-bd);
    border-radius: 18px;
    padding: 1.2rem;
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    box-shadow: 0 12px 24px rgba(61, 43, 36, 0.08);
}

.benefit-card svg {
    width: 28px;
    height: 28px;
    color: var(--brand);
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.benefit-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.page-hero {
    background: var(--surface);
    border: 1px solid var(--pastel-bd);
    border-radius: 20px;
    padding: 1.4rem;
    box-shadow: 0 12px 24px rgba(61, 43, 36, 0.08);
}

.page-hero__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-hero--compact {
    padding: 1rem 1.4rem;
}

.filter-card {
    background: var(--surface-2);
    border-radius: 18px;
}

.product-pill {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.category-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(61, 43, 36, 0.12);
}

.editorial-222 {
    background: linear-gradient(135deg, var(--surface-2), var(--surface));
    border-radius: 24px;
    border: 1px solid var(--pastel-bd);
    padding: 2rem;
}

.editorial-222__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.editorial-222__box {
    background: var(--surface);
    border-radius: 18px;
    padding: 1.4rem;
    border: 1px solid var(--pastel-bd);
}

.newsletter-222__card {
    background: var(--surface);
    border: 1px solid var(--pastel-bd);
    border-radius: 20px;
    padding: 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-222__form {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.newsletter-222__form .form-control {
    min-width: 240px;
    border-radius: 999px;
}

.newsletter-222__form .btn {
    border-radius: 999px;
}

.product-detail__media,
.product-detail__info {
    border-radius: 20px;
}

@media (max-width: 992px) {
    .site-search {
        max-width: none;
        width: 100%;
    }
    .site-nav__menu {
        min-width: 320px;
    }
}

@media (max-width: 768px) {
    .hero-222__media {
        justify-content: flex-start;
    }
    .newsletter-222__form {
        width: 100%;
    }
}

.footer-222 {
    background: #efe2d6;
    color: #4a342c;
}

.footer-222__links a {
    color: #4a342c;
}

.footer-222__credit {
    border-top: 1px solid rgba(74, 52, 44, 0.2);
    color: rgba(74, 52, 44, 0.75);
}

.brand-banners__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
}

.banner-card {
    position: relative;
    min-height: 220px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #d8bda8, #f6e7dc);
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    scroll-snap-align: start;
    border: 1px solid rgba(255,255,255,0.4);
}

.banner-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 15%, rgba(28, 20, 16, 0.65));
    z-index: 0;
}

.banner-card__content {
    position: relative;
    z-index: 1;
}

.banner-card__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    opacity: 0.85;
}

.banner-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.banner-card p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.85);
}

.banner-thumb {
    height: 180px;
    border-radius: 16px 16px 0 0;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--pastel-bd);
}

.banner-thumb--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--muted);
    background: var(--pastel-bg);
}

.banner-thumb--empty svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .brand-banners__track {
        grid-auto-columns: minmax(200px, 85%);
    }
}

.site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.site-header__controls {
    justify-self: start;
}

.site-header__logo {
    justify-self: center;
}

.site-header__actions {
    justify-self: end;
}

.banner-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner-slider__track {
    height: 100%;
}

.banner-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: clamp(2rem, 6vw, 4rem);
    background: linear-gradient(135deg, #d8bda8, #f6e7dc);
    background-size: cover;
    background-position: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    color: #fff;
}

.banner-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.banner-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(28, 20, 16, 0.7));
}

.banner-slide__content {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.banner-slide__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    opacity: 0.85;
}

.banner-slide h2 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 0.6rem;
}

.banner-slide p {
    color: rgba(255,255,255,0.85);
}

.banner-slide--empty {
    background: linear-gradient(135deg, #b59379, #f0dccb);
}

.banner-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.8);
    display: grid;
    place-items: center;
    color: var(--ink);
    z-index: 2;
}

.banner-slider__arrow--prev { left: 24px; }
.banner-slider__arrow--next { right: 24px; }

.favorites-slider {
    position: relative;
}

.favorites-slider__viewport {
    overflow: hidden;
}

.favorites-slider__track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.favorites-card {
    min-width: calc((100% - 96px) / 5);
    background: var(--card);
    border: 1px solid var(--pastel-bd);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 20px 45px rgba(61, 43, 36, 0.08);
}

.favorites-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(61, 43, 36, 0.14);
}

.favorites-card__media {
    display: block;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.favorites-card__img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    background: var(--pastel-bg);
    transition: transform 0.3s ease;
}

.favorites-card__media:hover .favorites-card__img {
    transform: scale(1.03);
}

.favorites-card__img--empty {
    display: grid;
    place-items: center;
    color: var(--muted);
}

.favorites-card__body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.favorites-card__actions {
    margin-top: 0.85rem;
    display: flex;
    gap: 0.6rem;
}

.favorites-card h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--ink);
}

.favorites-slider__arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 10px 20px rgba(61, 43, 36, 0.12);
    display: grid;
    place-items: center;
}

.favorites-slider__arrow--prev { left: -10px; }
.favorites-slider__arrow--next { right: -10px; }

.rituals-222__wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--pastel-bd);
    border-radius: 24px;
    padding: 2rem;
}

.rituals-222__card {
    background: var(--pastel-bg);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid var(--pastel-bd);
}

.brand-card__media {
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pastel-bg);
    border-bottom: 1px solid var(--pastel-bd);
}

.brand-logo {
    width: 100%;
    max-width: 160px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    background: #fff;
    padding: 0.5rem;
}

.brand-logo--empty {
    display: grid;
    place-items: center;
    color: var(--muted);
}

@media (max-width: 1200px) {
    .favorites-card { min-width: calc((100% - 72px) / 4); }
}

@media (max-width: 992px) {
    .favorites-card { min-width: calc((100% - 48px) / 3); }
    .favorites-slider__arrow--prev { left: 0; }
    .favorites-slider__arrow--next { right: 0; }
}

@media (max-width: 768px) {
    .site-header__inner {
        grid-template-columns: 1fr auto 1fr;
        padding: 0.75rem 1rem;
    }
    .banner-slider { height: 80vh; }
    .favorites-card { min-width: 80%; }
}

.full-bleed {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.banner-slider {
    height: 50vh;
    height: 50svh;
}

@media (max-width: 768px) {
    .banner-slider {
        height: 55vh;
        height: 55svh;
    }
}

.site-header {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.site-header__inner {
    max-width: none;
    width: 100%;
    padding: 0.9rem 2.5rem;
}

.favorites-slider {
    padding-left: clamp(1rem, 4vw, 3rem);
    padding-right: clamp(1rem, 4vw, 3rem);
}

.favorites-slider__arrow--prev { left: 12px; }
.favorites-slider__arrow--next { right: 12px; }

@media (max-width: 768px) {
    .site-header__inner {
        padding: 0.75rem 1rem;
    }
}

.rituals-222 {
    display: grid;
    gap: 2.5rem;
}

.ritual-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
}

.ritual-row.is-reverse {
    direction: rtl;
}

.ritual-row.is-reverse > * {
    direction: ltr;
}

.ritual-row__content {
    max-width: 520px;
}

.ritual-row__media {
    display: flex;
    justify-content: center;
}

.ritual-image {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    object-fit: cover;
    background: var(--pastel-bg);
    border: 1px solid var(--pastel-bd);
}

.ritual-image--empty {
    display: grid;
    place-items: center;
    color: var(--muted);
}

.ritual-row .btn {
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-222 {
    background: #f1e4d8;
    color: #4a342c;
    padding: 3rem 0 1.5rem;
}

.footer-222__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-222__brand {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.footer-222__links li {
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-222__links a,
.footer-222__links span {
    color: #4a342c;
    text-decoration: none;
}

.footer-222__links a:hover {
    text-decoration: underline;
}

.footer-222__socials {
    display: flex;
    gap: 0.6rem;
}

.footer-222__socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    color: #4a342c;
    border: 1px solid rgba(74, 52, 44, 0.15);
}

.footer-222__newsletter {
    display: grid;
    gap: 0.6rem;
}

.footer-222__payments {
    border-top: 1px solid rgba(74, 52, 44, 0.15);
    padding-top: 1.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-222__payment-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-222__payment-row span {
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(74, 52, 44, 0.12);
}

.pay-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pay-chip svg {
    width: 16px;
    height: 16px;
}

.footer-222__credit {
    border-top: 1px solid rgba(74, 52, 44, 0.15);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(74, 52, 44, 0.75);
}
