:root {
    --store-bg: #f7f2e9;
    --store-surface: #fffdf9;
    --store-card: #ffffff;
    --store-text: #2f241c;
    --store-muted: #746557;
    --store-border: #eadfce;
    --store-accent: #9e7a2d;
    --store-accent-strong: #7f6022;
    --store-brown: #4d3a2d;
    --store-nav-text: #4d3a2d;
    --store-accent-text: #ffffff;
    --store-footer-text: #4d3a2d;
    --store-soft: #fbf7f0;
    --store-radius: 16px;
    --store-shadow: 0 10px 28px rgba(73, 54, 34, 0.08);
    --store-shadow-hover: 0 18px 36px rgba(73, 54, 34, 0.14);
    --store-font-body: "Segoe UI Variable Text", "Segoe UI", "Inter", system-ui, -apple-system, Arial, sans-serif;
    --store-font-heading: "Segoe UI Variable Display", "Montserrat", "Segoe UI", "Inter", system-ui, -apple-system, Arial, sans-serif;
    --store-font-button: "Segoe UI Variable Text", "Segoe UI", "Inter", system-ui, -apple-system, Arial, sans-serif;
    --store-font-body-weight: 400;
    --store-font-body-style: normal;
    --store-font-heading-weight: 400;
    --store-font-heading-style: normal;
    --store-font-button-weight: 400;
    --store-font-button-style: normal;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body, div, span, a, p, button, input, select, textarea, th, td, h1, h2, h3, h4, h5, h6, small, strong, li, ul, ol, table, label {
    font-feature-settings: "liga", "calt", "kern";
    font-kerning: normal;
}

body {
    margin: 0;
    font-family: var(--store-font-body);
    font-weight: var(--store-font-body-weight);
    font-style: var(--store-font-body-style);
    line-height: 1.6;
    font-size: 15px;
    letter-spacing: 0.01em;
    word-spacing: 0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: none;
    color: var(--store-text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)) 0 0 / 100% 240px no-repeat,
        var(--store-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-feature-settings: "liga", "calt", "kern";
    font-family: "Segoe UI Variable Display", "Montserrat", var(--store-font-heading);
    font-weight: 700;
    font-style: var(--store-font-heading-style);
}

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

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

.store-shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.store-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.store-header::before {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--store-accent), #d8b66a, var(--store-brown));
}

.store-header-shell {
    display: grid;
    grid-template-columns: minmax(260px, 1.15fr) auto auto;
    gap: 18px;
    align-items: center;
    padding: 16px 0;
}

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

.store-brand img {
    width: auto;
    max-width: min(100%, 260px);
    height: auto;
    max-height: 78px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    border: 0;
    flex-shrink: 0;
}

.store-brand-copy strong {
    display: block;
    font-family: var(--store-font-heading);
    font-weight: var(--store-font-heading-weight);
    font-style: var(--store-font-heading-style);
    font-size: 1.8rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.store-brand-copy small {
    display: block;
    margin-top: 4px;
    color: var(--store-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
}

.store-btn,
.store-btn-light,
button,
input[type="submit"],
input[type="button"] {
    font-family: var(--store-font-button);
    font-weight: var(--store-font-button-weight);
    font-style: var(--store-font-button-style);
}

.store-footer-notes {
    border-top: 1px solid rgba(159, 126, 52, 0.1);
    background: rgba(255, 253, 249, 0.86);
    margin-top: 18px;
}

.store-footer-notes-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0 14px;
}

.store-footer-notes a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(158, 122, 45, 0.08);
    color: var(--store-footer-text);
    font-size: 0.86rem;
    font-weight: 700;
}

.store-footer-notes a i {
    color: var(--store-accent);
}

.store-nav {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 8px;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.store-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    color: #334155;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 12px;
    transition: color 0.22s ease, transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.store-nav a::after {
    content: "";
    position: absolute;
    inset: auto 10px 8px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--store-accent), var(--store-accent-strong));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.store-nav a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    color: var(--store-accent);
    font-size: 0.9rem;
}

.store-nav a:hover,
.store-nav a.active {
    color: #0f172a;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.store-nav a:hover::after,
.store-nav a.active::after {
    transform: scaleX(1);
}

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

.store-action-pill,
.store-action-link,
.store-user-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    border: 1px solid var(--store-border);
}

.store-action-pill {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    color: #0f172a;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.store-action-pill em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--store-accent);
    color: var(--store-accent-text);
    font-style: normal;
    font-size: 0.78rem;
}

.store-action-link,
.store-user-chip {
    background: var(--store-soft);
    color: var(--store-nav-text);
}

.store-main {
    padding: 40px 0 72px;
}

.store-grid {
    display: grid;
    gap: 28px;
}

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

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

.store-section,
.store-hero,
.store-page-head,
.store-filter-bar,
.store-slider-card,
.store-product-card,
.store-trust-card,
.store-form-card,
.store-table-card,
.store-summary-card,
.store-address-card,
.store-order-card,
.store-empty-state,
.store-note,
.store-flash {
    animation: storeFadeUp 0.5s ease both;
}

.store-hero {
    display: block;
    border: 1px solid var(--store-border);
    border-radius: calc(var(--store-radius) + 6px);
    overflow: hidden;
    background: var(--store-card);
    box-shadow: var(--store-shadow);
}

.store-hero-copy,
.store-hero-media,
.store-form-card,
.store-table-card,
.store-summary-card,
.store-address-card,
.store-order-card,
.store-filter-bar {
    background: var(--store-card);
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius);
    box-shadow: var(--store-shadow);
}

.store-hero-copy {
    position: relative;
    padding: clamp(28px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
        var(--store-soft);
}

.store-hero-copy::after {
    content: "";
    position: absolute;
    left: clamp(28px, 4vw, 52px);
    top: 36px;
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, var(--store-accent), transparent);
}

