:root {
    --bg: #fbf6ee;
    --bg-soft: #f5ecdc;
    --ink: #2b2418;
    --ink-soft: #6e6353;
    --accent: #c9846b;
    --accent-soft: #e6b8a3;
    --line: #e6dcc7;
    --shadow: 0 2px 14px rgba(50, 35, 20, 0.06);
    --radius: 14px;
}

html, body { height: 100%; }
body.ponchico-body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Nunito', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }

.ponchico-header {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 50;
}
.ponchico-brand {
    display: flex; align-items: center; gap: .5rem;
    font-family: 'Caveat', cursive; font-size: 2rem; font-weight: 600;
    color: var(--ink);
    text-decoration: none;
}
.ponchico-brand .brand-logo { height: 56px; width: auto; }
.ponchico-nav { display: flex; gap: 1.4rem; }
.ponchico-nav a {
    font-size: 1rem; padding: .25rem 0;
    border-bottom: 2px solid transparent;
}
.ponchico-nav a:hover { border-bottom-color: var(--accent-soft); }

.currency-select {
    width: auto; min-width: 80px;
    background: var(--bg-soft); border-color: var(--line);
}

.cart-link { position: relative; font-size: 1rem; }
.cart-link .badge {
    background: var(--accent); color: white; font-size: .7rem;
    padding: 2px 7px; border-radius: 10px; margin-left: 4px;
}

.hero { padding: 3rem 1rem 2rem; }
.hero-title {
    font-family: 'Fraunces', 'Caveat', serif; font-weight: 500;
    color: var(--ink);
}
.hero-sub { color: var(--ink-soft); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.section-title { font-family: 'Fraunces', serif; font-weight: 500; }
.page-title { font-family: 'Fraunces', serif; font-weight: 500; margin-bottom: 1.5rem; }

.btn-primary {
    background: var(--accent); border-color: var(--accent);
    border-radius: 999px; padding: .55rem 1.4rem;
}
.btn-primary:hover, .btn-primary:focus { background: #b16b53; border-color: #b16b53; }
.btn-outline-primary { color: var(--accent); border-color: var(--accent); border-radius: 999px; }
.btn-outline-primary:hover { background: var(--accent); border-color: var(--accent); color: white; }

.product-card { display: block; color: var(--ink); transition: transform .15s ease; }
.product-card:hover { transform: translateY(-2px); color: var(--ink); }
.product-photo {
    position: relative; aspect-ratio: 1; background: var(--bg-soft);
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line);
}
.product-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    color: var(--ink-soft); font-style: italic;
}
.photo-placeholder.large { aspect-ratio: 1; }
.product-name { margin-top: .6rem; font-size: 1rem; font-weight: 600; }
.product-price { color: var(--ink-soft); font-size: .95rem; }

.status-badge {
    position: absolute; top: 8px; right: 8px;
    background: rgba(255,255,255,0.92); color: var(--ink);
    font-size: .75rem; padding: 3px 10px; border-radius: 999px;
    border: 1px solid var(--line);
}
.status-badge.sold { background: var(--ink); color: white; border-color: var(--ink); }
.status-badge.auction { background: var(--accent); color: white; border-color: var(--accent); }

.category-filters .chip {
    padding: .35rem .9rem; border: 1px solid var(--line); border-radius: 999px;
    background: var(--bg-soft); color: var(--ink); font-size: .9rem;
}
.category-filters .chip.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.product-main-photo { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); border: 1px solid var(--line); }
.product-main-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs .thumb { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.product-title { font-family: 'Fraunces', serif; font-weight: 500; margin-top: .25rem; }
.product-price-large { font-size: 1.5rem; font-weight: 600; }

.option-tile {
    display: inline-flex; flex-direction: column; align-items: center;
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: .5rem; cursor: pointer; min-width: 78px;
    background: var(--bg-soft);
}
.option-tile input { margin-bottom: .25rem; }
.option-tile img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }
.option-tile .option-label { font-size: .85rem; margin-top: .25rem; }
.option-tile .option-price { font-size: .75rem; color: var(--ink-soft); }
.option-tile:has(input:checked) { border-color: var(--accent); background: white; }

