@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700;1,800&family=Work+Sans:wght@400;500;600;700&display=swap");

:root {
    --orange: #f26f21;
    --orange-dark: #ed5923;
    --heading: #251913;
    --body: #584238;
    --black: #151515;
    --muted: #6b7280;
    --line: #f3f4f6;
    --soft: #f9fafb;
    --container: 1280px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    color: var(--body);
    background: #fff;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.store-container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 64px;
}

.exchange-bar {
    min-height: 40px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--orange);
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 80px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.store-nav {
    height: 80px;
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 150px;
    align-items: center;
    gap: 24px;
}

.store-logo {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 800;
}

.store-logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.store-logo-symbol {
    position: relative;
    width: 24px;
    height: 17px;
    display: inline-block;
}

.store-logo-symbol::before,
.store-logo-symbol::after {
    position: absolute;
    width: 14px;
    height: 5px;
    content: "";
    background: var(--orange);
    transform: skewX(-28deg);
}

.store-logo-symbol::before {
    top: 1px;
    left: 0;
}

.store-logo-symbol::after {
    top: 10px;
    left: 8px;
}

.store-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.store-menu a {
    transition: color .2s ease;
}

.store-menu a:hover,
.store-menu a:focus-visible {
    color: var(--orange);
}

.store-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.store-action {
    position: relative;
    width: 32px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--heading);
}

.store-action svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count {
    position: absolute;
    top: 0;
    right: -1px;
    width: 15px;
    height: 15px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--orange);
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 7px;
    font-weight: 700;
}

.mobile-menu-toggle,
.mobile-menu-button {
    display: none;
}

.api-warning {
    padding: 12px 0;
    color: #7a4b00;
    background: #fff3cd;
    font-size: 13px;
    text-align: center;
}

/* Hero: Figma node 1:4 */
.home-hero {
    min-height: 600px;
    overflow: hidden;
    background: #fff;
}

.home-hero-grid {
    min-height: 600px;
    padding-top: 80px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 512px;
    align-items: start;
    gap: 24px;
}

.hero-copy {
    min-height: 440px;
    padding-top: 31px;
    padding-bottom: 31px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-kicker {
    padding: 4px 16px;
    color: #fff;
    background: var(--orange);
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 520px;
    margin: 15px 0 0;
    color: var(--heading);
    font-family: "Montserrat", sans-serif;
    font-size: 64px;
    font-style: italic;
    font-weight: 800;
    line-height: 70.4px;
    letter-spacing: -2.5px;
    text-transform: uppercase;
}

.hero-title-main,
.hero-title-accent {
    display: block;
}

.hero-title-accent {
    max-width: 480px;
    color: var(--orange);
}

.hero-copy p {
    max-width: 430px;
    margin-top: 15px;
    color: var(--body);
    font-size: 16px;
    line-height: 24px;
}

.primary-button {
    margin-top: 48px;
    padding: 17px 40px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--orange-dark);
    border: 1px solid var(--orange-dark);
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease;
}

.primary-button:hover {
    color: var(--orange-dark);
    background: #fff;
}

.hero-visual {
    position: relative;
    width: 512px;
    height: 512px;
}

.hero-orange-shape {
    position: absolute;
    top: -80px;
    left: -12px;
    width: 640px;
    height: 672px;
    background: var(--orange);
    clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%, 11% 50%);
}

.hero-image-card {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 512px;
    height: 512px;
    overflow: hidden;
    background: var(--soft);
    box-shadow: 0 25px 25px rgba(0, 0, 0, .15);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Category: Figma node 1:23 */
.category-section {
    padding: 80px 0;
}

.home-section-title {
    margin-bottom: 48px;
    color: var(--heading);
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -.8px;
    text-transform: uppercase;
}

.category-layout {
    height: 600px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.category-right {
    height: 600px;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

.category-small-grid {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.category-card {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: #f1f3f5;
}

.category-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, .70), rgba(0, 0, 0, 0) 58%);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.category-card:hover img {
    transform: scale(1.035);
}

.category-label {
    position: absolute;
    z-index: 2;
    left: 32px;
    bottom: 32px;
    color: #fff;
}

.category-label h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 700;
    line-height: 48px;
    text-transform: uppercase;
}

.category-label span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.category-label b {
    font-size: 16px;
    font-weight: 400;
}

.category-wide::after {
    background: rgba(0, 0, 0, .08);
}

.category-wide .category-label {
    top: 23px;
    right: 64px;
    bottom: auto;
    left: auto;
    color: var(--heading);
}

.category-wide .category-label h3 {
    font-size: 24px;
    line-height: 36px;
}

.category-wide .category-label span {
    margin-top: 7px;
}

.category-small {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--soft);
    border: 1px solid var(--line);
}

.category-small::after {
    display: none;
}

.category-small img {
    height: calc(100% - 34px);
    object-fit: contain;
}

.category-small .category-label {
    position: static;
    margin-top: 16px;
    color: var(--heading);
}

.category-small .category-label h3 {
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 1.2px;
}

/* Promo: Figma node 1:60 */
.promo-strip {
    padding: 64px 0;
    color: #fff;
    background: var(--black);
}

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

.promo-card {
    min-height: 263px;
    padding: 33px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, .1);
}

.promo-orange {
    background: var(--orange-dark);
}

.promo-kicker {
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.promo-orange .promo-kicker {
    color: #fff;
}

.promo-card h3 {
    margin-top: 16px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    text-transform: uppercase;
}

.promo-card p {
    max-width: 290px;
    margin-top: 16px;
    padding-bottom: 12px;
    color: rgba(255, 255, 255, .60);
    font-size: 14px;
    line-height: 20px;
}

.promo-card a {
    margin-top: auto;
    padding-bottom: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    border-bottom: 1px solid var(--orange);
    font-size: 12px;
    line-height: 18px;
}

/* Product sections: Figma nodes 1:95, 1:181, 1:267, 1:346 */
.home-product-section {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 64px 0;
}

.home-product-section + .home-product-section {
    margin-top: 0;
}

.product-section-heading {
    margin: 0 0 40px;
    padding: 0 0 17px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--line);
}

.product-section-heading h2 {
    position: relative;
    margin: 0;
    color: var(--heading);
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -.7px;
    text-transform: uppercase;
}

.product-section-heading h2::after {
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 48px;
    height: 2px;
    content: "";
    background: var(--orange);
}

.product-section-heading a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.home-product-slider {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.home-product-slider .swiper-wrapper {
    height: auto;
    min-height: 0;
    align-items: flex-start;
}

.home-product-slider .swiper-slide {
    height: auto;
    min-height: 0;
}

.product-card {
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 17px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--soft);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--soft);
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform .3s ease;
}

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

.product-badge {
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    color: #fff;
    background: var(--heading);
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    text-transform: uppercase;
}

