*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg: #f4efe7;
    --bg-soft: #ece2d2;
    --surface: #fffaf4;
    --surface-strong: #ffffff;
    --ink: #131716;
    --muted: #616862;
    --line: rgba(19, 23, 22, 0.1);
    --brand: #1d5b46;
    --brand-deep: #12362b;
    --brand-soft: rgba(29, 91, 70, 0.1);
    --accent: #bd8933;
    --accent-soft: rgba(189, 137, 51, 0.16);
    --dark: #0d1714;
    --dark-soft: #17241f;
    --success: #1c6b48;
    --warning: #b27718;
    --danger: #8e4338;
    --shadow: 0 25px 70px rgba(17, 26, 23, 0.08);
    --shadow-soft: 0 18px 45px rgba(17, 26, 23, 0.06);
    --radius-xs: 12px;
    --radius-sm: 18px;
    --radius-md: 24px;
    --radius-lg: 34px;
    --container: min(1280px, calc(100vw - 40px));
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --font-display: "Syne", "Segoe UI", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top right, rgba(189, 137, 51, 0.12), transparent 26%),
        linear-gradient(180deg, #fbf7f1 0%, var(--bg) 32%, #f7f1ea 100%);
    color: var(--ink);
    line-height: 1.65;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.section {
    padding: 72px 0;
}

.section--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(236, 226, 210, 0.55));
}

.section--dark {
    background:
        radial-gradient(circle at top left, rgba(189, 137, 51, 0.16), transparent 28%),
        linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    color: #f9f3ea;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.section-heading--compact {
    margin-bottom: 20px;
}

.section-heading h2,
.page-hero__copy h1,
.hero__content h1,
.hero__card h2,
.support-band h2,
.cta-panel h3,
.product-summary h1 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.section-heading h2 {
    font-size: clamp(2rem, 2.3vw, 3rem);
}

.section-heading p,
.page-hero__copy p,
.hero__content p,
.hero__card p,
.support-band p {
    margin: 0;
    max-width: 62ch;
    color: var(--muted);
}

.section--dark .eyebrow,
.section--dark .section-heading p,
.section--dark .support-band p {
    color: rgba(249, 243, 234, 0.78);
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: #f9f4eb;
    box-shadow: 0 18px 38px rgba(18, 54, 43, 0.22);
}

.button--secondary {
    background: var(--accent);
    color: #16120d;
    box-shadow: 0 16px 32px rgba(189, 137, 51, 0.2);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.76);
    color: var(--ink);
    border-color: var(--line);
}

.button--block {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand);
    font-weight: 800;
}

.flash-stack {
    margin-top: 16px;
}

.flash {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    font-weight: 700;
}

.flash--success {
    background: rgba(28, 107, 72, 0.1);
    color: var(--success);
}

.flash--error {
    background: rgba(142, 67, 56, 0.1);
    color: var(--danger);
}

.database-alert {
    padding: 12px 0;
    background: rgba(142, 67, 56, 0.12);
    color: var(--danger);
}

.database-alert .container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar {
    background: var(--dark);
    color: rgba(250, 244, 236, 0.86);
    padding: 10px 0;
    font-size: 0.92rem;
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.topbar p {
    margin: 0;
}

.topbar a {
    color: #f7dfb2;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(251, 247, 241, 0.9);
    border-bottom: 1px solid rgba(19, 23, 22, 0.05);
}

.header-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand__mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(189, 137, 51, 0.3), rgba(29, 91, 70, 0.72)),
        var(--dark);
    color: #f8f3ea;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.brand__text {
    display: grid;
    gap: 2px;
}

.brand__text strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: -0.04em;
}

.brand__text small {
    color: var(--muted);
    font-weight: 600;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(19, 23, 22, 0.06);
    box-shadow: var(--shadow-soft);
}

.header-search__icon {
    position: absolute;
    left: 18px;
    color: var(--muted);
}

.header-search input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 0;
    background: transparent;
    color: var(--ink);
    outline: none;
}

.header-search button {
    border: 0;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--brand);
    color: #f8f3ea;
    font-weight: 800;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(19, 23, 22, 0.06);
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.header-pill strong {
    min-width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--accent-soft);
    font-size: 0.78rem;
}

.mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
}

.nav-wrap {
    border-top: 1px solid rgba(19, 23, 22, 0.04);
}