.cart-table thead { background: var(--bg-soft); }
.checkout-summary {
    background: var(--bg-soft); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1.25rem;
}
@media (min-width: 768px) {
    .checkout-summary {
        position: sticky;
        top: 96px;
    }
}

.faq-list .faq-item {
    background: var(--bg-soft); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1rem 1.2rem; margin-bottom: .75rem;
}
.faq-list .faq-item summary { font-weight: 600; cursor: pointer; }
.faq-list .faq-answer { color: var(--ink-soft); margin-top: .5rem; }

.bid-history { list-style: none; padding: 0; }
.bid-history li { padding: .35rem 0; border-bottom: 1px dashed var(--line); }

.ponchico-footer {
    background: var(--bg-soft); border-top: 1px solid var(--line);
    color: var(--ink-soft); font-size: .9rem; margin-top: 4rem;
}
.ponchico-footer a { color: var(--ink-soft); }
.ponchico-footer a:hover { color: var(--accent); }
.footer-logo-mark {
    text-align: center;
    margin-bottom: .75rem;
}
.footer-logo-mark img {
    width: min(150px, 42vw);
    height: auto;
    opacity: .72;
    mix-blend-mode: multiply;
}
.footer-payment-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin: 0 auto .85rem;
    color: var(--ink-soft);
    font-size: .82rem;
}
.footer-payment-strip img {
    height: 28px;
    max-width: min(360px, 78vw);
}

.showcase-card .product-photo { filter: saturate(0.95); }

/* Ponchico bottom banner — compact */
.ponchico-banner {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    padding: 1.5rem 0;
    margin-top: 2rem;
    font-size: .9rem;
}
.ponchico-banner .banner-heading {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: .5rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.ponchico-banner .banner-about { color: var(--ink-soft); font-size: .85rem; line-height: 1.5; margin-bottom: .5rem; }
.ponchico-banner .banner-socials { display: flex; gap: 1rem; margin-top: .5rem; flex-wrap: wrap; }
.ponchico-banner .social-link {
    display: inline-flex; align-items: center; gap: .35rem;
    color: var(--ink); font-size: .85rem;
}
.ponchico-banner .social-link:hover { color: var(--accent); }
.ponchico-banner .social-icon { font-size: 1rem; }
.ponchico-banner .banner-links { list-style: none; padding: 0; margin: 0; columns: 2; }
.ponchico-banner .banner-links li { padding: .15rem 0; }
.ponchico-banner .banner-links a { color: var(--ink); font-size: .85rem; }
.ponchico-banner .banner-links a:hover { color: var(--accent); }

/* Mini Instagram embed — scaled to fit alongside the other footer columns */
.ig-embed {
    width: 220px;
    height: 280px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}
.ig-embed > * {
    transform: scale(0.55);
    transform-origin: top left;
    width: 400px !important;
    min-width: 400px !important;
    max-width: 400px !important;
}
.ig-embed iframe { max-width: 400px !important; min-width: 0 !important; }
.ig-embed blockquote.instagram-media { margin: 0 !important; }

.ig-fallback { display: inline-block; }
.ig-fallback-box {
    border: 1px dashed var(--line);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    color: var(--ink-soft);
    font-size: .85rem;
    max-width: 220px;
}
.ig-fallback:hover .ig-fallback-box { border-color: var(--accent); color: var(--accent); }

/* Announcement bar */
.announcement-bar {
    background: var(--accent-soft);
    color: var(--ink);
    font-size: .9rem;
    border-bottom: 1px solid var(--line);
}

/* Variant tiles */
.variant-tile {
    display: inline-flex; flex-direction: column; align-items: center;
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: .5rem; cursor: pointer; min-width: 90px;
    background: var(--bg-soft); position: relative;
}
.variant-tile input { position: absolute; opacity: 0; pointer-events: none; }
.variant-tile img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.variant-tile .variant-name { font-size: .85rem; margin-top: .25rem; }
.variant-tile:has(input:checked) { border-color: var(--accent); background: white; box-shadow: 0 0 0 2px var(--accent-soft); }
.variant-tile.sold-out { opacity: .5; cursor: not-allowed; }
.variant-tile .sold-pill {
    position: absolute; top: 4px; right: 4px;
    background: var(--ink); color: white; font-size: .65rem;
    padding: 1px 6px; border-radius: 999px;
}
.variant-tile .low-pill {
    position: absolute; top: 4px; right: 4px;
    background: var(--accent); color: white; font-size: .65rem;
    padding: 1px 6px; border-radius: 999px;
}
/* Pill-style variant tiles when there is no photo */
.variant-tile:not(:has(img)) {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: .5rem 1.1rem;
    min-width: 0;
    min-height: 44px;
    background: var(--bg);
}
.variant-tile:not(:has(img)) .variant-name {
    margin-top: 0;
    font-size: .95rem;
    white-space: nowrap;
}
.variant-tile:not(:has(img)):has(input:checked) {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 0 0 2px var(--accent-soft);
}

/* Thumb active */
.product-thumbs .thumb { cursor: pointer; opacity: .75; }
.product-thumbs .thumb:hover, .product-thumbs .thumb.active { opacity: 1; border-color: var(--accent); }

/* Tip jar */
.tip-jar .btn-check + .btn { border-radius: 999px !important; margin: 0 4px 0 0; }
.tip-jar .btn-check:checked + .btn { background: var(--accent); border-color: var(--accent); color: white; }
#tipRow[hidden] { display: none !important; }
.checkout-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    flex-wrap: wrap;
}
.checkout-section-heading h5 { margin: 0; }
.checkout-payment-mark {
    display: grid;
    gap: .45rem;
    justify-items: start;
    margin-top: 1rem;
}
.checkout-payment-mark img:first-child { height: 30px; }
.checkout-payment-mark img:last-child {
    height: 24px;
    max-width: 100%;
}

