:root {
  --theme: #d16655;
  --theme-dark: #b84f40;
  --secondary: #bd7579;
  --title: #2e4a5b;
  --peach: #f8ebe5;
  --text: #505050;
  --smoke: #f3ecdc;
  --white: #ffffff;
  --star: #fec624;
  --success: #28a745;
  --error: #dc3545;
  --title-font: "Josefin Sans", sans-serif;
  --body-font: "Poppins", sans-serif;
  --wrap: 1320px;
  --radius: 8px;
  --radius-pill: 40px;
  --shadow: 0 10px 30px rgba(46, 74, 91, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--title-font);
  color: var(--title);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.6em;
}
p {
  margin: 0 0 1em;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}
.container {
  width: min(var(--wrap), calc(100% - 32px));
  margin-inline: auto;
}

/* Buttons */
.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--theme);
  color: #fff;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 12px 26px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}
.btn:hover,
button.btn:hover {
  background: var(--theme-dark);
}
.btn-dark {
  background: var(--title);
}
.btn-dark:hover {
  background: #1d3340;
}
.btn-outline {
  background: transparent;
  color: var(--theme);
  border: 1px solid var(--theme);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 6px;
}

/* Topbar */
.topbar {
  background: var(--title);
  color: #fff;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 42px;
}
.topbar p {
  margin: 0;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-right svg {
  width: 14px;
  height: 14px;
  display: block;
}
.topbar-right a {
  opacity: 0.9;
}

/* Header */
.site-header {
  background: #fff;
  padding: 16px 0;
  border-bottom: 1px solid #f0e4de;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand img {
  height: 62px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}
.brand span {
  display: flex;
  flex-direction: column;
}
.brand strong {
  font-family: var(--title-font);
  color: var(--title);
  font-size: 22px;
  letter-spacing: 0.02em;
}
.brand em {
  font-style: normal;
  font-size: 11px;
  color: var(--theme);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.header-search {
  display: flex;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #ead9d2;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: #fff;
}
.header-search input {
  flex: 1;
  border: 0;
  padding: 12px 20px;
  outline: none;
}
.header-search button {
  width: 52px;
  border: 0;
  background: var(--theme);
  color: #fff;
  cursor: pointer;
}
.header-search svg {
  width: 18px;
  height: 18px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #ead9d2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--title);
}
.icon-btn svg {
  width: 18px;
  height: 18px;
}
.badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--theme);
  color: #fff;
  font-size: 10px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.nav-toggle {
  display: none;
  background: var(--title);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle svg {
  width: 20px;
  height: 20px;
}

/* Nav */
.main-nav {
  background: #fff;
  border-bottom: 1px solid #f0e4de;
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 64px;
}
.cats-wrap {
  position: relative;
}
.cats-btn {
  background: var(--title);
  color: #fff;
  border: 0;
  padding: 14px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}
.cats-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: var(--shadow);
  z-index: 20;
  padding: 10px 0;
  border-radius: 0 0 8px 8px;
}
.cats-wrap.open .cats-menu {
  display: flex;
  flex-direction: column;
}
.cats-menu a {
  padding: 8px 18px;
  color: var(--title);
}
.cats-menu a:hover {
  background: var(--peach);
  color: var(--theme);
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: center;
}
.nav-links a {
  font-weight: 600;
  color: var(--title);
  padding: 8px 0;
  position: relative;
}
.nav-links a.is-active,
.nav-links a:hover {
  color: var(--theme);
}
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--theme);
}
.nav-mail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--title);
}
.nav-mail-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--theme);
  display: grid;
  place-items: center;
}
.nav-mail-ico svg {
  width: 18px;
  height: 18px;
}

/* Hero home */
.home-hero {
  background: linear-gradient(180deg, var(--peach) 0%, #fff 100%);
  padding: 48px 0 20px;
  overflow: hidden;
}
.hero-slider {
  position: relative;
}
.hero-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 420px;
}
.hero-slide.is-on {
  display: grid;
}
.hero-copy h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 12px;
}
.hero-price {
  color: var(--theme);
  font-weight: 700;
  font-size: 22px;
}
.hero-art {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.hero-art img {
  height: 360px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(46, 74, 91, 0.18));
}
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 8px;
}
.slider-nav button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #d9c4bc;
  cursor: pointer;
}
.slider-nav button.on {
  background: var(--theme);
}

.promo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 20px 0 50px;
}
.promo-card {
  background: var(--peach);
  border-radius: 12px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 220px;
}
.promo-card h3 {
  font-size: 28px;
}
.promo-card img {
  height: 180px;
  width: auto;
  object-fit: contain;
}