.nav-wrap__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 16px 0;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-nav a,
.category-pill-bar a,
.category-strip__inner a {
    padding: 10px 14px;
    border-radius: 999px;
    transition: background 0.18s ease, color 0.18s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.category-pill-bar a:hover,
.category-pill-bar a.is-active {
    background: var(--brand);
    color: #f7f2ea;
}

.header-support {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 800;
    color: var(--brand);
}

.category-strip {
    border-top: 1px solid rgba(19, 23, 22, 0.04);
    background: rgba(255, 255, 255, 0.4);
}

.category-strip__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0;
}

.category-strip__inner a {
    background: rgba(19, 23, 22, 0.03);
    font-size: 0.92rem;
    font-weight: 700;
}

.site-main {
    min-height: 60vh;
}

.hero {
    padding: 66px 0 40px;
}

.hero__grid,
.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.hero__content,
.page-hero__panel,
.support-panel,
.form-card,
.summary-card,
.hero__card,
.service-sidecard,
.success-card,
.filter-card,
.cta-panel,
.newsletter-banner {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(19, 23, 22, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero__content {
    padding: 42px;
}

.hero__content h1 {
    font-size: clamp(2.9rem, 6vw, 5.2rem);
    max-width: 11ch;
}

.hero__content p {
    margin-top: 20px;
    font-size: 1.08rem;
}

.hero__actions,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero__trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.hero__trust div,
.hero__mini-stats div,
.metric-card,
.trust-chip,
.info-card,
.notice-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(19, 23, 22, 0.06);
}

.hero__trust strong,
.hero__mini-stats strong,
.metric-card strong,
.info-card strong {
    display: block;
    margin-bottom: 6px;
}

.hero__trust span,
.hero__mini-stats span,
.metric-card span,
.info-card p,
.info-card span,
.notice-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

.hero__card {
    height: 100%;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at top right, rgba(189, 137, 51, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(18, 54, 43, 0.96), rgba(13, 23, 20, 0.98));
    color: #f9f4eb;
}

.hero__card .eyebrow,
.hero__card p {
    color: rgba(249, 244, 235, 0.82);
}

.hero__card h2 {
    font-size: clamp(2rem, 2.5vw, 3rem);
}

.hero__mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.hero__mini-stats div {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.page-hero {
    padding: 38px 0 24px;
}

.page-hero__panel {
    padding: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
}

.page-hero__metrics {
    display: grid;
    gap: 14px;
}

.breadcrumbs {
    margin-bottom: 18px;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    color: rgba(97, 104, 98, 0.55);
}

.trust-strip,
.info-grid,
.service-grid,
.product-grid,
.testimonial-grid,
.review-grid {
    display: grid;
    gap: 22px;
}

.trust-strip {
    grid-template-columns: repeat(3, 1fr);
}

.trust-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    font-weight: 700;
}

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

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

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

.testimonial-grid,
.review-grid,
.info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.service-card,
.testimonial-card,
.review-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(19, 23, 22, 0.06);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover,
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(17, 26, 23, 0.12);
    border-color: rgba(29, 91, 70, 0.18);
}

.product-card__image,
.service-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 0.92;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(189, 137, 51, 0.18), transparent 25%),
        linear-gradient(180deg, #fffdf8, #f2eadf);
}

.product-card__image img,
.service-card__media img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.product-card:hover .product-card__image img,
.service-card:hover .service-card__media img {
    transform: scale(1.04);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--accent);
    color: #140f07;
    font-size: 0.78rem;
    font-weight: 800;
}

.product-badge.is-dark {
    background: var(--dark);
    color: #f7f3eb;
}

.product-badge.is-soft {
    background: var(--brand-soft);
    color: var(--brand);
}

.product-card__body,
.service-card__body,
.testimonial-card,
.review-card {
    padding: 22px;
}

.product-card__body,
.service-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__meta,
.service-card__meta,
.product-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.product-card h3,
.service-card h3 {
    margin: 10px 0 8px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.1;
}

.product-card p,
.service-card p,
.review-card p,
.testimonial-card p {
    margin: 0;
    color: var(--muted);
}

.product-card__price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0;
}

.product-card__price strong,
.product-price-line strong {
    font-size: 1.24rem;
    font-weight: 800;
}

.product-card__price span,
.product-price-line span {
    color: rgba(97, 104, 98, 0.72);
    text-decoration: line-through;
}

.product-card__actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: auto;
}

.product-card__actions form:first-child {
    flex: 1;
}

.icon-button {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
}

.icon-button.is-active {
    background: var(--brand);
    color: #f7f2ea;
}

.stock-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.stock-dot::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: currentColor;
}

.stock-dot.is-in {
    color: var(--success);
}

.stock-dot.is-low {
    color: var(--warning);
}

.stock-dot.is-out {
    color: var(--danger);
}

.catalog-shell,
.cart-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
}