.store-kicker {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(158, 122, 45, 0.1);
    color: var(--store-accent-strong);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.store-hero-copy h1,
.store-page-head h1,
.store-section-head h2,
.store-detail-copy h1 {
    margin: 0;
    font-family: var(--store-font-heading);
    color: var(--store-brown);
    letter-spacing: -0.01em;
    font-weight: 700;
}

.store-hero-copy h1 {
    font-size: clamp(2.55rem, 4.25vw, 4.9rem);
    line-height: 0.98;
}

.store-page-head h1,
.store-section-head h2,
.store-detail-copy h1 {
    font-size: clamp(1.95rem, 3vw, 3.25rem);
    line-height: 1.04;
}

.store-hero-copy p,
.store-page-head p,
.store-card p,
.store-footer p,
.store-form-card p,
.store-slider-content p,
.store-trust-card p,
.store-product-body p {
    margin: 0;
    color: #655a4e;
    line-height: 1.78;
    font-size: 0.99rem;
}

.store-hero-copy p,
.store-slider-content p,
.store-about-copy p {
    font-size: 1rem;
}

.store-hero-actions,
.store-inline-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-btn,
.store-btn-light,
.store-btn-dark {
    position: relative;
    border: 0;
    cursor: pointer;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    font-family: var(--store-font-button);
    font-size: 0.94rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.store-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-family: var(--store-font-button);
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.24);
}

.store-btn-whatsapp:hover {
    color: #fff;
    transform: translateY(-1px);
}

.store-btn {
    color: var(--store-accent-text);
    background: linear-gradient(180deg, #b9933f, var(--store-accent-strong));
    box-shadow: 0 10px 22px rgba(158, 122, 45, 0.26);
}

.store-btn-light {
    color: var(--store-nav-text);
    background: #fff;
    border: 1px solid var(--store-border);
    box-shadow: 0 4px 12px rgba(80, 58, 34, 0.06);
}

.store-btn-dark {
    color: var(--store-accent-text);
    background: var(--store-brown);
    box-shadow: 0 10px 20px rgba(77, 58, 45, 0.24);
}

.store-btn:hover,
.store-btn-light:hover,
.store-btn-dark:hover {
    transform: translateY(-2px);
}

.store-btn:hover {
    box-shadow: 0 14px 26px rgba(158, 122, 45, 0.34);
}

.store-btn-light:hover {
    background: var(--store-soft);
}

.store-hero-media {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.32), transparent 38%),
        linear-gradient(160deg, #e9dac4 0%, #c7a873 100%);
}

.store-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgba(77, 58, 45, 0.06), rgba(77, 58, 45, 0));
}

.store-hero-media img,
.store-slider-card img,
.store-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-hero-media img {
    position: relative;
    z-index: 1;
    object-fit: contain;
    padding: 24px;
}

.store-hero-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: 460px;
    padding: 24px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(77, 58, 45, 0.82);
}

.store-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.store-hero-stats article {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(158, 122, 45, 0.14);
}

.store-hero-stats strong {
    font-size: 1.2rem;
    line-height: 1;
    color: var(--store-brown);
}

.store-hero-stats span {
    color: var(--store-muted);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.store-section {
    margin-bottom: 8px;
}

.store-about-card,
.store-contact-card {
    background: var(--store-card);
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius);
    box-shadow: var(--store-shadow);
}

.store-about-card {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 0;
    overflow: hidden;
}

.store-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 18px;
    align-items: start;
}

.store-story-media {
    min-height: 220px;
    background: linear-gradient(180deg, #f7efe3, #efe3d4);
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius);
    overflow: hidden;
    box-shadow: var(--store-shadow);
}

.store-story-media img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.store-story-copy {
    display: grid;
    gap: 18px;
}

.store-about-copy,
.store-contact-card {
    padding: 24px;
}

.store-about-copy {
    display: grid;
    gap: 14px;
    background: linear-gradient(180deg, #fffdf8, #fbf5ec);
}

.store-about-points {
    display: grid;
    gap: 1px;
    background: var(--store-border);
}

.store-about-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 22px;
    background: var(--store-card);
    font-weight: 700;
    color: var(--store-brown);
}

.store-about-points i,
.store-contact-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(158, 122, 45, 0.1);
    color: var(--store-accent);
    flex-shrink: 0;
}

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

.store-contact-card {
    display: grid;
    align-content: start;
    gap: 12px;
}

.store-contact-map {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: #fff;
    box-shadow: var(--store-shadow);
}

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

.store-bank-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
    gap: 0;
    overflow: hidden;
    background: var(--store-card);
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius);
    box-shadow: var(--store-shadow);
}

.store-bank-card.is-single {
    grid-template-columns: 1fr;
}

.store-bank-media {
    min-height: 240px;
    background: linear-gradient(180deg, #f7efe3, #efe3d4);
}

.store-bank-media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}

.store-bank-copy {
    display: flex;
    align-items: center;
    padding: 28px;
    background: linear-gradient(180deg, #fffdf8, #fbf5ec);
}

.store-bank-copy-inner {
    width: 100%;
    color: var(--store-text);
    line-height: 1.8;
}

.store-contact-card h3,
.store-form-card h3,
.store-summary-card h3,
.store-table-card h3,
.store-address-card h3,
.store-order-card h3,
.store-slider-content h3 {
    margin: 0;
    font-family: var(--store-font-heading);
    font-size: 1.42rem;
    line-height: 1.16;
    letter-spacing: -0.005em;
    color: var(--store-brown);
    font-weight: 700;
}

.store-slider-content h3 {
    font-size: 1.28rem;
}

.store-form-field label,
.store-summary-row span,
.store-meta,
.store-footer-links a,
.store-footer-notes a,
.store-nav a,
.store-action-pill,
.store-action-link,
.store-user-chip,
.store-empty-state,
.store-note,
.store-flash,
.store-product-empty {
    font-family: var(--store-font-body);
}

.store-input,
.store-select,
.store-textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid var(--store-border);
    border-radius: 14px;
    background: #fff;
    color: var(--store-text);
    font-family: var(--store-font-body);
    font-size: 0.96rem;
    line-height: 1.5;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.store-input:focus,
.store-select:focus,
.store-textarea:focus {
    border-color: rgba(158, 122, 45, 0.52);
    box-shadow: 0 0 0 4px rgba(158, 122, 45, 0.12);
    background: #fffdf7;
}

.store-textarea {
    min-height: 120px;
    resize: vertical;
}

.store-form-field {
    display: grid;
    gap: 8px;
    align-content: start;
}

.store-form-field label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--store-brown);
    letter-spacing: 0.01em;
}

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

.store-page-head,
.store-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.store-page-head {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(159, 126, 52, 0.16);
}

