/* Fonts are self-hosted via system font stacks (no external CDN):
   --font-display approximates Cormorant Garamond, --font-body approximates Work Sans. */
:root{
  --font-display: Georgia, 'Iowan Old Style', 'Palatino Linotype', Palatino, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --bg:#FBF7EF;
  --bg-alt:#F1ECDF;
  --bg-soft:#F3EEE1;
  --border:#E4DAC6;
  --border-soft:#EDE5D0;
  --border-input:#D8CDB2;
  --ink:#2A2A22;
  --ink-soft:#4A4A3C;
  --text:#5B5748;
  --text-soft:#7A7560;
  --muted:#8A8368;
  --green:#3F5B40;
  --green-dark:#334A34;
  --clay:#B97B56;
  --error:#B25B3E;
  --footer-bg:#2A2A22;
  --footer-text:#D8D3C2;
  --footer-muted:#A8A290;
  --footer-border:#454538;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  background:var(--bg);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;}
button{font-family:inherit;}

@keyframes tk-fade{ from{opacity:0;transform:translateY(6px);} to{opacity:1;transform:translateY(0);} }
@keyframes tk-toast{ from{opacity:0;transform:translate(-50%,10px);} to{opacity:1;transform:translate(-50%,0);} }

.tk-page{
  display:flex;
  flex-direction:column;
  min-height:100vh;
  animation:tk-fade .4s ease;
}

/* ---------- HEADER ---------- */
.tk-header{
  position:sticky; top:0; z-index:40;
  background:var(--bg);
  border-bottom:1px solid var(--border);
}
.tk-header-inner{
  max-width:1280px; margin:0 auto; padding:14px 20px;
  display:flex; align-items:center; gap:20px; justify-content:space-between;
}
.tk-logo{ display:flex; align-items:center; gap:10px; flex-shrink:0; text-decoration:none; }
.tk-logo-badge{
  width:38px; height:38px; border-radius:50%; background:var(--green);
  display:flex; align-items:center; justify-content:center; color:var(--bg);
  font-family:var(--font-display); font-weight:700; font-size:19px;
}
.tk-logo-text{ font-family:var(--font-display); font-weight:700; font-size:23px; color:var(--ink); letter-spacing:.2px; }

.tk-nav{ display:flex; gap:26px; flex-wrap:wrap; }
.tk-nav a{ font-size:15px; color:var(--ink-soft); text-decoration:none; font-weight:500; }
.tk-nav a:hover{ color:var(--green); }
.tk-nav a.active{ color:var(--green); }

.tk-header-actions{ display:flex; align-items:center; gap:16px; flex-shrink:0; }
.tk-icon-btn{
  background:none; border:none; cursor:pointer; padding:6px; color:var(--ink);
  position:relative; display:flex; align-items:center; justify-content:center;
}
.tk-icon-btn:hover{ color:var(--green); }
.tk-badge{
  position:absolute; top:-4px; right:-4px; background:var(--green); color:var(--bg);
  font-size:10px; font-weight:700; width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.tk-badge.fav{ background:var(--clay); }

.tk-mobile-toggle{ display:none; }

.tk-account-pop{
  max-width:1280px; margin:0 auto; padding:0 20px; position:relative;
}
.tk-account-pop-inner{
  position:absolute; right:20px; top:10px; background:#fff; border:1px solid var(--border);
  border-radius:10px; padding:16px; width:220px; box-shadow:0 12px 28px rgba(42,42,34,.12);
  display:flex; flex-direction:column; gap:10px; z-index:50;
}
.tk-account-pop-inner .hint{ font-size:13px; color:var(--muted); }

.tk-search-bar{ border-top:1px solid var(--border); padding:14px 20px; background:var(--bg-soft); }
.tk-search-bar-inner{ max-width:1280px; margin:0 auto; display:flex; gap:10px; }
.tk-search-bar input{
  flex:1; padding:12px 14px; border:1px solid var(--border-input); border-radius:8px;
  font-size:15px; font-family:inherit; outline:none; background:#fff;
}

.tk-mobile-menu{
  border-top:1px solid var(--border); padding:16px 20px; background:var(--bg);
  display:flex; flex-direction:column; gap:14px;
}
.tk-mobile-menu a{ font-size:16px; color:var(--ink); text-decoration:none; font-weight:500; }

/* ---------- BUTTONS ---------- */
.btn{
  border:none; border-radius:8px; padding:14px 26px; font-size:15px; font-weight:600;
  cursor:pointer; text-decoration:none; display:inline-flex; align-items:center; justify-content:center; gap:8px;
}
.btn-primary{ background:var(--green); color:var(--bg); }
.btn-primary:hover{ background:var(--green-dark); }
.btn-outline{ background:none; color:var(--ink); border:1.5px solid var(--ink); }
.btn-outline:hover{ background:var(--ink); color:var(--bg); }
.btn-light{ background:var(--bg); color:var(--green); }
.btn-sm{ padding:9px 16px; font-size:13px; border-radius:7px; }

/* ---------- TOAST ---------- */
.tk-toast{
  position:fixed; bottom:28px; left:50%; transform:translateX(-50%);
  background:var(--ink); color:var(--bg); padding:12px 22px; border-radius:30px;
  font-size:14px; z-index:60; animation:tk-toast .25s ease; white-space:nowrap; display:none;
}
.tk-toast.show{ display:block; }

/* ---------- LAYOUT HELPERS ---------- */
.tk-wrap{ max-width:1280px; margin:0 auto; padding:0 20px; }
.tk-crumb{ font-size:13px; color:var(--muted); margin-bottom:10px; }
main{ flex:1; }

/* ---------- HERO ---------- */
.tk-hero{
  position:relative; padding:64px 20px 70px;
  background:linear-gradient(180deg,var(--bg-alt),var(--bg));
  overflow:hidden;
}
.tk-hero-grid{
  max-width:1280px; margin:0 auto; display:grid;
  grid-template-columns:minmax(280px,1fr) minmax(280px,1fr); gap:48px; align-items:center;
}
.tk-eyebrow{ font-size:13px; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted); font-weight:600; margin-bottom:16px; }
.tk-hero h1{ font-family:var(--font-display); font-size:clamp(38px,5vw,58px); line-height:1.08; margin:0 0 20px; color:var(--ink); font-weight:700; }
.tk-hero p{ font-size:18px; line-height:1.6; color:var(--text); margin:0 0 32px; max-width:480px; }
.tk-hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.tk-hero-img{ position:relative; aspect-ratio:4/3.2; border-radius:16px; overflow:hidden; }
.tk-hero-img img{ width:100%; height:100%; object-fit:cover; }

/* ---------- SECTIONS ---------- */
.tk-section{ padding:70px 20px; max-width:1280px; margin:0 auto; }
.tk-section-head{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:32px; flex-wrap:wrap; gap:10px; }
.tk-section-head h2{ font-family:var(--font-display); font-size:32px; margin:0; color:var(--ink); }
.tk-section-link{ font-size:14px; color:var(--green); text-decoration:none; font-weight:600; }
.tk-section-alt{ background:var(--bg-alt); }
.tk-section-center{ max-width:840px; margin:0 auto; text-align:center; padding:70px 20px; }
.tk-section-center h2{ font-family:var(--font-display); font-size:34px; margin:0 0 18px; color:var(--ink); }
.tk-section-center p{ font-size:17px; line-height:1.7; color:var(--text); margin:0; }

/* ---------- CARDS GRID ---------- */
.tk-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:22px; }
.tk-grid.tk-grid-products{ grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:20px; }

