:root {
    --ink: #172b48;
    --paper: #f0ece3;
    --line: rgba(23, 43, 72, 0.1);
    --text-soft: #55657f;
    --white: #ffffff;
    --header-offset: 214px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #ffffff;
    color: var(--ink);
    font-family: "Nunito", sans-serif;
}

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

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

.theme-page {
    padding-top: var(--header-offset);
}

.theme-page.is-scrolled {
    --header-offset: 88px;
}

.theme-container {
    width: min(1320px, calc(100% - 32px));
    margin: 0 auto;
}

.theme-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: var(--paper);
    transition: box-shadow 0.25s ease;
}

.theme-page.is-scrolled .theme-header,
.theme-header.is-compact {
    box-shadow: 0 10px 30px rgba(23, 43, 72, 0.08);
}

.theme-topbar {
    max-height: 50px;
    overflow: hidden;
    background: var(--ink);
    transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.theme-page.is-scrolled .theme-topbar,
.theme-header.is-compact .theme-topbar {
    max-height: 0;
    opacity: 0;
    transform: translateY(-100%);
}

.theme-topbar__inner {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 50px;
    align-items: center;
    min-height: 50px;
}

.theme-topbar__viewport {
    position: relative;
    height: 50px;
    overflow: hidden;
}

.theme-topbar__item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    color: rgba(255, 255, 255, 0.96);
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateY(6px);
}

.theme-topbar__item.is-active {
    opacity: 1;
    transform: translateY(0);
}

.theme-topbar__arrow {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.96);
    font-size: 30px;
    cursor: pointer;
}

.theme-logo-bar {
    width: 100%;
}

.theme-header-main {
    border-bottom: 1px solid var(--line);
}

.theme-header-main__inner {
    display: grid; 
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    transition: min-height 0.25s ease, padding 0.25s ease, grid-template-columns 0.25s ease;
}

.theme-logo-bar__inner {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: min-height 0.25s ease, justify-content 0.25s ease;
}

.theme-logo img {
    width: min(160px, 24.5vw);
    height: auto;
    transition: width 0.25s ease, transform 0.25s ease;
}

.theme-nav-bar {
    width: 100%;
}

.theme-nav-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 0 16px;
    transition: padding 0.25s ease;
}

.theme-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.theme-nav a {
    position: relative;
    padding: 6px 0;
    font-size: 16px;
    font-weight: 600;
}

.theme-search-toggle {
    position: absolute;
    top: 70px;
    right: max(16px, calc((100vw - 1320px) / 2));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    font-size: 18px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.theme-search-toggle:hover {
    border-color: rgba(23, 43, 72, 0.24);
    box-shadow: 0 12px 28px rgba(23, 43, 72, 0.1);
    transform: scale(1.04);
}

.theme-page.is-scrolled .theme-header-main__inner,
.theme-header.is-compact .theme-header-main__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 88px;
    padding: 0;
    align-items: center;
    justify-items: stretch;
}

.theme-page.is-scrolled .theme-logo-bar,
.theme-header.is-compact .theme-logo-bar {
    width: auto !important;
    justify-self: start;
}

.theme-page.is-scrolled .theme-logo-bar__inner,
.theme-header.is-compact .theme-logo-bar__inner {
    min-height: 88px;
    justify-content: flex-start;
}

.theme-page.is-scrolled .theme-logo img,
.theme-header.is-compact .theme-logo img {
    width: min(138px, 28vw);
}

.theme-page.is-scrolled .theme-nav-bar,
.theme-header.is-compact .theme-nav-bar {
    width: 100% !important;
    justify-self: stretch;
}

.theme-page.is-scrolled .theme-nav-bar__inner,
.theme-header.is-compact .theme-nav-bar__inner {
    width: 100%;
    padding: 0;
}

@media (min-width: 761px) {
    .theme-page.is-scrolled .theme-nav-bar__inner,
    .theme-header.is-compact .theme-nav-bar__inner {
        padding-right: 68px;
    }
}

.theme-page.is-scrolled .theme-nav,
.theme-header.is-compact .theme-nav {
    width: 100%;
    justify-content: flex-end !important;
}

.theme-page.is-scrolled .theme-search-toggle,
.theme-header.is-compact .theme-search-toggle {
    top: 23px;
}

.theme-nav a.is-active::after,
.theme-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 3px;
    border-radius: 999px;
    background: var(--ink);
}