.store-meta {
    color: var(--store-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.store-section-fullbleed {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.store-slider-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.store-detail-layout,
.store-cart-layout,
.store-account-layout,
.store-auth-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.store-account-shell {
    gap: 24px;
}

.store-account-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
    align-items: stretch;
    gap: 24px;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.store-account-hero-copy {
    display: grid;
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--store-border);
    border-radius: calc(var(--store-radius) + 4px);
    background:
        radial-gradient(circle at top right, rgba(158, 122, 45, 0.16), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 239, 0.98));
    box-shadow: var(--store-shadow);
}

.store-account-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.store-account-hero-actions .store-btn,
.store-account-hero-actions .store-btn-light {
    min-width: 180px;
}

.store-account-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.store-account-stat {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 20px 18px;
    border: 1px solid var(--store-border);
    border-radius: 22px;
    background: var(--store-card);
    box-shadow: var(--store-shadow);
}

.store-account-stat span,
.store-account-stat small {
    color: var(--store-muted);
}

.store-account-stat span {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.store-account-stat strong {
    color: var(--store-brown);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    line-height: 1;
}

.store-account-stat small {
    font-size: 0.84rem;
    line-height: 1.55;
}

.store-account-dashboard {
    display: grid;
    grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.4fr);
    gap: 24px;
    align-items: start;
}

.store-account-sidebar,
.store-account-main {
    display: grid;
    gap: 24px;
}

.store-account-profile-card,
.store-account-form-card {
    display: grid;
    gap: 18px;
}

.store-account-profile-top,
.store-account-panel-head,
.store-account-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.store-account-profile-top {
    align-items: center;
}

.store-account-avatar {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--store-accent), var(--store-accent-strong));
    color: #fff;
    font-size: 1.55rem;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(158, 122, 45, 0.24);
}

.store-account-profile-copy {
    display: grid;
    gap: 8px;
}

.store-account-profile-copy h3 {
    margin: 0;
}

.store-account-action-stack {
    display: grid;
    gap: 12px;
}

.store-account-action-stack .store-btn,
.store-account-action-stack .store-btn-light {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.store-account-note {
    margin-top: 4px;
}

.store-account-panel-head h3 {
    margin: 8px 0 0;
}

.store-account-panel-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(158, 122, 45, 0.12);
    color: var(--store-accent-strong);
    font-size: 1.1rem;
    font-weight: 800;
}

.store-account-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.store-account-span-full {
    grid-column: 1 / -1;
}

.store-account-form-checks {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.store-account-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid var(--store-border);
    border-radius: 14px;
    background: #fffdfa;
    color: var(--store-brown);
    font-weight: 700;
}

.store-account-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--store-accent-strong);
}

.store-account-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.store-account-card-grid {
    display: grid;
    gap: 24px;
}

.store-account-cards {
    display: grid;
    gap: 16px;
}

.store-account-info-card {
    display: grid;
    gap: 14px;
    border-radius: 20px;
}

.store-address-card.store-account-info-card,
.store-order-card.store-account-info-card {
    padding: 20px;
}

.store-account-card-head strong {
    color: var(--store-brown);
    font-size: 1rem;
}

.store-account-card-body {
    display: grid;
    gap: 12px;
}

.store-account-card-body > div {
    display: flex;
    align-items: start;
    gap: 12px;
    color: var(--store-text);
    line-height: 1.7;
}

.store-account-card-body i {
    width: 18px;
    margin-top: 4px;
    color: var(--store-accent-strong);
}

.store-tag.is-info {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

.store-tag.is-success {
    background: rgba(22, 163, 74, 0.12);
    color: #15803d;
}

.store-tag.is-warning {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.store-tag.is-danger {
    background: rgba(220, 38, 38, 0.12);
    color: #b91c1c;
}

.store-slider-card,
.store-product-card,
.store-trust-card,
.store-order-card,
.store-address-card {
    overflow: hidden;
    background: var(--store-card);
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius);
    box-shadow: var(--store-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.store-product-card {
    height: 100%;
}

.store-slider-card:hover,
.store-product-card:hover,
.store-trust-card:hover,
.store-order-card:hover,
.store-address-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--store-shadow-hover);
    border-color: rgba(159, 126, 52, 0.3);
}

.store-slider-content,
.store-product-body,
.store-summary-card,
.store-form-card,
.store-table-card,
.store-address-card,
.store-order-card,
.store-filter-bar {
    padding: 22px;
}

.store-slider-card img {
    height: 240px;
}

.store-slider-card {
    position: relative;
    display: grid;
    grid-template-rows: 240px 1fr;
}

.store-slider-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 26%, rgba(77, 58, 45, 0.04) 100%);
    pointer-events: none;
}

.store-slider-content {
    display: grid;
    align-content: start;
    gap: 12px;
}

.store-slider-content h3 {
    margin: 0;
    font-size: 1.28rem;
    line-height: 1.2;
    color: var(--store-brown);
}

.store-carousel-section {
    position: relative;
    margin-top: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #efe6d7 0%, #e8dcc7 100%);
    min-height: 560px;
}

.store-carousel-viewport,
.store-carousel-track {
    position: relative;
    width: 100%;
    min-height: 560px;
}

.store-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.store-carousel-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.store-carousel-media,
.store-carousel-placeholder {
    min-height: 500px;
}

.store-carousel-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 24px 0 24px 0;
}

.store-carousel-media::after {
    display: none;
}

.store-carousel-shell {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: flex;
    align-items: center;
    width: 100%;
}

