:root {
  --purple: #4B0082;
  --purple-2: #6A16A1;
  --purple-3: #8B45B1;
  --purple-dark: #250044;
  --purple-shadow: #2E0052;
  --cream: #FFF9EE;
  --cream-2: #F8F0E4;
  --cream-3: #EFE3D3;
  --white: #FFFFFF;
  --gold: #F2A526;
  --brown: #65351F;
  --brown-2: #8B512E;
  --ink: #2A1737;
  --muted: #6F6278;
  --green: #00A96B;
  --green-soft: #E7F8F0;
  --red: #C94658;
  --border: rgba(75, 0, 130, .14);
  --shadow: 0 18px 50px rgba(45, 0, 82, .10);
  --shadow-sm: 0 8px 24px rgba(45, 0, 82, .09);
  --radius-xs: 10px;
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1280px;
  --heading: "Comfortaa", "Trebuchet MS", Arial, sans-serif;
  --body: "Inter", "Lato", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.prototype-notice { padding: 7px 14px; background: #F2A526; color: #250044; text-align: center; font-size: 11px; font-weight: 900; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 64px)); margin-inline: auto; }
.section { padding: 76px 0; }
.section-sm { padding: 48px 0; }
.section-title {
  font-family: var(--heading);
  color: var(--purple);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -.035em;
}
.section-lead { color: var(--muted); font-size: 18px; max-width: 700px; margin: 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--purple); font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase; font-size: 12px;
}
.eyebrow::before { content: ""; width: 24px; height: 3px; border-radius: 999px; background: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 23px; border-radius: 999px;
  border: 2px solid var(--purple); background: var(--purple); color: #fff;
  font-weight: 900; font-size: 14px; letter-spacing: .01em;
  box-shadow: 0 7px 20px rgba(75,0,130,.12);
}
.btn:hover { transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--purple); box-shadow: none; }
.btn-cream { background: var(--cream); color: var(--purple); border-color: var(--cream); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--purple-dark); }
.btn-sm { min-height: 38px; padding: 0 16px; font-size: 12px; }
.btn-block { width: 100%; }
.link-arrow { color: var(--purple); font-weight: 900; display: inline-flex; gap: 7px; align-items: center; }
.link-arrow::after { content: "→"; transition: transform .2s ease; }
.link-arrow:hover::after { transform: translateX(3px); }