.site-search {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: flex;
    justify-content: center;
    padding: 112px 24px 40px;
    overflow-y: auto;
    background: rgba(240, 236, 227, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-search.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-search__inner {
    width: min(920px, 100%);
}

.site-search__close {
    position: fixed;
    top: 28px;
    right: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    font-size: 20px;
    cursor: pointer;
}

.site-search__label {
    display: block;
    margin-bottom: 18px;
    font-size: clamp(34px, 6vw, 72px);
    font-weight: 800;
    line-height: 0.95;
}

.site-search__field {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border: 1px solid rgba(23, 43, 72, 0.16);
    background: var(--white);
}

.site-search__field i {
    font-size: 22px;
}

.site-search__field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-family: "Nunito", sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.site-search__status {
    min-height: 24px;
    margin: 16px 0;
    color: var(--text-soft);
    font-size: 15px;
    font-weight: 700;
}

.site-search__results {
    display: grid;
    gap: 12px;
}

.site-search-result {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
}

.site-search-result img {
    width: 96px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: var(--white);
}

.site-search-result span {
    display: block;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 800;
}

.site-search-result strong {
    display: block;
    margin-top: 4px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.15;
}

.site-search-result i {
    color: var(--ink);
    font-size: 20px;
}

.site-search-open {
    overflow: hidden;
}

.theme-main {
    min-height: calc(100vh - var(--header-offset));
}

.hero-slider {
    position: relative;
    aspect-ratio: 16 / 5;
    overflow: hidden;
    touch-action: pan-y;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide__overlay-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide__media,
.hero-slide__media img {
    width: 100%;
    height: 100%;
}

.hero-slide__media img {
    object-fit: cover;
}

.hero-slide__content {
    position: absolute;
    right: 5%;
    bottom: 8%;
    z-index: 2;
    width: min(720px, 50vw);
}

.hero-slide__eyebrow {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.96);
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-slide__title-box,
.hero-slide__text-box {
    padding: 18px 22px 20px;
    font-family: "Nunito", sans-serif;
}

.hero-slide__title-box {
    background: rgba(255, 255, 255, 0.4);
    color: var(--ink);
}

.hero-slide__text-box {
    margin-top: 10px;
    background: rgba(23, 43, 72, 0.4);
    color: var(--white);
}

.hero-slide__button {
    position: relative;
    z-index: 3;
    margin-top: 14px;
}

.hero-slider__control {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(23, 43, 72, 0.78);
    color: var(--white);
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-slider__control--prev {
    left: 20px;
}

.hero-slider__control--next {
    right: 20px;
}

.hero-slider--single .hero-slider__control {
    display: none;
}

.hero-slide__title-box h1,
.page-hero__inner h1,
.product-detail__content h1,
.contact-page__card h1 {
    margin: 0;
    font-size: clamp(36px, 4.5vw, 80px);
    line-height: 0.94;
    letter-spacing: -0.03em;
}

.hero-slide__text-box p,
.page-hero__inner p,
.product-detail__content p,
.contact-page__card p,
.product-card__body p {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
}

.theme-main--page {
    width: min(1320px, calc(100% - 32px));
    margin: 0 auto;
    padding: 100px 0 40px;
}

.home-section {
    padding-top: 8px;
}

.home-section--tight {
    padding-top: 20px;
    padding-bottom: 16px;
}

.page-hero,
.contact-page__card,
.product-detail__content,
.product-detail__image,
.product-card,
.feature-card,
.story-block__panel,
.spotlight-card,
.contact-info-card,
.contact-page__cta,
.about-page__content,
.about-page__visual {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--line);
}

.page-hero__inner,
.contact-page__card,
.product-detail__content,
.about-page__content {
    padding: 32px;
}

.page-hero__list {
    margin: 18px 0 0;
    padding-left: 20px;
}

.page-hero__list li + li {
    margin-top: 8px;
}

.section-label,
.product-card__category {
    margin: 0 0 12px;
    color: var(--text-soft);
    font-family: "Nunito", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    padding: 22px;
    text-align: center;
}

.feature-card__icon,
.contact-info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.feature-card__icon {
    margin: 0 auto 18px;
    font-size: 24px;
}

.feature-card h2,
.story-block__panel h2,
.spotlight-card__content h2 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.05;
}

.feature-card p,
.story-block__panel p,
.spotlight-card__content p,
.contact-page__cta p,
.contact-info-card strong,
.contact-info-card a,
.about-page__content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
}

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

.story-block__media {
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
}

.story-block__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-block__panel {
    padding: 26px;
}

.story-block__panel--soft {
    background: rgba(240, 236, 227, 0.75);
}

.story-block__panel .button,
.spotlight-card__content .button {
    margin-top: 18px;
}

.spotlight-card {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    overflow: hidden;
}

.spotlight-card__media {
    min-height: 100%;
    background: rgba(240, 236, 227, 0.72);
}

.spotlight-card__media img,
.about-page__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-card__content {
    padding: 24px;
}

.button--secondary {
    border: 1px solid rgba(23, 43, 72, 0.16);
    background: transparent;
    color: var(--ink);
}

.contact-page {
    display: grid;
    gap: 20px;
}

.contact-page__card--hero {
    background: linear-gradient(135deg, rgba(240, 236, 227, 0.78), rgba(255, 255, 255, 0.84));
}

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

.contact-info-card {
    padding: 24px;
    min-height: 220px;
    text-align: center;
}

.contact-info-card__label {
    margin: 0 0 10px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-info-card a,
.contact-info-card strong {
    display: block;
    font-weight: 700;
}

.contact-info-card__icon {
    margin: 0 auto 18px;
    font-size: 24px;
}

.contact-info-card a {
    line-height: 1.55;
}

.contact-page__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px;
    background: rgba(240, 236, 227, 0.75);
}

.about-page {
    display: grid;
    gap: 20px;
}

.about-page__visual {
    aspect-ratio: 16 / 6;
    overflow: hidden;
}

.about-page__content h1 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 68px);
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.about-page__content p + p {
    margin-top: 18px;
}

