:root {
    --header-bg: #ffffff;
    --body-bg: #f1f1f1;
    --text: #202020;
    --muted: #6d6d6d;
    --accent: #B7252C;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Barlow", sans-serif;
    color: var(--text);
    background: var(--body-bg);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

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

.container {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

.site-header {
    background: var(--header-bg);
}

.top-bar {
    padding: 1rem 0;
}

.top-bar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.social-links,
.header-badges {
    display: flex;
    gap: 0.5rem;
}

.header-badges {
    justify-content: flex-end;
}

.social-links a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 700;
}

.social-links svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    padding: 0;
}

.brand img {
    display: block;
    width: clamp(236px, 20vw, 300px);
    height: auto;
}

.cart-link {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #dfdfdf;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5b5b5b;
}

.cart-link svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.nav-wrap {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    background: var(--header-bg);
    position: relative;
    z-index: 35;
}

.nav-wrap.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: none;
}

.site-header.has-fixed-nav {
    padding-bottom: var(--fixed-nav-space, 0px);
}

.nav-inner {
    position: relative;
}

.menu-toggle {
    display: none;
}

.nav-cart-link {
    display: none;
}

.cart-drawer {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 140;
}

.cart-drawer.is-open {
    pointer-events: auto;
}

.cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cart-panel {
    position: relative;
    width: min(420px, 92vw);
    max-width: 480px;
    height: 100%;
    background: #fff;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.is-open .cart-panel {
    transform: translateX(0);
}

.cart-drawer.is-open .cart-overlay {
    opacity: 1;
}

.cart-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.4rem;
    border-bottom: 1px solid #efefef;
}

.cart-panel__head h2 {
    margin: 0;
    font-size: 1.15rem;
    letter-spacing: 0.01em;
}

.cart-close {
    border: none;
    background: transparent;
    font-size: 1.35rem;
    cursor: pointer;
    color: #444;
    line-height: 1;
}

.cart-panel__body {
    padding: 1.2rem 1.4rem;
    flex: 1 1 auto;
    overflow-y: auto;
}

.cart-empty {
    margin: 0;
    color: var(--muted);
}

.cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0;
    border-bottom: 1px dashed #e5e5e5;
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #ececec;
    background: #fafafa;
    flex: 0 0 auto;
}


.cart-item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.14rem;
    flex: 1 1 auto;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    color: #2f2f2f;
    white-space: nowrap;
}

.cart-qty-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.12rem;
}

.cart-qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.12rem;
}

.cart-qty-btn {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #f7f7f7;
    cursor: pointer;
    font-weight: 700;
    color: #333;
    font-size: 0.85rem;
    line-height: 1;
    transition: background 0.15s ease, transform 0.15s ease;
}

.cart-qty-btn:hover {
    background: #ededed;
}

.cart-qty-btn:active {
    transform: translateY(1px);
}

.cart-qty-value {
    min-width: 18px;
    text-align: center;
    font-weight: 600;
    color: #2f2f2f;
    font-size: 0.9rem;
}

.cart-item-price {
    font-weight: 700;
    color: #d1122b;
    text-align: right;
    min-width: 70px;
}

.cart-item-remove {
    border: none;
    background: transparent;
    color: #999;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.1rem 0.3rem;
    flex: 0 0 auto;
    transition: color 0.18s ease, transform 0.18s ease;
}

.cart-item-remove:hover {
    color: #d1122b;
    transform: scale(1.05);
}

.cart-panel__footer {
    padding: 1rem 1.4rem 1.35rem;
    border-top: 1px solid #efefef;
}

.cart-panel__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.4rem;
    border-top: 1px solid #efefef;
    font-weight: 700;
    font-size: 1.05rem;
    color: #333;
}

.cart-panel__total strong {
    font-size: 1.15rem;
    color: #000;
}

.cart-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.18s ease, background 0.2s ease;
}

.cart-primary-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    fill: currentColor;
}

