/* ---- Fonts ---- */
@font-face {
    font-family: 'Inter';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('/fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url('/fonts/Inter-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url('/fonts/Inter-SemiBold.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('/fonts/Inter-Bold.woff2') format('woff2');
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #FAF8F5;
    --bg-alt: #F3F0EB;
    --white: #FFFFFF;
    --text: #3D3D3D;
    --text2: #6B6B6B;
    --text3: #9A9A9A;
    --accent: #7BA7C2;
    --accent-green: #7DB8A0;
    --accent-hover: #6493AE;
    --border: #E5E0DA;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --radius: 12px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --header-bg: rgba(250, 248, 245, 0.95);
    --card-bg: #FFFFFF;
    --modal-overlay: rgba(0,0,0,0.35);
}

[data-theme="dark"] {
    --bg: #1a1a2e;
    --bg-alt: #16213e;
    --white: #1e1e36;
    --text: #e0e0e0;
    --text2: #a0a0b0;
    --text3: #707085;
    --accent: #7BA7C2;
    --accent-green: #7DB8A0;
    --accent-hover: #93bdd4;
    --border: #2a2a45;
    --shadow: 0 2px 12px rgba(0,0,0,0.25);
    --header-bg: rgba(26, 26, 46, 0.95);
    --card-bg: #22223a;
    --modal-overlay: rgba(0,0,0,0.6);
}
[data-theme="dark"] .pm-overlay {
    background: rgba(0,0,0,0.6);
}
[data-theme="dark"] .pm-close,
[data-theme="dark"] .pm-nav {
    background: rgba(30,30,54,0.85);
    color: #e0e0e0;
}
[data-theme="dark"] .pm-close:hover,
[data-theme="dark"] .pm-nav:hover {
    background: rgba(30,30,54,1);
}
[data-theme="dark"] .pm-dot {
    background: rgba(255,255,255,0.3);
}
[data-theme="dark"] .nav-link:hover {
    background: rgba(255,255,255,0.06);
}
[data-theme="dark"] .cart-btn:hover {
    background: rgba(255,255,255,0.06);
}
[data-theme="dark"] .btn-primary:hover {
    box-shadow: 0 4px 16px rgba(123, 167, 194, 0.2);
}
[data-theme="dark"] .nav {
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
[data-theme="dark"] .card-img img {
    opacity: 0.92;
}

body, .header, .card, .pm-content {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }
body { overflow-x: hidden; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Header ---- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 64px;
    transform: translateZ(0);
    will-change: transform;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 32px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.header-logo {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.35s ease, opacity 0.3s ease, margin 0.35s ease;
    margin-right: 0;
}
.header-logo.visible {
    width: 170px;
    opacity: 1;
    margin-right: 16px;
}
.logo-img {
    height: 36px;
    width: auto;
}

.nav {
    display: flex;
    gap: 8px;
    flex: 1;
}

.header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text2);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-link:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.nav-link.active { color: var(--accent); }

.cart-btn {
    position: relative;
    color: var(--text2);
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}
.cart-btn:hover { color: var(--text); background: rgba(0,0,0,0.04); }

.cart-count {
    position: absolute;
    top: 2px; right: 0;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: all 0.2s;
}

/* ---- Theme Toggle ---- */
.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 36px; height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    transition: all 0.2s;
    padding: 0;
    flex-shrink: 0;
}
.theme-toggle:hover { color: var(--text); border-color: var(--text3); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ---- Hero ---- */
.hero {
    padding: 100px 0 48px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.hero-compact {
    padding: 88px 0 32px;
}
.hero-compact h1 {
    font-size: 36px;
}

.hero-logo {
    height: 120px;
    width: auto;
    max-width: 100%;
    margin: 0 auto 32px;
    display: block;
    object-fit: contain;
}

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--text);
    margin-bottom: 16px;
}

.hero-sub {
    font-size: 18px;
    color: var(--text2);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(123, 167, 194, 0.3);
}

/* ---- Sections ---- */
.section {
    padding: 64px 0;
}
.section-alt {
    background: var(--bg-alt);
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-head h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.section-link:hover { color: var(--accent-hover); }

/* ---- Products Grid ---- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ---- Card ---- */
.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.25s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.card-img {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    font-size: 48px;
    overflow: hidden;
    background: var(--bg-alt);
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    transform: translateZ(0);
}
.card:hover .card-img img {
    transform: scale(1.08);
}

.card-badges {
    position: absolute;
    top: 8px; left: 8px;
    right: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.badge {
    padding: 3px 7px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}
.badge-trending {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.badge-new {
    background: #5EAD6E;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.badge-discount {
    background: #D4574A;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.card-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
    line-height: 1.3;
    flex: 1;
}

.card-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.card-price-new {
    color: #D4574A;
}
.card-price-old {
    font-size: 13px;
    font-weight: 400;
    color: var(--text3);
    text-decoration: line-through;
}

.card-cart-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}
.card-cart-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ---- Toast ---- */
.shop-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    z-index: 3000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    animation: toastUp 0.3s ease;
}
@keyframes toastUp {
    from { opacity: 0; transform: translateX(-50%) translateY(16px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ---- Product Modal ---- */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    overscroll-behavior: contain;
    justify-content: center;
}
.pm-overlay {
    position: absolute;
    inset: 0;
    background: var(--modal-overlay);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.pm-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 700px;
    width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.pm-close {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 10;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: var(--text);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: background 0.2s;
}
.pm-close:hover { background: var(--white); }

/* Gallery */
.pm-gallery {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pm-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pm-slide img,
.pm-slide video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
.pm-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.85);
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: background 0.2s;
}
.pm-nav:hover { background: var(--white); }
.pm-prev { left: 12px; }
.pm-next { right: 12px; }
.pm-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}
.pm-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.2s;
}
.pm-dot.active { background: var(--white); }

/* Modal info */
.pm-info {
    padding: 24px;
}
.pm-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.pm-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.pm-price .card-price-new { font-size: 22px; }
.pm-price .card-price-old { font-size: 16px; }
.pm-desc {
    color: var(--text2);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.pm-chars {
    background: var(--bg);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
}
.pm-char-line {
    font-size: 14px;
    color: var(--text);
    padding: 2px 0;
}
.pm-cart-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.pm-add-btn {
    padding: 12px 48px;
    font-size: 15px;
}
.pm-qty-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
}
.pm-qty-val {
    font-size: 20px;
    font-weight: 700;
    min-width: 32px;
    text-align: center;
}

/* ---- Cart page ---- */
.cart-empty {
    text-align: center;
    padding: 48px 0;
    color: var(--text2);
    font-size: 18px;
}
.cart-empty p { margin-bottom: 20px; }
.cart-success h2 {
    color: var(--accent-green);
    margin-bottom: 8px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.cart-item-img {
    width: 72px; height: 72px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-alt);
}
.cart-item-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--text);
}
.cart-item-price {
    font-size: 14px;
    color: var(--text2);
}
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.cart-item-qty span {
    font-weight: 600;
    font-size: 16px;
    min-width: 24px;
    text-align: center;
}
.qty-btn {
    width: 32px; height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.2s;
}
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.cart-item-subtotal {
    font-weight: 700;
    font-size: 16px;
    color: var(--accent);
    flex-shrink: 0;
    min-width: 70px;
    text-align: right;
}
.cart-item-del {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text3);
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: color 0.2s;
}
.cart-item-del:hover { color: #D4574A; }

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    font-size: 20px;
    margin-bottom: 32px;
}
.cart-total strong {
    color: var(--accent);
    font-size: 24px;
}

