:root {
  --bg: #faf5f0;
  --surface: #ffffff;
  --text: #2b2420;
  --muted: #8a7d70;
  --accent: #c17a5c;
  --accent-dark: #a8613f;
  --border: #ece2d6;
  --pill: #f3e9dd;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-script: "Caveat", "Segoe Script", cursive;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 245, 240, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.heart-icon {
  width: 0.62em;
  height: 0.62em;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  display: inline-block;
  vertical-align: 0.12em;
  flex-shrink: 0;
}

nav.main-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
}

nav.main-nav a {
  color: var(--text);
  opacity: 0.85;
}
nav.main-nav a:hover {
  opacity: 1;
  color: var(--accent);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.header-icons button,
.header-icons .cart-link {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  position: relative;
  padding: 0;
  display: flex;
}

.header-icons svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  line-height: 1;
  padding: 3px 5px;
  border-radius: 999px;
  font-weight: 600;
}

/* ---------- hero ---------- */
.hero {
  padding: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 2rem 3.5rem max(2rem, calc((100vw - 1180px) / 2 + 2rem));
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.hero .script {
  display: block;
  font-family: var(--font-script);
  font-weight: 500;
  font-size: 2.9rem;
  color: var(--accent);
  margin: 0.05em 0;
  line-height: 1;
}

.hero p.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 32ch;
  margin: 1.25rem 0 2rem;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: #fff;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hero-art {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  aspect-ratio: 947 / 803;
  align-self: center;
}

.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
}

.hero-tag {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  background: #fff;
  padding: 0.6rem 1rem;
  border-radius: 14px;
  font-size: 0.8rem;
  font-family: Georgia, serif;
  font-style: italic;
  box-shadow: 0 8px 20px rgba(60, 30, 10, 0.12);
  transform: rotate(-3deg);
}

.features-row {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.features-row .feature svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 0.6rem;
}

