:root {
    --ink: #2d221c;
    --muted: #76675f;
    --cream: #fbf6ef;
    --paper: #fffaf4;
    --clay: #9a5d3d;
    --rose: #b97968;
    --gold: #c59a56;
    --sage: #75836a;
    --line: rgba(45, 34, 28, 0.14);
    --shadow: 0 24px 70px rgba(45, 34, 28, 0.14);
    --radius: 24px;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 5vw, 72px);
    background: rgba(251, 246, 239, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    display: grid;
    place-items: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    flex: 0 0 auto;
}
.brand-logo {
    display: block;
    width: auto;
    max-width: min(240px, 48vw);
    max-height: 100px;
    object-fit: contain;
    flex: 0 0 auto;
}
.brand-text { display: block; min-width: 0; }
.brand strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    letter-spacing: 0.02em;
}
.brand small { color: var(--muted); font-size: 12px; display: block; }
.main-nav { display: flex; align-items: center; gap: 20px; }
.main-nav a { color: var(--muted); font-weight: 600; font-size: 14px; }
.main-nav a:hover { color: var(--ink); }
.nav-toggle { display: none; }

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
    align-items: center;
    gap: clamp(28px, 6vw, 72px);
    padding: clamp(48px, 8vw, 110px) clamp(18px, 5vw, 72px);
    background:
        radial-gradient(circle at top left, rgba(197, 154, 86, 0.22), transparent 34%),
        linear-gradient(135deg, #fff8ef, #f4e5d4);
}
.eyebrow {
    margin: 0 0 12px;
    color: var(--clay);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 12px;
    font-weight: 800;
}
h1, h2, h3, h4 {
    font-family: "Cormorant Garamond", serif;
    line-height: 1.05;
    margin: 0 0 14px;
}
h1 { font-size: clamp(44px, 7vw, 84px); }
h2 { font-size: clamp(32px, 4.5vw, 52px); }
h3 { font-size: 30px; }
.hero-copy p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 18px; }
.hero-actions, .product-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-weight: 800;
    cursor: pointer;
}
.btn.primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn.ghost { background: rgba(255,255,255,0.55); color: var(--ink); }
.hero-card {
    position: relative;
    background: var(--paper);
    padding: 14px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: rotate(1deg);
}
.hero-card img { border-radius: 18px; aspect-ratio: 4 / 3; object-fit: cover; }
.hero-card-note {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 12px 16px;
    background: rgba(255, 250, 244, 0.92);
    border-radius: 18px;
    font-weight: 800;
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.intro-grid, .section-wrap, .story-band, .contact-grid, .product-detail, .content-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 54px clamp(18px, 4vw, 36px);
}
.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.intro-grid article, .contact-card, .panel-form, .product-card, .story-band {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(45, 34, 28, 0.08);
}
.intro-grid article { padding: 28px; }
.intro-grid span { color: var(--gold); font-weight: 900; }
.intro-grid p, .product-card p, .story-band p, .content-page p { color: var(--muted); }
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}
.section-heading a { color: var(--clay); font-weight: 800; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.product-card { overflow: hidden; }
.product-card img { width: 100%; aspect-ratio: 1 / 0.78; object-fit: cover; background: #eee; }
.product-card-body { padding: 22px; }
.product-card small { color: var(--clay); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; }
.price-row strong { font-size: 20px; }
.price-row a { color: var(--clay); font-weight: 800; }
.story-band {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 28px;
    align-items: center;
}
.category-pills, .filter-row { display: flex; flex-wrap: wrap; gap: 12px; }
.category-pills a, .chip {
    padding: 12px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    font-weight: 800;
}
.chip.active { background: var(--ink); color: var(--paper); }
.page-hero {
    padding: 64px clamp(18px, 5vw, 72px);
    text-align: center;
    background: linear-gradient(135deg, #fff8ef, #f2dfcc);
}
.page-hero.compact h1 { font-size: clamp(40px, 6vw, 68px); }
.page-hero p { max-width: 720px; margin: 0 auto; color: var(--muted); }
.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 46px;
    align-items: start;
}
.product-media { background: var(--paper); padding: 14px; border-radius: var(--radius); box-shadow: var(--shadow); }
.product-media img { border-radius: 18px; aspect-ratio: 1 / 0.82; object-fit: cover; width: 100%; }
.product-info .tagline { color: var(--muted); font-size: 19px; }
.product-price { font-size: 30px; font-weight: 900; margin: 16px 0; color: var(--clay); }
.product-description { color: var(--muted); }
.fine-print { color: var(--muted); font-size: 13px; }
.contact-grid { display: grid; grid-template-columns: 0.75fr 1fr; gap: 26px; }
.single-form { grid-template-columns: 1fr; max-width: 820px; }
.contact-card, .panel-form { padding: 28px; }
.form-row { display: grid; gap: 8px; margin-bottom: 16px; font-weight: 800; }
.form-row span { color: var(--ink); }
input, textarea, select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.success-box, .error-box, .flash {
    padding: 14px 16px;
    border-radius: 16px;
    margin: 16px auto;
    max-width: 920px;
}
.success-box, .flash.success { background: #e8f4e2; border: 1px solid #b8d8a9; }
.error-box, .flash.error { background: #fff0eb; border: 1px solid #e4b2a4; }
.content-page { max-width: 860px; font-size: 18px; }
.site-footer {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 28px;
    padding: 44px clamp(18px, 5vw, 72px);
    color: #f8eee3;
    background: var(--ink);
}
.site-footer p, .site-footer a { color: rgba(248, 238, 227, 0.74); display: block; margin: 6px 0; }
.site-footer h3, .site-footer h4 { color: #fff8ef; }

@media (max-width: 860px) {
    .site-header { align-items: flex-start; }
    .nav-toggle { display: inline-flex; border: 1px solid var(--line); background: var(--paper); border-radius: 999px; padding: 10px 14px; font-weight: 800; }
    .main-nav { display: none; position: absolute; left: 18px; right: 18px; top: 82px; background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 18px; box-shadow: var(--shadow); }
    .main-nav.open { display: grid; }
    .hero, .intro-grid, .product-grid, .story-band, .contact-grid, .product-detail, .site-footer { grid-template-columns: 1fr; }
    .section-heading { display: block; }
    .brand-logo { max-height: 48px; max-width: 180px; }
    .brand small { display: none; }
}


.cart-link {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    border: 1px solid var(--line);
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--paper);
}
.cart-link span {
    display: inline-flex;
    min-width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--clay);
    color: #fff8ef;
    font-size: 12px;
    font-weight: 900;
}
.cart-link small { color: var(--muted); font-weight: 800; }
.stacked-actions { display: grid; gap: 14px; align-items: start; }
.add-cart-form {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper);
}
.qty-label { display: flex; align-items: center; gap: 12px; font-weight: 900; }
.qty-label input, .qty-input { max-width: 96px; }
.cart-table-wrap, .panel-form, .cart-summary, .empty-state {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.cart-table-wrap { padding: 18px; overflow-x: auto; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.cart-table th { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.cart-product { display: flex; gap: 14px; align-items: center; min-width: 280px; }
.cart-product img { width: 74px; height: 74px; object-fit: cover; border-radius: 14px; }
.cart-product small, .cart-table small { display: block; margin-top: 4px; color: var(--muted); }
.cart-actions { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; margin-top: 18px; }
.cart-summary { padding: 22px; min-width: 280px; }
.cart-summary p, .summary-line, .summary-total { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.summary-line { padding: 10px 0; border-bottom: 1px solid var(--line); }
.summary-total { margin-top: 16px; padding-top: 16px; border-top: 2px solid var(--line); font-size: 20px; }
.empty-state { padding: 34px; text-align: center; }
.checkout-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 26px; align-items: start; }
.checkout-form h2 { margin-top: 24px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-card, .account-choice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    margin: 10px 0;
    background: #fffaf4;
}
.radio-card input { width: auto; margin-top: 4px; }
.radio-card small { display: block; color: var(--muted); margin-top: 3px; }
.link-card { color: inherit; text-decoration: none; }
.link-card:hover { border-color: var(--accent); transform: translateY(-1px); }
.account-mode-passwords { margin: 10px 0 16px; }
.account-choice.selected { background: #f6eadb; }
.order-review { position: sticky; top: 18px; }
.order-table td { white-space: nowrap; }
.table-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
@media (max-width: 860px) {
    .cart-actions, .checkout-grid, .two-col { display: grid; grid-template-columns: 1fr; }
    .cart-summary { min-width: 0; }
    .order-review { position: static; }
}


.account-overview {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.account-card {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(92,65,49,.14);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(69, 41, 22, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}
.account-card h2 {
    margin: .15rem 0 .25rem;
}
.account-card p,
.account-card small,
.muted-copy {
    color: var(--muted);
}
.account-card small {
    display: block;
    margin-top: .4rem;
    white-space: normal;
}
.account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: flex-end;
}
.account-settings-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, .85fr);
    gap: 1.5rem;
    align-items: start;
}
.inline-heading {
    margin-bottom: 1rem;
}
.three-field-row {
    align-items: end;
}
@media (max-width: 860px) {
    .account-card,
    .account-settings-grid {
        display: block;
    }
    .account-actions {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    .account-settings-grid .panel-form + .panel-form {
        margin-top: 1.5rem;
    }
}

.home-content-section { padding-top: 28px; padding-bottom: 18px; }
.home-content-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(45, 34, 28, 0.08);
    padding: clamp(24px, 4vw, 42px);
    color: var(--muted);
    font-size: 18px;
}
.home-content-card h2,
.home-content-card h3 { color: var(--ink); }
.inline-check { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--muted); margin: -4px 0 18px; }
.inline-check input { width: auto; }
.tax-note { margin-top: 12px; display: block !important; }

.product-options {
    margin: 18px 0;
    padding: 16px;
    border: 1px solid rgba(45, 34, 28, .14);
    border-radius: 18px;
    background: rgba(255, 250, 244, .72);
}
.product-options h2 {
    margin: 0 0 10px;
    font-size: 1.05rem;
}
.product-options select {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid rgba(45, 34, 28, .18);
    border-radius: 14px;
    background: #fffaf4;
    color: #2d221c;
}
.cart-product small,
.summary-line small,
.cart-table small {
    display: block;
    margin-top: 4px;
    color: rgba(45,34,28,.68);
    font-size: .86rem;
}

.product-gallery #product-main-image { width: 100%; max-height: 560px; object-fit: cover; border-radius: 24px; }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.gallery-thumb { width: 76px; height: 76px; border: 2px solid rgba(92, 59, 36, .18); border-radius: 14px; padding: 3px; background: #fffaf4; cursor: pointer; }
.gallery-thumb.active { border-color: #8b5e3c; box-shadow: 0 0 0 3px rgba(139, 94, 60, .14); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; display: block; }
.variation-row > span { display: block; font-weight: 700; margin-bottom: 8px; }
.color-swatch-group { display: flex; gap: 10px; flex-wrap: wrap; }
.color-swatch-option { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(92, 59, 36, .16); border-radius: 999px; padding: 7px 12px; background: #fffaf4; cursor: pointer; transition: .16s ease; }
.color-swatch-option input { position: absolute; opacity: 0; pointer-events: none; }
.color-swatch-option:has(input:checked) { border-color: #8b5e3c; box-shadow: 0 0 0 3px rgba(139, 94, 60, .14); }
.swatch-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--swatch-color); border: 2px solid rgba(40, 27, 18, .2); display: inline-block; }
.swatch-label { font-size: .92rem; font-weight: 700; }
.customization-box { border: 1px solid rgba(92, 59, 36, .16); background: #fffaf4; border-radius: 18px; padding: 16px; margin: 12px 0; }
.customization-text-row.is-disabled { opacity: .5; }
.customization-text-row textarea { min-height: 90px; }


.color-swatch-option.is-unavailable {
    opacity: 0.45;
    text-decoration: line-through;
    cursor: not-allowed;
}

.color-swatch-option.is-unavailable .swatch-dot {
    filter: grayscale(1);
}

.variation-availability-message {
    margin-top: -0.35rem;
    margin-bottom: 1rem;
}

.stock-note {
    display: block;
    color: #6b4f38;
}

.made-to-order-note {
    font-weight: 700;
}


.site-gallery {
    margin: 2.25rem 0;
}

.site-gallery-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 1.25rem;
}

.site-gallery-heading h2 {
    margin-bottom: .35rem;
}

.site-gallery-grid {
    display: grid;
    grid-template-columns: repeat(var(--gallery-columns, 3), minmax(0, 1fr));
    gap: 1rem;
}

.site-gallery-item {
    margin: 0;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(70,45,28,.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(65, 38, 18, .08);
}

.site-gallery-item a {
    display: block;
}

.site-gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.site-gallery-item:hover img {
    transform: scale(1.035);
}

.site-gallery-item figcaption {
    padding: .75rem .9rem;
    font-size: .92rem;
    color: var(--muted, #6e5a4e);
}

.site-gallery-masonry .site-gallery-item img {
    aspect-ratio: 4 / 3;
}

@media (max-width: 780px) {
    .site-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .site-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Jely D Welcome Home Collection */
.welcome-home-hero { background: radial-gradient(circle at 90% 10%, rgba(117,131,106,.18), transparent 30%), radial-gradient(circle at 5% 10%, rgba(197,154,86,.24), transparent 34%), linear-gradient(135deg,#fff8ef,#f0dfcc); }
.wh-hero-card { transform: rotate(-1deg); }
.wh-trust-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.wh-trust-row span { border:1px solid var(--line); background:rgba(255,250,244,.8); border-radius:999px; padding:8px 12px; color:var(--muted); font-size:12px; font-weight:800; }
.wh-benefit-grid article h2 { font-size:34px; }
.wh-package-grid { align-items:stretch; }
.wh-package-card { display:flex; flex-direction:column; }
.wh-package-card .product-card-body { display:flex; flex-direction:column; flex:1; }
.wh-package-card .price-row { margin-top:auto; }
.wh-card-topline { display:flex; justify-content:space-between; align-items:center; gap:10px; }
.wh-badge { display:inline-flex; align-items:center; padding:6px 10px; border-radius:999px; background:#efe3cf; color:var(--clay); font-size:11px; font-weight:900; letter-spacing:.04em; text-transform:uppercase; }
.wh-contents-list { margin:12px 0 18px; padding-left:20px; color:var(--muted); }
.wh-contents-list li { margin:5px 0; }
.wh-story-band { background:linear-gradient(135deg,#fffaf4,#f2e6d8); }
.wh-split-card { display:grid; grid-template-columns:minmax(0,1.25fr) minmax(280px,.75fr); gap:36px; align-items:center; padding:clamp(24px,4vw,44px); background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); box-shadow:0 18px 50px rgba(45,34,28,.08); }
.wh-profile-preview { display:grid; gap:9px; padding:24px; border:1px solid var(--line); border-radius:22px; background:#fff; }
.wh-profile-preview span { color:var(--muted); }
.wh-profile-logo { width:86px; height:86px; display:grid; place-items:center; border-radius:50%; background:var(--ink); color:var(--paper); font-family:"Cormorant Garamond",serif; font-size:22px; }
.wh-service-grid { padding:0; max-width:none; }
.wh-service-grid article span { display:block; margin-bottom:10px; }
.wh-sample-card { display:flex; justify-content:space-between; align-items:center; gap:28px; padding:34px; border-radius:var(--radius); background:var(--ink); color:var(--paper); box-shadow:var(--shadow); }
.wh-sample-card p:not(.eyebrow) { color:rgba(255,250,244,.76); max-width:720px; }
.wh-sample-card .btn.primary { background:var(--paper); color:var(--ink); border-color:var(--paper); flex:0 0 auto; }
.wh-faq details { background:var(--paper); border:1px solid var(--line); border-radius:18px; padding:18px 20px; margin:12px 0; }
.wh-faq summary { cursor:pointer; font-weight:900; }
.wh-faq details p { color:var(--muted); }
.wh-final-cta { margin-top:40px; }
.wh-centered-actions { justify-content:center; }
.wh-policy-page h2 { margin-top:36px; }

.wh-profile-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; }
.wh-profile-card { display:grid; grid-template-columns:150px 1fr; overflow:hidden; background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); box-shadow:0 18px 50px rgba(45,34,28,.08); }
.wh-profile-branding { min-height:220px; display:grid; place-items:center; padding:20px; background:linear-gradient(150deg,var(--profile-primary,#2d221c),var(--profile-accent,#9a5d3d)); }
.wh-profile-branding img { max-width:110px; max-height:110px; object-fit:contain; background:white; padding:10px; border-radius:16px; }
.wh-profile-branding span { width:84px; height:84px; display:grid; place-items:center; background:white; color:var(--profile-primary,#2d221c); border-radius:50%; font-family:"Cormorant Garamond",serif; font-size:44px; font-weight:700; }
.wh-profile-card-body { padding:24px; }
.wh-card-actions { display:flex; flex-wrap:wrap; gap:9px; margin-top:18px; }
.wh-card-actions form { margin:0; }
.wh-card-actions .btn { min-height:38px; padding:8px 13px; font-size:13px; }
.wh-profile-form { max-width:1060px; margin:0 auto; }
.wh-form-section { padding:0 0 28px; margin:0 0 28px; border-bottom:1px solid var(--line); }
.wh-form-section:last-of-type { border-bottom:0; }
.three-col { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.wh-upload-grid { align-items:start; }
.wh-upload-preview { width:100%; max-height:120px; object-fit:contain; border:1px solid var(--line); border-radius:14px; padding:8px; background:#fff; margin-top:8px; }
.wh-approval-box { padding:20px; border:1px solid var(--line); border-radius:18px; background:#fffaf4; }
.wh-approval-box .inline-check { margin:12px 0; align-items:flex-start; }
.wh-approval-box a { color:var(--clay); text-decoration:underline; }
.wh-template-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.wh-template-card { padding:24px; background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); box-shadow:0 18px 50px rgba(45,34,28,.08); }

.wh-product-builder { display:grid; grid-template-columns:minmax(280px,.72fr) minmax(0,1.28fr); gap:30px; align-items:start; }
.wh-product-sidebar { position:sticky; top:110px; display:grid; gap:18px; }
.wh-package-summary-card { padding:24px; background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); box-shadow:0 18px 50px rgba(45,34,28,.08); }
.wh-package-summary-card .product-price { margin:10px 0 18px; }
.wh-order-form { max-width:none; }
.wh-order-form h2 { font-size:40px; }
.wh-order-form textarea { min-height:110px; }
.wh-optional-files { border:1px solid var(--line); border-radius:16px; padding:14px 16px; margin:14px 0; background:#fff; }
.wh-optional-files summary { cursor:pointer; font-weight:900; }
.wh-inline-name { max-width:420px; margin-top:12px; }
.wh-submit-order { width:100%; min-height:54px; font-size:17px; }
.wh-message-buttons { display:flex; flex-wrap:wrap; gap:8px; }

.wh-sales-sheet { max-width:1080px; background:white; margin-top:36px; margin-bottom:36px; border:1px solid var(--line); border-radius:24px; box-shadow:var(--shadow); }
.wh-sales-sheet-header { display:flex; justify-content:space-between; gap:30px; align-items:start; }
.wh-sales-sheet-header h1 { font-size:clamp(42px,6vw,70px); }
.wh-sales-benefits { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin:28px 0; }
.wh-sales-benefits span { padding:13px; border:1px solid var(--line); border-radius:14px; text-align:center; font-weight:800; }
.wh-sales-packages { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.wh-sales-packages article { border:1px solid var(--line); border-radius:18px; overflow:hidden; padding-bottom:18px; }
.wh-sales-packages img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.wh-sales-packages article > *:not(img) { margin-left:18px; margin-right:18px; }
.wh-sales-packages strong { display:block; color:var(--clay); font-size:26px; margin-bottom:8px; }
.wh-sales-how { margin:28px 0; padding:24px; background:#fbf6ef; border-radius:18px; }
.wh-sales-how ol { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; padding-left:22px; }
.wh-sales-footer { display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px; border-top:1px solid var(--line); padding-top:18px; font-size:14px; }

@media (max-width: 980px) {
    .wh-product-builder, .wh-split-card { grid-template-columns:1fr; }
    .wh-product-sidebar { position:static; }
    .wh-profile-grid { grid-template-columns:1fr; }
    .wh-template-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 700px) {
    .three-col, .wh-template-grid, .wh-sales-benefits, .wh-sales-packages, .wh-sales-how ol { grid-template-columns:1fr; }
    .wh-profile-card { grid-template-columns:1fr; }
    .wh-profile-branding { min-height:150px; }
    .wh-sample-card, .wh-sales-sheet-header { display:block; }
    .wh-sample-card .btn, .wh-sales-sheet-header .btn { margin-top:16px; }
}
@media print {
    .site-header, .site-footer, .wh-no-print { display:none !important; }
    body { background:white; }
    .wh-sales-sheet { box-shadow:none; border:0; margin:0; padding:0; max-width:none; }
    .wh-sales-packages { grid-template-columns:repeat(3,1fr); }
    .wh-sales-benefits { grid-template-columns:repeat(4,1fr); }
}

.wh-color-field { align-items: stretch; }
.wh-color-control {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}
input[type="color"].wh-color-input {
    width: 52px;
    min-width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 14px;
    border: 0;
    background: transparent;
    cursor: pointer;
}
input[type="color"].wh-color-input::-webkit-color-swatch-wrapper { padding: 0; }
input[type="color"].wh-color-input::-webkit-color-swatch {
    border: 1px solid rgba(45,34,28,.14);
    border-radius: 14px;
}
input[type="color"].wh-color-input::-moz-color-swatch {
    border: 1px solid rgba(45,34,28,.14);
    border-radius: 14px;
}
.wh-color-swatch {
    width: 100%;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(45,34,28,.12);
    background: #ccc;
}
.wh-color-code {
    font-size: 14px;
    letter-spacing: .06em;
    white-space: nowrap;
}

.wh-proof-card {
    margin-top: 20px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fffaf6;
    box-shadow: 0 14px 30px rgba(45,34,28,.07);
}
.wh-proof-canvas {
    --wh-proof-primary: #2D221C;
    --wh-proof-secondary: #FBF6EF;
    --wh-proof-accent: #9A5D3D;
    margin-top: 14px;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff 0%, #f8f0e8 100%);
    border: 1px solid rgba(45,34,28,.10);
}
.wh-proof-main-shape {
    position: relative;
    width: 68%;
    margin: 0 auto;
    min-height: 210px;
    aspect-ratio: 1 / 1;
    border-radius: 26px;
    background-color: var(--wh-proof-secondary);
    border: 3px solid rgba(45,34,28,.16);
    color: var(--wh-proof-primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.wh-proof-main-shape.has-image {
    box-shadow: inset 0 0 0 999px rgba(255,250,244,.60);
}
.wh-proof-inner {
    position: absolute;
    inset: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}
.wh-proof-overline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--wh-proof-accent);
}
.wh-proof-line {
    display: block;
    line-height: 1.1;
}
.wh-proof-line-1 {
    font-family: Georgia, serif;
    font-size: 24px;
}
.wh-proof-line-2,
.wh-proof-line-3 {
    font-size: 13px;
}
.wh-proof-line-3 {
    color: rgba(45,34,28,.74);
    letter-spacing: .08em;
    text-transform: uppercase;
}
.wh-proof-house {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 22px;
    border: 2px solid var(--wh-proof-accent);
    border-top: 0;
    border-radius: 3px;
    z-index: 2;
}
.wh-proof-house::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -17px;
    width: 22px;
    height: 22px;
    border-top: 2px solid var(--wh-proof-accent);
    border-left: 2px solid var(--wh-proof-accent);
    transform: translateX(-50%) rotate(45deg);
    background: transparent;
}
.wh-proof-hide-house .wh-proof-house { display: none; }
.wh-proof-ring {
    display: none;
    position: absolute;
    top: 50%;
    left: -18px;
    width: 26px;
    height: 26px;
    border: 4px solid rgba(45,34,28,.32);
    border-radius: 999px;
    transform: translateY(-50%);
    background: #fff;
    z-index: 1;
}
.wh-proof-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}
.wh-proof-mini-grid span {
    display: block;
    height: 56px;
    border-radius: 18px;
    border: 2px solid rgba(45,34,28,.12);
    background: color-mix(in srgb, var(--wh-proof-secondary) 78%, white);
}
.wh-proof-mini-grid span:nth-child(2) { background: color-mix(in srgb, var(--wh-proof-accent) 15%, white); }
.wh-proof-mini-grid span:nth-child(3) { background: color-mix(in srgb, var(--wh-proof-primary) 12%, white); }
.wh-proof-template-note {
    margin-top: 14px;
    display: grid;
    gap: 6px;
}
.wh-proof-template-note strong { font-size: 15px; }
.wh-proof-template-note p,
.wh-proof-template-note small { margin: 0; }
.wh-proof-key-moment-mini .wh-proof-main-shape {
    width: 78%;
    min-height: 170px;
    aspect-ratio: 1.8 / 1;
    border-radius: 24px;
}
.wh-proof-key-moment-mini .wh-proof-ring { display: block; }
.wh-proof-key-moment-mini .wh-proof-mini-grid { display: none; }
.wh-proof-key-moment-mini .wh-proof-line-1 { font-size: 20px; }
.wh-proof-key-moment-mini .wh-proof-house { top: 14px; }
.wh-proof-personalized-kitchen-board .wh-proof-main-shape {
    width: 88%;
    min-height: 210px;
    aspect-ratio: 1.25 / 0.9;
    border-radius: 20px 20px 28px 28px;
}
.wh-proof-personalized-kitchen-board .wh-proof-main-shape::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    width: 64px;
    height: 34px;
    border-radius: 999px 999px 18px 18px;
    border: 3px solid rgba(45,34,28,.16);
    border-bottom: 0;
    background: color-mix(in srgb, var(--wh-proof-secondary) 85%, white);
    transform: translateX(-50%);
}
.wh-proof-personalized-kitchen-board .wh-proof-mini-grid { display: none; }
.wh-proof-welcome-home-coaster-set .wh-proof-main-shape,
.wh-proof-welcome-home-display-sample-kit .wh-proof-main-shape {
    width: 58%;
    min-height: 190px;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
}
.wh-proof-welcome-home-coaster-set .wh-proof-house,
.wh-proof-welcome-home-display-sample-kit .wh-proof-house { top: 16px; }
@media (max-width: 900px) {
    .wh-proof-card { margin-top: 16px; }
    .wh-proof-main-shape { width: 100%; }
    .wh-proof-key-moment-mini .wh-proof-main-shape,
    .wh-proof-personalized-kitchen-board .wh-proof-main-shape,
    .wh-proof-welcome-home-coaster-set .wh-proof-main-shape,
    .wh-proof-welcome-home-display-sample-kit .wh-proof-main-shape { width: 100%; }
}

.customer-proof-card {
    margin-top: 24px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fffaf4;
}
.customer-proof-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
}
.customer-proof-heading h3 { margin-bottom: 0; }
.customer-proof-status {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: #ece8e2;
    color: #51443a;
    font-size: 12px;
    font-weight: 900;
}
.customer-proof-status-sent,
.customer-proof-status-revised_and_resent { background:#e8f0fb; color:#24548a; }
.customer-proof-status-revision_requested { background:#fff0dc; color:#935814; }
.customer-proof-status-approved,
.customer-proof-status-waived { background:#e6f4e8; color:#27673a; }
.customer-proof-status-ready_to_send { background:#f0ecfb; color:#5e3c93; }
.customer-proof-status-draft_in_progress { background:#f6eee5; color:#7f4f24; }
.customer-proof-note {
    margin-top: 16px;
    padding: 14px 16px;
    border-left: 4px solid var(--clay);
    border-radius: 10px;
    background: #fff;
}
.customer-proof-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}