.category-pill-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.category-pill-bar a {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(19, 23, 22, 0.06);
    font-weight: 700;
}

.catalog-topline {
    margin-bottom: 20px;
}

.catalog-topline strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.catalog-topline p {
    margin: 0;
    color: var(--muted);
}

.filter-card,
.form-card,
.support-panel,
.summary-card,
.cta-panel,
.newsletter-banner,
.success-card {
    padding: 28px;
}

.filter-card__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.filter-card__heading h3,
.summary-card h2,
.support-panel h2,
.support-panel h3,
.cta-panel h3,
.newsletter-banner h2,
.success-card h2 {
    margin: 0;
    font-family: var(--font-display);
    line-height: 1.1;
}

.filter-group,
.form-field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.filter-group--inline,
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.filter-group label,
.form-field label {
    font-weight: 700;
    font-size: 0.94rem;
}

.filter-card select,
.filter-card input,
.form-field input,
.form-field select,
.form-field textarea,
.newsletter-form input {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(19, 23, 22, 0.08);
    background: rgba(255, 255, 255, 0.92);
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.filter-card select:focus,
.filter-card input:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.newsletter-form input:focus {
    border-color: rgba(29, 91, 70, 0.4);
    box-shadow: 0 0 0 4px rgba(29, 91, 70, 0.1);
}

.filter-card__actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(19, 23, 22, 0.06);
    border-radius: 22px;
    padding: 18px 20px;
    box-shadow: var(--shadow-soft);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 14px 0 0;
    color: var(--muted);
}

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

.newsletter-form--wide {
    max-width: 520px;
}

.newsletter-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 24px;
    background:
        radial-gradient(circle at top right, rgba(189, 137, 51, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 239, 231, 0.95));
}