/* Stock urgency */
.stock-line.stock-low,
.stock-line .stock-low,
.stock-low { color: var(--accent) !important; font-weight: 600; }
.stock-line.stock-soldout,
.stock-line .stock-soldout,
.stock-soldout { color: var(--ink-soft) !important; font-style: italic; }

.notify-me-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-top: 1rem;
}
.notify-me-card h5 { font-family: 'Fraunces', serif; margin-bottom: .25rem; }
.notify-me-form input[type="email"] { border-radius: 999px; }

/* Hero banner with photo — edge-to-edge */
.hero-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 420px;
    /* break out of the parent .container to span the full viewport */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
}
.hero-banner .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(43,36,24,0.55) 0%, rgba(43,36,24,0.15) 50%, rgba(43,36,24,0.0) 100%);
    display: flex; align-items: center; padding: 2rem 2rem 2rem 4rem;
}
.hero-banner .hero-text { color: white; max-width: 540px; }
.hero-banner .hero-title { color: white; font-family: 'Fraunces', serif; font-size: 2.5rem; }
.hero-banner .hero-sub { color: rgba(255,255,255,0.92); }

/* Featured horizontal scroll */
.featured-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: .5rem .25rem 1rem;
}
.featured-scroll .featured-card { scroll-snap-align: start; }
@media (min-width: 992px) {
    .featured-scroll {
        grid-auto-columns: minmax(0, 1fr);
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-flow: row;
        overflow-x: visible;
    }
}