.cart-primary--whatsapp {
    background: #25d366;
    border: 1px solid #1fb85a;
}

.cart-primary--whatsapp:hover {
    background: #1a9c4c;
    box-shadow: none;
}

.cart-primary--whatsapp:active {
    transform: translateY(0);
    box-shadow: none;
}

.checkout-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.checkout-modal.is-open {
    display: flex;
}

.checkout-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.checkout-dialog {
    position: relative;
    background: #fff;
    width: min(480px, 92vw);
    border-radius: 14px;
    padding: 1.2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    z-index: 1;
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.checkout-head h3 {
    margin: 0;
    font-size: 1.2rem;
}

.checkout-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.checkout-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    margin-top: 0.35rem;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    font: inherit;
    color: #333;
}

.checkout-form textarea {
    min-height: 90px;
}

.checkout-payment {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.checkout-payment label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
}

.checkout-payment input {
    width: auto;
    margin: 0;
}

.checkout-items {
    background: #f9fafb;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 0.75rem;
    margin: 0.2rem 0 0.9rem;
    font-size: 0.95rem;
    color: #333;
}

.checkout-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.35rem;
}

.checkout-items .checkout-empty {
    margin: 0;
    color: #666;
}

.checkout-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.checkout-primary,
.checkout-secondary {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.checkout-primary {
    background: #25d366;
    color: #fff;
}

.checkout-secondary {
    background: #e5e7eb;
    color: #111;
}

@media (max-width: 540px) {
    .checkout-dialog {
        width: 94vw;
        padding: 1rem;
    }

    .checkout-actions {
        grid-template-columns: 1fr;
    }
}

.cart-primary:hover {
    background: #1a9c4c;
    transform: translateY(-1px);
    box-shadow: none;
}

.cart-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.main-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.main-nav > ul > li {
    display: flex;
    align-items: center;
}

.main-nav a,
.dropdown-toggle {
    border: 0;
    background: transparent;
    padding: 1.3rem 0;
    font: inherit;
    font-family: "Montserrat", sans-serif;
    color: #6d6d6d;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-transform: none;
    position: relative;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > .dropdown-toggle:hover {
    color: #4a4a4a;
}

.dropdown-menu li a:hover {
    color: #5d5d5d;
}

.main-nav a::after,
.dropdown-toggle::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.9rem;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s ease;
}

.main-nav > ul > li > a::after {
    width: 100%;
}

.main-nav a:hover::after,
.dropdown-toggle:hover::before,
.has-dropdown.is-open .dropdown-toggle::before {
    transform: scaleX(1);
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 210px;
    background: #fff;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.dropdown-menu li a {
    display: inline-block;
    padding: 0.62rem 0.9rem;
    font-family: "Montserrat", sans-serif;
    font-size: 0.84rem;
    color: #5d5d5d;
    font-weight: 400;
}

.dropdown-menu li a::after {
    left: 0.9rem;
    width: calc(100% - 1.8rem);
    bottom: 0.3rem;
}

.dropdown-toggle::after {
    content: "";
    display: inline-block;
    margin-left: 0.45rem;
    width: 4px;
    height: 4px;
    border-right: 1.5px solid #777;
    border-bottom: 1.5px solid #777;
    vertical-align: middle;
    transform: translateY(-2px) rotate(45deg);
}

.has-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-slider {
    position: relative;
    min-height: 68vh;
    overflow: hidden;
}

.slides {
    position: relative;
    min-height: 68vh;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    transition: opacity 0.65s ease;
}

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

.slide-link {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
}

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

.slider-dots {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 5;
}

.dot {
    width: 14px;
    height: 14px;
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    opacity: 0.95;
    padding: 0;
    display: inline-block;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.dot::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: background 0.35s ease, transform 0.35s ease;
}

.dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0);
    transform: scale(0.75);
    transition: border-color 0.35s ease, transform 0.35s ease;
}