.support-band,
.cta-panel {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.support-band h2,
.cta-panel h3 {
    font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.stars {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    color: rgba(189, 137, 51, 0.34);
}

.star.is-filled {
    color: var(--accent);
}

.testimonial-card strong,
.review-card strong {
    display: block;
    margin-top: 18px;
}

.testimonial-card span,
.review-card span {
    color: var(--muted);
    font-size: 0.94rem;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 28px;
}

.product-gallery__main,
.product-gallery__thumbs,
.product-summary,
.tab-shell,
.cart-table,
.process-list,
.service-sidecard,
.service-sidecard__body {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(19, 23, 22, 0.06);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.product-gallery__main {
    padding: 20px;
    min-height: 520px;
    background:
        radial-gradient(circle at top right, rgba(189, 137, 51, 0.18), transparent 25%),
        linear-gradient(180deg, #fffdf8, #f2eadf);
}

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

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

.product-thumb {
    padding: 0;
    border: 1px solid rgba(19, 23, 22, 0.08);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
}

.product-summary {
    padding: 32px;
}

.product-summary h1 {
    font-size: clamp(2.2rem, 3vw, 3.5rem);
    margin-top: 6px;
}

.product-price-line {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 18px 0 12px;
}

.product-price-line em {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #7a5512;
    font-style: normal;
    font-weight: 800;
    font-size: 0.82rem;
}

.product-summary__text {
    margin: 18px 0;
    color: var(--muted);
}

.spec-list,
.detail-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.spec-list li,
.detail-list li {
    margin-bottom: 10px;
}

.product-actions {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.quantity-form {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
}

.quantity-control {
    display: inline-grid;
    grid-template-columns: 48px 72px 48px;
    align-items: center;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(19, 23, 22, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.quantity-control button,
.quantity-control input {
    height: 50px;
    border: 0;
    text-align: center;
    background: transparent;
}

.quantity-control input {
    border-left: 1px solid rgba(19, 23, 22, 0.08);
    border-right: 1px solid rgba(19, 23, 22, 0.08);
}

.notice-stack {
    display: grid;
    gap: 12px;
}

.tab-shell {
    padding: 24px;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.tab-buttons button {
    padding: 11px 14px;
    border-radius: 999px;
    border: 1px solid rgba(19, 23, 22, 0.08);
    background: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.tab-buttons button.is-active {
    background: var(--brand);
    color: #f7f2ea;
}

.tab-panel {
    display: none;
    color: var(--muted);
}

.tab-panel.is-active {
    display: block;
}

.summary-card {
    align-self: start;
}

.summary-line,
.summary-product {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(19, 23, 22, 0.08);
}

.summary-line--total {
    font-size: 1.08rem;
    font-weight: 800;
}

.cart-table {
    padding: 16px;
}

.cart-row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 110px 90px 110px 90px;
    gap: 14px;
    align-items: center;
    padding: 18px 10px;
    border-bottom: 1px solid rgba(19, 23, 22, 0.08);
}

.cart-row__product {
    display: flex;
    gap: 14px;
    align-items: center;
}

.cart-row__product img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdf8, #f2eadf);
}

.cart-row__product span,
.cart-row__remove span {
    color: var(--muted);
    font-size: 0.92rem;
}

.cart-row__qty input {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(19, 23, 22, 0.08);
    padding: 10px 12px;
}

.payment-options {
    display: grid;
    gap: 10px;
}

.payment-options label {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(19, 23, 22, 0.08);
    background: rgba(255, 255, 255, 0.84);
}

.success-card {
    text-align: center;
}

.success-card strong {
    color: var(--brand);
}

.success-card h2 {
    margin: 10px 0;
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.process-list,
.support-panel,
.form-card {
    padding: 28px;
}

.timeline-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(19, 23, 22, 0.08);
}

.timeline-item strong {
    display: block;
    margin-bottom: 6px;
}

.timeline-item p,
.support-panel p,
.support-panel li {
    margin: 0;
    color: var(--muted);
}

.support-panel--compact {
    margin-top: 24px;
}

.service-sidecard {
    overflow: hidden;
}

.service-sidecard img {
    aspect-ratio: 1 / 0.78;
    object-fit: cover;
}

.service-sidecard__body {
    border: 0;
    border-top: 1px solid rgba(19, 23, 22, 0.06);
    border-radius: 0;
    padding: 24px;
    box-shadow: none;
}

.service-sidecard__body strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.service-sidecard__body span,
.service-sidecard__body p {
    color: var(--muted);
}

.service-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-top: auto;
    padding-top: 18px;
}

.service-card__footer span {
    color: var(--muted);
    font-size: 0.92rem;
}

.faq-group + .faq-group {
    margin-top: 36px;
}

.empty-state {
    text-align: center;
    padding: 56px 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(19, 23, 22, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.empty-state h3,
.empty-state h1 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 2.5vw, 2.8rem);
}

.empty-state p {
    margin: 0 auto 20px;
    max-width: 48ch;
    color: var(--muted);
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.pagination a {
    min-width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(19, 23, 22, 0.08);
    font-weight: 800;
}

.pagination a.is-current {
    background: var(--brand);
    color: #f7f2ea;
}

.site-footer {
    padding: 60px 0 24px;
    background:
        radial-gradient(circle at top left, rgba(189, 137, 51, 0.12), transparent 25%),
        linear-gradient(180deg, var(--dark) 0%, #12211d 100%);
    color: rgba(249, 243, 234, 0.88);
}

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

.brand--footer .brand__text strong,
.site-footer h3 {
    color: #fffaf2;
}

.site-footer h3 {
    margin-top: 0;
    font-family: var(--font-display);
}

.footer-copy,
.footer-contact,
.site-footer li,
.site-footer p {
    color: rgba(249, 243, 234, 0.72);
}

.site-footer ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-contact {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(249, 243, 234, 0.1);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.admin-placeholder {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: linear-gradient(180deg, #fbf7f1, var(--bg));
}

.admin-placeholder__card {
    max-width: 640px;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(19, 23, 22, 0.06);
    box-shadow: var(--shadow);
}

@media (max-width: 1160px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .trust-strip {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 980px) {
    .header-main {
        grid-template-columns: auto 1fr auto;
    }

    .mobile-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav-wrap {
        display: none;
    }

    .nav-wrap.is-open {
        display: block;
    }

    .nav-wrap__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav {
        flex-direction: column;
    }

    .hero__grid,
    .split-grid,
    .product-layout,
    .catalog-shell,
    .cart-layout,
    .checkout-layout,
    .newsletter-banner,
    .page-hero__panel {
        grid-template-columns: 1fr;
    }

    .hero__trust,
    .hero__mini-stats {
        grid-template-columns: 1fr;
    }

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

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

    .header-pill span {
        display: none;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100vw - 24px, 100%);
    }

    .section {
        padding: 56px 0;
    }

    .topbar__inner,
    .header-main,
    .support-band,
    .cta-panel,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .header-main {
        display: flex;
    }

    .header-search {
        order: 3;
    }

    .hero__content,
    .hero__card,
    .page-hero__panel,
    .support-panel,
    .form-card,
    .summary-card,
    .cta-panel,
    .newsletter-banner,
    .success-card,
    .product-summary {
        padding: 24px;
    }

    .hero__content h1 {
        max-width: none;
    }

    .product-grid,
    .product-grid--two,
    .testimonial-grid,
    .review-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

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

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

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group--inline,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}