.store-carousel-panel {
    width: 100vw;
    max-width: 100vw;
    min-height: 500px;
    border-radius: 0;
    background: linear-gradient(135deg, #f7f1e7 0%, #eadcc5 100%);
    border: 0;
    box-shadow: none;
    overflow: hidden;
}

.store-carousel-layout {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 500px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: stretch;
    gap: 0;
    padding: 0;
}

.store-carousel-copy {
    width: 100%;
    max-width: 520px;
    padding: 56px 40px 56px 40px;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    color: var(--store-text);
    justify-self: start;
    align-self: center;
}

.store-carousel-copy .store-kicker {
    background: rgba(200, 155, 6, 0.12);
    color: var(--store-accent-strong);
}

.store-carousel-copy h2 {
    margin: 0 0 18px;
    font-family: var(--store-font-heading);
    font-size: clamp(2.7rem, 4.8vw, 4.4rem);
    line-height: 0.96;
    letter-spacing: -0.015em;
    color: #3e2e23;
    font-weight: 700;
}

.store-carousel-copy p {
    margin: 0 0 24px;
    max-width: 34rem;
    color: #675b4f;
    font-size: 1rem;
    line-height: 1.82;
}

.store-action-pill,
.store-action-link,
.store-user-chip,
.store-btn,
.store-btn-light,
.store-footer-links a {
    font-family: var(--store-font-button);
    letter-spacing: 0.01em;
}

.store-carousel-copy .store-inline-actions {
    gap: 14px;
}

.store-carousel-media-card {
    position: relative;
    width: 100%;
    min-height: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
}

.store-carousel-media-card::after {
    display: none;
}

.store-carousel-media img,
.store-carousel-placeholder {
    width: 100%;
    height: 100%;
}

.store-carousel-media img {
    object-fit: contain;
    object-position: center center;
    padding: 0;
    transform: scale(1.16);
    transform-origin: center center;
}

.store-carousel-placeholder {
    display: grid;
    place-items: center;
    color: rgba(77, 58, 45, 0.84);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.store-carousel-pos-left-top .store-carousel-copy,
.store-carousel-pos-right-top .store-carousel-copy {
    align-self: start;
}

.store-carousel-pos-left-center .store-carousel-copy,
.store-carousel-pos-right-center .store-carousel-copy {
    align-self: center;
}

.store-carousel-pos-left-bottom .store-carousel-copy,
.store-carousel-pos-right-bottom .store-carousel-copy {
    align-self: end;
}

.store-carousel-pos-right-top .store-carousel-copy,
.store-carousel-pos-right-center .store-carousel-copy,
.store-carousel-pos-right-bottom .store-carousel-copy {
    order: 2;
    justify-self: start;
}

.store-carousel-pos-right-top .store-carousel-media,
.store-carousel-pos-right-center .store-carousel-media,
.store-carousel-pos-right-bottom .store-carousel-media {
    order: 1;
}

.store-carousel-pos-left-top .store-carousel-copy,
.store-carousel-pos-left-center .store-carousel-copy,
.store-carousel-pos-left-bottom .store-carousel-copy {
    order: 1;
    justify-self: start;
}

.store-carousel-pos-left-top .store-carousel-media,
.store-carousel-pos-left-center .store-carousel-media,
.store-carousel-pos-left-bottom .store-carousel-media {
    order: 2;
}

.store-carousel-pos-left-top .store-carousel-copy,
.store-carousel-pos-left-center .store-carousel-copy,
.store-carousel-pos-left-bottom .store-carousel-copy {
    padding: 56px 40px 56px 40px;
}

.store-carousel-pos-left-top .store-carousel-media,
.store-carousel-pos-left-center .store-carousel-media,
.store-carousel-pos-left-bottom .store-carousel-media {
    padding: 24px 0 24px 0;
}

.store-carousel-pos-top-center .store-carousel-layout,
.store-carousel-pos-bottom-center .store-carousel-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 26px;
    text-align: center;
}

.store-carousel-pos-top-center .store-carousel-copy,
.store-carousel-pos-bottom-center .store-carousel-copy {
    max-width: 760px;
}

.store-carousel-pos-top-center .store-carousel-media,
.store-carousel-pos-bottom-center .store-carousel-media {
    width: 100%;
}

.store-carousel-pos-top-center .store-carousel-copy p,
.store-carousel-pos-bottom-center .store-carousel-copy p {
    margin-left: auto;
    margin-right: auto;
}

.store-carousel-pos-top-center .store-inline-actions,
.store-carousel-pos-bottom-center .store-inline-actions {
    justify-content: center;
}

.store-carousel-pos-bottom-center .store-carousel-copy {
    order: 2;
}

.store-carousel-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.88);
    color: var(--store-brown);
    box-shadow: 0 12px 28px rgba(30, 20, 12, 0.14);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.2s ease, background 0.2s ease;
}

.store-carousel-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.03);
}

.store-carousel-nav.prev {
    left: clamp(18px, 2.4vw, 34px);
}

.store-carousel-nav.next {
    right: clamp(18px, 2.4vw, 34px);
}

.store-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 4;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.store-carousel-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.store-carousel-dot.is-active {
    width: 34px;
    background: #fff;
}

.store-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.store-product-media {
    position: relative;
    aspect-ratio: 1 / 1.06;
    background: linear-gradient(180deg, #f7efe3, #efe3d4);
    overflow: hidden;
}

.store-product-media-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 18px;
}

.store-product-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08));
}

.store-product-media.is-empty::after,
.store-detail-media.is-empty::after {
    display: none;
}

.store-product-empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    margin: 14px;
    border-radius: 24px;
    border: 1px dashed rgba(124, 94, 52, 0.28);
    background: rgba(255, 255, 255, 0.58);
    color: var(--store-muted);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.store-product-card:hover .store-product-media img,
.store-product-card:focus-within .store-product-media img {
    transform: scale(1.04);
}

.store-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.store-product-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.store-product-body {
    position: relative;
    display: grid;
    gap: 12px;
    overflow: hidden;
}

.store-product-body::before {
    content: "";
    position: absolute;
    right: -18%;
    bottom: -30%;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 30% 30%, rgba(224, 176, 60, 0.18), rgba(224, 176, 60, 0.08) 34%, rgba(224, 176, 60, 0) 70%),
        radial-gradient(circle at 60% 58%, rgba(194, 129, 16, 0.12), rgba(194, 129, 16, 0.04) 38%, rgba(194, 129, 16, 0) 72%);
    filter: blur(8px);
    opacity: 0.75;
    pointer-events: none;
    animation: storeHoneyFloat 8.5s ease-in-out infinite;
}

.store-product-body > * {
    position: relative;
    z-index: 1;
}

.store-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(158, 122, 45, 0.1);
    color: var(--store-accent-strong);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-price {
    color: var(--store-accent-strong);
    font-size: 1.2rem;
    font-weight: 800;
}

.store-product-card h3,
.store-slider-card h3,
.store-form-card h3,
.store-summary-card h3 {
    margin: 0;
    color: var(--store-brown);
    font-size: 1.08rem;
}

.store-product-card h3 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.store-product-body p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 3.4em;
}

.store-product-body .store-inline-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.store-product-body .store-inline-actions > * {
    min-width: 0;
}

.store-product-body .store-inline-actions > a {
    grid-column: 1;
}

.store-product-body .store-inline-actions form {
    margin: 0;
    grid-column: 2;
    width: 100%;
}

