:root {
  --bg: #faf4f3;
  --bg-soft: #faf4f3;
  --surface: #ffffff;
  --surface-2: #faf4f3;
  --text: #2b1e1c;
  --muted: #7a6561;
  --brand: #b8576a;
  --brand-strong: #8e3f4f;
  --line: #e6d4d1;
  --shadow: 0 18px 45px rgba(184, 87, 106, 0.12);
  --nav-bg: #faf4f3;
  --nav-text: #5a4a47;
  --nav-hover: #8e3f4f;
  --footer-bg: #1c2731;
  --footer-text: #c7d2dc;
  --footer-heading: #f4f7fa;
  --footer-link: #e9b39a;
  --footer-link-hover: #ffd2bf;
  --footer-line: #304150;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--bg);
  overflow: auto;
}

.page-main {
  flex: 1 0 auto;
  min-height: 0;
  overflow: auto;
  padding-bottom: 95px;
}

a {
  color: inherit;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.header {
  margin: 0;
  padding: 0;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  backdrop-filter: blur(8px);
  background: rgba(247, 239, 232, 0.95);
  border-bottom: 1px solid var(--line);
}

.page-main {
  /* removed fixed padding due to sticky header */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--nav-text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border: 1px solid rgba(236, 211, 196, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(114, 70, 42, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-strong);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header.is-mobile-menu-open .nav-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.header.is-mobile-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.header.is-mobile-menu-open .nav-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-menu-item {
  position: relative;
}

.nav-menu-item > a,
.nav-menu-details summary,
.nav-links > a {
  text-decoration: none;
  color: var(--nav-text);
  font-weight: 600;
  padding: 0.5rem 0.2rem;
  transition: color 0.2s ease;
  cursor: pointer;
  list-style: none;
}

.nav-menu-details summary::-webkit-details-marker {
  display: none;
}

.nav-menu-item > a:hover,
.nav-menu-details summary:hover,
.nav-links > a:hover {
  color: var(--nav-hover);
}

.nav-menu-details[open] > .nav-submenu-panel {
  display: block;
}

.nav-menu-item:hover > .nav-menu-details > .nav-submenu-panel {
  display: block;
}

.nav-submenu-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: linear-gradient(165deg, #1f2730 0%, #162029 100%);
  border: 1px solid rgba(64, 84, 103, 0.9);
  border-radius: 16px;
  padding: 0.65rem;
  box-shadow: 0 20px 38px rgba(24, 33, 43, 0.4);
  z-index: 60;
}

.nav-menu-level-1 .nav-submenu-panel,
.nav-menu-level-2 .nav-submenu-panel,
.nav-menu-level-3 .nav-submenu-panel,
.nav-menu-level-4 .nav-submenu-panel,
.nav-menu-level-5 .nav-submenu-panel {
  position: static;
  min-width: 0;
  border: 0;
  box-shadow: none;
  border-left: 2px solid rgba(84, 104, 124, 0.72);
  margin-left: 0.6rem;
  padding: 0.35rem 0 0.35rem 0.7rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.02);
}

.nav-submenu-view-all {
  display: block;
  text-decoration: none;
  font-weight: 700;
  color: #f2f5f8;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  margin-bottom: 0.3rem;
  border: 1px solid rgba(84, 104, 124, 0.58);
  background: rgba(255, 255, 255, 0.03);
}

.nav-submenu-view-all:hover {
  color: #fff;
  border-color: rgba(212, 112, 88, 0.9);
  background: linear-gradient(135deg, rgba(185, 112, 79, 0.95), rgba(147, 79, 53, 0.95));
}

.nav-menu-level-1,
.nav-menu-level-2,
.nav-menu-level-3,
.nav-menu-level-4,
.nav-menu-level-5 {
  display: grid;
  gap: 0.25rem;
}

.nav-menu-level-1 .nav-menu-item > a,
.nav-menu-level-2 .nav-menu-item > a,
.nav-menu-level-3 .nav-menu-item > a,
.nav-menu-level-4 .nav-menu-item > a,
.nav-menu-level-5 .nav-menu-item > a,
.nav-menu-level-1 .nav-menu-details summary,
.nav-menu-level-2 .nav-menu-details summary,
.nav-menu-level-3 .nav-menu-details summary,
.nav-menu-level-4 .nav-menu-details summary,
.nav-menu-level-5 .nav-menu-details summary {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  color: #e8edf2;
}

.nav-menu-level-1 .nav-menu-item > a:hover,
.nav-menu-level-2 .nav-menu-item > a:hover,
.nav-menu-level-3 .nav-menu-item > a:hover,
.nav-menu-level-4 .nav-menu-item > a:hover,
.nav-menu-level-5 .nav-menu-item > a:hover,
.nav-menu-level-1 .nav-menu-details summary:hover,
.nav-menu-level-2 .nav-menu-details summary:hover,
.nav-menu-level-3 .nav-menu-details summary:hover,
.nav-menu-level-4 .nav-menu-details summary:hover,
.nav-menu-level-5 .nav-menu-details summary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-menu-item.is-brand-menu > .nav-menu-details > summary {
  position: relative;
  padding-right: 1rem;
}

.nav-menu-item.is-brand-menu > .nav-menu-details > summary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
  background: var(--brand-strong);
}

.nav-menu-item.is-brand-menu > .nav-menu-details[open] > summary::after,
.nav-menu-item.is-brand-menu:hover > .nav-menu-details > summary::after {
  transform: scaleX(1);
}

.nav-menu-item.is-brand-menu > .nav-menu-details > .nav-submenu-panel,
.nav-menu-item.is-brand-menu:hover > .nav-menu-details > .nav-submenu-panel {
  width: min(920px, calc(100vw - 2.4rem));
  min-width: 760px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.8rem;
  border-radius: 18px;
  border: 1px solid rgba(64, 84, 103, 0.9);
  background: linear-gradient(165deg, #1f2730 0%, #162029 100%);
  box-shadow: 0 24px 48px rgba(24, 33, 43, 0.45);
}

.nav-menu-item.is-brand-menu .nav-menu-level-1 {
  margin: 0;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(84, 104, 124, 0.68);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
}

.nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item > a,
.nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item > .nav-menu-details > summary {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.78rem 0.88rem;
  margin: 0;
  border-radius: 0;
  border-right: 1px solid rgba(84, 104, 124, 0.58);
  border-bottom: 1px solid rgba(84, 104, 124, 0.58);
  color: #f2f5f8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-child(5n) > a,
.nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-child(5n) > .nav-menu-details > summary {
  border-right: 0;
}

.nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-last-child(-n + 5) > a,
.nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-last-child(-n + 5) > .nav-menu-details > summary {
  border-bottom: 0;
}

.nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item > a:hover,
.nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item > .nav-menu-details > summary:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(185, 112, 79, 0.95), rgba(147, 79, 53, 0.95));
}

.nav-menu-item.is-brand-menu .nav-submenu-view-all-brand {
  width: fit-content;
  margin: 0.9rem 0 0 auto;
  padding: 0.72rem 1.18rem;
  border-radius: 12px;
  background: linear-gradient(140deg, #d47058, #b14f3f);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(178, 76, 62, 0.36);
}

.nav-menu-item.is-brand-menu .nav-submenu-view-all-brand:hover {
  background: linear-gradient(140deg, #e07f64, #bb5544);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-search-bar {
  padding: 0.1rem 0 0.9rem;
  border-bottom: 1px solid rgba(236, 211, 196, 0.7);
  background: rgba(255, 247, 241, 0.85);
}

.nav-search-form {
  position: relative;
  display: flex;
  justify-content: center;
}

.nav-search-field {
  position: relative;
  display: flex;
  align-items: center;
  width: min(560px, 100%);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  box-shadow: 0 10px 28px rgba(114, 70, 42, 0.08);
}

.nav-search-field input {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--text);
  padding: 0.65rem 0.6rem;
  outline: none;
}

.nav-search-field input::placeholder {
  color: rgba(114, 91, 80, 0.7);
}

.nav-search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid rgba(236, 211, 196, 0.9);
}

.nav-search-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--brand-strong);
}