.product-details {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-meta {
    color: var(--body);
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 1px;
    opacity: .6;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0;
    color: var(--heading);
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.product-card h3 a {
    display: block;
    overflow: hidden;
    color: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-bottom-row {
    padding-top: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-price {
    min-width: 0;
    color: var(--orange);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 22.5px;
    white-space: nowrap;
}

.product-price del {
    margin-left: 6px;
    color: #9ca3af;
    font-size: 11px;
    font-weight: 400;
}


.product-slider-button {
    position: absolute;
    z-index: 10;
    top: 43%;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(21, 21, 21, .92);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    font-family: Arial, sans-serif;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity .2s ease, background .2s ease;
}

.home-product-slider:hover .product-slider-button:not(.swiper-button-disabled),
.product-slider-button:focus-visible {
    opacity: 1;
}

.product-slider-button:hover {
    background: var(--orange);
}

.product-slider-prev {
    left: 8px;
}

.product-slider-next {
    right: 8px;
}

.product-slider-button.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Why choose: Figma node 1:432 */
.why-section {
    margin: 0;
    padding: 96px 0;
    color: #fff;
    background: var(--black);
    text-align: center;
}

.why-section h2 {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 800;
    line-height: 48px;
    text-transform: uppercase;
}

.why-section h2 span {
    color: var(--orange);
}

.why-intro {
    max-width: 672px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, .60);
    font-size: 16px;
    line-height: 24px;
}

.why-grid {
    padding-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.why-grid article {
    min-width: 0;
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    color: var(--orange);
    border: 1px solid var(--orange);
    border-radius: 50%;
    font-size: 25px;
}

.why-grid h3 {
    margin-top: 24px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
}

.why-grid p {
    max-width: 250px;
    margin: 7px auto 0;
    color: rgba(255, 255, 255, .60);
    font-size: 14px;
    line-height: 22.75px;
}

/* Newsletter: Figma node 1:479 */
.newsletter {
    padding: 81px 0;
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.newsletter-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(480px, 576px);
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.newsletter h2 {
    color: var(--heading);
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -1.4px;
    text-transform: uppercase;
}

.newsletter p {
    max-width: 510px;
    margin-top: 8px;
    color: var(--body);
    font-size: 16px;
    line-height: 24px;
}

.subscribe-form {
    display: flex;
}

.subscribe-form input {
    flex: 1;
    min-width: 0;
    height: 61px;
    padding: 19px 25px 20px;
    color: var(--heading);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-right: 0;
    outline: none;
    font-size: 16px;
}

.subscribe-form input:focus {
    border-color: var(--orange);
}

.subscribe-form button {
    min-width: 170px;
    padding: 16.5px 40px 17.5px;
    color: #fff;
    background: var(--orange);
    border: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    cursor: pointer;
}

/* Footer: Figma node 1:492 */
.store-footer {
    padding: 96px 0 48px;
    background: #fff;
}

.footer-grid {
    min-height: 290px;
    padding-bottom: 81px;
    display: grid;
    grid-template-columns: 4fr 2fr 2fr 4fr;
    gap: 64px;
    border-bottom: 1px solid var(--line);
}

.footer-logo {
    margin-bottom: 0;
}

.footer-about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-about .store-logo-image {
    width: 142px;
    height: 142px;
    margin-top: -40px;
    margin-bottom: -31px;
}

.footer-about p,
.store-footer p {
    color: var(--body);
    font-size: 16px;
    line-height: 26px;
}

.footer-about > p {
    max-width: 332px;
}

.footer-contact {
    margin-top: 10px;
}

.store-footer h3 {
    margin-bottom: 40px;
    color: var(--heading);
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.store-footer ul {
    list-style: none;
}

.store-footer li {
    margin-bottom: 16px;
    color: var(--body);
    font-size: 16px;
    line-height: 24px;
}

.store-footer a {
    transition: color .2s ease;
}

.store-footer a:hover {
    color: var(--orange);
}

.facebook-card {
    width: 100%;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--heading);
    background: var(--soft);
    border: 1px solid #e5e7eb;
}

.facebook-logo {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(37, 25, 19, .1);
}

.facebook-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.facebook-copy {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.facebook-copy strong {
    font-size: 12px;
    line-height: 18px;
}

.facebook-copy small {
    color: var(--body);
    font-size: 10px;
    line-height: 15px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.facebook-button {
    padding: 6px 12px;
    color: #fff;
    background: #1877f2;
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    white-space: nowrap;
}

.social-links {
    margin-top: 16px;
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--heading);
    border: 1px solid var(--line);
    font-size: 11px;
    text-transform: uppercase;
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    color: var(--body);
    font-size: 16px;
    line-height: 24px;
    opacity: .6;
}

.footer-bottom div {
    display: flex;
    gap: 32px;
}

.whatsapp-button {
    position: fixed;
    z-index: 95;
    right: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #25d366;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    font-size: 10px;
    font-weight: 800;
}

.simple-page {
    min-height: 60vh;
    padding: 90px 0;
}

.simple-page p {
    margin-top: 12px;
    color: var(--muted);
}

@media (max-width: 1199px) {
    .store-container {
        padding-inline: 40px;
    }

    .store-menu {
        gap: 22px;
        font-size: 12px;
    }

    .home-hero-grid {
        grid-template-columns: minmax(0, 1fr) 450px;
    }

    .hero-copy h1 {
        font-size: 54px;
        line-height: 1.08;
    }

    .hero-visual,
    .hero-image-card {
        width: 450px;
        height: 450px;
    }

    .hero-orange-shape {
        width: 560px;
        height: 590px;
    }

    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 950px) {
    .store-container {
        padding-inline: 28px;
    }

    .store-nav {
        grid-template-columns: 110px 1fr auto;
    }

    .mobile-menu-button {
        width: 32px;
        height: 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
    }

    .mobile-menu-button span {
        width: 22px;
        height: 2px;
        display: block;
        background: var(--heading);
    }

    .store-actions {
        display: none;
    }

    .store-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        padding: 24px 28px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 14px 25px rgba(0, 0, 0, .08);
    }

    .mobile-menu-toggle:checked ~ .store-menu {
        display: flex;
    }

    .home-hero-grid {
        grid-template-columns: minmax(0, 1fr) 390px;
    }

    .hero-copy h1 {
        font-size: 44px;
    }

    .hero-copy p {
        font-size: 14px;
    }

    .hero-visual,
    .hero-image-card {
        width: 390px;
        height: 390px;
    }

    .hero-orange-shape {
        top: -50px;
        width: 480px;
        height: 500px;
    }

    .category-layout,
    .category-right {
        height: 520px;
    }

    .promo-grid {
        gap: 22px;
    }

    .promo-card {
        padding: 26px;
    }

    .why-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-grid {
        row-gap: 48px;
    }

    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-grid {
        row-gap: 56px;
    }
}

@media (max-width: 767px) {
    .exchange-bar {
        min-height: 34px;
    }

    .site-header,
    .store-nav {
        height: 70px;
    }

    .store-menu {
        top: 70px;
    }

    .store-logo-image {
        width: 70px;
        height: 70px;
    }

    .home-hero {
        min-height: 0;
    }

    .home-hero-grid {
        min-height: 0;
        padding-top: 48px;
        padding-bottom: 64px;
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-copy {
        min-height: 0;
        padding: 0;
    }

    .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(42px, 13vw, 58px);
        line-height: 1.02;
    }

    .hero-copy p {
        max-width: 100%;
        font-size: 15px;
    }

    .primary-button {
        margin-top: 32px;
        padding: 14px 28px;
        font-size: 14px;
    }

    .hero-visual {
        width: min(100%, 512px);
        height: auto;
        aspect-ratio: 1 / 1;
        margin-inline: auto;
    }

    .hero-image-card {
        width: 88%;
        height: auto;
        aspect-ratio: 1 / 1;
        left: 2%;
    }

    .hero-orange-shape {
        top: -8%;
        left: 10%;
        width: 105%;
        height: 116%;
    }

    .category-section {
        padding: 64px 0;
    }

    .home-section-title {
        margin-bottom: 32px;
        font-size: 26px;
        line-height: 38px;
    }

    .category-layout {
        height: auto;
        grid-template-columns: 1fr;
    }

    .category-large {
        min-height: 520px;
    }

    .category-right {
        height: auto;
        grid-template-rows: 300px auto;
    }

    .category-small-grid {
        min-height: 280px;
    }

    .category-wide .category-label {
        right: 32px;
    }

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

    .promo-card {
        min-height: 240px;
    }

    .home-product-section {
        padding: 52px 0;
    }

    .product-section-heading {
        margin-bottom: 28px;
    }

    .product-section-heading h2 {
        font-size: 23px;
        line-height: 34px;
    }

    .product-slider-button {
        opacity: 1;
    }

    .why-section {
        padding: 72px 0;
    }

    .why-section h2 {
        font-size: 27px;
        line-height: 40px;
    }

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

    .newsletter {
        padding: 64px 0;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 12px;
    }

    .subscribe-form input {
        border-right: 1px solid #e5e7eb;
    }

    .subscribe-form button {
        min-height: 58px;
    }

    .store-footer {
        padding-top: 72px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding-bottom: 56px;
    }

    .footer-about .store-logo-image {
        margin-top: -32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        font-size: 14px;
    }

    .footer-bottom div {
        flex-wrap: wrap;
        gap: 16px 24px;
    }
}

@media (max-width: 520px) {
    .store-container {
        padding-inline: 18px;
    }

    .hero-kicker {
        font-size: 10px;
        letter-spacing: 1.6px;
    }

    .category-large {
        min-height: 420px;
    }

    .category-right {
        grid-template-rows: 250px auto;
    }

    .category-small-grid {
        grid-template-columns: 1fr;
    }

    .category-small {
        min-height: 280px;
    }

    .category-label {
        left: 22px;
        bottom: 22px;
    }

    .category-label h3 {
        font-size: 26px;
        line-height: 38px;
    }

    .product-card {
        padding: 14px;
    }

    .product-image {
        padding: 20px;
    }

    .newsletter h2 {
        font-size: 24px;
        line-height: 36px;
    }

    .facebook-card {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .facebook-button {
        margin-left: 64px;
    }
}

/* =========================================
   RYZZ SHOP / PRODUCT LISTING PAGE
========================================= */

.shop-hero {
    padding: 58px 0 60px;
    color: #fff;
    background: var(--black);
}

.shop-breadcrumb {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.shop-breadcrumb a {
    transition: color .2s ease;
}

.shop-breadcrumb a:hover {
    color: var(--orange);
}

.shop-hero h1 {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.1px;
    text-transform: uppercase;
}

.shop-hero p {
    max-width: 620px;
    margin-top: 14px;
    color: rgba(255, 255, 255, .62);
    font-size: 15px;
    line-height: 24px;
}

.shop-section {
    padding: 64px 0 96px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
    gap: 40px;
}

.shop-sidebar {
    position: sticky;
    top: 140px;
    z-index: 20;
    background: #fff;
    border: 1px solid var(--line);
}

.shop-sidebar-head {
    padding: 22px 22px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.shop-sidebar-head h2 {
    color: var(--heading);
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    text-transform: uppercase;
}

.shop-sidebar-head button {
    display: none;
    color: var(--heading);
    background: transparent;
    border: 0;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.shop-filter-form {
    padding: 0 22px 24px;
}

.shop-filter-group {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.shop-filter-title {
    margin-bottom: 15px;
    display: block;
    color: var(--heading);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.shop-search-box {
    position: relative;
}

.shop-search-box input,
.shop-price-grid input,
.shop-select,
.shop-sort-form select {
    width: 100%;
    height: 44px;
    color: var(--body);
    background: #fff;
    border: 1px solid #e5e7eb;
    outline: 0;
    font-family: "Work Sans", sans-serif;
    font-size: 13px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.shop-search-box input:focus,
.shop-price-grid input:focus,
.shop-select:focus,
.shop-sort-form select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242, 111, 33, .10);
}

.shop-search-box input {
    padding: 0 38px 0 13px;
}

.shop-search-box span {
    position: absolute;
    top: 50%;
    right: 13px;
    color: var(--orange);
    font-size: 18px;
    transform: translateY(-50%);
    pointer-events: none;
}

.shop-filter-option,
.shop-check-option {
    min-height: 30px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--body);
    font-size: 13px;
    line-height: 20px;
    cursor: pointer;
}

.shop-filter-option + .shop-filter-option,
.shop-check-option + .shop-check-option {
    margin-top: 7px;
}

.shop-filter-option input,
.shop-check-option input {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    accent-color: var(--orange);
}

.shop-filter-option span,
.shop-check-option span {
    min-width: 0;
    flex: 1;
}

.shop-filter-option small {
    flex: 0 0 auto;
    color: #9ca3af;
    font-size: 11px;
}

.shop-select {
    padding: 0 12px;
}

.shop-price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.shop-price-grid input {
    min-width: 0;
    padding: 0 11px;
}

.shop-filter-actions {
    padding-top: 24px;
    display: grid;
    gap: 10px;
}

.shop-apply-button,
.shop-reset-button {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}

.shop-apply-button {
    color: #fff;
    background: var(--orange);
    border: 1px solid var(--orange);
}

.shop-reset-button {
    color: var(--heading);
    background: #fff;
    border: 1px solid #e5e7eb;
}

.shop-content {
    min-width: 0;
}

.shop-toolbar {
    min-height: 52px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--line);
}

.shop-result-count {
    color: var(--body);
    font-size: 13px;
    line-height: 20px;
}

.shop-sort-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-sort-form label {
    flex: 0 0 auto;
    color: var(--heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.shop-sort-form select {
    width: 190px;
    padding: 0 12px;
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 24px;
}

.shop-product-grid .product-card {
    height: 100%;
}

.shop-pagination {
    margin-top: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-page-link {
    min-width: 42px;
    height: 42px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--heading);
    background: #fff;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    font-weight: 600;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.shop-page-link:hover,
.shop-page-link.active {
    color: #fff;
    background: var(--orange);
    border-color: var(--orange);
}

.shop-page-direction {
    min-width: 102px;
}

.shop-empty-state {
    min-height: 460px;
    padding: 70px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--soft);
    border: 1px solid var(--line);
}

.shop-empty-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    color: var(--orange);
    border: 1px solid var(--orange);
    border-radius: 50%;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.shop-empty-state h2 {
    color: var(--heading);
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    line-height: 39px;
    text-transform: uppercase;
}

.shop-empty-state p {
    margin-top: 8px;
    color: var(--body);
    font-size: 14px;
}

.shop-empty-state .primary-button {
    margin-top: 24px;
}

.shop-error {
    padding: 18px 20px;
    color: #7a4b00;
    background: #fff3cd;
    border: 1px solid #ffe69c;
    font-size: 14px;
}

.shop-mobile-toolbar {
    display: none;
}

.shop-filter-overlay {
    display: none;
}

@media (max-width: 1050px) {
    .shop-layout {
        grid-template-columns: 230px minmax(0, 1fr);
        gap: 28px;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    body.shop-filter-active {
        overflow: hidden;
    }

    .shop-section {
        padding-top: 40px;
    }

    .shop-mobile-toolbar {
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        color: var(--body);
        font-size: 13px;
    }

    .shop-filter-open {
        min-width: 112px;
        min-height: 44px;
        color: #fff;
        background: var(--heading);
        border: 0;
        font-family: "Montserrat", sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .7px;
        text-transform: uppercase;
        cursor: pointer;
    }

    .shop-layout {
        display: block;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1002;
        width: min(360px, 88vw);
        height: 100vh;
        overflow-y: auto;
        transform: translateX(-105%);
        transition: transform .28s ease;
    }

    .shop-sidebar.is-open {
        transform: translateX(0);
    }

    .shop-sidebar-head button {
        display: block;
    }

    .shop-filter-overlay {
        position: fixed;
        inset: 0;
        z-index: 1001;
        display: block;
        background: rgba(0, 0, 0, .48);
        opacity: 0;
        visibility: hidden;
        transition: opacity .28s ease, visibility .28s ease;
    }

    .shop-filter-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 640px) {
    .shop-hero {
        padding: 42px 0 44px;
    }

    .shop-hero h1 {
        font-size: 34px;
        letter-spacing: -.7px;
    }

    .shop-hero p {
        font-size: 14px;
        line-height: 22px;
    }

    .shop-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .shop-sort-form {
        width: 100%;
        justify-content: space-between;
    }

    .shop-sort-form select {
        width: min(220px, 65vw);
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .shop-product-grid .product-card {
        padding: 10px;
        gap: 10px;
    }

    .shop-product-grid .product-image {
        padding: 12px;
    }

    .shop-product-grid .product-meta {
        font-size: 8px;
        line-height: 12px;
    }

    .shop-product-grid .product-card h3 {
        font-size: 12px;
        line-height: 18px;
    }

    .shop-product-grid .product-price {
        font-size: 11px;
        line-height: 17px;
        white-space: normal;
    }

    .shop-product-grid .product-price del {
        margin-left: 3px;
        display: block;
        font-size: 9px;
    }

    .shop-product-grid .product-badge {
        top: 6px;
        left: 6px;
        padding: 3px 5px;
        font-size: 7px;
        line-height: 11px;
    }

    .shop-pagination {
        margin-top: 36px;
    }

    .shop-page-direction {
        min-width: 42px;
        font-size: 0;
    }

    .shop-page-direction::first-letter {
        font-size: 13px;
    }
}

@media (max-width: 390px) {
    .shop-product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .shop-product-grid .product-card {
        padding: 14px;
    }

    .shop-product-grid .product-image {
        padding: 20px;
    }
}


/* =========================================
   SHOP SIZE FILTER
========================================= */
.shop-filter-group .shop-filter-option input[name="sizeId"] + span {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.shop-filter-group .shop-filter-option input[name="sizeId"]:checked + span {
    color: var(--orange);
}


/* =========================================
   PRODUCT DETAILS + SIZE SELECTION
   Safe addition for existing RYZZ styles
========================================= */
.product-page {
    padding: 42px 0 80px;
}

.product-breadcrumb {
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #8b7c74;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 12px;
    line-height: 18px;
}

.product-breadcrumb a:hover {
    color: var(--orange);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(390px, .94fr);
    gap: 64px;
    align-items: start;
}

.product-gallery {
    min-width: 0;
}

.product-main-image {
    position: relative;
    aspect-ratio: 1 / 1;
    padding: 44px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #f9fafb;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail-badge {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    padding: 7px 10px;
    color: #fff;
    background: #251913;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-thumbnails {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.product-thumbnail {
    aspect-ratio: 1 / 1;
    padding: 8px;
    overflow: hidden;
    background: #f9fafb;
    border: 1px solid transparent;
    cursor: pointer;
}

.product-thumbnail.is-active {
    border-color: var(--orange);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info-panel {
    padding-top: 8px;
}

.product-detail-meta {
    color: #8b7c74;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 11px;
    line-height: 17px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.product-info-panel h1 {
    margin: 10px 0 18px;
    color: #251913;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
}

.product-detail-price strong {
    color: var(--orange);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 24px;
    line-height: 34px;
}

.product-detail-price del {
    color: #9b918c;
    font-size: 15px;
}

.is-hidden {
    display: none !important;
}

.product-short-description {
    margin-top: 20px;
    color: #584238;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 24px;
}

.product-size-block {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0ece9;
}

.product-option-heading {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.product-option-heading span {
    color: #251913;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.product-option-heading a {
    color: var(--orange);
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 12px;
    text-decoration: underline;
}

.product-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-size-button {
    min-width: 52px;
    height: 46px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #251913;
    background: #fff;
    border: 1px solid #dcd5d1;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
}

.product-size-button:hover,
.product-size-button.is-selected {
    color: #fff;
    background: #251913;
    border-color: #251913;
}

.product-size-button:disabled {
    color: #b5b0ad;
    background: #f6f5f4;
    border-color: #ebe8e6;
    cursor: not-allowed;
    text-decoration: line-through;
}

.product-size-error,
.product-unavailable-message {
    margin-top: 10px;
    color: #c63c28;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 12px;
}

.product-purchase-row {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 12px;
}

.product-quantity {
    height: 56px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    border: 1px solid #ded8d4;
}

.product-quantity button,
.product-quantity input {
    min-width: 0;
    color: #251913;
    background: #fff;
    border: 0;
    text-align: center;
}

.product-quantity button {
    cursor: pointer;
    font-size: 20px;
}

.product-quantity input {
    width: 100%;
    appearance: textfield;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
}

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

.product-add-button,
.product-buy-button {
    min-height: 56px;
    padding: 0 24px;
    border: 1px solid var(--orange);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .2s ease;
}

.product-add-button {
    color: #fff;
    background: var(--orange);
}

.product-add-button:hover,
.product-add-button.is-added {
    background: #d9551b;
}

.product-buy-button {
    width: 100%;
    margin-top: 12px;
    color: #251913;
    background: #fff;
    border-color: #251913;
}

.product-buy-button:hover {
    color: #fff;
    background: #251913;
}

.product-add-button:disabled,
.product-buy-button:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.product-service-list {
    margin-top: 28px;
    border-top: 1px solid #f0ece9;
}

.product-service-list > div {
    padding: 16px 0;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    border-bottom: 1px solid #f0ece9;
}

.product-service-list strong {
    color: #251913;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 13px;
}

.product-service-list span {
    color: #7d6d65;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 13px;
    line-height: 20px;
}

.product-description {
    margin-top: 24px;
    border-bottom: 1px solid #f0ece9;
}

.product-description summary {
    padding: 16px 0;
    color: #251913;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    cursor: pointer;
}

.product-description > div {
    padding: 0 0 24px;
    color: #584238;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 24px;
    white-space: pre-line;
}

.product-related-section {
    padding: 64px 0 84px;
    background: #fff;
}

.product-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

/* =========================================
   LOCAL CART PAGE
========================================= */
.cart-page {
    min-height: 60vh;
    padding: 42px 0 96px;
}

.cart-page-heading {
    margin-bottom: 32px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0ece9;
}

.cart-page-heading h1 {
    color: #251913;
    font-size: 36px;
    line-height: 46px;
    text-transform: uppercase;
}

.cart-page-heading a {
    color: var(--orange);
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
    align-items: start;
}

.cart-items-panel {
    min-width: 0;
}

.cart-table-head,
.cart-line {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 120px 150px 120px;
    gap: 18px;
    align-items: center;
}

.cart-table-head {
    padding: 0 0 14px;
    color: #8b7c74;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #f0ece9;
}

.cart-line {
    padding: 20px 0;
    border-bottom: 1px solid #f0ece9;
}

.cart-line-product {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.cart-line-image {
    aspect-ratio: 1 / 1;
    padding: 8px;
    display: grid;
    place-items: center;
    background: #f9fafb;
}

.cart-line-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-line-name {
    display: block;
    color: #251913;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

.cart-line-size {
    margin-top: 7px;
    display: block;
    color: #7d6d65;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 12px;
}

.cart-remove-button {
    margin-top: 8px;
    padding: 0;
    color: #c63c28;
    background: transparent;
    border: 0;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 11px;
    text-decoration: underline;
    cursor: pointer;
}

.cart-line-price,
.cart-line-total {
    color: #251913;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.cart-line-total {
    color: var(--orange);
}

.cart-line-quantity {
    height: 42px;
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    border: 1px solid #ded8d4;
}

.cart-line-quantity button,
.cart-line-quantity input {
    min-width: 0;
    background: #fff;
    border: 0;
    text-align: center;
}

.cart-line-quantity button {
    cursor: pointer;
    font-size: 17px;
}

.cart-line-quantity input {
    width: 100%;
    appearance: textfield;
    font-size: 12px;
    font-weight: 600;
}

.cart-summary {
    padding: 28px;
    background: #f9fafb;
    border: 1px solid #f0ece9;
}

.cart-summary h2 {
    margin-bottom: 24px;
    color: #251913;
    font-size: 20px;
    text-transform: uppercase;
}

.cart-summary-row,
.cart-summary-total {
    padding: 13px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #584238;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 13px;
    border-bottom: 1px solid #e8e3df;
}

.cart-summary-row.muted {
    color: #8b7c74;
    font-size: 12px;
}

.cart-summary-total {
    margin-top: 8px;
    color: #251913;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 0;
}

.cart-summary-total strong {
    color: var(--orange);
}

.cart-checkout-button {
    width: 100%;
    min-height: 54px;
    margin-top: 22px;
    color: #fff;
    background: var(--orange);
    border: 1px solid var(--orange);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
}

.cart-summary-note {
    margin-top: 14px;
    color: #8b7c74;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 11px;
    line-height: 18px;
}

.cart-empty-state {
    padding: 80px 20px;
    text-align: center;
    border: 1px solid #f0ece9;
}

.cart-empty-state > span {
    color: var(--orange);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.cart-empty-state h2 {
    margin-top: 12px;
    color: #251913;
    font-size: 28px;
    text-transform: uppercase;
}

.cart-empty-state p {
    margin: 10px 0 24px;
    color: #7d6d65;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 14px;
}

@media (max-width: 950px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .product-info-panel {
        padding-top: 0;
    }

    .product-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        width: min(100%, 520px);
        margin-left: auto;
    }

    .cart-table-head {
        display: none;
    }

    .cart-line {
        grid-template-columns: minmax(0, 1fr) 120px 110px;
    }

    .cart-line-price {
        display: none;
    }
}

@media (max-width: 640px) {
    .product-page,
    .cart-page {
        padding-top: 28px;
    }

    .product-breadcrumb {
        margin-bottom: 22px;
    }

    .product-main-image {
        padding: 24px;
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-info-panel h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .product-detail-price strong {
        font-size: 21px;
    }

    .product-purchase-row {
        grid-template-columns: 116px minmax(0, 1fr);
    }

    .product-service-list > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .product-related-section {
        padding: 46px 0 58px;
    }

    .product-related-grid {
        gap: 12px;
    }

    .cart-page-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .cart-page-heading h1 {
        font-size: 30px;
    }

    .cart-line {
        grid-template-columns: 1fr 105px;
        gap: 12px;
    }

    .cart-line-product {
        grid-column: 1 / -1;
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .cart-line-total {
        text-align: right;
    }

    .cart-summary {
        width: 100%;
        padding: 22px;
    }
}

@media (max-width: 390px) {
    .product-purchase-row {
        grid-template-columns: 1fr;
    }

    .product-quantity {
        width: 132px;
    }

    .product-related-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RYZZ FIGMA EXACT PAGE LAYER
   Product: desktop 1:3346 / mobile 1:1148
   Cart: desktop 1:1400 / mobile 1:1605
   Shop: desktop 1:2101 / mobile 1:1834
   Color controls intentionally removed from all pages.
============================================================ */

.is-hidden { display: none !important; }
.page-without-announcement .site-header { top: 0; }
.mobile-bottom-nav { display: none; }

/* Shared Figma product card */
.figma-product-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    color: var(--heading);
}

.figma-product-card-image-wrap {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
}

.figma-product-card-image {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f9fafb;
}

.figma-product-card-image img {
    width: 100%;
    height: 100%;
    padding: 18px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .25s ease;
}

.figma-product-card:hover .figma-product-card-image img { transform: scale(1.035); }

.figma-product-card-badge {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    padding: 4px 12px;
    color: #fff;
    background: var(--orange);
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.figma-product-card-wishlist {
    position: absolute;
    z-index: 3;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #584238;
    background: rgba(255,255,255,.86);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

.figma-product-card-wishlist svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.figma-product-card-wishlist.is-active { color: var(--orange); }
.figma-product-card-wishlist.is-active svg { fill: currentColor; }

.figma-product-card-copy {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.figma-product-card-meta {
    color: var(--body);
    font-size: 14px;
    line-height: 20px;
}

.figma-product-card h3 {
    margin: 0;
    color: var(--black);
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.figma-product-card-price {
    padding-top: 4px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    color: var(--orange);
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 20px;
}

.figma-product-card-price strong { font-weight: 700; }
.figma-product-card-price del { color: #9ca3af; font-size: 12px; }

/* Product details */
.figma-product-page {
    padding: 48px 0 96px;
    background: #fff;
}

.figma-product-breadcrumb,
.figma-shop-breadcrumb {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--body);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.figma-product-breadcrumb span:last-child { color: var(--heading); }

.figma-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
    gap: 24px;
    padding-bottom: 48px;
}

.figma-product-gallery {
    min-width: 0;
    height: 810px;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
}

.figma-product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    scrollbar-width: none;
}

.figma-product-thumbnails::-webkit-scrollbar { display: none; }

.product-thumbnail {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    padding: 2px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e0c0b2;
    cursor: pointer;
}

.product-thumbnail.is-active { border: 2px solid #a04100; }
.product-thumbnail img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }

.figma-product-main-image {
    position: relative;
    min-width: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 8px;
}

.figma-product-main-image > img {
    width: 100%;
    height: 100%;
    padding: 76px 30px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.figma-product-badge {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    color: #fff;
    background: #a04100;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.figma-product-dots {
    position: absolute;
    bottom: 101px;
    left: 50%;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.figma-product-dot {
    width: 6px;
    height: 6px;
    padding: 0;
    background: #d1d5db;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.figma-product-dot.is-active { background: var(--orange); }

.figma-product-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.figma-product-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.figma-product-kicker {
    color: var(--body);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.figma-product-info h1 {
    margin: 4px 0 0;
    color: var(--heading);
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -.32px;
}

.figma-wishlist-button,
.figma-product-heart-button {
    display: grid;
    place-items: center;
    color: var(--heading);
    background: #fff;
    border: 1px solid #e0c0b2;
    cursor: pointer;
}

.figma-wishlist-button { display: none; width: 40px; height: 40px; border-radius: 50%; }
.figma-product-heart-button { width: 56px; height: 56px; flex: 0 0 56px; }
.figma-wishlist-button svg,
.figma-product-heart-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.figma-wishlist-button.is-active,
.figma-product-heart-button.is-active { color: var(--orange); }
.figma-wishlist-button.is-active svg,
.figma-product-heart-button.is-active svg { fill: currentColor; }

.figma-product-rating {
    margin-top: -20px;
    display: flex;
    align-items: center;
    color: var(--orange);
    font-size: 18px;
    line-height: 19px;
}

.figma-product-rating .is-muted { color: #d1d5db; }
.figma-product-rating small { padding-left: 8px; color: var(--body); font-size: 12px; font-weight: 600; letter-spacing: .6px; }

.figma-product-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    color: var(--orange);
    font-family: "Montserrat", sans-serif;
}

.figma-product-price strong { font-size: 24px; font-weight: 700; line-height: 32px; }
.figma-product-price del { color: #9ca3af; font-size: 14px; }

.figma-product-intro {
    margin: 0;
    padding-bottom: 25px;
    color: var(--body);
    border-bottom: 1px solid #e0c0b2;
    font-size: 16px;
    line-height: 24px;
    white-space: pre-line;
}

.figma-product-size-block { display: flex; flex-direction: column; gap: 12px; }

.figma-product-option-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--heading);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: .6px;
}

.figma-product-option-heading a { color: var(--orange); text-decoration: underline; }

.figma-product-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-size-button {
    min-width: 72px;
    height: 42px;
    padding: 0 18px;
    color: var(--heading);
    background: #fff;
    border: 1px solid #e0c0b2;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    cursor: pointer;
}

.product-size-button.is-selected {
    color: var(--orange);
    background: rgba(242,111,33,.05);
    border: 2px solid var(--orange);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.product-size-button:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.product-size-error, .figma-product-unavailable { color: #b42318; font-size: 13px; }

.figma-product-actions { padding-top: 16px; display: flex; flex-direction: column; gap: 16px; }
.figma-product-primary-row { display: flex; align-items: center; gap: 16px; }

.figma-product-quantity {
    height: 56px;
    display: grid;
    grid-template-columns: 48px 48px 48px;
    border: 1px solid #e0c0b2;
}

.figma-product-quantity button,
.figma-product-quantity input {
    width: 48px;
    height: 54px;
    padding: 0;
    color: var(--heading);
    background: #fff;
    border: 0;
    text-align: center;
}

.figma-product-quantity input { font-weight: 700; appearance: textfield; }
.figma-product-quantity input::-webkit-inner-spin-button { display: none; }

.figma-product-add-button,
.figma-product-buy-button {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.2px;
    cursor: pointer;
}

.figma-product-add-button { flex: 1; background: var(--orange); }
.figma-product-buy-button { width: 100%; background: var(--black); }
.figma-product-add-button:disabled,
.figma-product-buy-button:disabled { opacity: .45; cursor: not-allowed; }
.figma-product-add-button.is-added { background: #198754; }

.figma-product-tabs {
    width: 800px;
    max-width: 100%;
    padding-top: 32px;
}

.figma-product-tab-nav {
    display: flex;
    align-items: flex-end;
    gap: 32px;
    overflow-x: auto;
    border-bottom: 1px solid #e5e5e5;
    scrollbar-width: none;
}

.figma-product-tab-nav::-webkit-scrollbar { display: none; }

.figma-product-tab-nav button {
    flex: 0 0 auto;
    padding: 16px 4px 18px;
    color: #6b7280;
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    font-size: 16px;
    line-height: 26px;
    cursor: pointer;
}

.figma-product-tab-nav button.is-active {
    color: var(--heading);
    border-bottom-color: var(--orange);
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.figma-product-tab-panel {
    display: none;
    max-width: 768px;
    padding: 24px 0;
    color: var(--body);
    font-size: 16px;
    line-height: 26px;
}

.figma-product-tab-panel.is-active { display: block; }
.figma-product-description-text { white-space: pre-line; }

.figma-related-section { padding: 64px 0 96px; background: var(--soft); }
.figma-related-heading { margin-bottom: 32px; display: flex; align-items: flex-end; justify-content: space-between; }
.figma-related-heading h2 { margin: 0; color: var(--heading); font-family: "Montserrat", sans-serif; font-size: 24px; line-height: 32px; letter-spacing: -.6px; }
.figma-related-heading a { color: #a04100; font-size: 12px; font-weight: 600; letter-spacing: .6px; }
.figma-related-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.figma-related-grid .figma-product-card-image { aspect-ratio: 1; height: auto; }
.figma-related-grid .figma-product-card-image img { padding: 25px; }

/* Shopping cart */
.figma-cart-page { padding: 48px 0 96px; background: #fff; }
.figma-cart-container > h1 { margin: 0 0 40px; color: var(--heading); font-family: "Montserrat", sans-serif; font-size: 48px; font-weight: 700; line-height: 56px; letter-spacing: -.96px; }
.figma-cart-layout { display: grid; grid-template-columns: minmax(0, 8fr) minmax(330px, 4fr); gap: 24px; align-items: start; }
.figma-cart-items { display: flex; flex-direction: column; gap: 24px; }

.figma-cart-line {
    min-height: 212px;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 24px;
    padding: 25px;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.figma-cart-line-image { width: 160px; height: 160px; display: grid; place-items: center; overflow: hidden; background: #f9fafb; }
.figma-cart-line-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.figma-cart-line-body { min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
.figma-cart-line-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.figma-cart-line-name { color: var(--heading); font-family: "Montserrat", sans-serif; font-size: 18px; font-weight: 700; line-height: 28px; }
.figma-cart-line-meta { color: var(--body); font-family: "Montserrat", sans-serif; font-size: 12px; line-height: 16px; letter-spacing: 1.2px; text-transform: uppercase; }
.figma-cart-remove { width: 24px; height: 24px; padding: 0; color: #9ca3af; background: transparent; border: 0; cursor: pointer; }
.figma-cart-line-options { padding-top: 16px; display: flex; gap: 32px; }
.figma-cart-line-options > div { display: flex; flex-direction: column; gap: 4px; }
.figma-cart-line-options small { color: #9ca3af; font-family: "Montserrat", sans-serif; font-size: 10px; font-weight: 700; line-height: 15px; }
.figma-cart-line-options span { color: var(--heading); font-family: "Montserrat", sans-serif; font-size: 14px; line-height: 20px; }

.figma-cart-quantity { display: grid; grid-template-columns: 36px 42px 36px; border: 1px solid #e5e7eb; }
.figma-cart-quantity button,
.figma-cart-quantity input { height: 32px; padding: 0; color: var(--heading); background: #fff; border: 0; text-align: center; }
.figma-cart-quantity input { width: 42px; border-right: 1px solid #e5e7eb; border-left: 1px solid #e5e7eb; appearance: textfield; }
.figma-cart-line-total { align-self: flex-end; color: var(--orange); font-family: "Montserrat", sans-serif; font-size: 16px; font-weight: 700; line-height: 24px; }

.figma-cart-benefits { padding-top: 32px; display: flex; gap: 8px; }
.figma-cart-benefits > div { width: 111px; min-height: 106px; padding: 13px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; color: var(--heading); border: 1px solid #e0c0b2; border-radius: 8px; text-align: center; }
.figma-benefit-icon { margin-bottom: 8px; color: #a04100; font-size: 20px; }
.figma-cart-benefits small,
.figma-cart-benefits strong { font-size: 10px; font-weight: 400; line-height: 26px; letter-spacing: .5px; }

.figma-cart-summary { padding: 33px; display: flex; flex-direction: column; gap: 24px; border: 1px solid #e5e7eb; }
.figma-cart-summary h2 { margin: 0; color: var(--heading); font-family: "Montserrat", sans-serif; font-size: 24px; line-height: 32px; letter-spacing: -.6px; }
.figma-cart-summary-list { padding-top: 8px; display: flex; flex-direction: column; gap: 16px; }
.figma-cart-summary-list > div { display: flex; align-items: center; justify-content: space-between; color: var(--body); font-family: "Montserrat", sans-serif; font-size: 16px; line-height: 24px; }
.figma-cart-summary-list strong { color: var(--heading); }

.figma-cart-coupon { padding-top: 17px; border-top: 1px solid var(--line); }
.figma-cart-coupon label { display: block; margin-bottom: 8px; color: var(--body); font-family: "Montserrat", sans-serif; font-size: 10px; font-weight: 700; line-height: 15px; }
.figma-cart-coupon > div { height: 48px; display: grid; grid-template-columns: 1fr auto; }
.figma-cart-coupon input { min-width: 0; padding: 0 17px; color: var(--heading); background: #fff; border: 1px solid #e5e7eb; }
.figma-cart-coupon button { padding: 0 24px; color: #fff; background: var(--heading); border: 0; font-family: "Montserrat", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.2px; }
.figma-cart-coupon small { display: block; padding-top: 7px; color: #b42318; }

.figma-cart-total { padding-top: 26px; display: flex; align-items: center; justify-content: space-between; border-top: 2px solid var(--line); color: var(--heading); font-family: "Montserrat", sans-serif; font-size: 18px; font-weight: 700; line-height: 28px; }
.figma-cart-total strong { color: var(--orange); font-size: 24px; line-height: 32px; }
.figma-cart-checkout { width: 100%; padding: 16px; color: #fff; background: var(--orange); border: 0; font-family: "Montserrat", sans-serif; font-size: 14px; font-weight: 700; line-height: 20px; letter-spacing: 1.4px; cursor: pointer; }
.figma-cart-continue { align-self: center; color: var(--heading); font-family: "Montserrat", sans-serif; font-size: 12px; font-weight: 700; line-height: 16px; text-decoration: underline; }
.figma-cart-empty { padding: 80px 20px; text-align: center; border: 1px solid var(--line); }
.figma-cart-empty h2 { color: var(--heading); font-family: "Montserrat", sans-serif; }
.figma-cart-empty a { display: inline-flex; margin-top: 20px; padding: 14px 28px; color: #fff; background: var(--orange); font-weight: 700; }

/* Shop collection */
.figma-shop-page { padding-bottom: 96px; background: var(--soft); }
.figma-shop-container { padding-top: 24px; }
.figma-shop-breadcrumb { margin-bottom: 24px; text-transform: none; font-size: 14px; font-weight: 400; letter-spacing: 0; }
.figma-shop-breadcrumb strong { font-weight: 600; }

.figma-shop-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #53443d;
}

.figma-shop-banner::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image: linear-gradient(90deg, rgba(37,25,19,.65), rgba(37,25,19,0)), var(--shop-banner-image);
    background-position: center;
    background-size: cover;
}

.figma-shop-banner > div { position: relative; z-index: 1; max-width: 672px; padding: 40px; color: #fff; }
.figma-shop-banner h1 { margin: 0; font-family: "Montserrat", sans-serif; font-size: 48px; line-height: 56px; letter-spacing: -.96px; }
.figma-shop-banner p { max-width: 520px; margin: 16px 0 0; color: #fbe3da; font-size: 16px; line-height: 26px; }
.figma-shop-error { margin-top: 32px; padding: 16px; color: #7a4b00; background: #fff3cd; }
.figma-shop-mobile-actions { display: none; }

.figma-shop-layout { padding-top: 80px; display: grid; grid-template-columns: 256px minmax(0, 1fr); gap: 24px; align-items: start; }
.figma-shop-sidebar { min-width: 0; }
.figma-shop-sidebar-head { display: flex; align-items: center; justify-content: space-between; }
.figma-shop-sidebar-head h2 { margin: 0; color: var(--black); font-family: "Montserrat", sans-serif; font-size: 18px; line-height: 24px; }
.figma-shop-sidebar-head a { color: var(--orange); font-size: 12px; font-weight: 600; }
.figma-shop-sidebar-head button { display: none; }

.figma-shop-filter-form { padding: 25px; display: flex; flex-direction: column; gap: 24px; background: #fff; border: 1px solid var(--line); }
.figma-shop-filter-group { display: flex; flex-direction: column; gap: 12px; }
.figma-shop-filter-title { color: var(--body); font-size: 12px; font-weight: 600; line-height: 16px; letter-spacing: .6px; }
.figma-shop-check { display: flex; align-items: center; gap: 12px; color: var(--black); font-size: 14px; line-height: 20px; cursor: pointer; }
.figma-shop-check input { width: 16px; height: 16px; accent-color: var(--orange); }
.figma-shop-select { width: 100%; height: 42px; padding: 0 12px; color: var(--black); background: #fff; border: 1px solid #d1d5db; }

.figma-shop-size-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.figma-shop-size-grid label { height: 40px; display: grid; place-items: center; color: var(--black); border: 1px solid #e0c0b2; font-size: 13px; font-weight: 600; cursor: pointer; }
.figma-shop-size-grid label.is-selected { color: #fff; background: var(--orange); border-color: var(--orange); }
.figma-shop-size-grid input { position: absolute; opacity: 0; pointer-events: none; }

.figma-shop-price-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 6px; }
.figma-shop-price-grid input { width: 100%; min-width: 0; height: 40px; padding: 0 8px; border: 1px solid #e0c0b2; font-size: 12px; }
.figma-shop-apply { width: 100%; padding: 16px; color: #fff; background: var(--orange); border: 0; font-size: 14px; font-weight: 700; line-height: 21px; letter-spacing: 1.4px; }

.figma-shop-products { min-width: 0; }
.figma-shop-toolbar { margin-bottom: 32px; display: flex; align-items: center; justify-content: space-between; color: var(--body); font-size: 14px; }
.figma-shop-sort-form { display: flex; align-items: center; gap: 16px; }
.figma-shop-sort-form label { color: var(--black); font-family: "Montserrat", sans-serif; font-size: 18px; font-weight: 600; }
.figma-shop-sort-form select { min-width: 180px; padding: 8px 36px 8px 12px; color: var(--orange-dark); background: transparent; border: 0; font-size: 12px; font-weight: 600; letter-spacing: .6px; }
.figma-shop-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 48px 24px; }
.figma-shop-pagination { padding-top: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.figma-shop-pagination a,
.figma-shop-pagination span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--black); border: 1px solid #e0c0b2; font-size: 16px; }
.figma-shop-pagination span.is-active { color: #fff; background: var(--orange); border-color: var(--orange); }
.figma-shop-pagination i { width: 32px; text-align: center; font-style: normal; }
.figma-shop-overlay { display: none; }
.figma-shop-empty { padding: 72px 20px; text-align: center; background: #fff; border: 1px solid var(--line); }
.figma-shop-empty h2 { color: var(--heading); font-family: "Montserrat", sans-serif; }
.figma-shop-empty a { display: inline-flex; margin-top: 20px; padding: 14px 24px; color: #fff; background: var(--orange); font-weight: 700; }

/* Footer alignment for the supplied Figma pages */
.page-without-announcement .store-footer { padding-top: 96px; }
.page-without-announcement .footer-grid { grid-template-columns: 4fr 2fr 2fr 4fr; gap: 64px; padding-bottom: 81px; }
.page-without-announcement .footer-column h3,
.page-without-announcement .footer-social-column h3 { margin-bottom: 40px; letter-spacing: 2.4px; }
.page-without-announcement .footer-column ul { gap: 16px; }

@media (max-width: 1100px) and (min-width: 992px) {
    .figma-product-gallery { height: 700px; }
    .figma-shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .figma-product-card-image { height: 220px; }
}

@media (max-width: 991px) {
    body { padding-bottom: 80px; }
    .page-without-announcement .site-header { height: 64px; }
    .page-without-announcement .store-nav { height: 64px; }
    .page-without-announcement .store-logo-image { width: 78px; height: 64px; }
    .mobile-bottom-nav {
        position: fixed;
        z-index: 250;
        right: 0;
        bottom: 0;
        left: 0;
        height: 80px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
        background: rgba(255,255,255,.92);
        border-top: 1px solid rgba(21,21,21,.08);
        backdrop-filter: blur(6px);
    }

    .mobile-bottom-nav a { height: 80px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: var(--body); }
    .mobile-bottom-nav span { font-size: 18px; line-height: 20px; }
    .mobile-bottom-nav small { font-size: 9px; line-height: 14px; }
    .mobile-bottom-nav .mobile-home-link { width: 56px; height: 56px; justify-self: center; align-self: start; margin-top: -16px; color: #fff; background: var(--orange); border-radius: 16px; box-shadow: 0 10px 15px -3px rgba(160,65,0,.2); }

    .figma-product-page { padding: 0 0 48px; }
    .figma-product-container { padding: 0; }
    .figma-product-breadcrumb { display: none; }
    .figma-product-hero { display: flex; flex-direction: column; gap: 0; padding: 0 0 48px; }
    .figma-product-gallery { width: 100%; height: auto; display: block; }
    .figma-product-thumbnails { display: none; }
    .figma-product-main-image { width: 100%; aspect-ratio: 1; height: auto; border-radius: 0; background: #f9fafb; }
    .figma-product-main-image > img { width: calc(100% - 64px); height: calc(100% - 64px); padding: 0; object-fit: contain; }
    .figma-product-badge { display: none; }
    .figma-product-dots { bottom: 24px; }
    .figma-product-info { gap: 12px; padding: 32px 20px 0; }
    .figma-product-title-row { align-items: flex-start; }
    .figma-wishlist-button { display: grid; }
    .figma-product-kicker { font-size: 12px; }
    .figma-product-info h1 { font-size: 28px; line-height: 35px; letter-spacing: 0; }
    .figma-product-rating { order: 3; margin: 0; }
    .figma-product-price { order: 2; }
    .figma-product-price strong { font-size: 24px; }
    .figma-product-intro { display: none; }
    .figma-product-size-block { margin-top: 20px; gap: 16px; }
    .figma-product-option-heading { font-family: "Montserrat", sans-serif; font-weight: 700; }
    .figma-product-size-options { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
    .product-size-button { min-width: 0; width: 100%; height: 46px; padding: 0 4px; font-family: "Montserrat", sans-serif; font-size: 13px; font-weight: 700; }
    .figma-product-actions { padding-top: 28px; gap: 12px; }
    .figma-product-primary-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
    .figma-product-quantity { width: 146px; grid-template-columns: 48px 48px 48px; }
    .figma-product-add-button,
    .figma-product-buy-button { width: 100%; height: 53px; font-family: "Montserrat", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1.4px; }
    .figma-product-heart-button { display: none; }
    .figma-product-tabs { width: 100%; padding-top: 0; }
    .figma-product-tab-nav { gap: 0; padding-left: 20px; }
    .figma-product-tab-nav button { padding: 16px; font-family: "Montserrat", sans-serif; font-size: 15px; font-weight: 600; line-height: 24px; }
    .figma-product-tab-nav button.is-active { color: #a04100; font-size: 15px; }
    .figma-product-tab-panel { padding: 24px 20px; font-size: 16px; line-height: 26px; }
    .figma-related-section { padding: 64px 20px; }
    .figma-related-section .store-container { padding: 0; }
    .figma-related-heading { margin-bottom: 32px; }
    .figma-related-heading h2 { font-size: 20px; line-height: 28px; letter-spacing: -.5px; }
    .figma-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 16px; }
    .figma-product-card-image { height: 165px; border-radius: 8px 8px 0 0; }
    .figma-product-card-image img { padding: 0; }
    .figma-product-card-copy { padding: 12px; }
    .figma-product-card-meta { font-size: 10px; line-height: 15px; text-transform: uppercase; }
    .figma-product-card h3 { font-family: "Work Sans", sans-serif; font-size: 13px; font-weight: 700; line-height: 19.5px; }
    .figma-product-card-price { font-family: "Work Sans", sans-serif; font-size: 14px; line-height: 21px; }
    .figma-product-card-wishlist { width: 28px; height: 28px; }

    .figma-cart-page { padding: 32px 0 0; }
    .figma-cart-container { padding: 0 20px; }
    .figma-cart-container > h1 { margin-bottom: 20px; font-size: 24px; line-height: 32px; letter-spacing: 0; }
    .figma-cart-layout { display: flex; flex-direction: column; gap: 32px; }
    .figma-cart-items { gap: 16px; }
    .figma-cart-line { min-height: 124px; grid-template-columns: 96px minmax(0, 1fr); gap: 16px; padding: 13px; border-color: #e0c0b2; }
    .figma-cart-line-image { width: 96px; height: 96px; }
    .figma-cart-line-name { font-size: 16px; line-height: 21px; }
    .figma-cart-line-meta { font-size: 10px; line-height: 14px; }
    .figma-cart-line-options { padding-top: 4px; display: block; }
    .figma-cart-line-options > div:first-child { display: block; }
    .figma-cart-line-options > div:first-child small { display: none; }
    .figma-cart-line-options > div:first-child span::before { content: "Size: "; }
    .figma-cart-line-options > div:first-child span { font-family: "Work Sans", sans-serif; font-size: 14px; font-weight: 500; }
    .figma-cart-line-options > div:nth-child(2) { position: absolute; bottom: 0; left: 0; }
    .figma-cart-line-options > div:nth-child(2) small { display: none; }
    .figma-cart-line-body { position: relative; padding-bottom: 40px; }
    .figma-cart-quantity { grid-template-columns: 30px 36px 30px; border-color: #e0c0b2; border-radius: 2px; }
    .figma-cart-quantity button,
    .figma-cart-quantity input { height: 32px; }
    .figma-cart-quantity input { width: 36px; }
    .figma-cart-line-total { position: absolute; right: 0; bottom: 6px; font-size: 16px; line-height: 20px; }
    .figma-cart-benefits { justify-content: center; padding-top: 32px; }
    .figma-cart-benefits > div { width: calc((100% - 16px) / 3); }
    .figma-cart-summary { width: calc(100% + 18px); margin-left: -9px; padding: 33px; }
    .figma-cart-summary h2 { font-size: 24px; }
    .figma-cart-coupon > div { grid-template-columns: minmax(0, 1fr) auto; }
    .figma-cart-coupon button { padding: 0 22px; }
    .figma-cart-page + .store-footer { margin-top: 0; }

    .figma-shop-page { padding-bottom: 0; }
    .figma-shop-container { padding: 0; }
    .figma-shop-breadcrumb { display: none; }
    .figma-shop-banner { height: 300px; }
    .figma-shop-banner::before { background-image: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)), var(--shop-banner-image); }
    .figma-shop-banner > div { padding: 20px; }
    .figma-shop-banner h1 { font-size: 32px; line-height: 40px; letter-spacing: -.32px; }
    .figma-shop-banner p { max-width: 285px; margin-top: 8px; color: rgba(255,255,255,.9); font-size: 14px; line-height: 20px; }
    .figma-shop-mobile-actions { display: grid; grid-template-columns: 1fr 1fr; padding: 16px 20px 17px; background: #fff; border-bottom: 1px solid #e0c0b2; }
    .figma-shop-mobile-actions button { height: 42px; color: var(--black); background: #fff; border: 1px solid #8c7166; font-family: "Montserrat", sans-serif; font-size: 13px; font-weight: 600; }
    .figma-shop-layout { padding: 32px 20px 80px; display: block; }
    .figma-shop-sidebar { position: fixed; z-index: 320; top: 0; bottom: 0; left: 0; width: min(330px, 86vw); padding: 20px; overflow-y: auto; background: #fff; transform: translateX(-105%); transition: transform .25s ease; }
    .figma-shop-sidebar.is-open { transform: translateX(0); }
    .figma-shop-sidebar-head { margin-bottom: 16px; }
    .figma-shop-sidebar-head button { display: block; width: 34px; height: 34px; background: #fff; border: 1px solid #e0c0b2; }
    .figma-shop-filter-form { border: 0; padding: 0; }
    .figma-shop-overlay { position: fixed; z-index: 310; inset: 0; display: block; visibility: hidden; opacity: 0; background: rgba(0,0,0,.45); transition: opacity .25s ease; }
    .figma-shop-overlay.is-open { visibility: visible; opacity: 1; }
    body.shop-filter-active { overflow: hidden; }
    .figma-shop-toolbar { margin: 0 0 24px; }
    .figma-shop-sort-form { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: .01; pointer-events: none; }
    .figma-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 16px; }
    .figma-shop-pagination { padding-top: 80px; gap: 8px; }
    .figma-shop-pagination a,
    .figma-shop-pagination span { width: 40px; height: 40px; }

    .page-without-announcement .store-footer { padding: 20px 0 48px; }
    .page-without-announcement .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; padding: 0 20px 48px; }
    .page-without-announcement .footer-about { grid-column: 1 / -1; }
    .page-without-announcement .footer-social-column { grid-column: 1 / -1; }
    .page-without-announcement .footer-column h3,
    .page-without-announcement .footer-social-column h3 { margin-bottom: 16px; letter-spacing: .6px; }
    .page-without-announcement .footer-bottom { padding: 32px 20px 0; flex-direction: column; gap: 24px; align-items: center; text-align: center; }
    .page-without-announcement .footer-bottom > div { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .whatsapp-button { bottom: 94px; }
}

@media (max-width: 430px) {
    .figma-product-size-options { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .figma-related-section { padding-right: 20px; padding-left: 20px; }
    .figma-cart-line-name { font-size: 14px; line-height: 18px; }
    .figma-cart-line-meta { max-width: 150px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .figma-cart-summary { padding: 24px 16px; }
    .figma-cart-total strong { font-size: 21px; }
    .figma-shop-layout { padding-right: 10px; padding-left: 10px; }
    .figma-shop-toolbar { padding: 0 10px; }
}

/* =========================================================
   RYZZ CART DELIVERY AREA
   Inside Dhaka / Outside Dhaka
   ========================================================= */
.figma-cart-delivery-area {
    min-width: 0;
    margin: 0;
    padding: 17px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 0;
    border-top: 1px solid var(--line);
}

.figma-cart-delivery-area legend {
    width: 100%;
    margin: 0 0 8px;
    padding: 0;
    color: var(--body);
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 15px;
    text-transform: uppercase;
}

.figma-cart-delivery-option {
    position: relative;
    min-height: 58px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    color: var(--heading);
    background: #fff;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: border-color .18s ease, background-color .18s ease;
}

.figma-cart-delivery-option:hover {
    border-color: #e0c0b2;
}

.figma-cart-delivery-option.is-selected {
    background: rgba(242, 111, 33, .04);
    border-color: var(--orange);
}

.figma-cart-delivery-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.figma-cart-delivery-radio {
    position: relative;
    width: 18px;
    height: 18px;
    display: block;
    border: 1px solid #b9a39a;
    border-radius: 50%;
    background: #fff;
}

.figma-cart-delivery-option.is-selected .figma-cart-delivery-radio {
    border-color: var(--orange);
}

.figma-cart-delivery-option.is-selected .figma-cart-delivery-radio::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--orange);
}

.figma-cart-delivery-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.figma-cart-delivery-copy strong {
    color: var(--heading);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
}

.figma-cart-delivery-copy small {
    color: var(--body);
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
}

.figma-cart-delivery-price {
    color: var(--heading);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    white-space: nowrap;
}

.figma-cart-delivery-option.is-selected .figma-cart-delivery-price {
    color: var(--orange);
}

.figma-cart-summary-list-delivery {
    padding-top: 0;
}

@media (max-width: 767px) {
    .figma-cart-delivery-area {
        gap: 8px;
    }

    .figma-cart-delivery-option {
        min-height: 56px;
        padding: 9px 10px;
        grid-template-columns: 18px minmax(0, 1fr) auto;
        gap: 8px;
    }

    .figma-cart-delivery-copy strong {
        font-size: 12px;
        line-height: 17px;
    }

    .figma-cart-delivery-copy small {
        font-size: 10px;
        line-height: 14px;
    }

    .figma-cart-delivery-price {
        font-size: 11px;
    }
}

@media (max-width: 379px) {
    .figma-cart-delivery-option {
        grid-template-columns: 18px minmax(0, 1fr);
    }

    .figma-cart-delivery-price {
        grid-column: 2;
        justify-self: start;
    }
}

/* ============================================================
   RYZZ DYNAMIC CATEGORY SUBMENU
   Desktop dropdown: Figma node 1:2961
   Mobile drawer: Figma node 1:1057
============================================================ */

.site-header,
.store-nav,
.store-desktop-menu {
    overflow: visible;
}

.store-desktop-menu {
    height: 80px;
}

.store-menu-item {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
}

.store-menu-trigger {
    position: relative;
    height: 80px;
    display: inline-flex;
    align-items: center;
    color: var(--heading);
    white-space: nowrap;
}

.store-menu-item.is-active > .store-menu-trigger,
.store-menu-item:hover > .store-menu-trigger,
.store-menu-item:focus-within > .store-menu-trigger {
    color: var(--orange);
}

.store-menu-item.is-active > .store-menu-trigger::after {
    position: absolute;
    right: 0;
    bottom: 16px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--orange);
}

.store-submenu {
    position: absolute;
    z-index: 320;
    top: calc(100% + 1px);
    left: 50%;
    width: max-content;
    min-width: 260px;
    max-width: 320px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    color: var(--heading);
    background: #fff;
    border: 1px solid #e0c0b2;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(37, 25, 19, .10), 0 1px 2px rgba(0, 0, 0, .05);
    transform: translate(-50%, 10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.store-submenu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 14px;
    content: "";
}

.store-menu-item:hover > .store-submenu,
.store-menu-item:focus-within > .store-submenu,
.store-menu-item.is-keyboard-open > .store-submenu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.store-submenu-link {
    min-height: 40px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: var(--heading) !important;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    text-transform: none;
    transition: color .16s ease, background .16s ease;
}

.store-submenu-link:hover,
.store-submenu-link:focus-visible,
.store-submenu-link.is-active {
    color: var(--orange) !important;
    background: #ffeae1;
    outline: none;
}

.store-submenu-icon {
    width: 20px;
    height: 22px;
    display: grid;
    place-items: center;
    color: currentColor;
}

.store-submenu-icon svg {
    width: 20px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-menu-backdrop,
.mobile-menu-drawer {
    display: none;
}

.mobile-menu-is-open {
    overflow: hidden;
}

@media (max-width: 1100px) and (min-width: 992px) {
    .store-desktop-menu {
        gap: 20px;
        font-size: 11px;
    }

    .store-submenu {
        min-width: 240px;
    }
}

@media (max-width: 991px) {
    .store-nav {
        height: 64px;
        grid-template-columns: auto minmax(0, 1fr) auto auto;
        gap: 12px;
    }

    .site-header {
        height: 64px;
    }

    .store-logo {
        grid-column: 1;
    }

    .store-logo-image {
        width: 78px;
        height: 64px;
    }

    .store-desktop-menu {
        display: none !important;
    }

    .store-actions {
        grid-column: 3;
        display: flex !important;
        gap: 8px;
    }

    .store-actions .store-action {
        width: 32px;
        height: 40px;
    }

    .store-actions .store-action:last-child {
        display: none;
    }

    .mobile-menu-button {
        grid-column: 4;
        width: 32px;
        height: 40px;
        padding: 0;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        color: var(--heading);
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .mobile-menu-button span {
        width: 20px;
        height: 1.5px;
        display: block;
        background: currentColor;
    }

    .mobile-menu-backdrop {
        position: fixed;
        z-index: 390;
        inset: 0;
        display: block;
        visibility: hidden;
        opacity: 0;
        background: rgba(37, 25, 19, .40);
        backdrop-filter: blur(2px);
        transition: opacity .2s ease, visibility .2s ease;
    }

    .mobile-menu-backdrop.is-open {
        visibility: visible;
        opacity: 1;
    }

    .mobile-menu-drawer {
        position: fixed;
        z-index: 400;
        top: 0;
        bottom: 0;
        left: 0;
        width: min(331.5px, 86vw);
        max-width: 400px;
        display: flex;
        flex-direction: column;
        color: var(--heading);
        background: #fff;
        box-shadow: 10px 0 30px -15px rgba(0, 0, 0, .18);
        transform: translateX(-105%);
        transition: transform .24s ease;
    }

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

    .mobile-menu-drawer-head {
        min-height: 76px;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #e0c0b2;
    }

    .mobile-menu-logo {
        min-width: 76px;
        height: 64px;
        display: inline-flex;
        align-items: center;
        color: var(--orange);
    }

    .mobile-menu-logo img {
        width: 76px;
        height: 64px;
        object-fit: contain;
    }

    .mobile-menu-drawer-head > button {
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        color: #584238;
        background: transparent;
        border: 0;
        border-radius: 50%;
        font-family: "Work Sans", sans-serif;
        font-size: 32px;
        font-weight: 300;
        line-height: 1;
        cursor: pointer;
    }

    .mobile-menu-scroll {
        min-height: 0;
        padding: 38px 0 48px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .mobile-primary-menu {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-group {
        position: relative;
        margin: 0;
        border-bottom: 1px solid rgba(224, 192, 178, .30);
    }

    .mobile-menu-group.is-active::before {
        position: absolute;
        z-index: 2;
        top: 0;
        bottom: 0;
        left: 0;
        width: 4px;
        content: "";
        background: var(--orange);
    }

    .mobile-menu-group-row {
        min-height: 64px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 56px;
        align-items: center;
        background: #fff;
    }

    .mobile-menu-group.is-active > .mobile-menu-group-row {
        background: #fff1eb;
    }

    .mobile-menu-group-row > a {
        min-width: 0;
        height: 64px;
        padding: 0 24px;
        display: flex;
        align-items: center;
        color: var(--heading);
        font-family: "Montserrat", sans-serif;
        font-size: 15px;
        font-weight: 700;
        line-height: 24px;
    }

    .mobile-menu-group.is-active > .mobile-menu-group-row > a {
        color: var(--orange);
    }

    .mobile-submenu-toggle {
        width: 56px;
        height: 64px;
        display: grid;
        place-items: center;
        color: #8c7166;
        background: transparent;
        border: 0;
        font-family: "Work Sans", sans-serif;
        font-size: 30px;
        font-weight: 300;
        cursor: pointer;
    }

    .mobile-submenu-toggle span {
        display: block;
        transform-origin: center;
        transition: transform .18s ease;
    }

    .mobile-submenu-toggle[aria-expanded="true"] span {
        transform: rotate(90deg);
    }

    .mobile-drawer-submenu {
        padding: 4px 16px 16px 24px;
        display: none;
        flex-direction: column;
        gap: 4px;
        background: #fff;
    }

    .mobile-drawer-submenu.is-open {
        display: flex;
    }

    .mobile-drawer-submenu a {
        min-height: 44px;
        padding: 10px 12px;
        display: grid;
        grid-template-columns: 20px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        color: var(--heading);
        border-radius: 8px;
        font-family: "Montserrat", sans-serif;
        font-size: 13px;
        font-weight: 600;
        line-height: 20px;
    }

    .mobile-drawer-submenu a:hover,
    .mobile-drawer-submenu a:focus-visible,
    .mobile-drawer-submenu a.is-active {
        color: var(--orange);
        background: #ffeae1;
        outline: none;
    }

    .mobile-submenu-icon {
        width: 20px;
        height: 22px;
        display: grid;
        place-items: center;
        color: currentColor;
    }

    .mobile-submenu-icon svg {
        width: 20px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-quick-links {
        padding: 40px 24px 0;
    }

    .mobile-quick-links h2 {
        margin: 0 0 16px 4px;
        color: #584238;
        font-family: "Work Sans", sans-serif;
        font-size: 12px;
        font-weight: 600;
        line-height: 16px;
        letter-spacing: 1.2px;
    }

    .mobile-quick-links > div {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .mobile-quick-links a {
        min-height: 80px;
        padding: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        color: var(--heading);
        background: #fff1eb;
        border-radius: 8px;
        font-family: "Work Sans", sans-serif;
        font-size: 12px;
        letter-spacing: .6px;
        text-align: center;
    }

    .mobile-quick-links a span {
        font-size: 22px;
        line-height: 24px;
    }

    .mobile-quick-links a strong {
        font-weight: 600;
    }
}

@media (min-width: 992px) {
    .mobile-menu-backdrop,
    .mobile-menu-drawer {
        display: none !important;
    }
}