.store-product-body .store-inline-actions .store-btn,
.store-product-body .store-inline-actions .store-btn-light,
.store-product-body .store-inline-actions .store-btn-whatsapp {
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.88rem;
    border-radius: 14px;
}

.store-secondary-actions {
    margin-top: 12px;
}

.store-whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
}

.store-whatsapp-float:hover {
    color: #fff;
    transform: translateY(-1px);
}

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

.store-trust-card {
    padding: 24px;
    background: linear-gradient(180deg, #fffdf9, #f9f3ea);
}

.store-trust-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(158, 122, 45, 0.1);
    color: var(--store-accent);
    font-size: 1.15rem;
}

.store-filter-grid,
.store-form-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.store-form-field {
    display: grid;
    gap: 8px;
}

.store-form-field label {
    color: var(--store-brown);
    font-size: 0.92rem;
    font-weight: 700;
}

.store-input,
.store-select,
.store-textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #dbcdb7;
    border-radius: 12px;
    background: #fff;
    color: var(--store-text);
    font: inherit;
    box-shadow: inset 0 1px 2px rgba(77, 58, 45, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-input:focus,
.store-select:focus,
.store-textarea:focus {
    outline: none;
    border-color: rgba(158, 122, 45, 0.6);
    box-shadow: 0 0 0 4px rgba(158, 122, 45, 0.12);
}

.store-textarea {
    min-height: 132px;
    resize: vertical;
}

.store-detail-media {
    min-height: 560px;
    overflow: hidden;
    border: 1px solid var(--store-border);
    border-radius: calc(var(--store-radius) + 2px);
    box-shadow: var(--store-shadow);
    background: linear-gradient(180deg, #f5ebdd, #ecdecc);
}

.store-detail-media.is-empty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-detail-copy {
    display: grid;
    align-content: start;
    gap: 18px;
}

.store-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--store-muted);
    font-weight: 700;
}

.store-quantity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid var(--store-border);
    border-radius: 999px;
    background: #fff;
}

.store-quantity input {
    width: 72px;
    border: 0;
    background: transparent;
    text-align: center;
    font: inherit;
    font-weight: 800;
}

.store-cart-table {
    width: 100%;
    border-collapse: collapse;
}

.store-cart-table th,
.store-cart-table td {
    padding: 14px 0;
    border-bottom: 1px solid rgba(159, 126, 52, 0.12);
    text-align: left;
    vertical-align: top;
}

.store-cart-table th {
    color: var(--store-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.store-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--store-brown);
    font-weight: 700;
}

.store-summary-row.total {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(159, 126, 52, 0.16);
    font-size: 1.08rem;
}

.store-cart-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.95fr);
    gap: 22px;
    padding: 26px 28px;
    border: 1px solid var(--store-border);
    border-radius: calc(var(--store-radius) + 4px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 243, 230, 0.95)),
        radial-gradient(circle at top right, rgba(158, 122, 45, 0.12), transparent 40%);
    box-shadow: var(--store-shadow);
}

.store-cart-hero-copy {
    display: grid;
    gap: 10px;
    align-content: start;
}

.store-cart-hero-copy h2 {
    margin: 0;
    color: var(--store-brown);
    font-size: clamp(1.55rem, 2vw, 2.2rem);
}

.store-cart-hero-copy p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.7;
}

.store-cart-hero-actions,
.store-cart-card-actions,
.store-cart-summary-actions {
    display: grid;
    gap: 12px;
    align-content: start;
}

.store-cart-hero-actions .store-btn,
.store-cart-hero-actions .store-btn-light,
.store-cart-hero-actions .store-btn-dark,
.store-cart-card-actions .store-btn-light,
.store-cart-summary-actions .store-btn,
.store-cart-summary-actions .store-btn-light {
    width: 100%;
    justify-content: center;
}

.store-cart-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(159, 126, 52, 0.14);
}

.store-cart-card-head h3 {
    margin: 4px 0 8px;
}

.store-cart-product-cell {
    min-width: 240px;
}

.store-cart-product-block {
    display: grid;
    gap: 10px;
}

.store-cart-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.store-cart-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(158, 122, 45, 0.12);
    color: var(--store-brown);
    font-size: 0.8rem;
    font-weight: 700;
}

.store-cart-badge.muted {
    background: rgba(77, 58, 45, 0.08);
    color: var(--store-muted);
}

.store-cart-value-block,
.store-cart-total-block {
    display: grid;
    gap: 6px;
}

.store-cart-value-block span,
.store-cart-total-block span,
.store-cart-summary-pill span,
.store-cart-qty-box span {
    color: var(--store-muted);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.store-cart-value-block strong,
.store-cart-total-block strong {
    color: var(--store-brown);
    font-size: 1rem;
}

.store-cart-qty-cell {
    min-width: 150px;
}

.store-cart-qty-box {
    display: grid;
    gap: 8px;
    min-width: 126px;
    padding: 12px;
    border: 1px solid rgba(159, 126, 52, 0.16);
    border-radius: 16px;
    background: #fffdfa;
}

.store-cart-qty-input {
    min-height: 44px;
    padding: 8px 12px;
    text-align: center;
    font-weight: 800;
}

.store-cart-footer-actions {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(159, 126, 52, 0.12);
}

.store-cart-summary-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.store-cart-summary-pill,
.store-cart-support-box {
    padding: 14px 16px;
    border: 1px solid rgba(159, 126, 52, 0.14);
    border-radius: 16px;
    background: #fffdfa;
}

.store-cart-summary-pill strong {
    display: block;
    margin-top: 6px;
    color: var(--store-brown);
    font-size: 1rem;
}

.store-cart-support-box {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.store-cart-support-box strong {
    color: var(--store-brown);
}

.store-cart-support-box p {
    margin: 0;
    color: var(--store-muted);
    line-height: 1.65;
}

.store-note,
.store-empty-state,
.store-flash {
    padding: 16px 18px;
    border: 1px solid var(--store-border);
    border-radius: 12px;
    background: #fffdfa;
    color: var(--store-brown);
}

.store-flash.error {
    border-color: rgba(149, 63, 46, 0.24);
    background: rgba(149, 63, 46, 0.06);
}

.store-flash.success {
    border-color: rgba(93, 129, 80, 0.24);
    background: rgba(93, 129, 80, 0.08);
}

.store-footer {
    margin-top: 8px;
    padding: 36px 0 52px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 250, 252, 0.94));
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.store-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.store-footer-card {
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
    animation: storeFadeUp 0.55s ease both;
    height: auto;
    align-self: start;
}

.store-footer-grid > div:nth-child(2) {
    animation-delay: 0.06s;
}

.store-footer-grid > div:nth-child(3) {
    animation-delay: 0.12s;
}

.store-footer-grid > div:nth-child(4) {
    animation-delay: 0.18s;
}

.store-footer h4 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 1.05rem;
    letter-spacing: -0.015em;
    font-family: "Segoe UI Variable Display", "Montserrat", "Segoe UI", sans-serif;
}