.nav-search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0.4rem;
  display: none;
  z-index: 40;
}

.nav-search-suggestions.is-open {
  display: grid;
  gap: 0.2rem;
}

.nav-search-suggestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text);
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  font-weight: 600;
}

.nav-search-suggestion:hover {
  background: var(--surface-2);
}

.nav-search-empty {
  padding: 0.55rem 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(236, 211, 196, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(114, 70, 42, 0.08);
}

.nav-icon-link svg {
  width: 21px;
  height: 21px;
  fill: var(--brand-strong);
}

.nav-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #d64a3a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border: 2px solid var(--nav-bg);
}

.nav-links a {
  text-decoration: none;
  color: var(--nav-text);
  font-weight: 600;
  padding: 0.5rem 0.2rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--nav-hover);
}

.account-menu {
  position: relative;
}

.account-menu summary {
  list-style: none;
}

.account-menu summary::-webkit-details-marker {
  display: none;
}

.account-menu-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 999px;
  border: 1px solid rgba(236, 211, 196, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(114, 70, 42, 0.08);
}

.account-menu-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.account-menu-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--brand-strong);
}

.account-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 220px;
  display: grid;
  gap: 0.15rem;
  padding: 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  z-index: 50;
}

.account-menu-head {
  display: grid;
  gap: 0.18rem;
  padding: 0.3rem 0.35rem 0.55rem;
  border-bottom: 1px solid rgba(236, 211, 196, 0.9);
  margin-bottom: 0.2rem;
}