.dot.is-active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.08);
    box-shadow: none;
}

.dot.is-active::before {
    background: #fff;
    transform: scale(1.03);
}

.dot.is-active::after {
    border-color: rgba(255, 255, 255, 0.58);
    transform: scale(1);
}

.dot.is-switching {
    animation: dotSwitchPulse 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes dotSwitchPulse {
    0% {
        transform: scale(0.92);
    }
    45% {
        transform: scale(1.18);
    }
    100% {
        transform: scale(1.08);
    }
}

.about-section {
    background: #efefef;
    padding: 3rem 0 4.2rem;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

.about-inner {
    max-width: var(--max-width);
}

.about-section h2 {
    margin: 0;
    font-size: 2.55rem;
    font-weight: 500;
    color: #2f2f2f;
}

.about-divider {
    width: 26px;
    height: auto;
    margin: 1.05rem auto 1.8rem;
    display: block;
}

.section-divider {
    width: 26px;
    height: auto;
    margin: 1.05rem auto 1.8rem;
    display: block;
}

.about-section p {
    margin: 0 auto 1.75rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.95;
}

.about-section p:last-of-type {
    margin-bottom: 2.15rem;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 40px;
    padding: 0 1.35rem;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 16px rgba(183, 37, 44, 0.22);
}

.about-page-hero {
    padding: 4.2rem 0 3.2rem;
    text-align: center;
    background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
    font-family: "Montserrat", sans-serif;
}

.about-page-inner {
    max-width: var(--max-width);
}

.about-page-hero h1 {
    margin: 0;
    font-size: 2.7rem;
    font-weight: 500;
    color: #2f2f2f;
}

.about-collage {
    margin: 0 auto 1.4rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.about-collage-item {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.about-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-collage-item--large,
.about-collage-item--top,
.about-collage-item--bottom {
    grid-row: auto;
    border-radius: 14px;
}

.about-page-hero p {
    margin: 0 auto 1.55rem;
    max-width: var(--max-width);
    color: #666;
    line-height: 1.9;
}

.about-page-metrics {
    padding: 1.4rem 0 2.2rem;
    background: #efefef;
}

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

.metric-card {
    padding: 1.2rem 1rem;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    font-family: "Montserrat", sans-serif;
}

.metric-card strong {
    display: block;
    font-size: 1.35rem;
    color: #232323;
}

.metric-card span {
    display: block;
    margin-top: 0.3rem;
    color: #696969;
    font-size: 0.86rem;
}

.about-page-story {
    padding: 2.2rem 0 4rem;
    background: #efefef;
}

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

.story-card {
    border-radius: 14px;
    background: #fff;
    padding: 1.6rem 1.5rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    font-family: "Montserrat", sans-serif;
}

.story-card h2 {
    margin: 0 0 0.6rem;
    font-size: 1.55rem;
    color: #2e2e2e;
    font-weight: 600;
}

.story-card p {
    margin: 0;
    color: #666;
    line-height: 1.8;
}

.contact-page-hero {
    padding: 4rem 0 2.3rem;
    text-align: center;
    background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
    font-family: "Montserrat", sans-serif;
}

.contact-page-inner {
    max-width: 860px;
}

.contact-page-hero h1 {
    margin: 0;
    font-size: 2.55rem;
    font-weight: 500;
    color: #2f2f2f;
}

.contact-page-hero p {
    margin: 0 auto;
    max-width: 760px;
    color: #666;
    line-height: 1.85;
}

.contact-page-main {
    padding: 0 0 4.2rem;
    background: #efefef;
    font-family: "Montserrat", sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.35fr;
    gap: 1rem;
}

.contact-panel {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem 1.35rem;
    box-shadow: none;
}

.contact-panel h2 {
    margin: 0 0 1rem;
    font-size: 1.45rem;
    color: #2f2f2f;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.contact-list li span {
    display: block;
    font-size: 0.82rem;
    color: #8b8b8b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.contact-list li p {
    margin: 0;
    color: #4d4d4d;
    line-height: 1.65;
}

.contact-list a {
    color: #4d4d4d;
}

.contact-form {
    display: grid;
    gap: 0.72rem;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.72rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 0.72rem 0.75rem;
    font: inherit;
    color: #444;
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form button {
    justify-self: start;
    border: 0;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font: inherit;
    font-weight: 600;
    padding: 0.7rem 1.4rem;
    cursor: pointer;
}

.contact-form-feedback {
    margin: 0 0 0.8rem;
    border-radius: 10px;
    padding: 0.62rem 0.75rem;
    font-size: 0.92rem;
}

.contact-form-feedback.is-success {
    background: #e8f9ec;
    border: 1px solid #b6efc2;
    color: #1c6f2e;
}

.contact-form-feedback.is-error {
    background: #fff0f1;
    border: 1px solid #ffd0d3;
    color: #B7252C;
}

.contact-map {
    margin-top: 1rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

.gallery-page-hero {
    padding: 4rem 0 2.2rem;
    text-align: center;
    background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
    font-family: "Montserrat", sans-serif;
}

.gallery-page-inner {
    max-width: 860px;
}

.gallery-page-hero h1 {
    margin: 0;
    font-size: 2.55rem;
    font-weight: 500;
    color: #2f2f2f;
}

.gallery-page-hero p {
    margin: 0 auto;
    max-width: 760px;
    color: #666;
    line-height: 1.85;
}

.gallery-page-main {
    padding: 0 0 4.2rem;
    background: #efefef;
    font-family: "Montserrat", sans-serif;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.gallery-card {
    margin-bottom: 0;
}

.gallery-open {
    border: 0;
    padding: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.gallery-open img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-open:hover img {
    transform: scale(1.03);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox-figure {
    margin: 0;
    max-width: min(100%, 980px);
    width: 100%;
}

.gallery-lightbox-image {
    width: 100%;
    max-height: 76vh;
    object-fit: contain;
    display: block;
}

.gallery-lightbox-caption {
    color: rgba(255, 255, 255, 0.88);
    margin-top: 0.7rem;
    text-align: center;
    font-size: 0.92rem;
}

.gallery-lightbox-close {
    position: absolute;
    top: 0.85rem;
    right: 0.95rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.catalog-page {
    background: #efefef;
    padding: 2rem 0 4.2rem;
    font-family: "Montserrat", sans-serif;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1rem;
}

.catalog-sidebar,
.catalog-content {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.catalog-sidebar {
    padding: 1.2rem 1rem;
}

.catalog-sidebar h3 {
    margin: 0 0 0.8rem;
    font-size: 1.3rem;
    color: #303030;
}

.catalog-categories {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.34rem;
}

.catalog-categories a {
    display: block;
    padding: 0.6rem 0.6rem;
    border-radius: 8px;
    color: #555;
    font-size: 0.95rem;
}

.catalog-categories a.is-active {
    background: rgba(183, 37, 44, 0.1);
    color: #B7252C;
    font-weight: 600;
}

.catalog-search-form {
    margin-top: 1rem;
    border-top: 1px solid #ececec;
    padding-top: 1rem;
    display: grid;
    gap: 0.55rem;
}

.catalog-search-label {
    margin: 0;
    font-size: 1rem;
    color: #404040;
    font-weight: 600;
}

.catalog-search-form input[type="search"] {
    width: 100%;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 0.65rem;
    font: inherit;
    color: #444;
    background: #fff;
}

.catalog-search-form button {
    height: 36px;
    border: 0;
    border-radius: 8px;
    background: #B7252C;
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.catalog-content {
    padding: 1rem;
}

.catalog-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.catalog-top p {
    margin: 0;
    color: #666;
}

.catalog-top select {
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 36px;
    padding: 0 0.7rem;
    font: inherit;
    color: #555;
    background: #fff;
}

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

.catalog-card {
    border: 1px solid #ececec;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.catalog-image-wrap {
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #f8f4ec 0%, #efe6d8 100%);
    min-height: 170px;
    padding: 0.8rem;
}

.catalog-image-wrap img {
    width: 100%;
    max-width: 190px;
    height: 140px;
    object-fit: contain;
}

.catalog-card-body {
    padding: 0.95rem 0.9rem;
}

.catalog-card-body h4 {
    margin: 0 0 0.35rem;
    font-size: 1.02rem;
}

.catalog-card-body h4 a {
    color: #2f2f2f;
}

.catalog-card-body p {
    margin: 0 0 0.75rem;
    color: #676767;
    font-size: 0.9rem;
    line-height: 1.6;
}

.catalog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.catalog-price {
    font-weight: 700;
    color: #2e2e2e;
    letter-spacing: 0.01em;
}

.catalog-actions {
    display: flex;
    gap: 0.4rem;
}

.catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.58rem 0.95rem;
    border: 1px solid var(--accent);
    transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.catalog-btn:hover {
    background: #c60e23;
    transform: translateY(-1px);
    box-shadow: none;
}

.catalog-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.catalog-btn-secondary {
    background: #f6f6f6;
    color: #2c2c2c;
    border: 1px solid #e1e1e1;
}

.catalog-btn-secondary:hover {
    background: #ededed;
    color: #1f1f1f;
    transform: translateY(-1px);
    box-shadow: none;
}

.catalog-btn-secondary:active {
    transform: translateY(0);
    box-shadow: none;
}

.product-detail-actions {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.catalog-btn-whatsapp {
    background: #25d366;
}

.catalog-btn-whatsapp:hover {
    background: #1fb85a;
}

.product-detail-page {
    padding: 2.8rem 0 4.2rem;
    background: #efefef;
    font-family: "Montserrat", sans-serif;
}

.product-back-link {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: #666;
    font-size: 0.92rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 1rem;
}

.product-detail-image,
.product-detail-content {
    background: #fff;
    border-radius: 14px;
    box-shadow: none;
}

.product-detail-image {
    display: grid;
    place-items: center;
    padding: 1.2rem;
    min-height: 380px;
    background: linear-gradient(180deg, #f8f4ec 0%, #efe6d8 100%);
}

.product-detail-image img {
    width: 100%;
    max-width: 320px;
    object-fit: contain;
}

.product-detail-content {
    padding: 1.5rem 1.4rem;
}

.product-detail-content h1 {
    margin: 0;
    font-size: 2rem;
    color: #2f2f2f;
}

.product-detail-content p {
    margin: 0 0 1rem;
    color: #656565;
    line-height: 1.75;
}

.product-detail-content ul {
    margin: 0 0 1.2rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.38rem;
    color: #4d4d4d;
}

.products-section {
    position: relative;
    padding: 5rem 0 5.4rem;
    font-family: "Montserrat", sans-serif;
    background:
        radial-gradient(95% 70% at 50% -10%, rgba(183, 37, 44, 0.08), transparent 62%),
        linear-gradient(180deg, #f7f4ef 0%, #efe8de 100%);
}

.products-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0.3));
    pointer-events: none;
}

.policy-page {
    padding: 4rem 0;
    background: #f7f7f7;
}

.policy-content {
    max-width: var(--max-width);
    margin: 0 auto;
    color: #333;
}

.policy-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
}

.policy-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}

.policy-content h3 {
    margin-top: 1rem;
    margin-bottom: 0.4rem;
}

.policy-content p {
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.policy-content ul {
    margin: 0 0 1rem 1.2rem;
    padding: 0;
    line-height: 1.6;
}

.products-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.8rem;
    position: relative;
    z-index: 1;
}

.products-head h2 {
    margin: 0 0 0.9rem;
    font-size: 2.55rem;
    font-weight: 500;
    color: #2f2f2f;
}

.products-head p {
    margin: 0;
    color: #5f5f5f;
    line-height: 1.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.product-card {
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 18px 38px rgba(22, 22, 22, 0.11);
    display: grid;
    grid-template-rows: 1fr 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(22, 22, 22, 0.16);
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #B7252C);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-center-action {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #7b7b7b;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    z-index: 3;
}

.product-center-action svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.product-card:hover .product-center-action {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.product-card:hover .product-center-action:hover {
    background: var(--accent);
    color: #fff;
}

.product-card-top {
    padding: 1.6rem 1.5rem 1.3rem;
}

.product-kicker {
    display: none;
}

.product-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.38rem;
    font-weight: 600;
    color: #262626;
}

.product-card p {
    margin: 0 0 1.3rem;
    color: #656565;
    line-height: 1.7;
}

.product-visual {
    background: linear-gradient(180deg, #f9f5ed 0%, #efe5d7 100%);
    display: grid;
    place-items: center;
    padding: 0.65rem;
}

.product-visual img {
    width: min(96%, 250px);
    height: 188px;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(30, 24, 16, 0.22));
}

.product-card--whole .product-visual {
    background: linear-gradient(180deg, #f8f5ed 0%, #efe4d5 100%);
}

.product-card--piece .product-visual {
    background: linear-gradient(180deg, #f7f3ec 0%, #ece2d4 100%);
}

.product-card--chef .product-visual {
    background: linear-gradient(180deg, #f7f2eb 0%, #eadfce 100%);
}

.faq-section {
    padding: 4.8rem 0 5.2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.faq-inner {
    max-width: var(--max-width);
}

.faq-head {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-head h2 {
    margin: 0 0 0.75rem;
    font-size: 2.55rem;
    font-weight: 500;
    color: #2f2f2f;
}

.faq-head p {
    margin: 0 auto;
    max-width: 680px;
    color: #666;
    line-height: 1.75;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    border-radius: 14px;
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 1.15rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    font: inherit;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #343434;
    cursor: pointer;
}

.faq-item.is-open .faq-question {
    color: var(--accent);
}

.faq-icon {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #dfdfdf;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 1.6px;
    background: #777;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scale(0.4);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 1.25rem 1.15rem;
    color: #666;
    line-height: 1.72;
}

.faq-item.is-open .faq-answer {
    max-height: 220px;
}

.site-footer {
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

.footer-main {
    position: relative;
    background:
        radial-gradient(80% 120% at 100% 50%, rgba(255, 255, 255, 0.08), transparent 60%),
        linear-gradient(90deg, #B7252C 0%, #83181e 55%, #9e1c23 100%);
    padding: 4rem 0 3.2rem;
    overflow: hidden;
}

.footer-main::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -30px;
    width: 56%;
    height: 230px;
    background: radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.12), transparent 65%);
    opacity: 0.55;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.3rem;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    margin: 0 0 1.1rem;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.1;
}

.footer-col h3::after {
    content: "";
    display: block;
    width: 20px;
    height: 3px;
    border-radius: 99px;
    background: #fff;
    margin-top: 0.5rem;
}

.footer-col p {
    margin: 0 0 0.7rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
}

.footer-contact {
    display: block;
    margin-top: 0.3rem;
    font-weight: 600;
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 0.45rem;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #B7252C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.footer-social svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.58rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-subscribe {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    width: min(100%, 360px);
}

.footer-subscribe input {
    height: 40px;
    border: 0;
    padding: 0 0.8rem;
    font: inherit;
    color: #3a3a3a;
}

.footer-subscribe button {
    border: 0;
    background: #f1f1f1;
    color: #3a3a3a;
    font: inherit;
    font-weight: 500;
    padding: 0 1rem;
    cursor: pointer;
}

.footer-subscribe__message {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #fff;
}

.footer-subscribe__message.is-success {
    color: #fff;
}

.footer-subscribe__message.is-error {
    color: #fff;
}

.footer-bottom {
    background: #2f3a33;
    padding: 1rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer-bottom-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-bottom-nav a {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.footer-bottom-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s ease;
}

.footer-bottom-nav a:hover::after {
    transform: scaleX(1);
}

.scroll-top-btn {
    position: fixed;
    right: 1.2rem;
    bottom: 1.3rem;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #5e5e5e;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.94);
    transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
    z-index: 60;
}

.scroll-top-icon {
    width: 19px;
    height: 19px;
    fill: currentColor;
    transform: translateY(-0.5px);
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35));
    transition: transform 0.25s ease;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

@media (max-width: 980px) {
    .top-bar-inner {
        grid-template-columns: auto 1fr auto;
        gap: 0.7rem;
    }

    .brand {
        justify-self: center;
    }

    .social-links a {
        width: 28px;
        height: 28px;
    }
}

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

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

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

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

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

    .footer-col:last-child {
        grid-column: span 2;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 1.2rem, var(--max-width));
    }

    .top-bar {
        padding: 0.62rem 0;
    }

    .top-bar-inner {
        grid-template-columns: 1fr auto;
        gap: 0.6rem;
    }

    .social-links {
        display: none;
    }

    .brand img {
        width: clamp(212px, 56vw, 264px);
    }

    .header-badges {
        display: none;
    }

    .cart-link {
        width: 36px;
        height: 36px;
    }

    .cart-link svg {
        width: 16px;
        height: 16px;
    }

    .cart-count {
        min-width: 16px;
        height: 16px;
        font-size: 0.62rem;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.48rem;
        margin: 0.55rem 0;
        border: 1px solid #e1e1e1;
        background: #fff;
        color: #474747;
        padding: 0.56rem 0.85rem;
        border-radius: 999px;
        font: inherit;
        font-size: 0.88rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    }

    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.6rem;
    }

    .nav-cart-link {
        display: inline-flex;
        position: relative;
        width: 36px;
        height: 36px;
        border-radius: 999px;
        border: 1px solid #dfdfdf;
        background: #fff;
        color: #5b5b5b;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .nav-cart-link svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

    .nav-cart-link .cart-count {
        top: -4px;
        right: -4px;
        min-width: 15px;
        height: 15px;
        font-size: 0.6rem;
    }

    .menu-toggle::before {
        content: "";
        width: 14px;
        height: 10px;
        border-top: 2px solid #666;
        border-bottom: 2px solid #666;
        box-sizing: border-box;
        box-shadow: none;
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 0.35rem);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        border-radius: 14px;
        border: 1px solid #ececec;
        background: #fff;
        box-shadow: none;
        transform: translateY(-6px);
        transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .main-nav.is-open {
        max-height: 75vh;
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.35rem 0.45rem 0.5rem;
    }

    .main-nav > ul > li {
        width: 100%;
    }

    .main-nav a,
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
        min-height: 48px;
        padding: 0.72rem 0.55rem;
        border-bottom: 1px solid #f2f2f2;
        font-size: 1rem;
        color: #4c4c4c;
    }

    .main-nav > ul > li:last-child > a {
        border-bottom: 0;
    }

    .main-nav a::after,
    .dropdown-toggle::before {
        display: none;
    }

    .main-nav > ul > li > a:hover,
    .main-nav > ul > li > .dropdown-toggle:hover,
    .dropdown-menu li a:hover {
        color: #4c4c4c;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        border-radius: 10px;
        border: 1px solid #f1f1f1;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0.25rem 0 0.35rem 0.6rem;
        margin: 0.25rem 0 0.55rem;
        background: #fbfbfb;
    }

    .dropdown-menu li a {
        display: block;
        min-height: 40px;
        padding: 0.55rem 0.7rem;
        border-bottom: 1px solid #efefef;
        font-size: 0.92rem;
    }

    .dropdown-menu li:last-child a {
        border-bottom: 0;
    }

    .dropdown-toggle::after {
        margin-left: auto;
        margin-right: 0.35rem;
    }

    .has-dropdown.is-open .dropdown-menu {
        display: block;
    }

    .slider-dots {
        left: 50%;
        bottom: 1rem;
        top: auto;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 0.55rem;
    }

    .hero-slider,
    .slides,
    .slide {
        min-height: 55vh;
    }

    .products-section {
        padding: 3.4rem 0 4rem;
    }

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

    .product-card {
        grid-template-rows: 1fr 220px;
    }

    .product-center-action {
        opacity: 1;
        visibility: visible;
        transform: translate(0, 0) scale(1);
        left: auto;
        top: 0.85rem;
        right: 0.85rem;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.95);
        color: #666;
    }

    .faq-section {
        padding: 3.8rem 0 4.2rem;
    }

    .faq-question {
        padding: 1rem 1rem;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
    }

    .footer-main {
        padding: 3.1rem 0 2.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.7rem;
    }

    .footer-col:last-child {
        grid-column: auto;
    }

    .footer-col h3 {
        font-size: 1.6rem;
    }

    .footer-subscribe {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .footer-subscribe button {
        height: 40px;
    }

    .footer-bottom {
        padding: 1rem 0 1.2rem;
    }

    .footer-bottom-inner {
        align-items: center;
        text-align: center;
    }

    .footer-bottom-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem 1.2rem;
    }

    .scroll-top-btn {
        right: 0.85rem;
        bottom: 1rem;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 640px) {
    .catalog-top {
        flex-direction: column;
        align-items: stretch;
    }

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

    .product-detail-content h1 {
        font-size: 1.6rem;
    }

    .gallery-page-hero h1 {
        font-size: 2rem;
    }

    .gallery-page-hero p {
        font-size: 0.94rem;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .contact-page-hero h1 {
        font-size: 2rem;
    }

    .contact-page-hero p {
        font-size: 0.94rem;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        padding: 1.1rem 1rem;
    }

    .about-page-hero h1 {
        font-size: 2.05rem;
    }

    .about-collage {
        grid-template-columns: 1fr;
    }

    .about-collage-item--large,
    .about-collage-item--top,
    .about-collage-item--bottom {
        border-radius: 14px;
    }

    .about-page-hero p {
        font-size: 0.94rem;
    }

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

    .story-card {
        padding: 1.2rem 1rem;
    }

    .top-bar {
        padding: 0.55rem 0;
    }

    .menu-toggle {
        padding: 0.5rem 0.78rem;
        font-size: 0.84rem;
    }

    .main-nav a,
    .dropdown-toggle {
        font-size: 0.95rem;
    }

    .about-section h2,
    .products-head h2,
    .faq-head h2 {
        font-size: 2rem;
    }

    .about-section p,
    .products-head p,
    .faq-head p {
        font-size: 0.94rem;
        line-height: 1.75;
    }
}

.promo-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.promo-modal.is-open {
    display: flex;
}

.promo-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.promo-modal__box {
    position: relative;
    max-width: 600px;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: promoModalIn 0.3s ease;
}

@keyframes promoModalIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.promo-modal__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 3;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.promo-modal__close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.promo-modal__link {
    display: block;
}

.promo-modal__img {
    display: block;
    width: 100%;
    height: auto;
}

.promo-modal__dont-show {
    display: block;
    width: 100%;
    border: 0;
    background: #f3f4f6;
    color: #6b7280;
    font-family: "Montserrat", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.promo-modal__dont-show:hover {
    background: #e5e7eb;
    color: #374151;
}

@media (max-width: 640px) {
    .footer-col h3 {
        font-size: 1.35rem;
    }

    .footer-col p,
    .footer-links a {
        font-size: 0.9rem;
    }
}