.catalog {
    margin-top: 24px;
}

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

.product-card__image {
    display: block;
    aspect-ratio: 553 / 374;
    padding: 0;
    background: rgba(240, 236, 227, 0.8);
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.product-card__body {
    padding: 24px;
}

.product-card__body h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1;
}

.product-card__palette {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.product-card__swatch,
.product-variation__swatch {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--swatch-color);
    border: 1px solid rgba(23, 43, 72, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.product-card__meta {
    margin-top: 12px;
    color: var(--text-soft);
    font-size: 14px;
}

.product-spec__html > *:first-child {
    margin-top: 0;
}

.product-spec__html > *:last-child {
    margin-bottom: 0;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
}

.product-detail__visual {
    display: grid;
    gap: 16px;
    align-content: start;
}

.product-detail__back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.product-detail__back-link::before {
    content: "\2039";
    font-size: 20px;
    line-height: 1;
    color: var(--ink);
}

.product-detail__image {
    position: relative;
    padding: 28px;
    aspect-ratio: 1 / 1;
    min-height: 520px;
    overflow: hidden;
    cursor: zoom-in;
    background: var(--white);
}

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

.product-detail__image:focus-visible {
    outline: 3px solid rgba(23, 43, 72, 0.24);
    outline-offset: 3px;
}

.product-detail__thumb-carousel {
    position: relative;
}

.product-detail__thumb-viewport {
    overflow: hidden;
}

.product-detail__gallery {
    display: flex;
    gap: 12px;
    transition: transform 0.28s ease;
    will-change: transform;
}

.product-detail__thumb-control {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.product-detail__thumb-carousel.has-carousel .product-detail__thumb-control {
    display: inline-flex;
}

.product-detail__thumb-control--prev {
    left: -18px;
}

.product-detail__thumb-control--next {
    right: -18px;
}

.product-detail__thumb-control:hover {
    border-color: rgba(23, 43, 72, 0.28);
    transform: translateY(-50%) scale(1.04);
}

.product-detail__thumb-control:disabled {
    opacity: 0.36;
    cursor: default;
    transform: translateY(-50%);
}

.product-thumb {
    display: block;
    flex: 0 0 calc((100% - 36px) / 4);
    padding: 6px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.product-thumb:hover,
.product-thumb.is-active {
    border-color: rgba(23, 43, 72, 0.28);
    box-shadow: 0 12px 28px rgba(23, 43, 72, 0.1);
    transform: translateY(-2px);
}

.product-detail__variations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 28px;
}

.product-detail__content > .product-detail__variations {
    display: none;
}

.product-detail__summary {
    margin: 14px 0 18px;
    max-width: 760px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.45;
}

.product-accordion__body .product-detail__variations,
.product-accordion__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

.product-variation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    padding: 6px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-family: "Nunito", sans-serif;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.product-variation:hover,
.product-variation.is-active {
    border-color: rgba(23, 43, 72, 0.28);
    background: rgba(255, 255, 255, 0.96);
    transform: translateY(-1px);
}

.product-variation__swatch-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    margin-bottom: 18px;
    padding: 13px 18px;
    background: #25d366;
    color: #ffffff;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.product-detail__whatsapp:hover {
    background: #1fbd5a;
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.32);
    transform: translateY(-1px);
}

.product-detail__whatsapp i {
    font-size: 21px;
}

@media (min-width: 981px) {
    .product-detail__content {
        display: flex;
        flex-direction: column;
    }

    .product-detail__content .section-label {
        margin-bottom: 10px;
    }

    .product-detail__content h1 {
        max-width: 780px;
    }

    .product-detail__summary {
        margin: auto 0;
        padding: 28px 0;
        max-width: 820px;
        font-size: 21px;
    }

    .product-detail__whatsapp {
        margin-bottom: 0;
    }
}

.product-detail__accordions {
    display: grid;
    grid-column: 1 / -1;
    gap: 12px;
    margin-top: 40px;
}

.product-accordion {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.62);
}