.section {
  padding: 70px 0;
}
.section.alt {
  background: var(--peach);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 16px;
}
.section-head h2 {
  font-size: 32px;
  margin: 0;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.cat-item {
  text-align: center;
}
.cat-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
}
.cat-item span {
  font-family: var(--title-font);
  color: var(--title);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.product-grid.cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.pc-media {
  position: relative;
  background: var(--smoke);
  aspect-ratio: 3/4;
}
.pc-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.badge-hot,
.badge-off {
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--theme);
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
}
.badge-off {
  top: 38px;
  background: var(--title);
}
.wish-float {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--theme);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.wish-float svg {
  width: 16px;
  height: 16px;
}
.wish-float.on {
  background: var(--theme);
  color: #fff;
}
.pc-body {
  padding: 14px 16px 18px;
}
.pc-author {
  font-size: 13px;
  color: #888;
  margin: 0 0 4px;
}
.pc-body h3 {
  font-size: 17px;
  margin: 0 0 6px;
}
.pc-body h3 a:hover {
  color: var(--theme);
}
.stars {
  color: var(--star);
  font-size: 13px;
  margin: 0 0 8px;
}
.stars span {
  color: #999;
}
.pc-price s {
  color: #aaa;
  margin-right: 6px;
}
.pc-price strong {
  color: var(--theme);
  font-size: 18px;
}

.author-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  text-align: center;
}
.author-row img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 10px;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}
.author-row h3 {
  font-size: 16px;
  margin: 0;
}

.aotm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.aotm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.aotm-copy {
  background: var(--title);
  color: #fff;
  padding: 56px 48px;
}
.aotm-copy h2,
.aotm-copy h3,
.aotm-copy p {
  color: #fff;
}
.aotm-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.aotm-thumbs img {
  height: 90px;
  width: auto;
  border-radius: 6px;
}

.testi-grid,
.blog-grid,
.info-grid,
.team-grid,
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card,
.info-card,
.team-card,
.workshop-card,
.blog-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.testi-card img,
.team-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-card {
  padding: 0;
  overflow: hidden;
  background: var(--peach);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card .pad {
  padding: 18px 20px 24px;
  position: relative;
}
.date-tag {
  position: absolute;
  right: 20px;
  top: -22px;
  background: var(--theme);
  color: #fff;
  width: 56px;
  text-align: center;
  padding: 8px 0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 20px;
}
.feature {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--peach);
  padding: 18px 20px;
  border-radius: 10px;
}
.feature strong {
  color: var(--title);
  font-family: var(--title-font);
}

