:root {
    --bg: #f7f2eb;
    --surface: #fffdf9;
    --surface-alt: #efe5d7;
    --text: #2b2119;
    --muted: #6f5c4d;
    --primary: #b87a43;
    --primary-dark: #8a5a31;
    --dark: #3e2a1f;
    --dark-2: #2c1b12;
    --line: rgba(62, 42, 31, 0.14);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 14px 34px rgba(38, 24, 15, 0.1);
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 2.5rem));
    margin-inline: auto;
}

.section {
    padding: 5.5rem 0;
}

.section.pt-0 {
    padding-top: 0;
}

.section-cream {
    background: linear-gradient(180deg, #f9f4ec 0%, #f4ece0 100%);
}

.section-dark {
    background: var(--dark);
    color: #f9f2e8;
}

.section-head {
    margin-bottom: 2.2rem;
    text-align: center;
}

.section-head.left {
    text-align: left;
}

.section-head.light h2,
.section-head.light p {
    color: #f8efe2;
}

.section-head h2 {
    margin: 0 0 0.7rem;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
}

.site-main {
    min-height: 60vh;
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: #f7f2eb;
}

.header-inner {
    position: relative;
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.brand-mark {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary) 0%, #cf9a66 100%);
    box-shadow: 0 6px 14px rgba(184, 122, 67, 0.36);
}

.brand-text {
    font-size: 1.15rem;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    position: relative;
    font-weight: 600;
    font-size: 0.95rem;
    color: #4d3d30;
    transition: color 0.24s ease;
}

.nav-link:hover {
    color: var(--primary-dark);
}

.nav-link.is-active {
    color: var(--dark);
}

.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.45rem;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
}

.header-cta {
    margin-left: 1.5rem;
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fffaf2;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 17px;
    height: 2px;
    background: var(--dark);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header .brand {
    width: auto;
    min-width: 0;
}

.mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.brand-logo {
    display: block;
    object-fit: contain;
}

.brand-logo-header {
    width: auto;
    height: 44px;
    max-height: 44px;
    object-fit: contain;
    object-position: left center;
    transform: none;
}

.brand-logo-footer {
    width: 160px;
    height: 52px;
    object-fit: contain;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    cursor: pointer;
    font-weight: 700;
    border-radius: 12px;
    padding: 0.86rem 1.4rem;
    font-size: 0.95rem;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-dark:hover {
    background: #27170f;
}

.btn-outline {
    border: 1px solid rgba(138, 90, 49, 0.3);
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
    background: rgba(184, 122, 67, 0.08);
}

.btn-light {
    background: #fff;
    color: var(--dark);
}

.btn-light:hover {
    background: #f5ecdf;
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.13);
}

.btn-full {
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.4rem;
    align-items: center;
}

.hero-content h1 {
    margin: 0.55rem 0 1.2rem;
    font-size: clamp(2rem, 4vw, 3.9rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-content p {
    margin: 0;
    color: var(--muted);
    max-width: 62ch;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.77rem;
    padding: 0.3rem 0.68rem;
    border-radius: 999px;
    color: var(--primary-dark);
    background: rgba(184, 122, 67, 0.13);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-actions {
    margin-top: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.card-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media {
    aspect-ratio: 4 / 4.35;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.intro-grid h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.intro-grid p {
    margin: 0;
    color: rgba(248, 241, 232, 0.84);
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.check-list li {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 0.8rem 0.95rem;
    background: rgba(255, 255, 255, 0.02);
    font-weight: 600;
    color: #f7eee1;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.overlay-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 340px;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.overlay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 8, 4, 0.1) 22%, rgba(16, 8, 4, 0.73) 100%);
    z-index: 0;
}

.overlay-content {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 1;
}

.overlay-content h3 {
    margin: 0 0 0.35rem;
    color: #fff;
    font-size: 1.25rem;
}

.overlay-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
}

.overlay-card:hover img {
    transform: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
}

.process-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
}

.process-card span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.84rem;
    color: #fff;
    background: var(--primary);
}

.process-card h3 {
    margin: 0.75rem 0 0.35rem;
    font-size: 1rem;
}

.process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.9rem;
}

.showcase-item {
    position: relative;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    min-height: 260px;
    background: #d9c6b3;
    box-shadow: var(--shadow);
    isolation: isolate;
    grid-column: span 3;
}

.showcase-item-featured {
    grid-column: span 6;
    grid-row: span 2;
    min-height: 530px;
}

.showcase-item-horizontal {
    grid-column: span 6;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 10, 4, 0.1) 18%, rgba(18, 10, 4, 0.76) 100%);
    z-index: 0;
}

.showcase-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    color: #fff;
}

.showcase-caption span {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    margin-bottom: 0.55rem;
}

.showcase-caption h3 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.showcase-caption p {
    margin: 0.45rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    max-width: 40ch;
}