.store-footer p,
.store-footer span,
.store-footer a,
.store-footer div,
.store-footer small,
.store-footer strong {
    font-family: "Segoe UI Variable Text", "Segoe UI", "Inter", Arial, sans-serif;
}

.store-footer-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.store-footer-brand p {
    margin: 0;
    max-width: 26ch;
    color: #475569;
}

.store-footer-contact-card {
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
}

.store-footer-contact-head {
    margin-bottom: 14px;
}

.store-footer-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.10);
    color: #0369a1;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.store-footer-contact-head p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.55;
}

.store-footer-contact-list {
    display: grid;
    gap: 10px;
}

.store-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    color: #334155;
    line-height: 1.55;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.store-footer-contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
}

.store-footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff7ed, #fffbeb);
    color: var(--store-accent);
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.14);
}

.store-footer-contact-icon i {
    font-size: 1rem;
}

.store-footer-contact-item.is-static {
    background: rgba(248, 250, 252, 0.92);
}

.store-footer-contact-item.is-whatsapp {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.98), rgba(240, 253, 244, 0.94));
    border-color: rgba(34, 197, 94, 0.18);
}

.store-footer-contact-item.is-whatsapp .store-footer-contact-icon {
    background: linear-gradient(180deg, #dcfce7, #f0fdf4);
    color: #16a34a;
    box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.16);
}

.store-footer-contact-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.store-footer-contact-copy small {
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.store-footer-contact-copy strong {
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
}

.store-footer-links {
    display: grid;
    gap: 10px;
}

.store-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: #1e293b;
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.store-footer-links a i {
    color: var(--store-accent);
    font-size: 0.92rem;
}

.store-footer-links a:hover {
    background: linear-gradient(180deg, #ffffff, #ffffff);
    border-color: rgba(245, 158, 11, 0.24);
    box-shadow: 0 16px 26px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.store-footer-compliance {
    margin-top: 16px;
}

.store-footer-compliance-title {
    display: block;
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.store-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.store-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-payment-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 26px rgba(15, 23, 42, 0.1);
}

.store-payment-badge-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.store-payment-badge-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.store-payment-badge-inline-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.store-payment-badge-inline-logo svg {
    display: block;
    width: auto;
    height: 26px;
    max-width: 108px;
}

.store-payment-badge-copy strong {
    font-size: 0.9rem;
    line-height: 1.1;
}

.store-payment-badge-copy small {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.72);
}

.store-payment-badge.is-ssl {
    background: linear-gradient(135deg, rgba(220, 252, 231, 0.95), rgba(240, 253, 244, 0.9));
    color: #166534;
}

.store-payment-badge.is-visa {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.95), rgba(239, 246, 255, 0.9));
    color: #1d4ed8;
}

.store-payment-badge.is-mastercard {
    background: linear-gradient(135deg, rgba(255, 237, 213, 0.96), rgba(255, 247, 237, 0.9));
    color: #c2410c;
}

.store-payment-badge.is-iyzico {
    background: linear-gradient(135deg, rgba(237, 233, 254, 0.96), rgba(245, 243, 255, 0.92));
    color: #6d28d9;
}

.store-payment-badge.is-iyzico .store-payment-badge-copy strong {
    color: #4338ca;
}

.store-payment-badge.is-iyzico .store-payment-badge-copy small {
    color: rgba(67, 56, 202, 0.72);
}

.store-payment-badge.is-iyzico .store-payment-badge-mark {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    color: #ffffff;
}

.store-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 22px;
    padding: 18px 18px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.store-footer-bottom-copy {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 0.9rem;
}

.store-footer-bottom-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: #0f172a;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.05);
}

.store-footer-bottom-copy-text {
    display: grid;
    gap: 2px;
}

.store-footer-bottom-copy strong {
    color: #0f172a;
    font-weight: 700;
    line-height: 1.1;
}

.store-footer-bottom-copy span {
    color: #64748b;
    font-size: 0.82rem;
}

.store-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.store-footer-bottom-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: #475569;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.store-footer-bottom-links a:hover {
    color: #0f172a;
    border-color: rgba(245, 158, 11, 0.24);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.94);
    transform: translateY(-1px);
}

.store-theme-hirdavat {
    --store-footer-text: #0f172a;
}

.store-theme-hirdavat .store-nav {
    background: rgba(255, 255, 255, 0.98);
}

.store-theme-hirdavat .store-footer-card,
.store-theme-hirdavat .store-footer-links a,
.store-theme-hirdavat .store-payment-badge {
    color: #0f172a;
}

@keyframes storeFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes storeHoneyFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(0.96);
        opacity: 0.45;
    }
    50% {
        transform: translate3d(-38px, -26px, 0) scale(1.06);
        opacity: 0.72;
    }
    100% {
        transform: translate3d(-72px, -54px, 0) scale(0.98);
        opacity: 0.38;
    }
}