/* Photo size cap */
.product-main-photo { aspect-ratio: 1; max-height: 70vh; position: relative; }
.product-main-photo .zoom-hint {
    position: absolute; bottom: 8px; right: 8px;
    background: rgba(255,255,255,0.85); border: 1px solid var(--line);
    width: 34px; height: 34px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: zoom-in;
}

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(20,15,10,0.92);
    z-index: 1080;
    display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
    max-width: 92vw; max-height: 92vh;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    cursor: zoom-out;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute; background: rgba(255,255,255,0.92);
    border: none; border-radius: 50%;
    width: 44px; height: 44px;
    font-size: 1.4rem; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
}
.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* Phone country select inline */
.phone-country-select { font-size: .9rem; }

/* Preserve newlines in product description */
.product-desc-body { white-space: pre-wrap; }

/* Size chart on product page */
.size-chart {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
}
.size-chart-label {
    background: var(--bg-soft);
    padding: .5rem 1rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
}
.size-chart-table { width: 100%; font-size: .9rem; }
.size-chart-table th, .size-chart-table td {
    padding: .6rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
}
.size-chart-table th { color: var(--ink-soft); font-weight: 500; background: var(--bg-soft); }
.size-chart-table tr:last-child td { border-bottom: none; }

/* Shipping zones table inside modal */
.shipping-zones-table { width: 100%; font-size: .9rem; }
.shipping-zones-table td { padding: .35rem .5rem; border-bottom: 1px dashed var(--line); }
.shipping-zones-table .zone-name { font-weight: 600; }
.shipping-zones-table .zone-rate { text-align: right; }

/* Announcement close button */
.announcement-bar .btn-close { filter: brightness(0.6); padding: .35rem; }
.announcement-bar .btn-close:hover { filter: brightness(0.4); }