/* ---- Order form ---- */
.cart-order-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    max-width: 600px;
}
.cart-order-form h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}
.of-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.of-field {
    flex: 1;
    margin-bottom: 16px;
}
.of-row .of-field { margin-bottom: 0; }
.of-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 6px;
}
.of-field input,
.of-field textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    font-family: var(--font);
    outline: none;
    resize: vertical;
    transition: border-color 0.2s;
}
.of-field input:focus,
.of-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(123,167,194,0.12);
}
.of-error {
    color: #D4574A;
    font-size: 14px;
    margin-bottom: 12px;
}
.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---- Lightbox ---- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.25s ease;
    overscroll-behavior: contain;
    touch-action: none;
}
.lightbox.active { opacity: 1; }
.lb-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.lightbox img {
    max-width: 92vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 4px;
    cursor: default;
}
.lb-close {
    position: absolute;
    top: 12px; right: 16px;
    width: 40px; height: 40px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.3); }
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.2s;
}
.lb-nav:hover { background: rgba(255,255,255,0.3); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
}
@media (max-width: 600px) {
    .lb-nav { width: 36px; height: 36px; font-size: 20px; }
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-close { top: 8px; right: 8px; }
}

/* ---- Footer ---- */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-alt);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text3);
}
.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-socials-label {
    font-size: 13px;
    color: var(--text3);
}
.footer-socials a {
    display: flex;
    width: 22px;
    height: 22px;
    color: var(--text3);
    transition: color 0.2s;
    flex-shrink: 0;
}
.footer-socials a:hover {
    color: var(--text);
}
.footer-socials svg {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
    display: block;
}
@media (max-width: 600px) {
    .footer-inner { flex-direction: column; gap: 12px; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 30px; }
    .hero-sub { font-size: 16px; }
    .hero { padding: 88px 0 36px; }
    .section { padding: 48px 0; }
    .section-head h2 { font-size: 22px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .nav {
        display: none;
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav.open { display: flex; }
    .nav-link { padding: 12px 16px; font-size: 16px; border-radius: 8px; }

    .burger { display: flex; }
    .logo-img { height: 28px; }
    .header-logo.visible { width: 130px; margin-right: 8px; }
    .hero-logo { height: 80px; margin-bottom: 12px; }
    .hero-sub { margin-bottom: 0; }

    .card-body { padding: 12px; }
    .card-title { font-size: 14px; }
    .card-price { font-size: 15px; }

    /* Modal fullscreen on mobile */
    .product-modal { align-items: stretch; }
    .pm-content {
        width: 100%;
        max-width: 100%;
        height: 100vh; /* fallback */
        height: 100dvh;
        max-height: -webkit-fill-available;
        border-radius: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .pm-gallery { border-radius: 0; height: 280px; flex-shrink: 0; }
    .pm-info { padding: 20px 16px; }
    .pm-title { font-size: 20px; }
    .pm-price { font-size: 18px; }
    .pm-price .card-price-new { font-size: 18px; }

    /* Cart mobile */
    .cart-item { flex-wrap: wrap; gap: 12px; padding: 12px; }
    .cart-item-subtotal { min-width: auto; }
    .of-row { flex-direction: column; gap: 0; }
    .cart-order-form { padding: 20px 16px; }
}

/* ---- About page ---- */
.about-content {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.about-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--text);
}
.about-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 24px 0 8px;
    color: var(--text);
}
.about-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 8px;
    color: var(--text);
}
.about-content p {
    margin-bottom: 16px;
    font-size: 16px;
}
.about-content ul, .about-content ol {
    margin: 0 0 16px 24px;
    font-size: 16px;
}
.about-content li {
    margin-bottom: 4px;
}
.about-img {
    margin: 24px 0;
    text-align: center;
}
.about-img img {
    max-width: 100%;
    border-radius: 12px;
    display: inline-block;
}
.about-img-full img {
    width: 100%;
}
.about-img figcaption {
    font-size: 13px;
    color: var(--text2);
    margin-top: 8px;
}
.about-delimiter {
    border: none;
    border-top: 2px solid var(--border);
    margin: 32px auto;
    max-width: 120px;
}
.about-quote {
    border-left: 4px solid var(--accent);
    padding: 12px 20px;
    margin: 24px 0;
    background: var(--bg-alt);
    border-radius: 0 10px 10px 0;
}
.about-quote p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 8px;
}
.about-quote cite {
    font-size: 13px;
    color: var(--text2);
    font-style: normal;
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .container { padding: 0 16px; }
}
