:root {
    --color-accent: #f2a000;
    --color-accent-soft: #f0a38b;
    --color-dark: #404040;
    --color-bg: #f4f1ef;
    --color-white: #ffffff;
    --color-border: #e6d7cf;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius: 18px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: 'Barlow', Arial, sans-serif; color: var(--color-dark); background: var(--color-bg); line-height: 1.55; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 32px)); }
.section { padding: 72px 0; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-accent); font-weight: 700; font-size: 0.8rem; margin: 0 0 10px; }
.top-bar { height: 16px; background: var(--color-accent); }
.site-header { background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 20; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; }
.brand img { width: 220px; }
.main-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.main-nav a { padding-bottom: 4px; border-bottom: 2px solid transparent; font-weight: 600; }
.main-nav a.is-active, .main-nav a:hover { border-color: var(--color-accent); }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; border: 2px solid transparent; font-weight: 700; cursor: pointer; transition: 0.2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--color-accent); color: var(--color-white); }
.btn-outline { border-color: var(--color-dark); background: transparent; color: var(--color-dark); }
.btn-outline.light { border-color: var(--color-white); color: var(--color-white); }
.hero { min-height: 74vh; background-position: center; background-size: cover; position: relative; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.62), rgba(0,0,0,0.22)); }
.hero-content { position: relative; z-index: 1; padding: 80px 0; }
.hero-box { max-width: 620px; color: white; padding: 32px; border-radius: var(--radius); background: rgba(0,0,0,0.30); backdrop-filter: blur(8px); box-shadow: var(--shadow); }
.hero h1 { font-size: clamp(2rem, 5vw, 4rem); line-height: 1.05; margin: 0 0 16px; }
.hero p { font-size: 1.05rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.section-head { margin-bottom: 26px; }
.section-head h2, .warm-panel h2, .page-simple h1 { margin: 0; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.category-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 22px; }
.category-card { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; font-weight: 700; }
.category-card img { width: 100%; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 16px 24px rgba(0,0,0,0.12)); }
.warm-panel { background: linear-gradient(180deg, #f7ede6 0%, #f4f1ef 100%); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.feature-list { margin: 18px 0 0; padding-left: 18px; }

.centered { text-align: center; }
.centered p { margin-left: auto; margin-right: auto; }
.voucher-home { text-align: center; }
.voucher-panel { max-width: 860px; margin: 0 auto; background: rgba(255,255,255,0.72); border: 1px solid var(--color-border); border-radius: var(--radius); padding: clamp(28px, 5vw, 52px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.voucher-panel p { max-width: 720px; margin-left: auto; margin-right: auto; }
.voucher-provider-logos { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; margin: 26px 0; }
.voucher-provider-logos img { max-width: 260px; max-height: 74px; object-fit: contain; background: white; border: 1px solid var(--color-border); border-radius: 12px; padding: 14px 20px; box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
.voucher-provider-logos--compact { justify-content: flex-start; margin: 18px 0 26px; }
.voucher-provider-logos--compact img { max-width: 210px; max-height: 62px; }
.page-contact .section-head h1 { margin: 0; font-size: clamp(2rem, 5vw, 3.2rem); }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 980px; margin: 34px auto 0; }
.contact-card { background: white; border: 1px solid var(--color-border); border-radius: var(--radius); padding: clamp(22px, 4vw, 34px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.contact-card h2 { margin: 0 0 18px; font-size: 1.55rem; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.contact-list li { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 12px; align-items: start; }
.contact-icon { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: #fff4dd; color: #8a5b00; font-weight: 800; }
.contact-list a { font-weight: 700; color: var(--color-dark); }
.contact-list a:hover, .site-footer a:hover { text-decoration: underline; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.product-card { background: white; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.product-thumb { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; margin-bottom: 16px; background: #faf7f4; border-radius: 8px; }
.product-placeholder, .product-detail-placeholder { width: 100%; aspect-ratio: 4 / 3; background: #faf7f4; border: 1px dashed var(--color-border); border-radius: 8px; margin-bottom: 16px; }
.product-card h3 { margin-top: 0; margin-bottom: 8px; }
.product-category { color: #7a6f69; margin: 0 0 10px; }
.product-price { font-size: 1.4rem; font-weight: 700; margin: 0 0 18px; }
.product-price.large { font-size: 2rem; }
.category-strip { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.category-strip a { background: white; border: 1px solid var(--color-border); border-radius: 999px; padding: 8px 14px; font-weight: 700; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 42px; align-items: start; }
.product-detail-image { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: white; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 20px; }
.lead { font-size: 1.1rem; font-weight: 500; }
.cart-add-form { display: flex; flex-wrap: wrap; align-items: end; gap: 14px; margin-top: 24px; }
.cart-add-form label { display: grid; gap: 6px; font-weight: 700; }
.cart-add-form input, .cart-inline-form input { min-height: 44px; padding: 8px 10px; border: 1px solid var(--color-border); border-radius: 8px; font: inherit; }
.cart-table { width: 100%; border-collapse: collapse; background: white; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; margin-top: 24px; }
.cart-table th, .cart-table td { padding: 14px; border-bottom: 1px solid var(--color-border); text-align: left; vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: 0; }
.cart-inline-form { display: flex; align-items: center; gap: 8px; }
.cart-inline-form input { width: 84px; }
.cart-summary { width: min(420px, 100%); margin-left: auto; margin-top: 22px; background: white; border: 1px solid var(--color-border); border-radius: 8px; padding: 16px; }
.cart-summary p { display: flex; justify-content: space-between; gap: 16px; margin: 0 0 8px; max-width: none; }
.cart-summary .cart-total { font-size: 1.25rem; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--color-border); }
.checkout-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 32px; align-items: start; }
.checkout-summary { background: white; border: 1px solid var(--color-border); border-radius: 8px; padding: 18px; position: sticky; top: 112px; }
.checkout-summary h2 { margin-top: 0; }
.checkout-summary p { display: flex; justify-content: space-between; gap: 16px; max-width: none; }
.checkout-summary hr { border: 0; border-top: 1px solid var(--color-border); margin: 14px 0; }
.page-simple p { max-width: 70ch; }
.setup-list { padding-left: 20px; line-height: 1.9; }
.install-form { display: grid; gap: 16px; margin-top: 28px; }
.install-form h2 { margin: 22px 0 0; }
.install-form label { display: grid; gap: 6px; font-weight: 700; }
.install-form input { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--color-border); border-radius: 8px; font: inherit; color: var(--color-dark); background: white; }
.install-form button { justify-self: start; margin-top: 8px; }
.notice { margin: 18px 0; padding: 16px 18px; border-radius: 8px; border: 1px solid var(--color-border); background: white; }
.notice p { margin: 6px 0 0; }
.notice ul { margin: 8px 0 0; padding-left: 20px; }
.notice-success { border-color: #8ecf9b; background: #f1fbf3; }
.notice-warning { border-color: #e4b16b; background: #fff8ec; }
.notice-error { border-color: #d98a8a; background: #fff3f3; }
.diagnostics-table { width: 100%; border-collapse: collapse; margin-top: 22px; background: white; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.diagnostics-table th, .diagnostics-table td { padding: 12px 14px; border-bottom: 1px solid var(--color-border); text-align: left; vertical-align: top; }
.diagnostics-table tr:last-child th, .diagnostics-table tr:last-child td { border-bottom: 0; }
.diagnostics-table th { width: 38%; font-weight: 700; }
.status-ok { color: #247a35; font-weight: 700; }
.status-warn { color: #a35a00; font-weight: 700; }
.not-found .btn { margin-top: 12px; }
.site-footer { color: white; }
.footer-wood { background-image: linear-gradient(rgba(0,0,0,0.20), rgba(0,0,0,0.35)), url('../images/bg/footer-wood-strip.webp'); background-size: cover; background-position: center; padding: 54px 0; border-top: 12px solid var(--color-accent); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 28px; align-items: center; }
.footer-grid h3 { margin-top: 0; }
.footer-brand { display: flex; justify-content: flex-end; }
.footer-brand img { max-width: 280px; }
@media (max-width: 960px) { .header-inner { flex-wrap: wrap; justify-content: center; } .main-nav { justify-content: center; } .category-grid { grid-template-columns: repeat(2, 1fr); } .two-col, .footer-grid, .product-grid, .product-detail-grid, .checkout-grid, .contact-grid { grid-template-columns: 1fr; } .checkout-summary { position: static; } .footer-brand { justify-content: flex-start; } }
@media (max-width: 640px) { .section { padding: 56px 0; } .hero { min-height: 62vh; } .hero-box { padding: 24px; } .brand img { width: 180px; } .category-grid { grid-template-columns: 1fr; } .voucher-provider-logos img { max-width: 100%; } }

.admin-body { background: #f4f1ef; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 260px 1fr; }
.admin-sidebar { background: #ffffff; border-right: 1px solid var(--color-border); padding: 24px; }
.admin-brand img { width: 190px; margin-bottom: 28px; }
.admin-nav { display: grid; gap: 8px; }
.admin-nav a { padding: 10px 12px; border-radius: 8px; font-weight: 700; color: var(--color-dark); }
.admin-nav a.is-active, .admin-nav a:hover { background: #fff4dd; color: #8a5b00; }
.admin-main { min-width: 0; }
.admin-topbar { height: 72px; background: white; border-bottom: 1px solid var(--color-border); display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 28px; }
.admin-topbar div { display: grid; gap: 2px; }
.admin-topbar span { color: #7a6f69; font-size: 0.92rem; }
.admin-content { padding: 28px; }
.admin-panel { max-width: 1120px; }
.admin-panel h1 { margin: 0 0 14px; font-size: 2.2rem; }
.admin-panel h2 { margin-top: 28px; }
.admin-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 24px; }
.admin-card { display: grid; gap: 8px; background: white; border: 1px solid var(--color-border); border-radius: 8px; padding: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.admin-card span { color: #7a6f69; }
.admin-form { display: grid; gap: 16px; margin-top: 22px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.admin-form label { display: grid; gap: 6px; font-weight: 700; }
.admin-form input, .admin-form select, .admin-form textarea { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid var(--color-border); border-radius: 8px; font: inherit; color: var(--color-dark); background: white; }
.admin-form textarea { min-height: 260px; resize: vertical; }
.checkbox-row { display: flex !important; align-items: center; gap: 10px !important; font-weight: 600 !important; }
.checkbox-row input { width: auto; min-height: auto; }
.button-row, .inline-form { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.admin-table { width: 100%; border-collapse: collapse; background: white; border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden; margin-top: 20px; }
.admin-table th, .admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--color-border); text-align: left; vertical-align: top; }
.admin-table tr:last-child th, .admin-table tr:last-child td { border-bottom: 0; }
.admin-table code, .template-help code { background: #f7ede6; padding: 2px 6px; border-radius: 5px; }
.btn.small { min-height: 36px; padding: 0 14px; font-size: 0.9rem; }
.template-help { margin-top: 26px; padding: 18px; background: white; border: 1px solid var(--color-border); border-radius: 8px; }
@media (max-width: 960px) { .admin-shell { grid-template-columns: 1fr; } .admin-sidebar { border-right: 0; border-bottom: 1px solid var(--color-border); } .admin-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); } .admin-grid, .form-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .admin-content { padding: 20px 16px; } .admin-topbar { height: auto; padding: 16px; flex-wrap: wrap; } .admin-nav { grid-template-columns: 1fr; } }

/* Final polish: compact hero, sticky footer, centered contact, nicer voucher/product options. */
html { min-height: 100%; }
body { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1 0 auto; }
.site-footer { flex-shrink: 0; }

.hero.hero-compact { min-height: clamp(260px, 34vh, 420px); align-items: center; }
.hero.hero-compact::before { background: linear-gradient(90deg, rgba(0,0,0,0.44), rgba(0,0,0,0.18)); }
.hero-content-center { display: flex; justify-content: center; align-items: center; padding: clamp(42px, 7vw, 74px) 0; }
.hero-card-compact { display: grid; justify-items: center; gap: 22px; padding: clamp(20px, 4vw, 32px); border-radius: var(--radius); background: rgba(0,0,0,0.20); backdrop-filter: blur(8px); box-shadow: var(--shadow); }
.hero-logo { width: min(360px, 78vw); height: auto; }
.hero-actions-center { justify-content: center; margin-top: 0; }

.voucher-panel.centered { text-align: center; }
.voucher-panel .btn { margin-left: auto; margin-right: auto; }
.voucher-provider-logos { gap: 14px; margin: 20px 0 22px; }
.voucher-provider-logos img { max-width: 164px; max-height: 52px; padding: 10px 14px; }
.voucher-provider-logos--compact { justify-content: center; }
.voucher-provider-logos--compact img { max-width: 150px; max-height: 48px; }
.voucher-page .admin-form { text-align: left; margin-left: auto; margin-right: auto; max-width: 620px; background: white; border: 1px solid var(--color-border); border-radius: var(--radius); padding: clamp(20px, 4vw, 30px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.centered-row { justify-content: center; }

.page-contact { text-align: center; }
.contact-grid-centered { max-width: 920px; justify-content: center; }
.contact-card-centered { text-align: center; }
.contact-card-centered .contact-list { justify-items: center; }
.contact-card-centered .contact-list li { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.contact-card-centered .contact-icon { margin: 0 auto; }
.contact-card-centered a { color: var(--color-dark); text-decoration: none; }
.contact-card-centered a:hover { color: var(--color-accent); text-decoration: none; }

.product-detail-content { min-width: 0; }
.product-copy { max-width: 68ch; margin: 14px 0 22px; color: #615752; }
.product-options-form { display: grid; gap: 18px; align-items: stretch; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: clamp(18px, 4vw, 26px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.option-group { display: grid; gap: 10px; }
.option-group-wide { grid-column: 1 / -1; }
.option-label, .quantity-field span { font-weight: 800; color: var(--color-dark); }
.pretty-select, .product-options-form input[type="number"] { width: 100%; min-height: 50px; padding: 10px 44px 10px 14px; border: 1px solid var(--color-border); border-radius: 14px; background-color: #fffaf5; font: inherit; font-weight: 600; color: var(--color-dark); outline: none; transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease; }
.pretty-select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #8a5b00 50%), linear-gradient(135deg, #8a5b00 50%, transparent 50%); background-position: calc(100% - 22px) 22px, calc(100% - 16px) 22px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.pretty-select:focus, .product-options-form input[type="number"]:focus { border-color: var(--color-accent); box-shadow: 0 0 0 4px rgba(242,160,0,0.16); background-color: #fff; }
.quantity-field { max-width: 160px; display: grid; gap: 8px; font-weight: 800; }
.product-options-form .btn { justify-self: start; }

.variant-card-grid, .template-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.template-card-grid { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.variant-card-option, .template-card-option { position: relative; display: grid; gap: 8px; align-content: start; background: #fffaf5; border: 2px solid var(--color-border); border-radius: 16px; padding: 12px; cursor: pointer; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.variant-card-option:hover, .template-card-option:hover { transform: translateY(-2px); border-color: #efbd45; box-shadow: 0 14px 28px rgba(0,0,0,0.08); }
.variant-card-option input, .template-card-option input { position: absolute; opacity: 0; pointer-events: none; }
.variant-card-option:has(input:checked), .template-card-option:has(input:checked) { border-color: var(--color-accent); background: #fff4dd; box-shadow: 0 12px 28px rgba(242,160,0,0.18); }
.variant-card-option img, .template-card-option img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; border-radius: 12px; background: white; border: 1px solid var(--color-border); }
.template-card-option img { aspect-ratio: 16 / 9; object-fit: cover; }
.variant-card-title, .template-card-option span { font-weight: 800; line-height: 1.2; }
.variant-card-price { color: #7a6f69; font-weight: 700; }

@supports not selector(:has(*)) {
    .variant-card-option input:checked + img,
    .template-card-option input:checked + img { outline: 4px solid var(--color-accent); }
}

@media (max-width: 640px) {
    .hero.hero-compact { min-height: 240px; }
    .hero-card-compact { width: 100%; }
    .hero-actions-center { width: 100%; }
    .hero-actions-center .btn { width: 100%; }
    .product-options-form .btn { width: 100%; }
    .quantity-field { max-width: none; }
    .variant-card-grid, .template-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* 1.0.9 polish: tighter hero, centered voucher block, cart counter, modern contact, dropdown variants, legal/cookies. */
html { height: 100%; }
body { min-height: 100dvh; display: flex; flex-direction: column; }
main { flex: 1 0 auto; display: block; }
.site-footer { margin-top: auto; flex-shrink: 0; }

.hero.hero-compact { min-height: clamp(150px, 18vh, 240px); }
.hero-content-center { padding: clamp(16px, 3vw, 32px) 0; }
.hero-card-compact { padding: clamp(14px, 2vw, 22px); gap: 14px; background: rgba(0,0,0,0.16); }
.hero-logo { width: min(240px, 62vw); }
.hero-actions-center { gap: 10px; }
.hero-actions-center .btn { min-height: 42px; padding-inline: 18px; }

.main-nav .nav-cart { position: relative; display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px 8px; border-radius: 999px; border-bottom: 0; background: #fff4dd; color: var(--color-dark); }
.nav-cart:hover, .nav-cart.is-active { background: var(--color-accent); color: white; border-bottom: 0 !important; }
.nav-cart-icon { display: inline-flex; align-items: center; justify-content: center; }
.cart-count { min-width: 22px; height: 22px; padding: 0 6px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: white; color: #8a5b00; border: 1px solid rgba(138,91,0,.18); font-size: .78rem; font-weight: 800; line-height: 1; }
.cart-count.has-items { background: #ef4d2f; color: white; border-color: #ef4d2f; box-shadow: 0 6px 16px rgba(239,77,47,.28); }

.voucher-home { min-height: clamp(380px, 52vh, 560px); display: flex; align-items: center; }
.voucher-home .container { display: flex; align-items: center; justify-content: center; }
.voucher-panel.centered { width: min(920px, 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.voucher-panel.centered h2 { margin-bottom: 8px; }
.voucher-panel.centered p { max-width: 760px; }
.voucher-provider-logos { width: 100%; display: flex; align-items: center; justify-content: center; gap: clamp(10px, 3vw, 22px); flex-wrap: nowrap; margin: 22px 0 24px; }
.voucher-provider-logos img { width: min(42vw, 220px); height: 82px; max-width: 220px; max-height: 82px; object-fit: contain; padding: 14px 18px; background: white; border-radius: 16px; border: 1px solid var(--color-border); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.voucher-provider-logos--compact img { width: min(42vw, 190px); height: 72px; max-width: 190px; max-height: 72px; }

.provider-choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.provider-choice-card { position: relative; min-height: 120px; display: grid !important; justify-items: center; align-items: center; gap: 8px !important; padding: 16px !important; border: 2px solid var(--color-border); border-radius: 18px; background: #fffaf5; cursor: pointer; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease; font-weight: 800 !important; }
.provider-choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.provider-choice-card img { width: 160px; height: 54px; object-fit: contain; }
.provider-choice-card:hover { transform: translateY(-2px); border-color: #efbd45; box-shadow: 0 14px 28px rgba(0,0,0,.08); }
.provider-choice-card:has(input:checked) { border-color: var(--color-accent); background: #fff4dd; box-shadow: 0 14px 30px rgba(242,160,0,.18); }
.provider-check { position: absolute; top: 10px; right: 10px; width: 26px; height: 26px; border-radius: 999px; background: white; color: transparent; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--color-border); font-weight: 900; }
.provider-choice-card:has(input:checked) .provider-check { background: var(--color-accent); border-color: var(--color-accent); color: white; }
.voucher-form button[type="submit"] { justify-self: center; }

.page-contact { min-height: 50vh; display: flex; align-items: center; }
.page-contact .container { width: min(1060px, calc(100% - 32px)); }
.contact-intro { max-width: 620px; margin: 12px auto 0; color: #6a5d57; font-weight: 500; }
.contact-grid-centered { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 1060px; gap: 18px; }
.contact-link-card { display: flex; min-height: 225px; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-decoration: none; background: linear-gradient(180deg, #fff 0%, #fffaf5 100%); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.contact-link-card:hover { transform: translateY(-4px); border-color: #efbd45; box-shadow: 0 18px 38px rgba(0,0,0,.10); text-decoration: none !important; }
.contact-link-card h2 { margin: 8px 0 0; }
.contact-link-card p { margin: 0; font-weight: 700; color: #5b514c; }
.contact-icon-svg { width: 62px; height: 62px; display: inline-flex; align-items: center; justify-content: center; border-radius: 22px; background: #fff4dd; color: #8a5b00; box-shadow: inset 0 0 0 1px rgba(138,91,0,.08); }
.contact-icon-svg svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-icon-svg svg path:first-child, .contact-icon-svg svg circle { fill: none; }
.contact-link-card:nth-child(4) .contact-icon-svg svg { fill: currentColor; stroke: none; }

.product-options-form { max-width: 620px; }
.product-options-form .btn { justify-self: stretch; }
.pretty-select { min-height: 56px; border-radius: 18px; background-color: #fffaf5; border-width: 2px; box-shadow: 0 8px 18px rgba(0,0,0,.035); }
.selection-preview { display: flex; align-items: center; gap: 14px; padding: 12px; border: 1px solid var(--color-border); border-radius: 18px; background: #fffaf5; }
.selection-preview[hidden] { display: none !important; }
.selection-preview img { width: 132px; height: 88px; object-fit: cover; border-radius: 12px; background: white; border: 1px solid var(--color-border); }
.selection-preview span { font-weight: 800; }
.product-detail-image { transition: opacity .2s ease; }

.footer-legal { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; padding-top: 18px; margin-top: 22px; border-top: 1px solid rgba(255,255,255,.26); font-weight: 700; font-size: .95rem; }
.footer-legal a { color: white; opacity: .92; }
.footer-legal a:hover { opacity: 1; }
.legal-page .legal-section { margin-top: 22px; padding: 22px; background: white; border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(0,0,0,.04); }
.legal-page .legal-section h2 { margin: 0 0 8px; }
.legal-page .legal-section p { margin: 0; max-width: none; }

.cookie-consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80; max-width: 980px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.97); border: 1px solid var(--color-border); box-shadow: 0 18px 48px rgba(0,0,0,.18); }
.cookie-consent[hidden] { display: none !important; }
.cookie-consent p { margin: 4px 0 0; color: #625853; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-actions .btn { min-height: 42px; padding-inline: 16px; }

@media (max-width: 960px) {
    .main-nav { gap: 10px; }
    .voucher-home { min-height: auto; }
    .contact-grid-centered { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { text-align: center; }
    .footer-brand { justify-content: center; }
}
@media (max-width: 640px) {
    .hero.hero-compact { min-height: 160px; }
    .hero-card-compact { padding: 12px; }
    .hero-logo { width: min(190px, 68vw); }
    .hero-actions-center { flex-direction: column; }
    .voucher-provider-logos { gap: 8px; }
    .voucher-provider-logos img { width: 46vw; height: 58px; padding: 9px 10px; border-radius: 12px; }
    .provider-choice-grid { grid-template-columns: 1fr; }
    .provider-choice-card img { width: 150px; height: 50px; }
    .contact-grid-centered { grid-template-columns: 1fr; }
    .contact-link-card { min-height: 180px; }
    .cookie-consent { flex-direction: column; align-items: stretch; }
    .cookie-actions { width: 100%; }
    .cookie-actions .btn { width: 100%; }
    .selection-preview { flex-direction: column; align-items: flex-start; }
    .selection-preview img { width: 100%; height: auto; aspect-ratio: 16 / 9; }
}


/* 1.0.10 exact home fix: empty low hero + truly centered coupon logos. */
html, body { min-height: 100%; }
body { min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; }
main { flex: 1 0 auto; }
.site-footer { margin-top: auto; flex-shrink: 0; }

.hero.hero-compact.hero-empty {
    min-height: clamp(96px, 30vh, 300px) !important;
    height: clamp(96px, 30vh, 300px) !important;
    padding: 0 !important;
    display: block !important;
    background-position: center center !important;
    background-size: cover !important;
    overflow: hidden !important;
}
.hero.hero-compact.hero-empty::before {
    background: rgba(0,0,0,0.18) !important;
}
.hero-empty .hero-content,
.hero-empty .hero-card-compact,
.hero-empty .hero-actions,
.hero-empty .hero-logo {
    display: none !important;
}

.voucher-home {
    min-height: clamp(300px, 42vh, 440px) !important;
    padding: clamp(34px, 5vw, 58px) 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}
.voucher-home > .container {
    min-height: inherit !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.voucher-panel.centered {
    width: min(760px, 100%) !important;
    margin: 0 auto !important;
    padding: clamp(22px, 4vw, 36px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}
.voucher-panel.centered p,
.voucher-panel.centered h2,
.voucher-panel.centered .eyebrow {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.voucher-provider-logos {
    width: auto !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(10px, 2vw, 18px) !important;
    margin: 18px auto 22px !important;
}
.voucher-provider-logos img,
.voucher-provider-logos--compact img {
    flex: 0 0 auto !important;
    width: clamp(120px, 18vw, 178px) !important;
    height: 58px !important;
    max-width: 178px !important;
    max-height: 58px !important;
    object-fit: contain !important;
    padding: 8px 12px !important;
    background: #fff !important;
    border-radius: 12px !important;
    border: 1px solid var(--color-border) !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.07) !important;
}
.voucher-panel.centered .btn { align-self: center !important; }

@media (max-width: 640px) {
    .hero.hero-compact.hero-empty {
        min-height: 86px !important;
        height: 86px !important;
    }
    .voucher-home {
        min-height: auto !important;
        padding: 30px 0 !important;
    }
    .voucher-panel.centered {
        padding: 20px 14px !important;
    }
    .voucher-provider-logos {
        gap: 8px !important;
        flex-wrap: nowrap !important;
    }
    .voucher-provider-logos img,
    .voucher-provider-logos--compact img {
        width: calc((100vw - 76px) / 2) !important;
        max-width: 158px !important;
        height: 48px !important;
        max-height: 48px !important;
        padding: 7px 9px !important;
    }
}

/* 1.0.11 contact page fix: true center layout + compact one-line contact rows. */
.page-contact.contact-page-clean {
    min-height: clamp(430px, 58vh, 680px) !important;
    padding: clamp(38px, 6vw, 74px) 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}
.contact-page-inner {
    width: min(860px, calc(100% - 32px)) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
}
.contact-title-center {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}
.contact-title-center h1 {
    margin: 0 !important;
    font-size: clamp(2rem, 4vw, 3.25rem) !important;
    line-height: 1.05 !important;
}
.contact-title-center .contact-intro {
    max-width: 620px !important;
    margin: 12px auto 0 !important;
    text-align: center !important;
}
.contact-info-list {
    width: min(720px, 100%) !important;
    display: grid !important;
    gap: 12px !important;
    margin: clamp(24px, 4vw, 38px) auto 0 !important;
}
.contact-info-row {
    min-height: 58px !important;
    display: grid !important;
    grid-template-columns: 36px 88px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
    text-align: left !important;
    padding: 12px 18px !important;
    border-radius: 16px !important;
    border: 1px solid var(--color-border) !important;
    background: linear-gradient(180deg, #fff 0%, #fffaf5 100%) !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.055) !important;
    color: var(--color-dark) !important;
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
}
.contact-info-row:hover {
    transform: translateY(-2px) !important;
    border-color: #efbd45 !important;
    box-shadow: 0 14px 30px rgba(0,0,0,.09) !important;
    text-decoration: none !important;
}
.contact-row-icon {
    width: 34px !important;
    height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
    background: #fff4dd !important;
    color: #8a5b00 !important;
}
.contact-row-icon svg {
    width: 18px !important;
    height: 18px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.9 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}
.contact-info-row:nth-child(4) .contact-row-icon svg {
    fill: currentColor !important;
    stroke: none !important;
}
.contact-row-label {
    font-size: .84rem !important;
    font-weight: 800 !important;
    color: #8a5b00 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    white-space: nowrap !important;
}
.contact-info-row strong {
    font-size: 1.02rem !important;
    line-height: 1.25 !important;
    color: #3e342f !important;
    overflow-wrap: anywhere !important;
}

@media (max-width: 640px) {
    .page-contact.contact-page-clean {
        min-height: auto !important;
        padding: 36px 0 !important;
    }
    .contact-info-list {
        gap: 10px !important;
    }
    .contact-info-row {
        grid-template-columns: 34px minmax(0, 1fr) !important;
        gap: 8px 12px !important;
        padding: 12px 14px !important;
    }
    .contact-row-label {
        text-align: left !important;
    }
    .contact-info-row strong {
        grid-column: 2 !important;
        font-size: .98rem !important;
    }
}

/* 1.0.12: menu cart last + voucher page like homepage with provider dropdown. */
.voucher-page-center {
    min-height: clamp(520px, 70vh, 820px) !important;
    padding: clamp(38px, 6vw, 72px) 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}
.voucher-page-center > .container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.voucher-page-panel {
    width: min(780px, 100%) !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}
.voucher-page-panel h1 {
    margin: 0 !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    line-height: 1.08 !important;
}
.voucher-page-panel > p {
    max-width: 660px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.voucher-page-panel .voucher-provider-logos {
    margin: 18px auto 26px !important;
}
.voucher-form-center {
    width: min(560px, 100%) !important;
    max-width: 560px !important;
    margin: 8px auto 0 !important;
    padding: clamp(20px, 4vw, 30px) !important;
    display: grid !important;
    gap: 16px !important;
    text-align: left !important;
    background: #fff !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 22px !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.07) !important;
}
.voucher-form-center label {
    display: grid !important;
    gap: 7px !important;
    font-weight: 800 !important;
}
.voucher-form-center input,
.voucher-form-center select {
    width: 100% !important;
    min-height: 54px !important;
    padding: 12px 16px !important;
    border: 2px solid var(--color-border) !important;
    border-radius: 16px !important;
    background-color: #fffaf5 !important;
    color: var(--color-dark) !important;
    font: inherit !important;
    font-weight: 700 !important;
    outline: none !important;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease !important;
}
.voucher-form-center input:focus,
.voucher-form-center select:focus {
    border-color: var(--color-accent) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(242,160,0,.13) !important;
}
.voucher-provider-dropdown {
    appearance: none !important;
    background-image: linear-gradient(45deg, transparent 50%, #8a5b00 50%), linear-gradient(135deg, #8a5b00 50%, transparent 50%) !important;
    background-position: calc(100% - 22px) 24px, calc(100% - 14px) 24px !important;
    background-size: 8px 8px, 8px 8px !important;
    background-repeat: no-repeat !important;
    padding-right: 48px !important;
    cursor: pointer !important;
}
.voucher-form-center .btn {
    justify-self: center !important;
    min-width: min(100%, 290px) !important;
    margin-top: 4px !important;
}
.voucher-page-panel .notice {
    width: min(620px, 100%) !important;
    text-align: left !important;
}
.voucher-page-panel .button-row.centered-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin: 14px 0 !important;
}

@media (max-width: 640px) {
    .voucher-page-center {
        min-height: auto !important;
        padding: 32px 0 !important;
    }
    .voucher-page-panel {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
    .voucher-form-center {
        padding: 18px 14px !important;
    }
}

/* 1.0.13: product dropdowns styled like the coupon provider dropdown. */
.product-options-form {
    width: 100% !important;
    max-width: 620px !important;
}
.product-options-form .option-group,
.product-options-form .quantity-field {
    width: 100% !important;
    display: grid !important;
    gap: 7px !important;
    font-weight: 800 !important;
}
.product-options-form .option-label,
.product-options-form .quantity-field span {
    font-weight: 800 !important;
    color: var(--color-dark) !important;
}
.product-options-form select.pretty-select,
.product-options-form select.product-image-select {
    width: 100% !important;
    min-height: 54px !important;
    padding: 12px 48px 12px 16px !important;
    border: 2px solid var(--color-border) !important;
    border-radius: 16px !important;
    background-color: #fffaf5 !important;
    color: var(--color-dark) !important;
    font: inherit !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: linear-gradient(45deg, transparent 50%, #8a5b00 50%), linear-gradient(135deg, #8a5b00 50%, transparent 50%) !important;
    background-position: calc(100% - 22px) 24px, calc(100% - 14px) 24px !important;
    background-size: 8px 8px, 8px 8px !important;
    background-repeat: no-repeat !important;
    box-shadow: none !important;
    cursor: pointer !important;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease !important;
}
.product-options-form select.pretty-select:hover,
.product-options-form select.product-image-select:hover {
    border-color: #efbd45 !important;
    background-color: #fff7e9 !important;
}
.product-options-form select.pretty-select:focus,
.product-options-form select.product-image-select:focus {
    border-color: var(--color-accent) !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(242,160,0,.13) !important;
}
.product-options-form input[type="number"] {
    min-height: 54px !important;
    padding: 12px 16px !important;
    border: 2px solid var(--color-border) !important;
    border-radius: 16px !important;
    background-color: #fffaf5 !important;
    color: var(--color-dark) !important;
    font: inherit !important;
    font-weight: 700 !important;
    outline: none !important;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease !important;
}
.product-options-form input[type="number"]:hover {
    border-color: #efbd45 !important;
    background-color: #fff7e9 !important;
}
.product-options-form input[type="number"]:focus {
    border-color: var(--color-accent) !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(242,160,0,.13) !important;
}
.product-options-form .btn {
    justify-self: center !important;
    min-width: min(100%, 250px) !important;
}
.product-options-form .selection-preview {
    margin-top: 2px !important;
    border: 2px solid var(--color-border) !important;
    border-radius: 16px !important;
    background: #fffaf5 !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.055) !important;
}

@media (max-width: 640px) {
    .product-options-form {
        max-width: none !important;
    }
    .product-options-form select.pretty-select,
    .product-options-form select.product-image-select,
    .product-options-form input[type="number"] {
        min-height: 52px !important;
        border-radius: 15px !important;
    }
}


/* 1.0.14: clean no-box sections, no template preview cards. */
.hero-empty {
    min-height: clamp(150px, 22vh, 240px) !important;
}
.voucher-home,
.voucher-page-center,
.page-contact.contact-page-clean {
    background: transparent !important;
}
.voucher-home {
    min-height: clamp(300px, 42vh, 480px) !important;
    padding: clamp(34px, 6vw, 68px) 0 !important;
}
.voucher-home > .container,
.voucher-page-center > .container {
    width: min(980px, calc(100% - 32px)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.voucher-panel,
.voucher-panel.centered,
.voucher-page-panel {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}
.voucher-panel.centered {
    width: min(760px, 100%) !important;
}
.voucher-provider-logos {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(12px, 3vw, 24px) !important;
    margin: 18px auto 22px !important;
}
.voucher-provider-logos img,
.voucher-provider-logos--compact img {
    width: min(38vw, 180px) !important;
    height: 58px !important;
    max-width: 180px !important;
    max-height: 58px !important;
    object-fit: contain !important;
    padding: 8px 12px !important;
    border-radius: 12px !important;
    background: #fff !important;
    border: 1px solid var(--color-border) !important;
    box-shadow: none !important;
}
.voucher-form-center {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.product-options-form {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}
.product-options-form .selection-preview {
    display: none !important;
}
.page-contact.contact-page-clean {
    min-height: clamp(430px, 58vh, 680px) !important;
    padding: clamp(44px, 7vw, 82px) 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.contact-page-inner {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.contact-info-row {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 8px 0 !important;
}
.contact-info-row:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}
.contact-row-icon {
    background: transparent !important;
    width: 24px !important;
    height: 24px !important;
}
.contact-row-icon svg {
    width: 17px !important;
    height: 17px !important;
}
@media (max-width: 640px) {
    .voucher-provider-logos {
        gap: 10px !important;
    }
    .voucher-provider-logos img,
    .voucher-provider-logos--compact img {
        width: min(42vw, 150px) !important;
        height: 50px !important;
        max-width: 150px !important;
        max-height: 50px !important;
        padding: 7px 9px !important;
    }
    .voucher-form-center,
    .product-options-form {
        padding: 0 !important;
    }
}


/* Checkout delivery method selection. */
.delivery-method-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.delivery-method-card { position: relative; display: grid !important; grid-template-columns: 1fr auto; align-items: center; gap: 8px 16px !important; min-height: 86px; padding: 16px 18px !important; border: 2px solid var(--color-border); border-radius: 16px; background: #fffaf5; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.delivery-method-card input { position: absolute; opacity: 0; pointer-events: none; }
.delivery-method-title { font-weight: 800; }
.delivery-method-price { font-weight: 800; color: #8a5b00; text-align: right; }
.delivery-method-card:has(input:checked) { border-color: var(--color-accent); background: #fff4dd; box-shadow: 0 10px 26px rgba(242,160,0,.14); }
@supports not selector(:has(*)) {
    .delivery-method-card input:checked + .delivery-method-title { color: #8a5b00; }
}
@media (max-width: 640px) {
    .delivery-method-grid { grid-template-columns: 1fr; }
}

/* Voucher provider-specific fields. */
.voucher-field-group { display: grid; gap: 16px; }
.voucher-field-group[hidden] { display: none !important; }

/* Delivery selection inside the checkout summary. */
.checkout-delivery-section { margin: 0 0 20px; padding: 0 0 18px; border-bottom: 1px solid var(--color-border); }
.checkout-delivery-section h3 { margin: 0 0 12px; font-size: 1.05rem; }
.checkout-summary .delivery-method-grid { grid-template-columns: 1fr; gap: 10px; }
.checkout-summary .delivery-method-card { min-height: 74px; padding: 13px 14px !important; border-radius: 12px; }
.checkout-submit { width: 100%; margin-top: 16px; }

/* Per-product order file uploads. */
.product-upload-list { display: grid; gap: 22px; margin: 26px 0; }
.product-upload-card { background: white; border: 1px solid var(--color-border); border-radius: var(--radius); padding: clamp(20px, 4vw, 30px); box-shadow: 0 12px 30px rgba(0,0,0,.05); }
.product-upload-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.product-upload-head h2 { margin: 0 0 6px; font-size: clamp(1.35rem, 3vw, 1.8rem); }
.product-upload-head p { margin: 4px 0; }
.product-upload-kicker { color: #8a5b00; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-upload-count { flex: 0 0 auto; min-width: 88px; padding: 12px; border-radius: 14px; background: #fff8ec; text-align: center; border: 1px solid #e4b16b; }
.product-upload-count.is-complete { background: #f1fbf3; border-color: #8ecf9b; }
.product-upload-count strong { display: block; font-size: 1.5rem; line-height: 1; }
.product-upload-count span { display: block; margin-top: 5px; font-size: .8rem; }
.product-upload-limits { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 18px 0; padding: 12px 14px; background: #faf7f4; border-radius: 10px; }
.product-upload-form { margin-top: 16px; padding: 0; background: transparent; border: 0; box-shadow: none; }
.product-upload-form small { color: #7a6f69; font-weight: 500; }
.compact-notice { margin: 12px 0; padding: 10px 12px; }
.compact-notice p { margin: 0; }
.product-uploaded-files { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--color-border); }
.product-uploaded-files h3 { margin: 0 0 10px; font-size: 1rem; }
.product-uploaded-files ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.product-uploaded-files li { display: flex; justify-content: space-between; gap: 14px; padding: 9px 11px; background: #faf7f4; border-radius: 8px; overflow-wrap: anywhere; }
.product-uploaded-files small { flex: 0 0 auto; color: #7a6f69; }
.legacy-upload-files { margin: 24px 0; padding: 20px; background: white; border: 1px solid var(--color-border); border-radius: var(--radius); }
@media (max-width: 640px) {
    .product-upload-head { align-items: stretch; flex-direction: column; }
    .product-upload-count { width: 100%; }
    .product-uploaded-files li { flex-direction: column; gap: 2px; }
}