.newsletter {
  background: var(--theme);
  color: #fff;
  padding: 28px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.newsletter h3,
.newsletter p {
  color: #fff;
  margin: 0;
}
.newsletter-copy {
  display: flex;
  gap: 14px;
  align-items: center;
}
.nl-ico {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.nl-ico svg {
  width: 20px;
  height: 20px;
}
.newsletter-form .field {
  display: flex;
  background: #fff;
  border-radius: var(--radius-pill);
  overflow: hidden;
  min-width: 360px;
}
.newsletter-form input {
  border: 0;
  padding: 12px 18px;
  flex: 1;
  outline: none;
  color: var(--title);
}
.newsletter-form button {
  background: var(--title);
  color: #fff;
  border: 0;
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.newsletter-form svg {
  width: 16px;
  height: 16px;
}
.form-success {
  background: #e8f6ec;
  color: #1e6b38;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.site-footer {
  background: var(--title);
  color: #d8e0e6;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.site-footer h4 {
  color: #fff;
  margin-bottom: 16px;
}
.footer-about {
  font-size: 14px;
  line-height: 1.8;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.footer-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.footer-links a:hover {
  color: var(--theme);
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--theme);
  color: #fff;
  display: grid;
  place-items: center;
}
.social-row svg {
  width: 14px;
  height: 14px;
}
.footer-bottom {
  background: #243c4b;
  padding: 18px 0 12px;
}
.footer-bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.legal-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  font-size: 13px;
}
.legal-links a:hover {
  color: #fff;
}
.pay-icons {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.pay-icons span {
  background: #fff;
  color: var(--title);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}
.copy {
  text-align: center;
  font-size: 13px;
  margin: 10px 0 0;
  color: #9aadb8;
}
.brand-light img {
  background: #fff;
}

/* Page hero */
.page-hero {
  background: var(--peach);
  text-align: center;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 8px;
}
.crumbs {
  color: var(--theme);
  margin: 0;
}
.page-hero-art {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 160'%3E%3Cg fill='none' stroke='%232e4a5b' stroke-width='1.2' opacity='0.18'%3E%3Crect x='20' y='40' width='36' height='80' rx='2'/%3E%3Crect x='50' y='30' width='40' height='100' rx='2'/%3E%3Crect x='84' y='48' width='28' height='70' rx='2'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 160'%3E%3Cg fill='none' stroke='%232e4a5b' stroke-width='1.2' opacity='0.18'%3E%3Crect x='90' y='36' width='40' height='90' rx='2'/%3E%3Crect x='122' y='48' width='32' height='72' rx='2'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center, right center;
  background-size: 220px, 220px;
  pointer-events: none;
}

.prose {
  max-width: 860px;
  margin: 0 auto;
}
.prose h2 {
  margin-top: 1.6em;
}
.legal {
  max-width: 900px;
}

/* Shop */
.shop-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.sidebar {
  background: var(--peach);
  padding: 22px;
  border-radius: 12px;
  height: fit-content;
}
.sidebar h3 {
  font-size: 18px;
}
.sidebar .field {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.sidebar input,
.sidebar select,
.form-card input,
.form-card textarea,
.form-card select,
.qty input {
  border: 1px solid #e0d0c8;
  border-radius: 6px;
  padding: 10px 12px;
  width: 100%;
  background: #fff;
}
.side-list a {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eadcd6;
  color: var(--title);
}
.mini-book {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.mini-book img {
  height: 70px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}
.pagination button {
  min-width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--peach);
  color: var(--title);
  cursor: pointer;
  font-weight: 700;
}
.pagination button.on,
.pagination button:hover {
  background: var(--theme);
  color: #fff;
}

/* Product */
.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.product-cover {
  background: var(--smoke);
  border-radius: 12px;
  padding: 24px;
}
.product-cover img {
  margin: 0 auto;
  max-height: 560px;
  object-fit: contain;
}
.price-lg {
  font-size: 28px;
  color: var(--theme);
  font-weight: 700;
}
.price-lg s {
  color: #aaa;
  font-size: 18px;
  margin-right: 8px;
}
.stock {
  color: var(--success);
  font-weight: 600;
}
.buy-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 18px 0;
}
.qty {
  display: flex;
  align-items: center;
  border: 1px solid #e0d0c8;
  border-radius: 8px;
  overflow: hidden;
}
.qty button {
  width: 36px;
  height: 42px;
  border: 0;
  background: var(--peach);
  cursor: pointer;
  color: var(--title);
}
.qty input {
  width: 52px;
  text-align: center;
  border: 0;
}
.meta-line {
  font-size: 14px;
  color: #777;
}
.tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid #ead9d2;
  margin: 40px 0 0;
}
.tabs button {
  background: none;
  border: 0;
  padding: 12px 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--title);
  border-bottom: 2px solid transparent;
}
.tabs button.on {
  color: var(--theme);
  border-color: var(--theme);
}
.tab-panel {
  border: 1px solid #ead9d2;
  padding: 24px;
  border-radius: 0 0 10px 10px;
}

/* Cart / checkout */
.notice {
  background: var(--theme);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  background: var(--peach);
  padding: 12px;
  color: var(--title);
}
.cart-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #f0e4de;
  vertical-align: middle;
}
.cart-table img {
  height: 72px;
  width: auto;
}
.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 32px;
}
.cart-layout,
.check-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
}
.totals,
.form-card {
  background: var(--peach);
  padding: 24px;
  border-radius: 12px;
}
.totals h3,
.form-card h3 {
  margin-top: 0;
}
.totals-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #ead9d2;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 6px;
}
.field {
  margin-bottom: 14px;
}
.field-error {
  display: block;
  color: var(--error);
  font-size: 12px;
  margin-top: 4px;
}
.is-invalid {
  border-color: var(--error) !important;
}
.radio {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.order-done {
  text-align: center;
  padding: 48px 24px;
  background: var(--peach);
  border-radius: 16px;
}
.order-done h2 {
  color: var(--theme);
}

.info-card {
  text-align: center;
  background: var(--peach);
}
.ico-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #fff;
  color: var(--theme);
  display: grid;
  place-items: center;
}
.ico-circle svg {
  width: 26px;
  height: 26px;
}
.team-card {
  text-align: center;
}
.team-card img {
  width: 140px;
  height: 140px;
  margin: 0 auto 12px;
}
.workshop-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.center {
  text-align: center;
}
.mt {
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .cat-grid,
  .product-grid,
  .product-grid.cols-6,
  .author-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid,
  .newsletter-inner,
  .shop-layout,
  .product-split,
  .cart-layout,
  .check-layout,
  .aotm,
  .hero-slide.is-on {
    grid-template-columns: 1fr;
  }
  .nav-mail {
    display: none;
  }
  .newsletter-form .field {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 800px) {
  .header-inner {
    grid-template-columns: auto auto;
  }
  .header-search {
    grid-column: 1 / -1;
    order: 3;
    max-width: none;
  }
  .nav-toggle {
    display: grid;
    place-items: center;
  }
  .nav-inner {
    grid-template-columns: 1fr auto;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px 20px 20px;
    box-shadow: var(--shadow);
    z-index: 30;
  }
  .nav-links.open {
    display: flex;
  }
  .main-nav {
    position: relative;
  }
  .cat-grid,
  .product-grid,
  .product-grid.cols-3,
  .author-row,
  .testi-grid,
  .blog-grid,
  .info-grid,
  .team-grid,
  .workshop-grid,
  .promo-row,
  .features,
  .grid-2,
  .footer-bottom-inner {
    grid-template-columns: 1fr;
  }
  .hero-art img {
    height: 240px;
  }
  .brand span {
    display: none;
  }
  .cart-table {
    display: block;
    overflow-x: auto;
  }
  .legal-links {
    flex-wrap: wrap;
  }
  .pay-icons,
  .footer-bottom-inner .social-row {
    justify-content: center;
  }
}
