/* Tahlen — terracotta workshop storefront */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
:root {
    --th-sans: "Archivo", "Helvetica Neue", sans-serif;
    --th-serif: "Libre Baskerville", Georgia, serif;
    --th-clay: #c4512c;
    --th-ink: #2a2420;
    --th-paper: #f6f1ea;
    --th-max: 1100px;
}
body.tahlen-theme { margin: 0; font-family: var(--th-sans); color: var(--th-ink); background: var(--th-paper); }
body.tahlen-theme * { box-sizing: border-box; }
body.tahlen-theme a { color: inherit; text-decoration: none; }
body.tahlen-theme img { max-width: 100%; display: block; }
body.tahlen-theme .container-wide { width: min(var(--th-max), 100% - 36px); margin: 0 auto; }
body.tahlen-theme .th-util { background: var(--th-ink); color: #fff; display: flex; align-items: center; gap: 16px; padding: 10px 22px; }
body.tahlen-theme .th-search { flex: 1; }
body.tahlen-theme .th-search input { width: min(420px, 100%); border: 0; background: #3a332e; color: #fff; padding: 8px 12px; font: inherit; }
body.tahlen-theme .th-cart { border: 0; background: var(--th-clay); color: #fff; font: inherit; font-weight: 700; padding: 8px 14px; cursor: pointer; }
body.tahlen-theme .th-brandrow { display: flex; align-items: center; justify-content: space-between; gap: 20px; max-width: var(--th-max); margin: 0 auto; padding: 18px 22px; }
body.tahlen-theme .th-wordmark { font-family: var(--th-serif); font-size: 40px; }
body.tahlen-theme .th-nav { display: flex; gap: 18px; }
body.tahlen-theme .th-nav a { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
body.tahlen-theme .th-nav a.active { color: var(--th-clay); }
body.tahlen-theme .th-announce { background: var(--th-clay); color: #fff; text-align: center; font-size: 13px; padding: 8px; }
body.tahlen-theme .menu-toggle { display: none; background: none; border: 0; color: #fff; }
body.tahlen-theme .th-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 460px; }
body.tahlen-theme .th-hero-copy { padding: 72px 8vw; }
body.tahlen-theme .th-hero h1 { font-family: var(--th-serif); font-size: clamp(56px, 7vw, 84px); line-height: 0.95; margin: 0 0 16px; }
body.tahlen-theme .th-hero p { font-size: 18px; max-width: 420px; }
body.tahlen-theme .th-side { background: var(--th-clay); color: #fff; padding: 48px 36px; display: flex; flex-direction: column; justify-content: flex-end; }
body.tahlen-theme .th-side h2 { font-family: var(--th-serif); font-size: 36px; margin: 0 0 8px; }
body.tahlen-theme .th-btn { display: inline-flex; background: var(--th-ink); color: #fff; padding: 12px 18px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; }
body.tahlen-theme .collection-layout { display: block !important; width: 100%; }
body.tahlen-theme .filter-panel { display: none !important; }
body.tahlen-theme .product-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0,1fr)) !important; gap: 18px !important; width: 100%; }
body.tahlen-theme .page-title-bar h1 { font-family: var(--th-serif); text-transform: none; }
body.tahlen-theme .product-price { color: var(--th-clay); font-weight: 700; }
body.tahlen-theme .th-footer { background: var(--th-ink); color: #ddd; padding: 42px 22px 20px; margin-top: 40px; }
body.tahlen-theme .th-footer-grid { max-width: var(--th-max); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
body.tahlen-theme .th-footer-grid h4 { color: #fff; margin: 0 0 10px; }
body.tahlen-theme .th-footer-grid a, body.tahlen-theme .th-footer-grid p { display: block; color: #c8c0b8; margin: 0 0 8px; font-size: 14px; }
body.tahlen-theme .th-footer-bottom { max-width: var(--th-max); margin: 20px auto 0; padding-top: 12px; border-top: 1px solid #444; font-size: 12px; }
body.tahlen-theme .btn-shop, body.tahlen-theme .add-to-cart-btn { background: var(--th-clay) !important; border-color: var(--th-clay) !important; border-radius: 0 !important; }
@media (max-width: 800px) {
    body.tahlen-theme .th-nav, body.tahlen-theme .th-search { display: none; }
    body.tahlen-theme .menu-toggle { display: inline-flex; }
    body.tahlen-theme .th-hero, body.tahlen-theme .th-footer-grid { grid-template-columns: 1fr; }
    body.tahlen-theme .product-grid { grid-template-columns: 1fr 1fr !important; }
}