@media (max-width: 1024px) {
    .store-cart-hero-card {
        grid-template-columns: 1fr;
    }

    .store-account-hero,
    .store-account-dashboard {
        grid-template-columns: 1fr;
    }

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

    .store-header-shell,
    .store-hero,
    .store-detail-layout,
    .store-cart-layout,
    .store-account-layout,
    .store-auth-layout {
        grid-template-columns: 1fr;
    }

    .store-grid-4,
    .store-grid-3,
    .store-trust-grid,
    .store-contact-grid,
    .store-filter-grid,
    .store-form-grid,
    .store-footer-grid,
    .store-story-layout,
    .store-bank-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-header-shell {
        justify-items: start;
    }

    .store-nav {
        justify-content: flex-start;
    }

    .store-actions {
        justify-content: flex-start;
    }

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

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

    .store-hero-media,
    .store-hero-placeholder {
        min-height: 380px;
    }

    .store-carousel-section,
    .store-carousel-viewport,
    .store-carousel-track,
    .store-carousel-shell,
    .store-carousel-layout {
        min-height: auto;
    }

    .store-carousel-copy {
        width: min(680px, 100%);
        max-width: 100%;
        padding: 22px 28px 40px;
    }

    .store-carousel-layout,
    .store-carousel-pos-top-center .store-carousel-layout,
    .store-carousel-pos-bottom-center .store-carousel-layout {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 0;
        padding: 0;
    }

    .store-carousel-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .store-carousel-copy .store-inline-actions {
        justify-content: center;
    }

    .store-carousel-panel {
        min-height: auto;
    }

    .store-carousel-media,
    .store-carousel-placeholder,
    .store-carousel-media-card {
        min-height: 340px;
    }

    .store-carousel-media,
    .store-carousel-pos-left-top .store-carousel-media,
    .store-carousel-pos-left-center .store-carousel-media,
    .store-carousel-pos-left-bottom .store-carousel-media {
        padding: 22px 22px 0;
    }

    .store-carousel-media-card,
    .store-carousel-pos-left-top .store-carousel-media-card,
    .store-carousel-pos-left-center .store-carousel-media-card,
    .store-carousel-pos-left-bottom .store-carousel-media-card {
        border-radius: 28px 28px 0 0;
    }

    .store-carousel-media img {
        transform: scale(1.08);
    }
}

.store-topbar {
    background: linear-gradient(90deg, #111827, #1f2937 55%, #b45309);
    color: #f9fafb;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.store-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 42px;
    padding: 10px 0;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.store-topbar-inner span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.store-theme-hirdavat {
    --store-bg: #f3f4f6;
    --store-surface: #ffffff;
    --store-card: #ffffff;
    --store-text: #1f2937;
    --store-muted: #6b7280;
    --store-border: #e5e7eb;
    --store-accent: #f59e0b;
    --store-accent-strong: #d97706;
    --store-brown: #111827;
    --store-nav-text: #111827;
    --store-accent-text: #111827;
    --store-footer-text: #f9fafb;
    --store-soft: #fff7ed;
    --store-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
    --store-shadow-hover: 0 24px 44px rgba(17, 24, 39, 0.14);
}

body.store-theme-hirdavat {
    font-family: "Segoe UI Variable Text", "Segoe UI", "Inter", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0)) 0 0 / 100% 220px no-repeat,
        var(--store-bg);
}

.store-theme-hirdavat .store-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(17, 24, 39, 0.08);
}

.store-theme-hirdavat .store-header::before {
    height: 3px;
    background: linear-gradient(90deg, #111827, #f59e0b, #fbbf24);
}

.store-theme-hirdavat .store-brand-copy strong,
.store-theme-hirdavat .store-hero-copy h1,
.store-theme-hirdavat .store-page-head h1,
.store-theme-hirdavat .store-section-head h2,
.store-theme-hirdavat .store-detail-copy h1,
.store-theme-hirdavat .store-contact-card h3 {
    font-family: "Segoe UI Variable Display", "Montserrat", "Segoe UI", sans-serif;
}

.store-theme-hirdavat .store-kicker {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.store-theme-hirdavat .store-hero {
    border: 0;
    box-shadow: 0 22px 46px rgba(17, 24, 39, 0.08);
}

.store-theme-hirdavat .store-hero-copy {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 237, 0.94)),
        var(--store-card);
}

.store-theme-hirdavat .store-hero-copy::after {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, transparent);
}

.store-theme-hirdavat .store-hero-media {
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.32), transparent 34%),
        linear-gradient(160deg, #111827 0%, #374151 100%);
}

.store-theme-hirdavat .store-hero-stats article {
    background: #fff;
    border-color: rgba(17, 24, 39, 0.08);
}

.store-theme-hirdavat .store-btn {
    background: linear-gradient(180deg, #fbbf24, #d97706);
    color: #111827;
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.22);
}

.store-theme-hirdavat .store-btn-light {
    background: #fff;
    border-color: rgba(17, 24, 39, 0.08);
}

.store-section-tight {
    padding-top: 0;
}

.store-reference-strip {
    overflow: hidden;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: #fff;
    box-shadow: var(--store-shadow);
}

.store-reference-strip-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    min-width: 100%;
    min-height: 88px;
    padding: 22px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #111827, #374151);
    animation: storeTickerMove 24s linear infinite;
}

.store-reference-strip-track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: #f9fafb;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.store-reference-strip-track span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #f59e0b;
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.16);
}

.store-trust-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.store-trust-band-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: #fff;
    box-shadow: var(--store-shadow);
}

.store-trust-band-item i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
    font-size: 1.1rem;
}

.store-trust-band-item span {
    color: var(--store-text);
    font-weight: 700;
    line-height: 1.45;
}

@keyframes storeTickerMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.store-theme-categories,
.store-theme-campaigns,
.store-theme-testimonials {
    display: grid;
    gap: 18px;
}

.store-theme-categories {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.store-theme-category-card {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 220px;
    border-radius: 24px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: var(--store-shadow);
    background: #111827;
    isolation: isolate;
}

.store-theme-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.78));
    z-index: 1;
}

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

.store-theme-media-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: 220px;
    padding: 22px;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.26), transparent 28%),
        linear-gradient(160deg, #111827 0%, #374151 100%);
}

.store-theme-category-card span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
}

.store-theme-category-card:hover img {
    transform: scale(1.05);
}

.store-theme-spotlight {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(135deg, #111827, #374151 58%, #f59e0b 150%);
    color: #fff;
    box-shadow: 0 22px 50px rgba(17, 24, 39, 0.16);
}

.store-theme-spotlight-copy {
    display: grid;
    align-content: center;
    gap: 18px;
    padding: clamp(28px, 4vw, 48px);
}

.store-theme-spotlight-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.4rem);
    line-height: 1.02;
    color: #fff;
}

.store-theme-spotlight-copy p {
    margin: 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.84);
}

.store-theme-spotlight-media {
    min-height: 340px;
}

.store-theme-spotlight-media .store-theme-media-placeholder {
    min-height: 340px;
}

.store-theme-spotlight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.store-theme-campaign-card,
.store-theme-testimonial-card {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;
    box-shadow: var(--store-shadow);
}