.account-menu-head strong {
  font-size: 0.95rem;
}

.account-menu-head span {
  color: var(--muted);
  font-size: 0.8rem;
}

.account-menu-panel a,
.account-menu-panel button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  cursor: pointer;
}

.account-menu-panel a:hover,
.account-menu-panel button:hover {
  background: var(--surface-2);
}

.storefront {
  overflow: hidden;
}

.hero-skin {
  position: relative;
  padding: 4.8rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-left {
  width: 260px;
  height: 260px;
  left: -80px;
  top: 70px;
  background: radial-gradient(circle, rgba(255, 216, 192, 0.8), rgba(255, 216, 192, 0));
}

.hero-orb-right {
  width: 280px;
  height: 280px;
  right: -95px;
  bottom: 10px;
  background: radial-gradient(circle, rgba(244, 196, 166, 0.65), rgba(244, 196, 166, 0));
}

.hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.07;
}

.lead {
  color: var(--muted);
  margin-top: 1.1rem;
  max-width: 61ch;
  line-height: 1.7;
}

.hero-cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 9px 20px rgba(154, 92, 60, 0.3);
}

.btn-primary:hover {
  background: var(--brand-strong);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--surface-2);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
}

.hero-metrics {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-metrics div {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(236, 211, 196, 0.85);
  border-radius: 15px;
  padding: 0.75rem 0.8rem;
}

.hero-metrics strong {
  display: block;
  font-size: 1.25rem;
  color: var(--brand-strong);
}

.hero-metrics span {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-visual {
  min-height: 400px;
  border-radius: 24px;
  border: 1px solid #efd6c8;
  background: linear-gradient(165deg, #fff7f2 0%, #ffe9dd 100%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.bottle {
  position: absolute;
  bottom: 0;
  border-radius: 28px 28px 10px 10px;
  box-shadow: 0 15px 24px rgba(95, 56, 33, 0.2);
}

.bottle::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -18px;
  width: 32px;
  height: 20px;
  border-radius: 5px;
  background: #b37d61;
}

.bottle-a {
  left: 18%;
  width: 95px;
  height: 210px;
  background: linear-gradient(180deg, #f3cfb8, #dea985);
}

.bottle-b {
  left: 42%;
  width: 105px;
  height: 240px;
  background: linear-gradient(180deg, #f8e6dc, #f2cdb8);
}

.bottle-c {
  left: 68%;
  width: 85px;
  height: 190px;
  background: linear-gradient(180deg, #f7d8c4, #e7bb9d);
}

.label-chip {
  position: absolute;
  top: 18px;
  right: 16px;
  background: #fff;
  border: 1px solid #edd4c5;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.72rem;
  color: #8c563e;
}

.section-space {
  padding: 1.4rem 0 1.2rem;
}

.section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.concern-grid {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.concern-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fff7f2);
  border-radius: 16px;
  padding: 1rem;
}

.concern-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.concern-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.93rem;
}

.product-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(115, 72, 45, 0.07);
}

.tag {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid #efcfbc;
  color: #8f573d;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
}

.product-art {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  border: 1px solid #f0d9cc;
  background-size: cover;
}

.product-art-1 {
  background: linear-gradient(160deg, #fde7d8, #f9d2b9 60%, #efb999);
}

.product-art-2 {
  background: linear-gradient(160deg, #ffece0, #f7d9c7 60%, #ebb89f);
}

.product-art-3 {
  background: linear-gradient(160deg, #f7dfd0, #efc7ae 60%, #e1ab8a);
}

.product-card h3 {
  margin: 0.9rem 0 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.product-row {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-row strong {
  color: var(--brand-strong);
}

.product-row a {
  text-decoration: none;
  font-size: 0.86rem;
  color: var(--brand-strong);
  font-weight: 700;
}

.testimonial {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(130deg, #fff, #fff1e6);
  padding: 1.3rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.testimonial p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.45;
}

.testimonial span {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
}

.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  flex-shrink: 0;
  padding: 0.75rem 0;
  text-align: center;
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-line);
  color: var(--footer-text);
  font-size: 0.84rem;
}

body > .footer {
  margin-top: auto;
}

.footer-main {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
  justify-items: center;
}

.footer-main p {
  margin: 0;
}

.footer-main p:first-child {
  color: var(--footer-heading);
  font-weight: 600;
}

.footer-address {
  max-width: 720px;
}

.footer-contact-link {
  color: var(--footer-link);
  font-weight: 700;
  text-decoration: none;
}

.footer-contact-link:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}

.contact-page-shell {
  padding: 1.6rem 0 2rem;
}


.page-contact .contact-page-shell {
  min-height: auto;
  display: block;
  padding: 0.45rem 0 0.7rem;
}

.contact-page-wrap {
  max-width: 820px;
}

.page-contact .contact-page-wrap {
  width: min(700px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  justify-items: center;
}

.contact-page-head {
  text-align: center;
  margin-bottom: 1.15rem;
}

.page-contact .contact-page-head {
  margin-bottom: 0.25rem;
}

.contact-page-head h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 2.7rem);
}

.page-contact .contact-page-head h1 {
  font-size: clamp(1.65rem, 2.9vw, 2.2rem);
  line-height: 1.15;
}

.contact-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.page-contact .contact-card {
  border-radius: 16px;
  padding: 0.85rem 0.95rem 0.78rem;
}

.contact-card h2 {
  margin: 0 0 0.9rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.page-contact .contact-card h2 {
  margin-bottom: 0.65rem;
  font-size: 1.38rem;
}

.page-contact .contact-card-single {
  width: min(660px, 100%);
  padding-top: 1rem;
}

.contact-card-info {
  text-align: center;
  margin-bottom: 1rem;
}

.page-contact .contact-card-info {
  margin-bottom: 0;
}

.contact-info-line {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.page-contact .contact-info-line {
  width: 100%;
  margin-bottom: 0.2rem;
  font-size: 0.92rem;
  line-height: 1.42;
  text-align: center;
}

.page-contact .contact-info-line:first-child {
  margin-top: 0.1rem;
}

.contact-card-form {
  padding-top: 1.35rem;
}

.page-contact .contact-card-form {
  padding-top: 0.2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.page-contact .contact-form {
  gap: 0.58rem;
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(232, 213, 200, 0.9);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
}

.page-contact .contact-form label {
  gap: 0.24rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  padding: 0.75rem 0.9rem;
}

.contact-form textarea {
  resize: none;
  min-height: 140px;
}

.page-contact .contact-form input,
.page-contact .contact-form textarea {
  padding: 0.56rem 0.72rem;
}

.page-contact .contact-form textarea {
  min-height: 82px;
}

.page-contact .contact-form .btn {
  justify-self: center;
  padding: 0.56rem 0.9rem;
  font-size: 0.9rem;
}

.page-contact .contact-alert {
  margin: 0.25rem 0 0.35rem;
  padding: 0.6rem 0.72rem;
  font-size: 0.9rem;
  text-align: center;
}

.contact-alert {
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  margin-bottom: 0.8rem;
  border: 1px solid transparent;
  font-weight: 600;
}

.contact-alert-success {
  background: #f2fff2;
  border-color: #caeecb;
  color: #245c2f;
}

.contact-alert-error {
  background: #fff5f2;
  border-color: #f2d0c5;
  color: #7b2f1f;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.55s ease forwards;
}

.reveal-1 {
  animation-delay: 0.1s;
}

.reveal-2 {
  animation-delay: 0.22s;
}

.reveal-3 {
  animation-delay: 0.34s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 950px) {
  .hero-grid,
  .concern-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .page-contact .contact-page-wrap {
    width: min(680px, 100%);
    gap: 0.7rem;
  }

  .page-contact .contact-page-head {
    margin-bottom: 0.4rem;
  }

  .page-contact .contact-page-shell {
    padding: 0.85rem 0 1.05rem;
  }

  .nav-menu-item.is-brand-menu > .nav-menu-details > .nav-submenu-panel,
  .nav-menu-item.is-brand-menu:hover > .nav-menu-details > .nav-submenu-panel {
    width: min(92vw, 760px);
    min-width: 0;
  }

  .nav-menu-item.is-brand-menu .nav-menu-level-1 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-child(5n) > a,
  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-child(5n) > .nav-menu-details > summary {
    border-right: 1px solid rgba(84, 104, 124, 0.58);
  }

  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-child(3n) > a,
  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-child(3n) > .nav-menu-details > summary {
    border-right: 0;
  }

  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-last-child(-n + 5) > a,
  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-last-child(-n + 5) > .nav-menu-details > summary {
    border-bottom: 1px solid rgba(84, 104, 124, 0.58);
  }

  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-last-child(-n + 3) > a,
  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-last-child(-n + 3) > .nav-menu-details > summary {
    border-bottom: 0;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .navbar {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    justify-content: stretch;
    gap: 0.45rem;
    padding: 0.55rem 0;
    min-height: auto;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    font-size: 1.12rem;
    line-height: 1.15;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .nav-shell {
    display: contents;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    gap: 0.35rem;
    padding: 0.6rem 0 0.2rem;
  }

  .header.is-mobile-menu-open .nav-links {
    display: grid;
  }

  .nav-menu-list {
    display: grid;
    width: 100%;
    gap: 0.2rem;
  }

  .nav-menu-item > a,
  .nav-menu-details summary,
  .nav-links > a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.65rem 0.2rem;
  }

  .nav-actions {
    grid-column: 3;
    grid-row: 1;
    gap: 0.35rem;
  }

  .nav-icon-link,
  .account-menu-trigger {
    width: 40px;
    height: 40px;
  }

  .nav-submenu-panel {
    position: static;
    transform: none;
    width: 100%;
    min-width: 0;
    margin: 0.2rem 0 0.4rem;
  }

  .nav-menu-item.is-brand-menu > .nav-menu-details > .nav-submenu-panel,
  .nav-menu-item.is-brand-menu:hover > .nav-menu-details > .nav-submenu-panel {
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .nav-menu-item.is-brand-menu .nav-menu-level-1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-child(3n) > a,
  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-child(3n) > .nav-menu-details > summary {
    border-right: 1px solid rgba(84, 104, 124, 0.58);
  }

  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-child(2n) > a,
  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-child(2n) > .nav-menu-details > summary {
    border-right: 0;
  }

  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-last-child(-n + 3) > a,
  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-last-child(-n + 3) > .nav-menu-details > summary {
    border-bottom: 1px solid rgba(84, 104, 124, 0.58);
  }

  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-last-child(-n + 2) > a,
  .nav-menu-item.is-brand-menu .nav-menu-level-1 .nav-menu-item:nth-last-child(-n + 2) > .nav-menu-details > summary {
    border-bottom: 0;
  }

  .nav-menu-item.is-brand-menu .nav-submenu-view-all-brand {
    width: 100%;
    justify-content: center;
  }

  .nav-search-bar {
    padding: 0 0 0.65rem;
  }

  .hero-skin {
    padding-top: 3.25rem;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .bottle-a,
  .bottle-b,
  .bottle-c {
    transform: scale(0.88);
    transform-origin: bottom;
  }

  .testimonial p {
    font-size: 1rem;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

/* Added for home page hero / brand / feature layout */
.hero-hero {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,247,241,1));
}
.hero-banner {
  padding: 3.2rem 0 1.2rem;
}
.hero-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-left h1 {
  margin: 0.2rem 0 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
}
.hero-packshot {
  height: 420px;
  border-radius: 16px;
  background: linear-gradient(180deg, #e9f6ff 0%, #d9eefc 100%);
  box-shadow: 0 20px 50px rgba(30,60,80,0.08);
  border: 1px solid rgba(220,230,240,0.6);
}
.brand-logos {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
  padding: 0.9rem 0 1.8rem;
}
.brand-logos .logo {
  padding: 0.35rem 0.6rem;
  color: var(--muted);
  font-weight: 700;
  border-right: 1px solid rgba(236,211,196,0.45);
}
.brand-logos .logo:last-child { border-right: none; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: linear-gradient(180deg,#fff,#fff7f2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
}
.feature-art {
  width: 84px;
  height: 84px;
  border-radius: 10px;
  flex-shrink: 0;
  background-size: cover;
}
.feature-art-1 { background: linear-gradient(180deg,#f8f0ea,#f5dcca); }
.feature-art-2 { background: linear-gradient(180deg,#eef8f4,#dff0e6); }
.feature-art-3 { background: linear-gradient(180deg,#eef3fb,#dfe9fb); }
.testimonial-strip { padding: 1.8rem 0 2rem; }
.product-strip {
  background: linear-gradient(180deg, #ffffff, #fbfaf9);
  padding: 1.2rem 0 2rem;
  margin-top: 1.2rem;
}
.strip-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:1rem;
}
.strip-row {
  display:flex;
  gap:1rem;
  align-items:center;
  justify-content:flex-start;
}
.strip-item {
  flex: 0 0 160px;
  height: 200px;
  border-radius: 12px;
  background: linear-gradient(180deg,#fff,#fffceb);
  border: 1px solid rgba(236,211,196,0.6);
}

@media (max-width: 900px) {
  .hero-banner-grid { grid-template-columns: 1fr; }
  .brand-logos { flex-wrap: wrap; gap: .6rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .strip-row { overflow-x: auto; }
}

.product-list-shell,
.product-detail-shell,
.checkout-shell {
  padding: 2.2rem 0 3rem;
}

.product-list-shell {
  padding-top: 0;
}

.product-section-head h1,
.product-detail-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.product-list-shell .product-section-head h1 {
  margin-bottom: 0.35rem;
}

.product-section-copy,
.product-detail-description {
  color: var(--muted);
  line-height: 1.7;
}

.product-list-shell .product-section-copy {
  margin-top: 0;
}

.store-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.store-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  align-items: center;
  justify-content: space-between;
  margin: 1.2rem 0 0.3rem;
}

.store-toolbar-count {
  font-weight: 700;
  color: var(--text);
}

.store-toolbar-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.store-toolbar-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--text);
}

.store-toolbar-label span {
  font-size: 0.9rem;
  color: var(--muted);
}

.store-toolbar-label select {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.9rem;
  background: #fff;
}

.store-product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(49, 31, 23, 0.08);
  display: flex;
  flex-direction: column;
}

.store-product-media,
.product-detail-main-media {
  position: relative;
  display: block;
  background: #fff;
}

.store-product-media {
  aspect-ratio: 4 / 3;
  padding: 0.35rem 0 0;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(232, 213, 200, 0.6);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.store-product-media img,
.product-detail-main-media img,
.product-detail-thumb img {
  width: 100%;
  height: 100%;
  display: block;
}

.store-product-media img {
  object-fit: cover;
  object-position: center bottom;
}

.product-detail-main-media img,
.product-detail-thumb img {
  object-fit: contain;
}

.store-product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  background: rgba(47, 31, 23, 0.86);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.store-media-fallback {
  min-height: 100%;
  display: grid;
  place-items: center;
  color: var(--brand-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
}

.store-media-fallback.is-large {
  min-height: 420px;
}

.store-product-copy {
  padding: 0.95rem 1.05rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.store-product-copy h2 {
  margin: 0 0 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.35em * 2);
}

.store-product-copy h2 a {
  text-decoration: none;
}

.home-product-title {
  text-decoration: none;
  color: inherit;
}

.store-product-copy p {
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.5em * 3);
}

.store-product-copy .btn {
  margin-top: auto;
  align-self: flex-start;
}

.store-price-row-compact {
  margin: 0.55rem 0 0.65rem;
}

.store-product-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.store-pagination {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.store-pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.store-pagination-link.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.store-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin: 0.95rem 0 0.45rem;
}

.store-price-row strong {
  color: var(--brand-strong);
  font-size: 1.35rem;
}

.store-price-row span {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 700;
}

.store-price-row.is-large strong {
  font-size: 2rem;
}

.store-price-row.is-large span {
  font-size: 1.05rem;
}

.store-discount-copy {
  margin: 0 0 1rem;
  color: var(--brand-strong);
  font-weight: 700;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: stretch;
}

.product-detail-media-col {
  min-width: 0;
  height: 100%;
}

.product-detail-gallery {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.product-detail-main-media {
  flex: 1 1 auto;
  min-height: 420px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}

.product-detail-thumb-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0;
  height: 96px;
  padding: 0.55rem 0.8rem;
  overflow-x: auto;
  overflow-y: hidden;
  background: #fff;
  border-top: 1px solid rgba(232, 213, 200, 0.82);
}

.product-detail-thumb {
  flex: 0 0 66px;
  width: 66px;
  height: 78px;
  min-width: 66px;
  min-height: 78px;
  max-width: 66px;
  max-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.24rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(214, 191, 177, 0.86);
  background: #fff;
  cursor: pointer;
  line-height: 0;
  appearance: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.product-detail-thumb img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.product-detail-thumb:hover,
.product-detail-thumb.is-active {
  border-color: var(--brand-strong);
  box-shadow: 0 0 0 1px var(--brand-strong);
}

.product-detail-thumb:hover {
  transform: translateY(-1px);
}

.product-detail-thumb:focus-visible {
  outline: 3px solid rgba(184, 106, 76, 0.28);
  outline-offset: 2px;
}

.product-detail-copy {
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(236, 211, 196, 0.8);
  border-radius: 24px;
  padding: 1.5rem;
}

.product-detail-attributes {
  display: grid;
  gap: 0.28rem;
  margin: 0.75rem 0 0.9rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.product-detail-attributes div {
  display: flex;
  gap: 0.35rem;
  align-items: baseline;
}

.product-detail-attributes dt {
  color: var(--text);
  font-weight: 800;
}

.product-detail-attributes dd {
  margin: 0;
}

.product-stock-line {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.product-cart-form {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.product-qty-input {
  width: 92px;
  padding: 0.78rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
}

.product-detail-tabs {
  margin-top: 1.35rem;
}

.product-detail-tab-list {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  overflow-x: auto;
  padding: 0 1.1rem;
}

.product-detail-tab {
  position: relative;
  border: 0;
  background: transparent;
  color: #3f4953;
  font: inherit;
  font-weight: 600;
  padding: 0.8rem 0 0.95rem;
  cursor: pointer;
  white-space: nowrap;
}

.product-detail-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--brand-strong);
  transition: transform 0.18s ease;
}

.product-detail-tab.is-active {
  color: var(--text);
}

.product-detail-tab.is-active::after,
.product-detail-tab:hover::after {
  transform: scaleX(1);
}

.product-detail-tab-panel-wrap {
  min-height: 230px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(236, 211, 196, 0.82);
  border-radius: 10px;
  padding: 1.45rem 1.55rem;
}

.product-detail-tab-panel[hidden] {
  display: none;
}

.product-detail-tab-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.product-detail-empty {
  color: rgba(122, 100, 87, 0.78);
}

.product-review-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.product-review-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1fr);
  gap: 4rem;
  align-items: start;
}

.product-review-score > p,
.product-review-add h3 {
  margin: 0 0 2rem;
  color: #3f4953;
  font-size: 1.05rem;
  font-weight: 500;
}

.product-review-score > strong {
  display: block;
  color: #34404b;
  font-size: 2rem;
  line-height: 1;
}

.product-review-score > span {
  display: block;
  margin-bottom: 1.15rem;
  color: #3f4953;
  font-size: 0.82rem;
}

.product-review-bars {
  display: grid;
  gap: 0.55rem;
  width: min(340px, 100%);
}

.product-review-bar-row {
  display: grid;
  grid-template-columns: 88px minmax(120px, 1fr) 24px;
  gap: 0.85rem;
  align-items: center;
}

.product-review-stars {
  color: #ffc400;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1;
}

.product-review-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #f1f1f1;
}

.product-review-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #d7d7d7;
}

.product-review-count {
  color: #7b858d;
  font-size: 0.9rem;
}

.product-review-add p {
  color: #1d252c;
  font-size: 0.86rem;
}

.product-review-add a {
  color: var(--brand-strong);
  font-weight: 700;
  text-decoration: none;
}

.product-review-add a:hover {
  text-decoration: underline;
}

.product-review-card {
  padding-top: 0.2rem;
}

.product-review-card strong {
  display: block;
  margin: 0.8rem 0 0.1rem;
  font-size: 0.92rem;
}

.product-review-card h3 {
  margin: 0 0 0.2rem;
  color: #1f2933;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 600;
}

@media (max-width: 760px) {
  .product-review-overview {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

.product-suggestions {
  margin-top: 2.6rem;
}

.product-suggestions h2 {
  margin: 0 0 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.product-related-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-related-card {
  position: relative;
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-related-card h3 {
  margin: 0.95rem 0 0.55rem;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.35em * 2);
}

.product-related-card h3 a {
  text-decoration: none;
}

.product-related-card p {
  margin: 0;
  min-height: 76px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.55em * 3);
}

.product-related-media {
  position: relative;
  display: block;
  height: 210px;
  text-decoration: none;
  background: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 0.35rem;
  box-sizing: border-box;
}

.product-related-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}

.product-related-badge {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.48rem 0.72rem;
}

.product-related-price {
  margin: 1.05rem 0 0.75rem;
  justify-content: space-between;
}

.product-related-price strong {
  color: var(--brand-strong);
  font-size: 1.15rem;
  font-weight: 800;
}

.product-related-price span {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-related-buy {
  display: inline-block;
  color: var(--brand-strong);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  margin-top: auto;
}

@media (max-width: 950px) {
  .store-product-grid,
  .product-detail-grid,
  .product-related-row {
    grid-template-columns: 1fr;
  }
}

.checkout-head h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.checkout-copy {
  color: var(--muted);
  line-height: 1.7;
  margin: 0.55rem 0 0;
}

.checkout-alert,
.checkout-card,
.checkout-empty {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.checkout-alert {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  margin-top: 1rem;
}

.checkout-alert-success {
  background: linear-gradient(180deg, #f5fff5, #ffffff);
}

.checkout-alert-error {
  background: linear-gradient(180deg, #fff6f4, #ffffff);
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.checkout-main {
  display: grid;
  gap: 1rem;
}

.checkout-switch {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
}

.checkout-switch-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.checkout-switch-btn.is-active {
  background: var(--brand);
  color: #fff;
}

.checkout-card,
.checkout-empty {
  padding: 1.2rem;
}

.checkout-card-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.checkout-card-head p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.checkout-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.checkout-form label {
  display: grid;
  gap: 0.42rem;
  font-weight: 700;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  padding: 0.82rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  font: inherit;
  color: var(--text);
}

.checkout-form textarea {
  min-height: 120px;
  resize: vertical;
}

.checkout-billing {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,243,234,0.7));
}

.checkout-billing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.checkout-billing-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.checkout-check {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
}

.checkout-check input {
  width: auto;
  margin: 0;
}

.checkout-summary-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.checkout-summary-item,
.checkout-total-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-summary-item span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.checkout-total-row {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}

.checkout-empty {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.account-shell {
  padding: 2.2rem 0 3rem;
}

.account-head h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.account-copy {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.account-alert {
  margin-top: 1rem;
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  font-weight: 600;
}

.account-alert-success {
  background: #eaf8ef;
  color: #166534;
}

.account-alert-danger {
  background: #fff1f2;
  color: #b42318;
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.account-nav-card,
.account-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.account-nav-card {
  align-self: start;
  position: sticky;
  top: 92px;
  padding: 1rem;
}

.account-user-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.4rem;
  margin-bottom: 1rem;
}

.account-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #f6d8c6, #e3b28f);
  color: var(--brand-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.account-user-badge span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.account-nav-links {
  display: grid;
  gap: 0.35rem;
}

.account-nav-links a,
.account-logout-btn {
  width: 100%;
  text-align: left;
  text-decoration: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 0.78rem 0.9rem;
  border-radius: 14px;
  cursor: pointer;
}

.account-nav-links a:hover,
.account-logout-btn:hover {
  background: var(--surface-2);
}

.account-content {
  display: grid;
  gap: 1rem;
}

.account-card {
  padding: 1.25rem;
}

.account-section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.account-section-head p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.account-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.account-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.account-form label {
  display: grid;
  gap: 0.42rem;
  font-weight: 700;
}

.account-form input,
.account-form textarea,
.account-form select {
  width: 100%;
  padding: 0.82rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.account-form textarea {
  min-height: 120px;
  resize: vertical;
}

.account-billing-box {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,243,234,0.72));
}

.account-billing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.account-billing-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.account-check {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
}

.account-check input {
  width: auto;
  margin: 0;
}

.account-order-groups {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.account-order-group h3 {
  margin: 0 0 0.7rem;
  font-size: 1.05rem;
}

.account-order-card {
  border: 1px solid rgba(236, 211, 196, 0.95);
  border-radius: 18px;
  padding: 1rem;
  background: #fff;
}

.account-order-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.account-order-toggle .account-order-head {
  margin-bottom: 0;
}

.account-order-toggle[aria-expanded='true'] .account-order-head {
  margin-bottom: 0.8rem;
}

.account-order-details[hidden] {
  display: none;
}

.account-order-card + .account-order-card {
  margin-top: 0.75rem;
}

.account-order-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.account-order-head span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.account-order-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.account-order-items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

@media (max-width: 950px) {
  .checkout-grid,
  .checkout-form-grid,
  .account-grid,
  .account-form-grid {
    grid-template-columns: 1fr;
  }

  .checkout-switch {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .account-nav-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    display: contents;
  }

  .account-menu-panel {
    right: 0;
    transform: none;
  }
}

.chat-widget {
  position: fixed;
  right: 1.5rem;
  bottom: 2.5rem;
  z-index: 200;
  display: grid;
  gap: 0.75rem;
}

.chat-widget__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 0;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  cursor: pointer;
  min-width: 0;
  position: relative;
}

.chat-widget__status {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 999px;
  padding: 2px;
}

.chat-widget__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.chat-widget__panel {
  width: min(340px, calc(100vw - 2.5rem));
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem;
}

.chat-widget__panel[hidden] {
  display: none;
}

.chat-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.chat-widget__header strong {
  display: block;
  font-size: 1rem;
}

.chat-widget__subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.chat-widget__close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
}

.chat-widget__messages {
  display: grid;
  gap: 0.6rem;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.chat-widget__message {
  padding: 0.65rem 0.8rem;
  border-radius: 14px;
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.9rem;
}

.chat-widget__message--user {
  margin-left: auto;
  background: var(--brand);
  color: #fff;
}

.chat-widget__message--system {
  margin-right: auto;
  background: #fff;
  border: 1px solid var(--line);
}

.chat-widget__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
}

.chat-widget__form input {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
  font: inherit;
}

.chat-widget__form button {
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.chat-widget.is-open .chat-widget__toggle {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

@media (max-width: 640px) {
  .chat-widget {
    right: 1rem;
    bottom: 2.5rem;
  }
}