.showcase-caption.compact h3 {
    font-size: 1.02rem;
}

.showcase-item:hover img {
    transform: none;
}

.cta-band-wrap {
    padding-top: 3.6rem;
}

.cta-band {
    border-radius: 28px;
    padding: clamp(1.6rem, 3vw, 3rem);
    background: linear-gradient(135deg, #a96c38 0%, #4a2f20 100%);
    color: #fdf8f2;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-band h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    letter-spacing: -0.02em;
}

.cta-band p {
    margin: 0.85rem auto 0;
    max-width: 58ch;
    color: rgba(253, 247, 240, 0.86);
}

.cta-band .hero-actions {
    justify-content: center;
}

.page-hero {
    padding-bottom: 2rem;
}

.page-hero-inner h1 {
    margin: 0.7rem 0 0.7rem;
    font-size: clamp(1.8rem, 3.5vw, 3.1rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.page-hero-inner p {
    margin: 0;
    color: var(--muted);
    max-width: 72ch;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.6rem;
}

.filter-btn {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: #584438;
    font-size: 0.87rem;
    padding: 0.58rem 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
    border-color: transparent;
    color: #fff;
    background: var(--dark);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.product-card {
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf6 100%);
    border: 1px solid rgba(62, 42, 31, 0.12);
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
    box-shadow: 0 14px 32px rgba(34, 22, 13, 0.14);
    border-color: rgba(184, 122, 67, 0.28);
}

.product-card .card-media {
    border-radius: 0;
    box-shadow: none;
    background: #f4f0ea;
}

.product-card .card-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.product-body {
    padding: 1.05rem 1rem 1.25rem;
}

.product-body h2 {
    margin: 0 0 0.45rem;
    font-size: 1.08rem;
}

.product-body p {
    margin: 0;
    font-size: 0.92rem;
    color: #7b6758;
}

.product-slider {
    position: relative;
    touch-action: pan-y;
    user-select: none;
}

.product-slider-viewport {
    cursor: grab;
}

.product-slider-viewport:active {
    cursor: grabbing;
}

.product-slider-viewport {
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    background: #f4f0ea;
}

.product-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.35s ease;
}

.product-slide {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
}

.product-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.product-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 12px 4px;
}

.slider-dot {
    appearance: none;
    -webkit-appearance: none;
    width: 10px !important;
    height: 10px !important;
    min-width: 10px;
    min-height: 10px;
    max-width: 10px;
    max-height: 10px;
    border-radius: 999px;
    border: none !important;
    outline: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    background: rgba(62, 42, 31, 0.28);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.slider-dot.is-active {
    background: var(--primary);
    transform: scale(1.14);
    box-shadow: 0 0 0 4px rgba(184, 122, 67, 0.16);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(10, 8, 6, 0.86);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox-stage {
    width: min(1100px, 92vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 84vh;
}

.gallery-lightbox-stage img {
    width: auto;
    max-width: 100%;
    max-height: 84vh;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
}

.gallery-lightbox-close {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1.7rem;
    cursor: pointer;
}

.gallery-lightbox-nav {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.gallery-lightbox-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.gallery-lightbox-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
}

.gallery-lightbox-dot.is-active {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-items: center;
}

.about-grid h2 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.about-grid p {
    margin: 0 0 0.9rem;
    color: var(--muted);
}

.about-media {
    aspect-ratio: 4 / 3;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.feature-grid-light .feature-card {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.feature-grid-light .feature-card h3,
.feature-grid-light .feature-card p {
    color: #f5ebe0;
}

.feature-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    background: #fff;
}

.feature-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.03rem;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.stat-card {
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 1rem;
}

.stat-card strong {
    display: block;
    margin-bottom: 0.32rem;
    font-size: 1rem;
}

.stat-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.info-card {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 14px;
    padding: 1rem;
}

.info-card.full {
    grid-column: span 2;
}

.info-card h2 {
    font-size: 1rem;
    margin: 0 0 0.35rem;
}

.info-card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
}

.map-box {
    border-radius: 16px;
    border: 1px solid var(--line);
    min-height: 220px;
    margin-top: 0.8rem;
    background: #efe5d8;
    overflow: hidden;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    border: 0;
}

.contact-form-wrap {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 18px;
    padding: 1.2rem;
}

.contact-form-wrap h2 {
    margin: 0 0 0.4rem;
    font-size: 1.5rem;
}

.form-intro {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.94rem;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.form-field {
    display: grid;
    gap: 0.35rem;
}

.form-field.full {
    grid-column: span 2;
}

.form-field label {
    font-size: 0.84rem;
    font-weight: 700;
    color: #4e3a2f;
}

.form-field input,
.form-field select,
.form-field textarea {
    border: 1px solid rgba(62, 42, 31, 0.2);
    border-radius: 10px;
    background: #fff;
    min-height: 45px;
    padding: 0.6rem 0.72rem;
    font: inherit;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(138, 90, 49, 0.55);
    box-shadow: 0 0 0 3px rgba(184, 122, 67, 0.14);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: #b13f32;
}

.error-text {
    min-height: 1em;
    color: #b13f32;
    font-size: 0.77rem;
}

.form-message {
    grid-column: span 2;
    border-radius: 10px;
    padding: 0.72rem 0.82rem;
    font-size: 0.88rem;
    display: none;
}

.form-message.is-success {
    display: block;
    background: #e6f4ec;
    color: #1e6a3d;
    border: 1px solid #aad8bf;
}

.form-message.is-error {
    display: block;
    background: #fdecea;
    color: #9a3428;
    border: 1px solid #f2bab3;
}

.site-footer {
    background: var(--dark-2);
    color: rgba(255, 244, 231, 0.84);
    margin-top: 3rem;
    padding-top: 3.4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 1.3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-text {
    color: #fff1df;
}

.footer-text {
    margin: 0.8rem 0 0;
    color: rgba(255, 241, 222, 0.75);
    max-width: 42ch;
}

.footer-title {
    margin: 0 0 0.9rem;
    color: #fff2e4;
    font-size: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.footer-links a {
    color: rgba(255, 245, 235, 0.82);
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact li {
    color: rgba(255, 241, 226, 0.75);
    font-size: 0.92rem;
}

.footer-bottom {
    padding: 1rem 0 1.5rem;
    font-size: 0.84rem;
    color: rgba(255, 241, 226, 0.62);
}

@media (max-width: 1100px) {
    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-grid,
    .intro-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-media {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 860px) {
    .site-header {
        position: static;
    }

    .mobile-toggle {
        display: inline-flex;
    }


    .header-cta {
        display: none;
    }

    .main-nav {
        position: absolute;
        z-index: 300;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        background: #f8f2e9;
        border-bottom: 1px solid var(--line);
        padding: 0.95rem 1.3rem 1.15rem;
    }

    .main-nav.is-open {
        display: flex;
    }

    .nav-link.is-active::after {
        bottom: -0.2rem;
    }

    .contact-form,
    .contact-cards,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        min-height: 78px;
    }

    .site-header .brand {
        width: auto;
        min-width: 0;
    }

    .brand-logo-header {
        width: auto;
        height: 38px;
        max-height: 38px;
        transform: none;
    }

    .brand-logo-footer {
        width: 128px;
        height: 44px;
    }

    .form-field.full,
    .info-card.full,
    .form-message {
        grid-column: auto;
    }

    .footer-grid,
    .stats-grid,
    .feature-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item,
    .showcase-item-featured,
    .showcase-item-horizontal {
        grid-column: auto;
        grid-row: auto;
        min-height: 250px;
    }

    .section {
        padding: 4.3rem 0;
    }
}

.floating-whatsapp {
    position: fixed !important;
    right: 16px !important;
    bottom: 16px !important;
    z-index: 99999 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2ee071 0%, #1ebe5d 100%);
    color: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 16px 30px rgba(4, 93, 38, 0.36);
    border: 2px solid rgba(255, 255, 255, 0.88);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    background: #1ebe5d;
    box-shadow: 0 16px 32px rgba(5, 90, 38, 0.38);
}

.floating-whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

@media (max-width: 860px) {
    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
        width: 48px;
        height: 48px;
    }

    .floating-whatsapp img {
        width: 27px;
        height: 27px;
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.86rem;
    color: #6b5849;
    padding-top: 1rem;
}

.breadcrumb a {
    color: #5f4838;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.catalog-intro {
    margin: 0 0 1rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(62, 42, 31, 0.12);
    border-radius: 14px;
    background: #fff;
}

.catalog-intro h2 {
    margin: 0 0 0.35rem;
    font-size: 1.04rem;
}

.catalog-intro p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
}

.product-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.3rem 0.62rem;
    background: rgba(184, 122, 67, 0.12);
    color: var(--primary-dark);
    font-size: 0.74rem;
    font-weight: 800;
    margin-bottom: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-body h3 {
    margin: 0 0 0.45rem;
    font-size: 1.08rem;
}

.product-link {
    display: inline-flex;
    margin-top: 0.72rem;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--dark);
}

.product-link:hover {
    color: var(--primary-dark);
}

.product-caption {
    padding: 0.75rem 0.85rem 0.8rem;
    font-size: 0.82rem;
    color: #725f50;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.faq-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    padding: 1rem;
}

.faq-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.03rem;
}

.faq-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.contact-service-note {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    margin-top: 0.8rem;
    background: #fff;
}

.contact-service-note h2 {
    font-size: 1.02rem;
    margin: 0 0 0.35rem;
}

.contact-service-note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 860px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .breadcrumb {
        padding-top: 0.8rem;
        font-size: 0.82rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}