.features-row .feature {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- section headings ---------- */
.section {
  padding: 3.5rem 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.9rem;
  margin: 0 0 0.2rem;
}

.section-head .sub {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-head .see-all {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ---------- categories ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem 0.8rem;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(60, 30, 10, 0.08);
}

.category-card .icon-circle {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  background: var(--pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
}

.category-card span {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  display: block;
}

/* ---------- products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
}

.product-card .thumb {
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .thumb svg {
  width: 42%;
  color: rgba(255, 255, 255, 0.85);
}

.product-card h3 {
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  line-height: 1.35;
}

.stars {
  color: var(--accent);
  font-size: 0.78rem;
  margin-bottom: 0.4rem;
}
.stars .count {
  color: var(--muted);
  margin-left: 0.3rem;
}

.price {
  font-weight: 700;
  font-size: 1rem;
}

/* palette for placeholder thumbs */
.thumb-1 { background: radial-gradient(120% 120% at 30% 20%, #f3ded0 0%, #d99e78 100%); }
.thumb-2 { background: radial-gradient(120% 120% at 30% 20%, #e9cdb0 0%, #b97b52 100%); }
.thumb-3 { background: radial-gradient(120% 120% at 30% 20%, #f0e3d3 0%, #cf9f79 100%); }
.thumb-4 { background: radial-gradient(120% 120% at 30% 20%, #f2ddd8 0%, #d1836a 100%); }
.thumb-5 { background: radial-gradient(120% 120% at 30% 20%, #e7d3c6 0%, #8f4f3a 100%); }

/* ---------- promo banner ---------- */
.promo-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: var(--pill);
}

.promo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(250, 245, 240, 0.96) 0%,
    rgba(250, 245, 240, 0.88) 32%,
    rgba(250, 245, 240, 0.35) 58%,
    rgba(250, 245, 240, 0) 78%
  );
}

.promo-copy {
  position: relative;
  z-index: 1;
  padding: 3.5rem 3rem;
  max-width: 420px;
}

.promo-copy h2 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  margin: 0 0 0.1em;
  font-weight: 600;
}

.promo-copy .script {
  display: block;
  font-family: var(--font-script);
  color: var(--accent);
  font-size: 2.4rem;
  font-weight: 500;
}

.promo-copy p {
  color: var(--muted);
  margin-top: 1rem;
  max-width: 30ch;
}

/* ---------- newsletter ---------- */
.newsletter {
  background: var(--pill);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter .copy {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.newsletter .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.newsletter .icon-circle svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
}

.newsletter h3 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
}
.newsletter p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.newsletter form {
  display: flex;
  gap: 0.6rem;
  flex: 1;
  max-width: 420px;
}

.newsletter input {
  flex: 1;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  background: #fff;
}
.newsletter input:focus {
  outline: 2px solid var(--accent);
}

.newsletter button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.newsletter button svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* ---------- footer ---------- */
footer.site {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-grid .logo {
  margin-bottom: 0.6rem;
}

.footer-grid .brand-note {
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 26ch;
}

.footer-col h4 {
  font-size: 0.85rem;
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.88rem;
  margin: 0 0 0.6rem;
  color: var(--text);
  opacity: 0.85;
}
.footer-col a:hover {
  color: var(--accent);
  opacity: 1;
}

.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.social-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pill);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-row svg {
  width: 16px;
  height: 16px;
  stroke: var(--text);
  fill: none;
  stroke-width: 1.6;
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  nav.main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 2.5rem 1.2rem; }
  .hero-art { aspect-ratio: 4 / 3; }
  .hero-art img { -webkit-mask-image: none; mask-image: none; }
  .features-row { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-banner { min-height: 260px; }
  .promo-copy { padding: 2rem 1.5rem; max-width: none; }
  .promo-overlay {
    background: linear-gradient(180deg, rgba(250, 245, 240, 0.96) 0%, rgba(250, 245, 240, 0.9) 45%, rgba(250, 245, 240, 0.25) 80%, rgba(250, 245, 240, 0) 100%);
  }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .wrap { padding: 0 1.2rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero .script { font-size: 1.7rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter { flex-direction: column; align-items: stretch; }
  .newsletter form { max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.empty-state {
  color: var(--muted);
  text-align: center;
  padding: 3rem 1rem;
}

/* ---------- product card link wrapper ---------- */
.product-card {
  display: block;
  color: inherit;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ---------- breadcrumbs ---------- */
.breadcrumbs {
  padding: 1.6rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  gap: 0.5rem;
}
.breadcrumbs a:hover {
  color: var(--accent);
}
.breadcrumbs span {
  color: var(--muted);
}

/* ---------- product view ---------- */
.product-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2rem 0 4rem;
  align-items: start;
}

.gallery-main {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 480 / 816;
  background: var(--pill);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}

.gallery-thumbs {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.9rem;
}
.thumb-btn {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: var(--pill);
  flex-shrink: 0;
}
.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-btn.active {
  border-color: var(--accent);
}

.product-info h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 0.6rem;
}

.price-lg {
  font-size: 1.7rem;
  margin: 0.8rem 0 1.4rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.check-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.92rem;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.qty-stepper button {
  width: 40px;
  height: 44px;
  border: none;
  background: var(--surface);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
}
.qty-stepper button:hover {
  background: var(--pill);
}
.qty-stepper input {
  width: 44px;
  height: 44px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: 0.95rem;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.feature-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--pill);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.feature-pill svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
  flex-shrink: 0;
}

.product-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 52ch;
}

@media (max-width: 860px) {
  .product-view { grid-template-columns: 1fr; }
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  width: auto;
  height: min(86vh, 900px);
  max-width: 88vw;
  object-fit: contain;
  border-radius: 12px;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}
.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }

@media (max-width: 560px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.4rem; }
  .feature-pills { grid-template-columns: 1fr; }
}

/* ---------- cart page ---------- */
.cart-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.6rem 0 0.3rem;
}
.cart-title .heart-icon {
  width: 0.6em;
  height: 0.6em;
  stroke: var(--accent);
}
.cart-count {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 2rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 4rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto auto auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-thumb {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--pill);
}
.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info h3 {
  font-size: 1rem;
  margin: 0 0 0.3rem;
}
.cart-item-info p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}
.cart-item-price-mobile { display: none; }
.cart-item-price {
  font-weight: 700;
  font-size: 1rem;
  min-width: 70px;
  text-align: right;
}
.cart-item-remove {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0;
}
.cart-item-remove svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
.cart-item-remove:hover { color: var(--accent-dark); }

.giftwrap-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--pill);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.3rem;
  margin-top: 1.5rem;
}
.giftwrap-banner.active {
  border-color: var(--accent);
}
.giftwrap-copy {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.giftwrap-copy svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.4;
  flex-shrink: 0;
}
.giftwrap-copy strong {
  display: block;
  font-size: 0.92rem;
}
.giftwrap-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}
.giftwrap-banner .btn-primary {
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.continue-shopping {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--text);
  font-size: 0.9rem;
}
.continue-shopping:hover { color: var(--accent); }

.promo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}
.promo-row button {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
}

.cart-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem;
}
.cart-summary h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin: 0 0 1.2rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 0.55rem 0;
  color: var(--text);
}
.summary-total {
  border-top: 1px solid var(--border);
  margin-top: 0.4rem;
  padding-top: 0.9rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 0.9rem;
}
.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--pill);
  color: var(--text);
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
}
.btn-outline .heart-icon {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
}
.secure-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0.9rem 0 0;
}
.secure-note svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.trust-list {
  list-style: none;
  padding: 1.4rem 0 0;
  margin: 1.4rem 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.trust-list svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.trust-list strong {
  display: block;
  font-size: 0.88rem;
}
.trust-list span {
  color: var(--muted);
  font-size: 0.8rem;
}

.cart-empty {
  text-align: center;
  padding: 4rem 1rem 6rem;
  max-width: 40ch;
  margin: 0 auto;
}
.cart-empty svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.3;
  margin-bottom: 1rem;
}
.cart-empty h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
}
.cart-empty p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1.6rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%) translateY(20px);
  background: var(--text);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.88rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
  max-width: 90vw;
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 860px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-item {
    grid-template-columns: 72px 1fr auto;
    grid-template-areas:
      "thumb info remove"
      "thumb qty  price";
    row-gap: 0.6rem;
  }
  .cart-item-thumb { grid-area: thumb; width: 72px; height: 72px; }
  .cart-item-info { grid-area: info; }
  .cart-item-remove { grid-area: remove; }
  .cart-item-qty { grid-area: qty; }
  .cart-item-price { grid-area: price; text-align: left; }
  .cart-item-price-mobile { display: none; }
  .giftwrap-banner { flex-direction: column; align-items: flex-start; }
}