.product-accordion summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 58px;
    padding: 16px 48px 16px 18px;
    color: var(--ink);
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
    cursor: pointer;
    list-style: none;
}

.product-accordion summary::-webkit-details-marker {
    display: none;
}

.product-accordion summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    color: var(--text-soft);
    font-size: 26px;
    line-height: 1;
    transform: translateY(-50%);
}

.product-accordion[open] summary {
    border-bottom: 1px solid var(--line);
}

.product-accordion[open] summary::after {
    content: "-";
}

.product-accordion__body {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.product-accordion__body > p {
    margin: 0;
}

.product-accordion__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-accordion__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 11px;
    background: rgba(240, 236, 227, 0.72);
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

.product-detail__specs {
    display: grid;
    gap: 18px;
    margin: 0 0 28px;
}

.product-spec {
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.62);
}

.product-accordion .product-spec {
    background: rgba(255, 255, 255, 0.52);
}

.product-accordion:first-child .product-spec {
    padding: 0;
    border: 0;
    background: transparent;
}

.product-accordion:first-child .product-spec h2 {
    margin-top: 4px;
    font-size: 17px;
}

.product-spec h2 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.1;
}

.product-spec p {
    margin: 0;
}

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

.product-spec__item {
    padding: 12px;
    background: rgba(240, 236, 227, 0.72);
}