/* Header */
.announcement {
  background: linear-gradient(90deg, var(--purple-dark), var(--purple), var(--purple-dark));
  color: #fff; min-height: 38px; display: flex; align-items: center; font-size: 12px; font-weight: 800;
}
.announcement .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.announcement-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.trust-stars { display: inline-flex; gap: 2px; }
.trust-stars span { width: 17px; height: 17px; display: grid; place-items: center; background: var(--green); color: #fff; font-size: 11px; }
.site-header { background: rgba(255,249,238,.96); border-bottom: 1px solid var(--border); position: relative; z-index: 20; }
.header-inner { min-height: 104px; display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--purple); }
.brand img { width: 76px; height: 76px; object-fit: contain; }
.brand-wordmark { font-family: var(--heading); font-weight: 900; font-size: 22px; line-height: .87; letter-spacing: -.04em; }
.brand-wordmark small { display: block; font-size: 14px; margin-bottom: 4px; letter-spacing: .03em; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 32px; font-size: 13px; font-weight: 900; }
.main-nav a { position: relative; padding: 10px 0; }
.main-nav a.active::after, .main-nav a:hover::after { content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 2px; background: var(--purple); border-radius: 99px; }
.header-actions { display: flex; gap: 8px; align-items: center; }
.icon-btn {
  width: 43px; height: 43px; border: 0; background: transparent; border-radius: 50%; color: var(--purple-dark);
  display: grid; place-items: center; position: relative;
}
.icon-btn:hover { background: rgba(75,0,130,.07); }
.icon-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.badge-count { position: absolute; right: 0; top: 0; width: 19px; height: 19px; border-radius: 50%; background: var(--purple); color: #fff; font-size: 10px; display: grid; place-items: center; font-weight: 900; }
.mobile-toggle { display: none; }
.mobile-nav { display: none; }

/* General cards and grids */
.card { background: rgba(255,255,255,.66); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.card-pad { padding: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }

/* Homepage hero */
.hero { position: relative; overflow: hidden; background: linear-gradient(120deg, #FFFDF8 0%, #FFF9EE 54%, #F1E4D3 100%); }
.hero::after { content: ""; position: absolute; width: 500px; height: 500px; right: -150px; top: -130px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.8), rgba(255,255,255,0)); }
.hero-inner { min-height: 520px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 34px; position: relative; z-index: 2; }
.hero h1 { font-family: var(--heading); color: var(--purple); font-size: clamp(48px, 5.3vw, 78px); line-height: .99; letter-spacing: -.055em; margin: 0 0 20px; max-width: 700px; }
.hero h1 em { display: block; font-family: "URW Chancery L", "Brush Script MT", cursive; font-size: .70em; font-weight: 500; line-height: 1; letter-spacing: -.02em; }
.hero-copy { font-size: 19px; color: var(--ink); max-width: 550px; margin-bottom: 28px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-art { position: relative; min-height: 470px; }
.hero-mascot { position: absolute; width: min(430px, 80%); right: 10%; bottom: 18px; z-index: 3; filter: drop-shadow(0 24px 25px rgba(45,0,82,.18)); }
.hero-product { position: absolute; width: 185px; border-radius: 28px; box-shadow: var(--shadow); }
.hero-product.one { left: 0; bottom: 20px; transform: rotate(-9deg); }
.hero-product.two { right: -5%; bottom: 35px; transform: rotate(10deg); }
.choc-chip { position: absolute; width: 14px; height: 14px; background: var(--brown); border-radius: 50%; box-shadow: 28px 13px 0 var(--brown), 62px -8px 0 var(--brown), 92px 18px 0 var(--brown); bottom: 35px; right: 21%; opacity: .9; }
.trust-strip { background: linear-gradient(100deg, var(--purple-dark), var(--purple), var(--purple-dark)); color: #fff; }
.trust-grid { min-height: 112px; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items: center; }
.trust-item { display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: center; }
.trust-icon { width: 48px; height: 48px; border: 2px solid rgba(255,255,255,.8); border-radius: 50%; display: grid; place-items: center; }
.trust-icon img { width: 29px; height: 29px; }
.trust-item strong { display: block; font-family: var(--heading); font-size: 13px; }
.trust-item span { display: block; font-size: 11px; opacity: .85; margin-top: 4px; line-height: 1.35; }

/* Category cards */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 18px; margin-top: 34px; }
.category-card { overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: 20px; text-align: center; transition: transform .2s ease; }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.category-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--cream-2); }
.category-card .category-body { padding: 15px 12px 17px; }
.category-card h3 { font-family: var(--heading); font-size: 14px; margin: 0 0 12px; color: var(--purple-dark); }
.tcp-subcategory-browser { margin-bottom: 52px; }
.tcp-subcategory-browser .category-grid { margin-top: 24px; }

/* Feature split */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 52px; }
.feature-panel { min-height: 300px; border-radius: 26px; overflow: hidden; position: relative; padding: 38px; }
.feature-panel.purple { background: linear-gradient(140deg, var(--purple-dark), var(--purple)); color: #fff; }
.feature-panel.light { background: linear-gradient(140deg,#FFFDF8,#F1E0CD); border: 1px solid var(--border); }
.feature-panel h3 { font-family: var(--heading); font-size: 30px; line-height: 1.05; margin: 0 0 14px; max-width: 430px; }
.feature-panel p { max-width: 390px; }
.size-silhouettes { display: flex; align-items: end; gap: 28px; position: absolute; right: 26px; bottom: 28px; }
.star-cutter { display: block; height: auto; filter: drop-shadow(0 8px 12px rgba(22,0,42,.2)); }
.star-cutter.s1 { width: 52px; }.star-cutter.s2 { width: 70px; }.star-cutter.s3 { width: 89px; }.star-cutter.s4 { width: 110px; }
.embosser-discs { position: absolute; right: 24px; bottom: 22px; display: flex; align-items: flex-end; }
.embosser-disc { width: 142px; height: 142px; border-radius: 50%; background: #F3B7CD; border: 7px solid rgba(255,255,255,.7); box-shadow: var(--shadow-sm); display: grid; place-items: center; font-family: var(--heading); color: var(--purple); font-weight: 900; text-align: center; transform: rotate(-8deg); }
.embosser-disc:nth-child(2) { width: 112px; height: 112px; background: #E1C4E8; margin-left: -22px; transform: rotate(12deg); }

/* Page hero */
.page-hero { padding: 58px 0; background: linear-gradient(120deg,#FFFDF8,#F1E5D5); border-bottom: 1px solid var(--border); overflow: hidden; }
.page-hero-inner { display: grid; grid-template-columns: 1fr 320px; align-items: center; gap: 36px; }
.page-hero h1 { font-family: var(--heading); color: var(--purple); font-size: clamp(42px,5vw,68px); line-height: 1; margin: 10px 0 16px; letter-spacing: -.05em; }
.page-hero p { font-size: 18px; color: var(--muted); max-width: 720px; }
.page-hero img { max-height: 260px; margin-inline: auto; filter: drop-shadow(0 18px 22px rgba(45,0,82,.15)); }
.breadcrumbs { font-size: 12px; color: var(--muted); font-weight: 700; }
.breadcrumbs span { color: var(--purple); }

/* Shop */
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; gap: 20px; }
.shop-toolbar .result-count { color: var(--muted); font-size: 14px; }
.sort-select { min-width: 190px; height: 44px; border: 1px solid var(--border); background: #fff; color: var(--ink); padding: 0 14px; border-radius: 12px; }
.shop-layout { display: grid; grid-template-columns: 245px 1fr; gap: 34px; }
.filters { background: rgba(255,255,255,.58); border: 1px solid var(--border); border-radius: 20px; padding: 22px; align-self: start; position: sticky; top: 20px; }
.filter-group { border-bottom: 1px solid var(--border); padding: 0 0 19px; margin-bottom: 19px; }
.filter-group:last-child { border-bottom: 0; margin-bottom: 0; }
.filter-group h3 { font-family: var(--heading); color: var(--purple); font-size: 14px; margin: 0 0 12px; }
.check { display: flex; align-items: center; gap: 9px; margin: 9px 0; font-size: 13px; color: var(--muted); }
.check input { accent-color: var(--purple); }
.price-range { width: 100%; accent-color: var(--purple); }
.mobile-filter { display: none; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; position: relative; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.product-card .product-image { position: relative; overflow: hidden; background: var(--cream-2); }
.product-card .product-image img { width: 100%; aspect-ratio: 1.18; object-fit: cover; transition: transform .25s ease; }
.product-card:hover .product-image img { transform: scale(1.025); }
.product-badge { position: absolute; left: 12px; top: 12px; padding: 5px 10px; border-radius: 999px; background: var(--purple); color: #fff; font-size: 10px; font-weight: 900; z-index: 2; }
.product-badge.gold { background: var(--gold); color: var(--purple-dark); }
.wishlist-btn { position: absolute; right: 10px; top: 10px; width: 34px; height: 34px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); color: var(--purple); z-index: 2; font-size: 18px; }
.product-info { padding: 17px; }
.product-category { color: var(--muted); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.product-title { font-family: var(--heading); color: var(--purple-dark); font-size: 15px; line-height: 1.25; margin: 5px 0 8px; min-height: 38px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price { color: var(--purple); font-weight: 900; }
.product-rating { color: var(--green); font-size: 11px; }
.quick-add { width: 100%; min-height: 38px; border: 0; border-top: 1px solid var(--border); background: #fff; color: var(--purple); font-weight: 900; font-size: 12px; }
.quick-add:hover { background: var(--purple); color: #fff; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.page-link { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 10px; background: #fff; color: var(--purple); font-weight: 800; }
.page-link.active { background: var(--purple); color: #fff; }

/* Category hero */
.category-hero { background: linear-gradient(120deg,var(--purple-dark),var(--purple)); color: #fff; border-radius: 30px; min-height: 330px; overflow: hidden; padding: 46px; display: grid; grid-template-columns: 1fr 440px; align-items: center; position: relative; }
.category-hero h1 { font-family: var(--heading); font-size: 54px; line-height: 1; margin: 0 0 14px; }
.category-hero p { max-width: 530px; opacity: .88; }
.category-hero-art { position: relative; height: 280px; }
.category-hero-art .mascot { position: absolute; width: 230px; right: 25px; bottom: -15px; }
.category-hero-art .mini-product { position: absolute; width: 155px; border-radius: 20px; box-shadow: 0 15px 30px rgba(0,0,0,.18); }
.category-hero-art .mini-product.one { left: 0; bottom: 15px; transform: rotate(-7deg); }
.category-hero-art .mini-product.two { right: 185px; top: 5px; transform: rotate(8deg); }
.subcategory-pills { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0 34px; }
.pill { padding: 9px 15px; border-radius: 999px; border: 1px solid var(--border); background: #fff; color: var(--purple); font-size: 12px; font-weight: 900; }
.pill.active { background: var(--purple); color: #fff; }

/* Product detail */
.product-detail { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(420px,.92fr); gap: 54px; align-items: start; }
.product-gallery { display: grid; grid-template-columns: 92px 1fr; gap: 16px; }
.thumb-list { display: flex; flex-direction: column; gap: 12px; }
.thumb { background: #fff; border: 2px solid transparent; border-radius: 14px; padding: 5px; }
.thumb.active { border-color: var(--purple); }
.thumb img { border-radius: 10px; }
.main-product-image { background: #fff; border: 1px solid var(--border); border-radius: 26px; overflow: hidden; position: relative; }
.main-product-image img { width: 100%; }
.product-summary h1 { font-family: var(--heading); color: var(--purple); font-size: 40px; line-height: 1.08; margin: 8px 0 12px; }
.price-large { font-family: var(--heading); color: var(--purple-dark); font-size: 28px; font-weight: 900; margin: 14px 0 20px; }
.product-summary .rating-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.option-group { margin: 25px 0; }
.option-label { display: flex; justify-content: space-between; margin-bottom: 10px; font-weight: 900; font-size: 13px; }
.option-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.option-chip { min-width: 92px; padding: 11px 12px; background: #fff; border: 1px solid var(--border); border-radius: 12px; color: var(--purple); font-weight: 800; font-size: 12px; text-align: center; }
.option-chip.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.stock { color: var(--green); font-weight: 800; font-size: 13px; }
.buy-row { display: grid; grid-template-columns: 116px 1fr; gap: 12px; margin-top: 24px; }
.qty { display: grid; grid-template-columns: 36px 1fr 36px; border: 1px solid var(--border); border-radius: 999px; background: #fff; overflow: hidden; }
.qty button { border: 0; background: transparent; color: var(--purple); font-size: 20px; }
.qty input { width: 100%; border: 0; text-align: center; background: transparent; font-weight: 900; }
.product-trust { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 28px; }
.product-trust div { border: 1px solid var(--border); border-radius: 14px; padding: 13px 8px; text-align: center; font-size: 10px; color: var(--muted); }
.product-trust strong { display: block; color: var(--purple); font-size: 11px; margin-top: 4px; }
.product-tabs { margin-top: 64px; }
.tab-nav { display: flex; gap: 28px; border-bottom: 1px solid var(--border); }
.tab-nav button { border: 0; background: transparent; color: var(--muted); font-weight: 900; padding: 15px 0; position: relative; }
.tab-nav button.active { color: var(--purple); }
.tab-nav button.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--purple); }
.tab-panel { background: rgba(255,255,255,.6); border: 1px solid var(--border); border-top: 0; border-radius: 0 0 20px 20px; padding: 28px; }
.spec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 20px; }
.spec { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px; }
.spec span { display: block; color: var(--muted); font-size: 11px; }.spec strong { color: var(--purple); }

/* Info pages */
.icon-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; }
.icon-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 28px; }
.icon-card .big-icon { width: 56px; height: 56px; border-radius: 18px; background: rgba(75,0,130,.08); color: var(--purple); display: grid; place-items: center; font-size: 25px; margin-bottom: 18px; }
.icon-card h3 { font-family: var(--heading); color: var(--purple); margin: 0 0 8px; }
.story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.story-image { background: linear-gradient(145deg,var(--purple-dark),var(--purple)); border-radius: 30px; min-height: 470px; position: relative; overflow: hidden; }
.story-image img { width: 390px; position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); }
.story-image::after { content: ""; position: absolute; width: 220px; height: 220px; border: 32px solid rgba(242,165,38,.28); border-radius: 50%; right: -60px; top: -70px; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; }
.value-card { text-align: center; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px 18px; }
.value-card .num { font-family: var(--heading); color: var(--gold); font-size: 42px; font-weight: 900; }
.value-card h3 { font-family: var(--heading); color: var(--purple); }
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 30px; }
.timeline-item { border-top: 4px solid var(--purple); padding-top: 18px; }.timeline-item strong { font-family: var(--heading); color: var(--purple); font-size: 24px; }

/* Contact and forms */
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; }
.contact-panel { background: linear-gradient(145deg,var(--purple-dark),var(--purple)); color: #fff; border-radius: 28px; padding: 38px; position: relative; overflow: hidden; }
.contact-panel img { width: 210px; position: absolute; right: -25px; bottom: -22px; opacity: .94; }
.contact-item { display: flex; gap: 14px; margin: 24px 0; max-width: 360px; }
.contact-item .circle { flex: 0 0 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); display: grid; place-items: center; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 28px; padding: 36px; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1/-1; }
.field label { font-weight: 800; font-size: 12px; color: var(--purple-dark); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--border); border-radius: 12px; background: #FFFEFB; padding: 13px 14px; color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 320px 1fr; gap: 34px; }
.faq-nav { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 18px; align-self: start; }
.faq-nav a { display: block; padding: 12px 14px; border-radius: 10px; font-weight: 800; color: var(--muted); font-size: 13px; }
.faq-nav a.active { background: rgba(75,0,130,.08); color: var(--purple); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-question { width: 100%; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; padding: 19px 22px; text-align: left; color: var(--purple-dark); font-weight: 900; }
.faq-answer { padding: 0 22px 20px; color: var(--muted); font-size: 14px; }

/* Delivery */
.delivery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin: 34px 0; }
.delivery-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 27px; }
.delivery-icon { width: 66px; height: 66px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 20px; background: linear-gradient(145deg,#FFF8E9,#F4E5CF); box-shadow: inset 0 0 0 1px rgba(75,0,130,.08); }
.delivery-icon img { width: 56px; height: 56px; }
.delivery-card h3 { font-family: var(--heading); color: var(--purple); margin: 0 0 7px; }
.delivery-card p { min-height: 48px; }
.delivery-card .tag { margin-top: 4px; padding: 8px 13px; font-size: 11px; letter-spacing: .01em; }
.delivery-card .tag-delivery-free { background: linear-gradient(135deg,var(--gold),#F8BB4E); color: var(--purple-dark); box-shadow: 0 5px 14px rgba(242,165,38,.22); }
.tcp-delivery-services-title { margin-top: 40px; font-size: 32px; }
.info-table-wrap { width: 100%; overflow-x: auto; border-radius: 18px; }
.info-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); }
.info-table th, .info-table td { padding: 17px 20px; border-bottom: 1px solid var(--border); text-align: left; }
.info-table th { background: rgba(75,0,130,.06); color: var(--purple); font-family: var(--heading); }
.info-table tr:last-child td { border-bottom: 0; }
.delivery-services-table strong { color: var(--purple-dark); }
.service-detail { color: var(--muted); font-size: 12px; }
.table-free-delivery { color: #00744a; font-size: 11px; font-weight: 900; }
.delivery-price-note { margin-top: 12px; color: var(--muted); font-size: 12px; line-height: 1.55; }

/* Cart */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 38px; align-items: start; }
.cart-list { background: #fff; border: 1px solid var(--border); border-radius: 22px; overflow: hidden; }
.cart-head { display: grid; grid-template-columns: 1fr 130px 100px; padding: 15px 22px; background: rgba(75,0,130,.05); font-size: 11px; font-weight: 900; color: var(--purple); text-transform: uppercase; letter-spacing: .06em; }
.cart-item { display: grid; grid-template-columns: 1fr 130px 100px; align-items: center; gap: 18px; padding: 20px 22px; border-top: 1px solid var(--border); }
.cart-product { display: grid; grid-template-columns: 110px 1fr; gap: 16px; align-items: center; }
.cart-product img { width: 110px; border-radius: 14px; background: var(--cream-2); }
.cart-product h3 { font-family: var(--heading); font-size: 15px; color: var(--purple); margin: 0 0 5px; }
.cart-product p { color: var(--muted); font-size: 12px; margin: 0; }
.order-summary { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 26px; position: sticky; top: 20px; }
.order-summary h2 { font-family: var(--heading); color: var(--purple); margin: 0 0 20px; }
.summary-row { display: flex; justify-content: space-between; gap: 16px; margin: 12px 0; color: var(--muted); font-size: 14px; }
.summary-row.total { border-top: 1px solid var(--border); padding-top: 17px; margin-top: 17px; color: var(--purple-dark); font-size: 18px; font-weight: 900; }
.delivery-progress { background: var(--green-soft); border-radius: 16px; padding: 15px; margin-bottom: 20px; font-size: 12px; color: #116A4A; }
.progress { height: 8px; background: rgba(0,169,107,.18); border-radius: 99px; overflow: hidden; margin-top: 9px; }
.progress span { display: block; width: 82%; height: 100%; background: var(--green); border-radius: inherit; }
.coupon { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin: 18px 0; }.coupon input { min-width: 0; border: 1px solid var(--border); border-radius: 12px; padding: 12px; }
.payment-icons { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 16px; }.payment-icons span { padding: 5px 9px; border: 1px solid var(--border); border-radius: 7px; font-size: 10px; font-weight: 900; background: #fff; }

/* Checkout */
.checkout-steps { display: flex; justify-content: center; gap: 0; margin: 26px 0 44px; }
.checkout-step { display: flex; align-items: center; color: var(--muted); font-size: 12px; font-weight: 900; }
.checkout-step::after { content: ""; width: 72px; height: 2px; background: var(--border); margin: 0 12px; }
.checkout-step:last-child::after { display: none; }
.checkout-step span { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--border); display: grid; place-items: center; margin-right: 8px; }
.checkout-step.active { color: var(--purple); }.checkout-step.active span { background: var(--purple); border-color: var(--purple); color: #fff; }
.checkout-layout { display: grid; grid-template-columns: 1fr 390px; gap: 38px; align-items: start; }
.checkout-section { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 28px; margin-bottom: 20px; }
.checkout-section h2 { font-family: var(--heading); color: var(--purple); font-size: 22px; margin: 0 0 20px; }
.radio-card { display: flex; gap: 12px; border: 1px solid var(--border); border-radius: 14px; padding: 15px; margin: 10px 0; }
.radio-card input { accent-color: var(--purple); }
.mini-order-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center; margin: 14px 0; }
.mini-order-item img { width: 64px; border-radius: 10px; }

/* Confirmation/account */
.confirmation { text-align: center; max-width: 850px; margin: 0 auto; }
.confirmation img { width: 230px; margin: 0 auto 10px; }
.confirmation h1 { font-family: var(--heading); color: var(--purple); font-size: 48px; margin: 0 0 10px; }
.order-number { display: inline-block; background: rgba(75,0,130,.08); color: var(--purple); padding: 10px 18px; border-radius: 999px; font-weight: 900; margin: 18px 0; }
.next-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 35px 0; }
.next-step { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 22px; }.next-step strong { display: block; color: var(--purple); margin-bottom: 8px; }
.account-layout { display: grid; grid-template-columns: 240px minmax(0,1fr); gap: 32px; min-width: 0; }
.account-layout > * { min-width: 0; }
.account-nav { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 16px; align-self: start; }
.account-nav a { display: flex; gap: 10px; align-items: center; padding: 12px; border-radius: 10px; color: var(--muted); font-weight: 800; font-size: 13px; }.account-nav a.active { background: rgba(75,0,130,.08); color: var(--purple); }
.account-panel { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 28px; }
.account-panel h2 { font-family: var(--heading); color: var(--purple); margin-top: 0; }
.order-table { width: 100%; border-collapse: collapse; }
.order-table th, .order-table td { padding: 15px 12px; border-bottom: 1px solid var(--border); text-align: left; font-size: 13px; }
.order-table th { color: var(--purple); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
.status { display: inline-flex; padding: 5px 9px; border-radius: 999px; font-size: 10px; font-weight: 900; }.status.processing { background: #FFF2D9; color: #8C5A00; }.status.delivered { background: var(--green-soft); color: #11724E; }
.login-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; max-width: 1040px; margin: auto; }.login-card { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 34px; }.login-card h2 { font-family: var(--heading); color: var(--purple); }

/* Wishlist */
.wishlist-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }

/* Legal */
.legal-layout { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 38px; align-items: start; min-width: 0; }
.legal-nav { position: sticky; top: 20px; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 16px; }.legal-nav a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--muted); font-size: 13px; }.legal-nav a:hover { background: rgba(75,0,130,.07); color: var(--purple); }
.legal-content { min-width: 0; max-width: 100%; overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 42px; }.legal-content h2 { font-family: var(--heading); color: var(--purple); margin-top: 34px; }.legal-content h2:first-child { margin-top: 0; }.legal-content p, .legal-content li { color: var(--muted); }
.legal-content section { min-width: 0; max-width: 100%; scroll-margin-top: 24px; }
.legal-content h3 { margin: 24px 0 8px; color: var(--purple-dark); font-family: var(--heading); font-size: 19px; }
.legal-content a { color: var(--purple); overflow-wrap: anywhere; text-decoration: underline; text-underline-offset: 3px; }
.legal-content li + li { margin-top: 6px; }
.legal-highlight { display: grid; gap: 4px; min-width: 0; max-width: 100%; margin-bottom: 34px; padding: 22px 24px; border: 1px solid rgba(242,165,38,.42); border-radius: 16px; background: rgba(242,165,38,.11); color: var(--purple-dark); }
.legal-highlight strong { margin-bottom: 4px; font-family: var(--heading); font-size: 18px; }
.legal-highlight span, .legal-highlight a { font-size: 13px; }
.legal-table-wrap { width: 100%; max-width: 100%; margin: 18px 0; overflow-x: auto; overscroll-behavior-inline: contain; border: 1px solid var(--border); border-radius: 14px; }
.legal-table { width: 100%; min-width: 680px; border-collapse: collapse; background: #fff; font-size: 12px; line-height: 1.5; }
.legal-table th, .legal-table td { padding: 13px 14px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.legal-table th { background: rgba(75,0,130,.06); color: var(--purple); font-family: var(--heading); font-size: 12px; }
.legal-table tr:last-child td { border-bottom: 0; }
.legal-table code { color: var(--purple-dark); font-size: 11px; overflow-wrap: anywhere; }
.cookie-table { min-width: 760px; }
.legal-updated { margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--border); color: var(--purple-dark) !important; }
.legal-form-template { margin-top: 18px; padding: 24px; border: 1px dashed rgba(75,0,130,.35); border-radius: 14px; background: var(--cream-2); }
.legal-form-template p { color: var(--ink); }

/* 404 */
.not-found { min-height: 620px; display: grid; place-items: center; text-align: center; }.not-found img { width: 260px; margin: 0 auto; }.not-found .code { font-family: var(--heading); font-size: 96px; color: var(--purple); line-height: 1; }.not-found h1 { font-family: var(--heading); color: var(--purple-dark); }

/* Footer */
.site-footer { background: linear-gradient(115deg,var(--purple-dark),var(--purple),var(--purple-dark)); color: #fff; margin-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .8fr .8fr 1.35fr; gap: 34px; padding: 54px 0 42px; }
.footer-brand .brand { color: #fff; }.footer-brand .brand img { width: 70px; height: 70px; }.footer-brand p { max-width: 250px; font-size: 13px; opacity: .78; }
.footer-col h3 { font-family: var(--heading); font-size: 14px; margin: 0 0 15px; }.footer-col a { display: block; font-size: 12px; opacity: .8; margin: 8px 0; }.footer-col a:hover { opacity: 1; }
.newsletter { display: grid; grid-template-columns: 1fr auto; margin-top: 16px; }.newsletter input { min-width: 0; border: 0; padding: 12px 14px; border-radius: 10px 0 0 10px; }.newsletter button { border: 0; background: var(--gold); color: var(--purple-dark); font-weight: 900; padding: 0 16px; border-radius: 0 10px 10px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 11px; opacity: .78; }
.footer-links { display: flex; gap: 20px; }

/* Utility/banner */
.notice { background: rgba(242,165,38,.16); border: 1px solid rgba(242,165,38,.4); padding: 15px 18px; border-radius: 14px; color: #6A4700; font-size: 13px; }
.callout { background: linear-gradient(120deg,var(--purple-dark),var(--purple)); border-radius: 28px; color: #fff; padding: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.callout h2 { font-family: var(--heading); margin: 0 0 7px; }.callout p { margin: 0; opacity: .82; }
.tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: rgba(75,0,130,.08); color: var(--purple); font-size: 10px; font-weight: 900; }
.hide-desktop { display: none !important; }

/* Responsive */
@media (max-width: 1100px) {
  .container { width: min(var(--container), calc(100% - 40px)); }
  .header-inner { grid-template-columns: 220px 1fr auto; }.main-nav { gap: 18px; font-size: 12px; }
  .category-grid { grid-template-columns: repeat(3,1fr); }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); padding: 22px 0; }
  .footer-grid { grid-template-columns: 1.2fr repeat(3,.8fr); }.footer-col.news { grid-column: 1/-1; }
  .hero-inner { grid-template-columns: 1fr 1fr; }.hero-mascot { right: 0; }
  .product-detail { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--container)); }
  .announcement .announcement-item:nth-child(n+2) { display: none; }
  .announcement .container { justify-content: center; }
  .header-inner { min-height: 82px; grid-template-columns: 1fr auto; }
  .brand img { width: 60px; height: 60px; }.brand-wordmark { font-size: 18px; }.brand-wordmark small { font-size: 11px; }
  .main-nav, .header-actions .icon-btn:not(.cart), .header-actions .wishlist { display: none; }
  .mobile-toggle { display: grid; }.header-actions { gap: 2px; }
  .mobile-nav { display: none; padding: 0 14px 18px; }.mobile-nav.open { display: grid; }.mobile-nav a { padding: 13px 12px; border-bottom: 1px solid var(--border); font-weight: 800; color: var(--purple); }
  .hero-inner { min-height: auto; grid-template-columns: 1fr; padding: 50px 0 34px; }.hero h1 { font-size: 50px; }.hero-art { min-height: 390px; }.hero-mascot { width: 330px; right: 50%; transform: translateX(50%); }.hero-product { width: 130px; }.hero-product.one { left: -4px; }.hero-product.two { right: -10px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }.trust-item { grid-template-columns: 38px 1fr; }.trust-icon { width: 38px; height: 38px; }.trust-icon img { width: 23px; height: 23px; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .feature-split, .grid-2, .story-split, .contact-layout, .cart-layout, .checkout-layout, .login-grid { grid-template-columns: 1fr; }
  .values-grid, .timeline { grid-template-columns: repeat(2,1fr); }
  .feature-panel { min-height: 330px; }
  .contact-layout > * { min-width: 0; }
  .page-hero-inner { grid-template-columns: 1fr 180px; }.page-hero img { max-height: 190px; }
  .shop-layout { grid-template-columns: 1fr; }.filters { display: none; }.mobile-filter { display: inline-flex; }.product-grid { grid-template-columns: repeat(2,1fr); }
  .category-hero { grid-template-columns: 1fr; padding: 36px; }.category-hero-art { height: 260px; }
  .product-detail { grid-template-columns: 1fr; }.product-summary { max-width: 680px; }.product-gallery { grid-template-columns: 76px 1fr; }
  .icon-cards, .delivery-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout, .account-layout, .legal-layout { grid-template-columns: 1fr; }.faq-nav, .account-nav { position: static; }.legal-nav { display: none; }
  .order-summary { position: static; }.cart-head, .cart-item { grid-template-columns: 1fr 110px; }.cart-head span:nth-child(2), .cart-item > :nth-child(2) { display: none; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }.footer-brand, .footer-col.news { grid-column: 1/-1; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 22px, var(--container)); }
  .announcement { min-height: 34px; font-size: 10px; }
  .header-inner { min-height: 74px; }.brand img { width: 54px; height: 54px; }.brand-wordmark { font-size: 15px; }.brand-wordmark small { font-size: 9px; }
  .icon-btn { width: 38px; height: 38px; }.hero h1 { font-size: 42px; }.hero-copy { font-size: 16px; }.hero-buttons .btn { width: 100%; }.hero-art { min-height: 340px; }.hero-mascot { width: 290px; }.hero-product { width: 105px; }
  .trust-grid { grid-template-columns: 1fr; gap: 14px; }.trust-item span { font-size: 10px; }
  .section { padding: 54px 0; }.section-title { font-size: 31px; }
  .category-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }.category-card h3 { font-size: 12px; }
  .feature-panel { min-height: 360px; padding: 28px; }.feature-panel h3 { font-size: 25px; }.size-silhouettes { left: 26px; right: auto; gap: 13px; }.star-cutter.s4 { width: 80px; }.star-cutter.s3 { width: 65px; }.star-cutter.s2 { width: 51px; }.star-cutter.s1 { width: 38px; }.embosser-discs { right: 5px; }
  .values-grid, .timeline, .icon-cards, .delivery-grid, .next-steps { grid-template-columns: 1fr; }
  .page-hero { padding: 38px 0; }.page-hero-inner { grid-template-columns: 1fr 115px; gap: 12px; }.page-hero h1 { font-size: 37px; }.page-hero p { font-size: 15px; }.page-hero img { max-height: 120px; }
  .shop-toolbar { align-items: flex-start; flex-direction: column; }.sort-select { width: 100%; }.product-grid { gap: 12px; }.product-card .product-info { padding: 12px; }.product-title { font-size: 12px; min-height: 34px; }.product-rating { display: none; }.product-price { font-size: 13px; }
  .category-hero { padding: 26px; min-height: 430px; }.category-hero h1 { font-size: 40px; }.category-hero-art .mascot { width: 190px; right: 0; }.category-hero-art .mini-product { width: 120px; }.category-hero-art .mini-product.two { right: 125px; }
  .product-gallery { grid-template-columns: 1fr; }.thumb-list { order: 2; flex-direction: row; overflow-x: auto; }.thumb { min-width: 75px; }.product-summary h1 { font-size: 31px; }.buy-row { grid-template-columns: 100px 1fr; }.product-trust { grid-template-columns: repeat(2,1fr); }.tab-nav { overflow-x: auto; gap: 20px; }.tab-nav button { white-space: nowrap; }.spec-grid { grid-template-columns: 1fr; }
  .story-image { min-height: 360px; }.story-image img { width: 300px; }.form-grid { grid-template-columns: 1fr; }.field.full { grid-column: auto; }.form-card, .contact-panel { min-width: 0; max-width: 100%; padding: 26px; }
  .info-table { font-size: 12px; }.info-table th,.info-table td { padding: 12px 10px; }
  .cart-head { display: none; }.cart-item { grid-template-columns: 1fr; }.cart-product { grid-template-columns: 90px 1fr; }.cart-item > :last-child { justify-self: end; }.cart-list { overflow: visible; }
  .checkout-steps { justify-content: flex-start; overflow-x: auto; }.checkout-step::after { width: 32px; }.checkout-step { white-space: nowrap; }
  .confirmation h1 { font-size: 38px; }.confirmation img { width: 190px; }
  .account-layout .grid-3 { grid-template-columns: 1fr; }
  .account-panel { max-width: 100%; padding: 20px; overflow-x: auto; }.order-table { min-width: 620px; }
  .login-card, .legal-content { padding: 24px; }
  .callout { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }.footer-bottom { flex-direction: column; justify-content: center; text-align: center; padding: 18px 0; }.footer-links { flex-wrap: wrap; justify-content: center; }
  .hide-mobile { display: none !important; }.hide-desktop { display: initial !important; }
}

@media print {
  .site-header, .announcement, .site-footer, .mobile-nav { display: none !important; }
  body { background: #fff; }
}

/* Lightweight prototype interactions */
.search-overlay[hidden] { display: none; }
.search-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(37,0,68,.72); display: grid; place-items: start center; padding-top: 14vh; }
.search-dialog { width: min(720px, calc(100% - 28px)); background: var(--cream); border-radius: 28px; box-shadow: 0 30px 90px rgba(0,0,0,.28); padding: 36px; position: relative; }
.search-dialog h2 { font-family: var(--heading); color: var(--purple); font-size: 30px; margin: 0 40px 20px 0; }
.search-dialog > button { position: absolute; right: 18px; top: 15px; width: 40px; height: 40px; border: 0; background: rgba(75,0,130,.08); color: var(--purple); border-radius: 50%; font-size: 24px; }
.search-dialog form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.search-dialog input { min-width: 0; border: 1px solid var(--border); border-radius: 999px; padding: 13px 18px; background: #fff; }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 110; background: var(--purple-dark); color: #fff; border-radius: 14px; box-shadow: 0 16px 40px rgba(0,0,0,.24); padding: 15px 18px; font-weight: 800; font-size: 13px; transform: translateY(30px); opacity: 0; transition: .2s ease; }
.toast.show { transform: translateY(0); opacity: 1; }
@media (max-width:520px) { .search-dialog { padding: 25px; }.search-dialog form { grid-template-columns:1fr; }.toast { left: 14px; right: 14px; bottom: 14px; text-align:center; } }

/* Use the approved supplied wordmark artwork throughout the prototype pages. */
.brand img { width: 190px; height: auto; }
.brand-wordmark { display: none; }
.footer-brand .brand img { width: 70px; height: 70px; content: none; }
.footer-brand .brand-wordmark { display: block; color: #fff; }
.tcp-trustpilot { color: var(--green); }
@media (max-width:820px) { .brand img { width: 165px; height: auto; } }
@media (max-width:520px) { .brand img { width: 145px; height: auto; } }