.tk-cat-card{ background:#fff; border:1px solid var(--border-soft); border-radius:14px; overflow:hidden; display:flex; flex-direction:column; text-decoration:none; color:inherit; }
.tk-cat-card .tk-cat-img{ aspect-ratio:5/4; overflow:hidden; }
.tk-cat-card .tk-cat-img img{ width:100%; height:100%; object-fit:cover; }
.tk-cat-card-body{ padding:18px; display:flex; flex-direction:column; gap:8px; flex:1; }
.tk-cat-card-body .name{ font-family:var(--font-display); font-weight:700; font-size:19px; color:var(--ink); }
.tk-cat-card-body .desc{ font-size:13.5px; color:var(--text-soft); flex:1; }
.tk-cat-card-body .more{ align-self:flex-start; color:var(--green); font-weight:600; font-size:14px; margin-top:4px; }

/* ---------- PRODUCT CARD ---------- */
.tk-product-card{ background:#fff; border:1px solid var(--border-soft); border-radius:14px; overflow:hidden; display:flex; flex-direction:column; height:100%; text-decoration:none; color:inherit; position:relative; }
.tk-product-card .tk-p-img{ position:relative; aspect-ratio:1; overflow:hidden; }
.tk-product-card .tk-p-img img{ width:100%; height:100%; object-fit:cover; }
.tk-fav-btn{
  position:absolute; top:10px; right:10px; background:#fff; border:none; border-radius:50%;
  width:32px; height:32px; display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--ink); z-index:2;
}
.tk-fav-btn svg{ pointer-events:none; }
.tk-fav-btn.active svg{ fill:var(--clay); }
.tk-product-body{ padding:16px; display:flex; flex-direction:column; gap:6px; flex:1; }
.tk-badges{ display:flex; gap:6px; flex-wrap:wrap; }
.tk-badge-pill{ font-size:10px; font-weight:600; letter-spacing:.3px; text-transform:uppercase; color:var(--green); border:1px solid var(--green); border-radius:20px; padding:2px 8px; }
.tk-product-body .p-name{ font-weight:600; font-size:15px; color:var(--ink); line-height:1.3; }
.tk-product-body .p-meta{ font-size:12px; color:var(--muted); }
.tk-product-body .p-desc{ font-size:12.5px; color:var(--text-soft); flex:1; line-height:1.4; }
.tk-product-foot{ display:flex; justify-content:space-between; align-items:center; margin-top:6px; }
.tk-price{ font-size:16px; font-weight:700; color:var(--ink); }
.tk-add-btn{ background:var(--green); color:var(--bg); border:none; border-radius:7px; padding:9px 14px; font-size:12.5px; font-weight:600; cursor:pointer; }

/* ---------- ADVANTAGES ---------- */
.tk-adv{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:26px; }
.tk-adv-item{ text-align:center; padding:10px; }
.tk-adv-circle{ width:56px; height:56px; border-radius:50%; background:#EAE3CE; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.tk-adv-circle span{ width:22px; height:22px; border-radius:50%; border:2px solid var(--green); display:block; }
.tk-adv-item .title{ font-weight:600; font-size:16px; color:var(--ink); margin-bottom:6px; }
.tk-adv-item .desc{ font-size:13.5px; color:var(--text-soft); line-height:1.5; }

/* ---------- CTA BANNER ---------- */
.tk-cta{ padding:70px 20px; background:var(--green); }
.tk-cta-inner{ max-width:1280px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px; }
.tk-cta .eyebrow{ font-size:13px; letter-spacing:1.5px; text-transform:uppercase; color:#C9D3BE; font-weight:600; margin-bottom:10px; }
.tk-cta h2{ font-family:var(--font-display); font-size:30px; margin:0; color:var(--bg); }

/* ---------- NEWSLETTER ---------- */
.tk-newsletter{ padding:60px 20px; background:var(--bg-soft); }
.tk-newsletter-inner{ max-width:600px; margin:0 auto; text-align:center; }
.tk-newsletter h2{ font-family:var(--font-display); font-size:28px; margin:0 0 12px; color:var(--ink); }
.tk-newsletter p{ font-size:14.5px; color:var(--text); margin:0 0 24px; }
.tk-newsletter-form{ display:flex; gap:10px; max-width:420px; margin:0 auto; flex-wrap:wrap; justify-content:center; }
.tk-newsletter-form input{ flex:1; min-width:220px; padding:13px 14px; border:1px solid var(--border-input); border-radius:8px; font-size:14px; font-family:inherit; }
.tk-newsletter-success{ font-size:14.5px; color:var(--green); font-weight:600; }

/* ---------- GENERIC PAGE HEADER ---------- */
.tk-page-head{ padding:56px 20px 10px; max-width:1280px; margin:0 auto; }
.tk-page-head h1{ font-family:var(--font-display); font-size:38px; margin:0 0 10px; color:var(--ink); }
.tk-page-head p{ font-size:16px; color:var(--text); margin:0 0 10px; max-width:600px; }

/* ---------- PRODUCTS PAGE ---------- */
.tk-products-layout{ display:grid; grid-template-columns:240px minmax(0,1fr); gap:36px; align-items:start; padding:24px 20px 80px; max-width:1280px; margin:0 auto; }
.tk-filters{ display:flex; flex-direction:column; gap:26px; background:var(--bg-soft); border-radius:14px; padding:22px; }
.tk-filters .group-title{ font-weight:600; font-size:14px; margin-bottom:10px; color:var(--ink); }
.tk-filters label{ display:flex; align-items:center; gap:8px; font-size:13.5px; color:var(--text); cursor:pointer; }
.tk-filters input[type=radio], .tk-filters input[type=checkbox]{ accent-color:var(--green); }
.tk-filters input[type=range]{ width:100%; accent-color:var(--green); }
.tk-filter-list{ display:flex; flex-direction:column; gap:8px; }
.tk-clear-btn{ background:none; border:1px solid #C9BE9E; border-radius:7px; padding:9px; font-size:13px; color:var(--text); cursor:pointer; }

.tk-results-bar{ display:flex; justify-content:space-between; align-items:center; margin-bottom:22px; gap:14px; flex-wrap:wrap; }
.tk-results-count{ font-size:14px; color:var(--text-soft); }
.tk-sort{ display:flex; align-items:center; gap:8px; }
.tk-sort span{ font-size:13.5px; color:var(--text); }
.tk-sort select{ padding:9px 12px; border:1px solid var(--border-input); border-radius:7px; font-size:13.5px; font-family:inherit; background:#fff; }

.tk-empty{ padding:60px 20px; text-align:center; color:var(--text-soft); }
.tk-empty .msg{ font-size:16px; margin-bottom:12px; }

.tk-loadmore{ text-align:center; margin-top:36px; }

@media (max-width:880px){
  .tk-products-layout{ grid-template-columns:1fr; }
}

/* ---------- PRODUCT DETAIL ---------- */
.tk-pd-grid{ display:grid; grid-template-columns:minmax(280px,1fr) minmax(280px,1fr); gap:48px; margin-bottom:60px; padding:44px 20px 0; max-width:1280px; margin-left:auto; margin-right:auto; }
.tk-pd-main-img{ aspect-ratio:1; border-radius:14px; overflow:hidden; margin-bottom:14px; }
.tk-pd-main-img img{ width:100%; height:100%; object-fit:cover; }
.tk-pd-thumbs{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.tk-pd-thumbs img{ aspect-ratio:1; border-radius:9px; object-fit:cover; width:100%; height:100%; }
.tk-pd-info h1{ font-family:var(--font-display); font-size:34px; margin:0 0 10px; color:var(--ink); }
.tk-pd-meta{ font-size:15px; color:var(--text-soft); margin-bottom:18px; }
.tk-pd-price{ font-size:28px; font-weight:700; color:var(--ink); margin-bottom:22px; }
.tk-pd-desc{ font-size:15px; line-height:1.7; color:var(--text); margin:0 0 28px; }
.tk-pd-qty-row{ display:flex; align-items:center; gap:16px; margin-bottom:20px; }
.tk-qty-box{ display:flex; align-items:center; border:1px solid var(--border-input); border-radius:8px; }
.tk-qty-box button{ width:38px; height:42px; background:none; border:none; font-size:18px; cursor:pointer; color:var(--ink); }
.tk-qty-box span{ width:36px; text-align:center; font-size:15px; }
.tk-pd-fav{ background:none; border:1px solid var(--border-input); border-radius:8px; width:42px; height:42px; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.tk-pd-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.tk-pd-actions .btn{ flex:1; min-width:160px; }

.tk-tabs{ border-top:1px solid var(--border); padding-top:10px; margin-bottom:60px; max-width:1280px; margin-left:auto; margin-right:auto; padding-left:20px; padding-right:20px; }
.tk-tabs-nav{ display:flex; gap:26px; border-bottom:1px solid var(--border); flex-wrap:wrap; }
.tk-tabs-nav button{ background:none; border:none; padding:14px 2px; font-size:14.5px; font-weight:600; cursor:pointer; color:var(--muted); border-bottom:2px solid transparent; }
.tk-tabs-nav button.active{ color:var(--green); border-bottom-color:var(--green); }
.tk-tab-content{ padding:26px 4px; font-size:14.5px; line-height:1.75; color:var(--text); max-width:700px; }

.tk-similar{ max-width:1280px; margin:0 auto; padding:0 20px; }
.tk-similar h2{ font-family:var(--font-display); font-size:26px; margin:0 0 24px; color:var(--ink); }

/* ---------- ABOUT / TEXT PAGES ---------- */
.tk-text-page{ padding:56px 20px 80px; max-width:820px; margin:0 auto; }
.tk-text-page.narrow{ max-width:760px; }
.tk-text-page.narrower{ max-width:600px; }
.tk-text-page h1{ font-family:var(--font-display); font-size:38px; margin:0 0 26px; color:var(--ink); }
.tk-text-page p{ font-size:16.5px; line-height:1.8; color:var(--text); margin:0 0 22px; }
.tk-about-img{ border-radius:14px; overflow:hidden; margin-bottom:30px; aspect-ratio:16/9; }
.tk-about-img img{ width:100%; height:100%; object-fit:cover; }
.tk-about-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:22px; margin-bottom:16px; }
.tk-about-grid .item{ background:var(--bg-soft); border-radius:12px; padding:20px; }
.tk-about-grid .item .title{ font-weight:600; font-size:15px; color:var(--ink); margin-bottom:6px; }
.tk-about-grid .item .desc{ font-size:13px; color:var(--text-soft); line-height:1.5; }

/* ---------- FAQ ---------- */
.tk-faq-item{ border-bottom:1px solid var(--border); }
.tk-faq-q{ width:100%; text-align:left; background:none; border:none; padding:18px 0; font-size:16px; font-weight:600; color:var(--ink); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:12px; }
.tk-faq-q .icon{ font-size:20px; color:var(--muted); flex-shrink:0; }
.tk-faq-a{ padding:0 0 20px; font-size:14.5px; line-height:1.7; color:var(--text); display:none; }
.tk-faq-item.open .tk-faq-a{ display:block; }

/* ---------- FORMS ---------- */
.tk-form{ display:flex; flex-direction:column; gap:16px; }
.tk-field label{ font-size:13px; color:var(--text); display:block; margin-bottom:6px; }
.tk-field input, .tk-field textarea, .tk-field select{
  width:100%; padding:12px; border:1px solid var(--border-input); border-radius:8px;
  font-size:14.5px; font-family:inherit; resize:vertical; background:#fff;
}
.tk-form-success{ background:#EAF0E7; border-radius:12px; padding:24px; font-size:15px; color:var(--ink); }
.tk-checkbox-row{ display:flex; align-items:flex-start; gap:10px; font-size:13.5px; color:var(--text); cursor:pointer; }
.tk-checkbox-row input{ margin-top:2px; accent-color:var(--green); }
.tk-checkbox-row a{ color:var(--green); text-decoration:underline; }

/* ---------- LEGAL TABS ---------- */
.tk-legal-tabs{ display:flex; gap:10px; flex-wrap:wrap; border-bottom:1px solid var(--border); margin-bottom:30px; padding-bottom:16px; }
.tk-legal-tabs a{ background:#fff; color:var(--text); border:1px solid var(--border-input); border-radius:20px; padding:9px 16px; font-size:13px; font-weight:600; text-decoration:none; }
.tk-legal-tabs a.active{ background:var(--green); color:var(--bg); border-color:var(--green); }
.tk-legal-body{ font-size:14.5px; line-height:1.8; color:var(--text); }
.tk-legal-body h3{ font-size:15.5px; color:var(--ink); }
.tk-legal-box{ background:var(--bg-soft); border-radius:12px; padding:22px; margin:20px 0; display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:14px; font-size:13.5px; }
.tk-legal-box .full{ grid-column:1/-1; }

/* ---------- CART / CHECKOUT ---------- */
.tk-cart-layout{ display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:40px; align-items:start; }
.tk-cart-items{ display:flex; flex-direction:column; gap:18px; }
.tk-cart-row{ display:flex; gap:16px; align-items:center; border-bottom:1px solid var(--border); padding-bottom:18px; }
.tk-cart-row .thumb{ width:76px; height:76px; border-radius:9px; flex-shrink:0; object-fit:cover; background:var(--border-soft); }
.tk-cart-row .info{ flex:1; min-width:0; }
.tk-cart-row .info .name{ font-weight:600; font-size:15px; color:var(--ink); }
.tk-cart-row .info .meta{ font-size:12.5px; color:var(--muted); margin-top:2px; }
.tk-cart-row .qty-box{ display:flex; align-items:center; border:1px solid var(--border-input); border-radius:7px; flex-shrink:0; }
.tk-cart-row .qty-box button{ width:30px; height:34px; background:none; border:none; font-size:15px; cursor:pointer; }
.tk-cart-row .qty-box span{ width:28px; text-align:center; font-size:13.5px; }
.tk-cart-row .line-total{ width:90px; text-align:right; font-weight:600; font-size:14.5px; color:var(--ink); flex-shrink:0; }
.tk-cart-row .remove{ background:none; border:none; cursor:pointer; color:var(--muted); flex-shrink:0; font-size:15px; }
.tk-summary{ background:var(--bg-soft); border-radius:14px; padding:24px; display:flex; flex-direction:column; gap:14px; }
.tk-summary-row{ display:flex; justify-content:space-between; font-size:14px; color:var(--text); }
.tk-summary-row.total{ border-top:1px solid var(--border-input); padding-top:14px; font-size:17px; font-weight:700; color:var(--ink); }
.tk-summary .heading{ font-weight:600; font-size:14px; color:var(--ink); margin-bottom:4px; }
.tk-cart-empty{ padding:60px 0; text-align:center; color:var(--text-soft); }

.tk-checkout-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:14px; }
.tk-checkout-grid .full{ grid-column:1/-1; }
.tk-option-row{ display:flex; justify-content:space-between; align-items:center; border:1px solid var(--border-input); border-radius:8px; padding:14px; cursor:pointer; background:#fff; }
.tk-option-row span.label{ display:flex; align-items:center; gap:10px; font-size:14px; color:var(--ink); }
.tk-option-row span.price{ font-size:13.5px; color:var(--text-soft); }
.tk-option-row input{ accent-color:var(--green); }
.tk-payment-row{ display:flex; align-items:center; gap:10px; border:1px solid var(--border-input); border-radius:8px; padding:14px; cursor:pointer; background:#fff; font-size:14px; color:var(--ink); }
.tk-payment-row input{ accent-color:var(--green); }
.tk-error{ font-size:12.5px; color:var(--error); }

@media (max-width:880px){
  .tk-cart-layout{ grid-template-columns:1fr; }
}

/* ---------- ORDER COMPLETE ---------- */
.tk-order-complete{ padding:100px 20px; max-width:560px; margin:0 auto; text-align:center; }
.tk-order-check{ width:64px; height:64px; border-radius:50%; background:var(--green); color:var(--bg); display:flex; align-items:center; justify-content:center; font-size:28px; margin:0 auto 24px; }
.tk-order-complete h1{ font-family:var(--font-display); font-size:32px; margin:0 0 14px; color:var(--ink); }
.tk-order-complete p{ font-size:15px; color:var(--text); margin:0 0 8px; }
.tk-order-complete .muted{ font-size:14.5px; color:var(--text-soft); margin:0 0 32px; }

/* ---------- FOOTER ---------- */
.tk-footer{ background:var(--footer-bg); color:var(--footer-text); padding:60px 20px 30px; margin-top:20px; }
.tk-footer-grid{ max-width:1280px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:36px; margin-bottom:40px; }
.tk-footer-brand{ font-family:var(--font-display); font-weight:700; font-size:22px; color:var(--bg); margin-bottom:10px; }
.tk-footer-tag{ font-size:13.5px; color:var(--footer-muted); font-style:italic; }
.tk-footer-col .heading{ font-weight:600; font-size:13.5px; color:var(--bg); margin-bottom:14px; }
.tk-footer-links{ display:flex; flex-direction:column; gap:10px; }
.tk-footer-links a{ color:var(--footer-muted); font-size:13.5px; text-decoration:none; }
.tk-footer-links a:hover{ text-decoration:underline; }
.tk-footer-bottom{ max-width:1280px; margin:0 auto; border-top:1px solid var(--footer-border); padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12px; color:#8A8474; }
.tk-footer-bottom a{ color:#8A8474; text-decoration:underline; }

@media (max-width:880px){
  .tk-nav{ display:none; }
  .tk-mobile-toggle{ display:flex; }
}