.store-theme-campaign-card {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 24px;
}

.store-theme-card-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-theme-campaign-card h3,
.store-theme-testimonial-card h3 {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.15;
    color: #111827;
}

.store-theme-campaign-card p,
.store-theme-testimonial-card p {
    margin: 0;
    color: #4b5563;
}

.store-theme-testimonials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.store-theme-testimonial-card {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.store-theme-testimonial-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: #111827;
    font-size: 1.05rem;
}

.store-theme-testimonial-card small {
    color: #6b7280;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.store-theme-brand-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
}

.store-theme-brand-strip span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    padding: 14px 18px;
    border-radius: 20px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: #fff;
    color: #111827;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: var(--store-shadow);
}

.store-theme-hirdavat .store-about-card,
.store-theme-hirdavat .store-contact-card {
    border-color: rgba(17, 24, 39, 0.08);
}

@media (max-width: 1080px) {
    .store-theme-categories {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .store-theme-spotlight,
    .store-theme-testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .store-shell {
        width: min(100% - 20px, 1200px);
    }

    .store-account-hero-copy,
    .store-account-info-card {
        padding: 18px;
    }

    .store-address-card.store-account-info-card,
    .store-order-card.store-account-info-card {
        padding: 18px;
    }

    .store-account-profile-top,
    .store-account-panel-head,
    .store-account-card-head {
        flex-direction: column;
        align-items: start;
    }

    .store-account-hero-actions,
    .store-account-form-checks {
        flex-direction: column;
    }

    .store-account-hero-actions .store-btn,
    .store-account-hero-actions .store-btn-light {
        width: 100%;
        min-width: 0;
    }

    .store-account-stat-grid,
    .store-account-form-grid {
        grid-template-columns: 1fr;
    }

    .store-grid-4,
    .store-grid-3,
    .store-trust-grid,
    .store-contact-grid,
    .store-filter-grid,
    .store-footer-grid,
    .store-story-layout,
    .store-bank-card,
    .store-footer-grid {
        grid-template-columns: 1fr;
    }

    .store-hero-copy,
    .store-slider-content,
    .store-product-body,
    .store-summary-card,
    .store-form-card,
    .store-table-card,
    .store-address-card,
    .store-order-card,
    .store-filter-bar {
        padding: 18px;
    }

    .store-hero-copy::after {
        left: 18px;
        top: 18px;
    }

    .store-page-head,
    .store-section-head {
        align-items: start;
        flex-direction: column;
    }

    .store-footer-notes-inner {
        padding: 8px 0 12px;
    }

    .store-footer-notes a {
        width: 100%;
        justify-content: flex-start;
    }

    .store-footer-bottom {
        padding-left: 0;
        padding-right: 0;
    }

    .store-footer-bottom-copy,
    .store-footer-bottom-links {
        width: 100%;
    }

    .store-contact-map iframe {
        height: 360px;
    }

    .store-footer-links a {
        width: 100%;
    }

    .store-hero-copy h1 {
        font-size: 2.15rem;
    }

    .store-detail-media {
        min-height: 320px;
    }

    .store-hero-stats,
    .store-slider-row {
        grid-template-columns: 1fr;
    }

    .store-carousel-section,
    .store-carousel-viewport,
    .store-carousel-track,
    .store-carousel-shell,
    .store-carousel-layout {
        min-height: auto;
    }

    .store-carousel-copy {
        width: 100%;
        margin: 0;
        padding: 18px 18px 34px;
    }

    .store-carousel-copy h2 {
        font-size: 2rem;
    }

    .store-carousel-copy p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .store-carousel-nav {
        width: 44px;
        height: 44px;
    }

    .store-carousel-media {
        min-height: 280px;
    }

    .store-carousel-media-card {
        width: 100%;
        border-radius: 24px 24px 0 0;
    }

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

    .store-inline-actions form {
        width: 100%;
    }

    .store-topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
    }

    .store-theme-categories,
    .store-theme-campaigns,
    .store-theme-testimonials,
    .store-trust-band,
    .store-theme-brand-strip {
        grid-template-columns: 1fr;
    }

    .store-theme-spotlight {
        grid-template-columns: 1fr;
    }

    .store-reference-strip-track {
        animation-duration: 18s;
    }
}

@media (max-width: 520px) {
    .store-cart-card-head {
        flex-direction: column;
    }

    .store-cart-summary-pills {
        grid-template-columns: 1fr;
    }

    .store-cart-hero-card {
        padding: 20px 18px;
    }

    .store-cart-table th {
        display: none;
    }

    .store-cart-table,
    .store-cart-table tbody,
    .store-cart-table tr,
    .store-cart-table td {
        display: block;
        width: 100%;
    }

    .store-cart-table tr {
        padding: 14px 0;
        border-bottom: 1px solid rgba(159, 126, 52, 0.12);
    }

    .store-cart-table td {
        padding: 10px 0;
        border-bottom: 0;
    }

    .store-cart-qty-box {
        width: 100%;
    }

    .store-main {
        padding-top: 28px;
    }

    .store-account-avatar {
        width: 60px;
        height: 60px;
        border-radius: 20px;
        font-size: 1.25rem;
    }

    .store-account-stat {
        padding: 16px;
    }

    .store-header-shell {
        gap: 14px;
        padding: 14px 0;
    }

    .store-brand img {
        max-width: min(100%, 210px);
        max-height: 62px;
    }

    .store-carousel-section,
    .store-carousel-viewport,
    .store-carousel-track,
    .store-carousel-shell,
    .store-carousel-layout {
        min-height: auto;
    }

    .store-carousel-copy {
        padding: 16px 16px 30px;
    }

    .store-carousel-copy h2 {
        font-size: 1.72rem;
    }

    .store-carousel-media {
        min-height: 220px;
    }

    .store-carousel-media-card {
        width: 100%;
        border-radius: 22px 22px 0 0;
    }

    .store-carousel-copy .store-inline-actions .store-btn,
    .store-carousel-copy .store-inline-actions .store-btn-light,
    .store-btn,
    .store-btn-light,
    .store-btn-dark {
        width: 100%;
    }

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

    .store-product-body .store-inline-actions > a {
        grid-column: 1;
    }

    .store-product-body .store-inline-actions form {
        grid-column: 2;
    }

    .store-inline-actions .store-btn,
    .store-inline-actions .store-btn-light {
        width: 100%;
    }

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

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