.product-spec__item span {
    display: block;
    margin-bottom: 6px;
    color: var(--text-soft);
    font-family: "Nunito", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-spec__item strong {
    display: block;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

.product-spec__list {
    margin: 0;
    padding-left: 18px;
}

.product-spec__list li + li {
    margin-top: 8px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.button--primary {
    background: var(--ink);
    color: var(--white);
}

.theme-footer {
    padding: 18px 0 28px;
    border-top: 1px solid var(--line);
}

.theme-footer__inner p {
    margin: 0;
    color: var(--text-soft);
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.floating-whatsapp {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    font-size: 29px;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.42);
}

.product-detail__mobile-whatsapp {
    display: none;
}

@media (max-width: 980px) {
    :root {
        --header-offset: 198px;
    }

    .theme-page.is-scrolled {
        --header-offset: 76px;
    }

    .hero-slide__content {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
    }

    .theme-page.is-scrolled .theme-header-main__inner,
    .theme-header.is-compact .theme-header-main__inner {
        grid-template-columns: auto minmax(0, 1fr);
        min-height: 76px;
    }

    .theme-page.is-scrolled .theme-logo-bar__inner,
    .theme-header.is-compact .theme-logo-bar__inner {
        min-height: 76px;
    }

    .theme-page.is-scrolled .theme-logo img,
    .theme-header.is-compact .theme-logo img {
        width: min(116px, 26vw);
    }

    .catalog-grid,
    .product-detail,
    .story-block,
    .spotlight-card {
        grid-template-columns: 1fr;
    }

    .home-feature-grid,
    .contact-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

}

@media (max-width: 760px) {
    :root {
        --header-offset: 199px;
    }

    .theme-page--product-detail {
        padding-bottom: 78px;
    }

    .theme-page--product-detail .floating-whatsapp {
        display: none;
    }

    .product-detail__mobile-whatsapp {
        position: fixed;
        right: 8px;
        bottom: 8px;
        left: 8px;
        z-index: 95;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 56px;
        border-radius: 8px;
        background: #25d366;
        color: #ffffff;
        font-family: "Nunito", sans-serif;
        font-size: 16px;
        font-weight: 800;
        box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
    }

    .product-detail__mobile-whatsapp i {
        font-size: 21px;
    }

    .theme-page--product-detail .product-detail__content [data-whatsapp-link] {
        display: none;
    }

    .theme-container,
    .theme-main--page {
        width: calc(100% - 16px);
    }

    .hero-slider {
        aspect-ratio: 1 / 2;
    }

    .theme-topbar__inner {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
    }

    .theme-topbar__arrow {
        font-size: 26px;
    }

    .theme-topbar__item {
        font-size: 12px;
        letter-spacing: 0.02em;
    }

    .theme-logo-bar__inner {
        min-height: 84px;
    }

    .theme-logo img {
        width: min(126px, 34vw);
    }

    .theme-nav {
        gap: 16px;
    }

    .theme-nav a {
        font-size: 15px;
    }

    .theme-search-toggle {
        top: 74px;
        right: 8px;
        width: 38px;
        height: 38px;
    }

    .site-search {
        padding: 88px 16px 28px;
    }

    .site-search__close {
        top: 18px;
        right: 16px;
        width: 42px;
        height: 42px;
    }

    .site-search__field {
        padding: 14px 16px;
    }

    .site-search__field input {
        font-size: 19px;
    }

    .site-search-result {
        grid-template-columns: 74px minmax(0, 1fr) 24px;
        gap: 12px;
    }

    .site-search-result img {
        width: 74px;
    }

    .site-search-result strong {
        font-size: 17px;
    }

    .theme-page.is-scrolled {
        --header-offset: 132px;
    }

    .theme-page.is-scrolled .theme-header-main__inner,
    .theme-header.is-compact .theme-header-main__inner {
        grid-template-columns: 1fr;
        min-height: 60px;
        gap: 0;
        justify-items: center;
    }

    .theme-page.is-scrolled .theme-logo-bar__inner,
    .theme-header.is-compact .theme-logo-bar__inner {
        min-height: 60px;
        justify-content: center;
    }

    .theme-page.is-scrolled .theme-logo img,
    .theme-header.is-compact .theme-logo img {
        width: min(94px, 26vw);
    }

    .theme-page.is-scrolled .theme-logo-bar,
    .theme-header.is-compact .theme-logo-bar,
    .theme-page.is-scrolled .theme-nav-bar,
    .theme-header.is-compact .theme-nav-bar {
        width: 100% !important;
        justify-self: stretch;
    }

    .theme-page.is-scrolled .theme-logo-bar,
    .theme-header.is-compact .theme-logo-bar {
        justify-self: center;
    }

    .theme-page.is-scrolled .theme-nav-bar__inner,
    .theme-header.is-compact .theme-nav-bar__inner {
        padding: 8px 0 10px;
    }

    .theme-page.is-scrolled .theme-logo,
    .theme-header.is-compact .theme-logo {
        display: inline-flex;
        justify-content: center;
    }

    .theme-page.is-scrolled .theme-nav,
    .theme-header.is-compact .theme-nav {
        width: 100%;
        justify-content: center !important;
        gap: 14px;
    }

    .theme-page.is-scrolled .theme-search-toggle,
    .theme-header.is-compact .theme-search-toggle {
        top: 11px;
        right: 8px;
    }

    .hero-slide__title-box,
    .hero-slide__text-box,
    .page-hero__inner,
    .contact-page__card,
    .product-detail__content,
    .about-page__content,
    .feature-card,
    .story-block__panel,
    .spotlight-card__content,
    .contact-info-card,
    .contact-page__cta {
        padding: 16px;
    }

    .hero-slide__button {
        width: 100%;
    }

    .hero-slider__control {
        top: auto;
        bottom: 16px;
        transform: none;
        width: 42px;
        height: 42px;
    }

    .hero-slider__control--prev {
        left: 16px;
    }

    .hero-slider__control--next {
        right: 16px;
    }

    .hero-slide__text-box p,
    .page-hero__inner p,
    .product-detail__content p,
    .contact-page__card p,
    .product-card__body p,
    .feature-card p,
    .story-block__panel p,
    .spotlight-card__content p,
    .contact-page__cta p,
    .contact-info-card strong,
    .contact-info-card a,
    .about-page__content p {
        font-size: 16px;
    }

    .home-feature-grid,
    .contact-page__grid {
        grid-template-columns: 1fr;
    }

    .product-detail__image {
        min-height: 380px;
        padding: 18px;
    }

    .product-detail__thumb-control {
        width: 32px;
        height: 32px;
        font-size: 26px;
    }

    .product-detail__thumb-control--prev {
        left: -8px;
    }

    .product-detail__thumb-control--next {
        right: -8px;
    }

    .product-variation {
        width: 64px;
        height: 64px;
    }

    .contact-page__cta {
        align-items: flex-start;
    }

    .about-page__visual {
        aspect-ratio: 4 / 3;
    }
}