/* Product page shipping link */
.shipping-inline-link {
    padding: 0;
    color: var(--ink-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.product-shipping-note {
    margin-top: .45rem;
}

/* Add-to-cart popover */
.cart-added-popover {
    position: fixed;
    inset: 0;
    z-index: 1090;
    pointer-events: none;
}
.cart-added-popover[hidden] { display: none; }
.cart-added-panel {
    position: fixed;
    pointer-events: auto;
    background: var(--bg);
    border: 2px solid #8b503e;
    border-radius: 18px;
    box-shadow: 0 16px 35px rgba(43, 36, 24, 0.18);
    padding: 1.1rem 1.2rem 1.25rem;
}
.cart-added-close {
    position: absolute;
    top: .75rem;
    right: .85rem;
    border: 0;
    background: transparent;
    color: #8b503e;
    font-size: 1.8rem;
    line-height: 1;
}
.cart-added-status {
    color: #8b503e;
    font-weight: 700;
    margin-bottom: .85rem;
    padding-right: 2rem;
    letter-spacing: .02em;
}
.cart-added-status::before {
    content: "✓";
    margin-right: .45rem;
    font-weight: 700;
}
.cart-added-product {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: .85rem;
    align-items: center;
}
.cart-added-product img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border: 2px solid #8b503e;
    border-radius: 14px;
    background: var(--bg-soft);
}
.cart-added-product img[hidden] { display: none; }
.cart-added-product h2 {
    font-family: 'Fraunces', serif;
    color: #8b503e;
    font-size: 1.08rem;
    margin: 0;
}
.cart-added-variant,
.cart-added-message {
    color: var(--ink-soft);
    margin-top: .25rem;
    font-size: .92rem;
}
.cart-added-actions {
    display: grid;
    gap: .6rem;
    margin-top: 1rem;
}
.cart-added-actions .btn {
    width: 100%;
    border-radius: 999px;
    font-weight: 700;
    padding: .62rem 1rem;
}
.cart-added-actions .btn-outline-primary {
    background: var(--bg);
    border: 2px solid #8b503e;
    color: #8b503e;
    box-shadow: 0 3px 0 #8b503e;
}
.cart-added-actions .btn-outline-primary:hover {
    background: var(--bg-soft);
    color: #8b503e;
}
.cart-added-actions .btn-primary {
    background: #3c9b43;
    border-color: #3c9b43;
    box-shadow: 0 3px 0 #8b503e;
}
.cart-added-actions .btn-primary:hover {
    background: #318439;
    border-color: #318439;
}
.cart-added-actions .btn-link {
    color: #8b503e;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: .2rem 0;
}

/* Contact page */
.contact-page {
    padding-bottom: 2rem;
}
.contact-hero {
    margin-bottom: 1.5rem;
}
.contact-form-wrap {
    max-width: none;
}
.contact-hero .page-title {
    color: var(--ink);
    font-size: inherit;
    margin-bottom: 1rem;
}
.contact-form-wrap {
    margin: 0;
    padding: 0;
}
.contact-main {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.contact-logo-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
    color: var(--ink-soft);
}
.contact-logo-card img {
    width: min(190px, 78%);
    display: block;
    margin: 0 auto 1rem;
}
.contact-logo-card h2 {
    font-family: 'Fraunces', serif;
    color: #8b503e;
    font-size: 1.35rem;
}
.contact-logo-card p {
    margin-bottom: 0;
}
.contact-form {
    display: grid;
    gap: 1rem;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}
.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    background: #fff;
    color: var(--ink);
    padding: .55rem .75rem;
    font: inherit;
    outline: none;
}
.contact-field textarea {
    resize: vertical;
    min-height: 170px;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #6c757d;
}
.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 .2rem rgba(201, 132, 107, .18);
}
.contact-send {
    width: min(180px, 100%);
    margin-top: 1rem;
}
.contact-logo-band {
    display: none;
}
.contact-logo-band img {
    width: min(260px, 52vw);
    height: auto;
}
/* Cart page */
.cart-page-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.cart-continue-link {
    color: var(--ink-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cart-table {
    border-color: var(--line);
}
.cart-table thead th {
    color: var(--ink-soft);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
}
.cart-table tbody tr {
    border-bottom: 1px solid var(--line);
}
.cart-table td {
    padding: 1.35rem .75rem;
}
.cart-product-cell {
    display: grid;
    grid-template-columns: 132px minmax(180px, 1fr);
    gap: 1.1rem;
    align-items: center;
}
.cart-product-photo {
    width: 132px;
    height: 132px;
    object-fit: cover;
    border: 2px solid #8b503e;
    border-radius: 12px;
    background: var(--bg-soft);
}
.cart-product-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    font-size: .85rem;
}
.cart-product-info strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
}
.cart-variant,
.cart-unit-price {
    display: block;
    color: var(--ink-soft);
    margin-top: .25rem;
}
.cart-quantity-form {
    display: inline-grid;
    grid-template-columns: 42px 54px 42px;
    align-items: center;
    border: 2px solid #8b503e;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg);
}
.cart-quantity-form button {
    border: 0;
    background: transparent;
    color: #8b503e;
    font-size: 1.25rem;
    min-height: 42px;
}
.cart-quantity-form button:hover {
    background: var(--bg-soft);
}
.cart-quantity-form span {
    color: #8b503e;
    font-weight: 700;
}
.cart-line-total {
    color: #8b503e;
    font-weight: 700;
    white-space: nowrap;
}
.cart-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: .75rem;
    margin-top: 1.25rem;
}
.cart-actions .btn-link {
    color: var(--ink-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Shipping info mini modal */
#shippingInfoModal .modal-dialog {
    max-width: 560px;
}
#shippingInfoModal .modal-content {
    background: var(--bg);
    border: 2px solid #8b503e;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(43, 36, 24, 0.18);
}
#shippingInfoModal .modal-header,
#shippingInfoModal .modal-footer {
    border-color: var(--line);
}
#shippingInfoModal .modal-title {
    font-family: 'Fraunces', serif;
    color: #8b503e;
}
.checkout-note {
    background: var(--bg-soft);
    color: var(--ink-soft);
}
.customer-page {
    max-width: 840px;
}
.customer-page .lead {
    color: var(--ink-soft);
    font-size: 1.1rem;
    max-width: 720px;
}
.customer-page h2 {
    font-family: 'Fraunces', serif;
    color: #8b503e;
    font-size: 1.35rem;
    margin-top: 1.75rem;
}
.customer-page p {
    color: var(--ink-soft);
}
.footer-policy-links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: .45rem;
}

/* About + commissions */
.brand-story,
.commission-page {
    padding-bottom: 2rem;
}
.brand-story {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 2rem;
    align-items: start;
    overflow: hidden;
}
.brand-story-copy,
.brand-story-card {
    min-width: 0;
}
.story-kicker {
    color: #8b503e;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}
.brand-story .lead,
.commission-intro .lead {
    max-width: 720px;
}
.brand-story-copy p,
.commission-notes p {
    color: var(--ink-soft);
}
.story-note {
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
}
.story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}
.brand-story-card,
.commission-notes,
.commission-form {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
}
.brand-story-card {
    max-width: 100%;
}
.brand-story-card img {
    width: min(180px, 70%);
    display: block;
    margin: 0 auto 1rem;
}
.brand-story-card h2,
.commission-notes h2 {
    font-family: 'Fraunces', serif;
    color: #8b503e;
    font-size: 1.35rem;
}
.commission-intro {
    margin-bottom: 1.5rem;
}
.commission-form textarea {
    resize: vertical;
}

@media (max-width: 992px) {
    .brand-story {
        grid-template-columns: 1fr;
    }
}

/* Account and password helpers */
.password-reveal-wrap {
    position: relative;
}
.password-reveal-wrap .form-control {
    padding-right: 4.5rem;
}
.password-floating-wrap > .form-control {
    padding-right: 5rem;
}
.password-reveal-btn {
    position: absolute;
    right: .45rem;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: var(--bg-soft);
    color: #8b503e;
    border-radius: 999px;
    padding: .25rem .7rem;
    font-size: .85rem;
    z-index: 5;
}
.password-floating-wrap > .password-reveal-btn {
    right: .55rem;
}
.password-requirements,
.account-help-panel {
    color: var(--ink-soft);
    font-size: .9rem;
}
.password-requirements {
    margin-top: .35rem;
}
.account-help-panel {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .85rem 1rem;
    margin-bottom: 1rem;
}

/* Product suggestions and reviews */
.product-extra-section {
    margin-top: 3rem;
}
.product-extra-section h2 {
    font-family: 'Fraunces', serif;
    color: #8b503e;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.related-product-card .product-name,
.related-product-card .product-price {
    font-size: .95rem;
}
.review-heading {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: .6rem;
}
.review-heading h2 {
    margin-bottom: 0;
}
.review-heading span,
.review-note {
    color: var(--ink-soft);
}
.verified-review-form {
    border: 1px solid var(--line);
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 1rem;
}
.review-list {
    display: grid;
    gap: .85rem;
    margin-top: 1rem;
}
.review-item {
    border-bottom: 1px solid var(--line);
    padding-bottom: .85rem;
}
.review-item p {
    margin: .4rem 0 0;
}
.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: space-between;
    color: var(--ink);
}
.review-meta span {
    color: var(--ink-soft);
    font-size: .95rem;
}

@media (max-width: 768px) {
    .contact-main {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-hero {
        padding: 3rem 0 2.25rem;
    }
    .contact-logo-band {
        min-height: 240px;
    }
    .cart-page-heading,
    .cart-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .cart-table thead { display: none; }
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }
    .cart-table tr {
        padding: 1rem 0;
    }
    .cart-table td {
        padding: .5rem 0;
    }
    .cart-product-cell {
        grid-template-columns: 104px 1fr;
    }
    .cart-product-photo {
        width: 104px;
        height: 104px;
    }
    .cart-line-total,
    .cart-table .text-end,
    .cart-table .text-center {
        text-align: left !important;
    }
    .cart-added-product {
        grid-template-columns: 80px 1fr;
    }
    .cart-added-product img {
        width: 80px;
        height: 80px;
    }
}
