:root {
  --aosom-red: #202327;
  --aosom-red-dark: #111820;
  --aosom-orange: #ff7a00;
  --aosom-text: #222222;
  --aosom-muted: #666666;
  --aosom-light: #999999;
  --aosom-line: #e5e5e5;
  --aosom-bg: #f5f5f5;
  --aosom-panel: #ffffff;
  --page-width: 1200px;
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--aosom-text);
  background: var(--aosom-bg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.page-width {
  width: min(100% - 24px, var(--page-width));
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.somdot-skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 10000;
  padding: 11px 16px;
  border-radius: 6px;
  background: #fff;
  color: #16191d;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform .15s ease;
}

.somdot-skip-link:focus {
  transform: translateY(0);
}

.button,
.shopify-payment-button__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid var(--aosom-red);
  border-radius: var(--radius);
  background: var(--aosom-red);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.button:hover,
.shopify-payment-button__button:hover {
  background: var(--aosom-red-dark);
  border-color: var(--aosom-red-dark);
}

.button--secondary {
  background: #f4f5f6;
  color: #202327;
}

.button--ghost {
  border-color: var(--aosom-line);
  background: #fff;
  color: var(--aosom-text);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 6px;
  border-radius: var(--radius);
  background: var(--aosom-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.top-bar {
  border-bottom: 1px solid var(--aosom-line);
  background: #fafafa;
  color: var(--aosom-muted);
  font-size: 12px;
}

.top-bar__inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-links {
  display: flex;
  gap: 18px;
  white-space: nowrap;
}

.site-header__main {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr) 220px;
  gap: 22px;
  align-items: center;
  min-height: 76px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  color: var(--aosom-red);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-search {
  display: grid;
  grid-template-columns: 1fr 104px;
  border: 2px solid var(--aosom-red);
  border-radius: var(--radius);
  background: #fff;
}

.site-search input {
  min-width: 0;
  border: 0;
  padding: 12px 14px;
  outline: 0;
}

.site-search button {
  border: 0;
  background: var(--aosom-red);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.header-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.header-action {
  display: grid;
  min-height: 48px;
  align-content: center;
  border: 1px solid var(--aosom-line);
  padding: 6px 10px;
  color: var(--aosom-muted);
  font-size: 12px;
}

.header-action strong {
  color: var(--aosom-text);
  font-size: 14px;
}

.department-nav {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--aosom-line);
  overflow-x: auto;
}

.department-nav a {
  flex: 0 0 auto;
  padding: 12px 17px;
  border-right: 1px solid var(--aosom-line);
  color: #333;
  font-size: 14px;
  font-weight: 700;
}

.department-nav a:first-child {
  min-width: 210px;
  background: var(--aosom-red);
  color: #fff;
}

.section {
  padding: 20px 0;
}

.section--soft {
  background: transparent;
}

.section-heading {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 12px;
  border-bottom: 2px solid var(--aosom-red);
  background: #fff;
  padding: 0 12px;
}

.section-heading__copy {
  min-width: 0;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.section-heading h2 {
  font-size: 22px;
}

.section-heading p {
  margin: 4px 0 0;
  color: var(--aosom-muted);
  font-size: 13px;
}

.hero {
  background: var(--aosom-bg);
}

.hero__grid {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 230px;
  gap: 12px;
  padding: 14px 0;
}

.hero__menu,
.hero__side,
.hero__main {
  background: #fff;
  border: 1px solid var(--aosom-line);
}

.hero__menu {
  padding: 8px 0;
}

.hero__menu strong {
  display: block;
  padding: 8px 14px;
  font-size: 16px;
}

.hero__menu a {
  display: block;
  padding: 9px 14px;
  border-top: 1px solid #f2f2f2;
  color: #333;
}

.hero__main {
  position: relative;
  display: grid;
  min-height: 360px;
  grid-template-columns: 1fr 320px;
  overflow: hidden;
  background: linear-gradient(100deg, #202327 0%, #3a4149 52%, #c4a15f 100%);
  color: #fff;
}

.hero__copy {
  align-self: center;
  padding: 42px;
}

.hero h1 {
  max-width: 540px;
  margin: 8px 0 12px;
  font-size: 44px;
  line-height: 1.05;
}

.hero p {
  max-width: 500px;
  margin: 0;
  font-size: 18px;
}

.hero__actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.hero__media {
  align-self: stretch;
  background: rgba(255, 255, 255, 0.2);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.hero__placeholder,
.image-placeholder {
  display: grid;
  width: 100%;
  min-height: 160px;
  place-items: center;
  background: #f1f1f1;
  color: var(--aosom-light);
  font-weight: 700;
}

.hero__side {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.mini-deal {
  border: 1px solid var(--aosom-line);
  padding: 12px;
  background: #fff8f1;
}

.mini-deal strong {
  display: block;
  color: var(--aosom-red);
  font-size: 18px;
}

.promo-grid,
.category-grid,
.product-grid,
.inspiration-grid,
.trust-grid,
.blog-grid,
.value-grid,
.account-grid,
.cart-layout {
  display: grid;
  gap: 12px;
}

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

.promo-tile,
.category-tile,
.inspiration-card,
.trust-card,
.article-card,
.account-card,
.summary-card {
  border: 1px solid var(--aosom-line);
  border-radius: var(--radius);
  background: #fff;
}

.promo-tile {
  min-height: 128px;
  padding: 16px;
}

.promo-tile--accent {
  background: #f4f5f6;
  border-color: #dfe3e7;
}

.promo-tile h2,
.category-tile h3,
.inspiration-card h3,
.article-card h2 {
  margin: 8px 0 6px;
  font-size: 18px;
  line-height: 1.25;
}

.promo-tile p,
.category-tile p,
.inspiration-card p,
.article-card p,
.trust-card p {
  margin: 0;
  color: var(--aosom-muted);
}

.category-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.category-tile {
  overflow: hidden;
  text-align: center;
}

.category-tile__media {
  aspect-ratio: 1.15 / 1;
  background: #fff;
}

.category-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.category-tile__body,
.article-card__body,
.inspiration-card__body,
.trust-card {
  padding: 12px;
}

.product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-card {
  position: relative;
  display: grid;
  min-height: 100%;
  border: 1px solid var(--aosom-line);
  border-radius: var(--radius);
  background: #fff;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.product-card__compare {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  display: flex;
  gap: 4px;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--aosom-muted);
  font-size: 12px;
}

.product-card__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
}

.product-card__media {
  aspect-ratio: 1 / 1;
  background: #fff;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.product-card__content {
  display: grid;
  gap: 5px;
  padding: 10px;
}

.product-card__title {
  display: -webkit-box;
  min-height: 40px;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
}

.rating {
  color: #ffb400;
  font-size: 12px;
}

.price {
  color: var(--aosom-red);
  font-size: 20px;
  font-weight: 900;
}

.price s {
  margin-left: 6px;
  color: var(--aosom-light);
  font-size: 13px;
  font-weight: 400;
}

.shipping-line {
  color: var(--aosom-muted);
  font-size: 12px;
}

.quick-add {
  display: none;
}

.collection-hero,
.page-hero,
.search-header {
  padding: 18px 0;
  background: #fff;
  border-bottom: 1px solid var(--aosom-line);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--aosom-muted);
  font-size: 12px;
}

.collection-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 14px;
}

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--aosom-line);
  background: #fff;
  padding: 10px 12px;
}

.filter-panel {
  align-self: start;
  border: 1px solid var(--aosom-line);
  background: #fff;
}

.filter-group {
  padding: 12px;
  border-bottom: 1px solid var(--aosom-line);
}

.filter-group h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.filter-option {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
  color: #444;
  font-size: 13px;
}

.filter-option.is-active,
.filter-option:hover {
  color: var(--aosom-red);
}

.sort-select,
.field input,
.field textarea,
.quantity-input {
  width: 100%;
  border: 1px solid var(--aosom-line);
  border-radius: var(--radius);
  background: #fff;
  padding: 9px 10px;
}

.product-main {
  display: grid;
  grid-template-columns: 580px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
}

.product-gallery,
.product-info {
  border: 1px solid var(--aosom-line);
  background: #fff;
}

.product-gallery {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
}

.product-thumbs {
  display: grid;
  gap: 8px;
  align-content: start;
}

.product-thumb {
  aspect-ratio: 1;
  border: 1px solid var(--aosom-line);
  background: #fff;
}

.product-thumb img,
.product-featured img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-featured {
  display: grid;
  min-height: 500px;
  place-items: center;
  background: #fff;
}

.product-info {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 16px;
}

.product-info h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--aosom-muted);
  font-size: 12px;
}

.product-price-box {
  display: grid;
  gap: 6px;
  margin: 4px 0;
  background: #f5f6f7;
  padding: 14px;
}

.product-price {
  font-size: 34px;
}

.product-form {
  display: grid;
  gap: 12px;
}

.quantity-row {
  display: grid;
  grid-template-columns: 88px 1fr 1fr;
  gap: 10px;
  align-items: end;
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.promise {
  border: 1px solid var(--aosom-line);
  padding: 10px;
  color: var(--aosom-muted);
  font-size: 13px;
}

.accordion {
  border: 1px solid var(--aosom-line);
  background: #fff;
}

.accordion details {
  border-bottom: 1px solid var(--aosom-line);
  padding: 14px;
}

.accordion details:last-child {
  border-bottom: 0;
}

.accordion summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
}

.page-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
}

.page-side {
  border: 1px solid var(--aosom-line);
  background: #fff;
}

.page-side h3 {
  margin: 0;
  background: #f2f2f2;
  padding: 12px;
}

.page-side a {
  display: block;
  padding: 10px 12px;
  border-top: 1px solid var(--aosom-line);
}

.page-content {
  border: 1px solid var(--aosom-line);
  background: #fff;
  padding: 18px;
  font-size: 15px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.stat-card {
  border: 1px solid var(--aosom-line);
  padding: 16px;
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--aosom-red);
  font-size: 28px;
}

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

.cart-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.cart-line {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 90px 110px;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--aosom-line);
  border-bottom: 0;
  background: #fff;
  padding: 12px;
}

.cart-line:last-child {
  border-bottom: 1px solid var(--aosom-line);
}

.cart-line img {
  border: 1px solid var(--aosom-line);
}

.summary-card {
  position: sticky;
  top: 160px;
  padding: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--aosom-line);
}

.account-grid {
  grid-template-columns: 1fr 1fr;
}

.account-card {
  padding: 18px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

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

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-blog {
  padding-top: 42px;
  padding-bottom: 54px;
  background: #fff;
}

.home-blog__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.home-blog__heading h2 {
  margin: 0;
  color: #282828;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.home-blog__heading h2 span { color: inherit; }

.home-blog__heading a {
  color: #282828;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
}

.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-blog__card {
  display: block;
  overflow: hidden;
  border: 1px solid #e4e5e7;
  border-radius: 7px;
  background: #fff;
  color: #282828;
  box-shadow: 0 3px 10px rgb(0 0 0 / 5%);
  transition: box-shadow .18s ease, transform .18s ease;
}

.home-blog__card:hover,
.home-blog__card:focus-visible {
  color: #282828;
  box-shadow: 0 8px 18px rgb(0 0 0 / 10%);
  transform: translateY(-2px);
}

.home-blog__image {
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  background: #f2f3f4;
}

.home-blog__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-blog__image span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #777b80;
  font-size: 18px;
  font-weight: 600;
}

.home-blog__card h3 {
  min-height: 50px;
  margin: 0;
  padding: 14px 18px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.home-blog__empty {
  padding: 36px 20px;
  border: 1px dashed #d9dcdf;
  color: #71757a;
  text-align: center;
}

/* Journal article */
.journal-index { padding: 74px 0 100px; background: #fff; color: #202327; }
.journal-index__hero { max-width: 920px; margin-bottom: 72px; text-align: center; }
.journal-index__hero > p { margin: 0 0 16px; color: #7a5b42; font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.journal-index__hero h1 { margin: 0 0 20px; font-size: clamp(50px, 7vw, 86px); font-weight: 600; letter-spacing: -.05em; line-height: 1; }
.journal-index__hero > div { max-width: 650px; margin: 0 auto; color: #666c72; font-size: 18px; line-height: 1.6; }
.journal-index__posts { max-width: 1320px; }
.journal-featured { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr); align-items: stretch; margin-bottom: 74px; overflow: hidden; border-radius: 20px; background: #f3f0eb; }
.journal-featured__image { display: grid; min-height: 520px; place-items: center; overflow: hidden; background: #e8e3dc; }
.journal-featured__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.journal-featured:hover .journal-featured__image img { transform: scale(1.018); }
.journal-featured__image span, .journal-card__image span { color: #7a5b42; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.journal-featured__copy { display: flex; flex-direction: column; justify-content: center; padding: 54px; }
.journal-featured__copy > p, .journal-card__copy > p { margin: 0 0 14px; color: #7a5b42; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.journal-featured__copy h2 { margin: 0 0 20px; font-size: clamp(34px, 4vw, 52px); letter-spacing: -.04em; line-height: 1.04; }
.journal-featured__copy h2 a, .journal-card__copy h2 a { color: inherit; text-decoration: none; }
.journal-featured__copy > div { margin-bottom: 24px; color: #5f656b; font-size: 16px; line-height: 1.65; }
.journal-featured__copy time, .journal-card__copy time { color: #898e93; font-size: 12px; }
.journal-featured__read { align-self: flex-start; margin-top: 28px; color: #202327; font-size: 14px; font-weight: 800; text-decoration: none; }
.journal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 52px 26px; }
.journal-card { min-width: 0; }
.journal-card__image { display: grid; min-height: 280px; margin-bottom: 22px; place-items: center; overflow: hidden; border-radius: 14px; background: #ece8e2; }
.journal-card__image img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .25s ease; }
.journal-card:hover .journal-card__image img { transform: scale(1.025); }
.journal-card__copy h2 { margin: 0 0 13px; font-size: 25px; letter-spacing: -.025em; line-height: 1.18; }
.journal-card__copy > div { margin-bottom: 18px; color: #656a70; font-size: 14px; line-height: 1.6; }
.journal-index .navigation.pagination { margin-top: 72px; }
.journal-index .nav-links { display: flex; justify-content: center; align-items: center; gap: 8px; }
.journal-index .page-numbers { min-width: 42px; padding: 11px 14px; border: 1px solid #d9d9d9; border-radius: 999px; color: #202327; text-align: center; text-decoration: none; }
.journal-index .page-numbers.current { border-color: #202327; background: #202327; color: #fff; }
.journal-index__empty { padding: 80px 0; text-align: center; }

/* 404 */
.somdot-not-found { position: relative; min-height: 720px; padding: 82px 0 100px; overflow: hidden; background: #f3f0eb; color: #202327; }
.somdot-not-found__glow { position: absolute; top: -220px; left: 50%; width: 760px; height: 760px; border-radius: 50%; background: radial-gradient(circle, rgb(207 180 149 / 42%) 0%, rgb(243 240 235 / 0%) 68%); transform: translateX(-50%); pointer-events: none; }
.somdot-not-found__inner { position: relative; z-index: 1; max-width: 920px; text-align: center; }
.somdot-not-found__code { margin: -18px 0 -42px; color: rgb(122 91 66 / 10%); font-size: clamp(150px, 24vw, 300px); font-weight: 800; letter-spacing: -.09em; line-height: .86; user-select: none; }
.somdot-not-found__eyebrow { margin: 0 0 17px; color: #7a5b42; font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.somdot-not-found h1 { max-width: 820px; margin: 0 auto 22px; font-size: clamp(40px, 6vw, 68px); font-weight: 600; letter-spacing: -.045em; line-height: 1.04; }
.somdot-not-found__intro { max-width: 620px; margin: 0 auto; color: #62686e; font-size: 17px; line-height: 1.7; }
.somdot-not-found__search { display: grid; grid-template-columns: minmax(0, 1fr) auto; max-width: 620px; margin: 38px auto 0; padding: 6px; border: 1px solid rgb(32 35 39 / 16%); border-radius: 999px; background: #fff; box-shadow: 0 18px 45px rgb(80 62 45 / 8%); }
.somdot-not-found__search input { min-width: 0; border: 0; outline: 0; background: transparent; padding: 13px 20px; color: #202327; font: inherit; }
.somdot-not-found__search button { border: 0; border-radius: 999px; background: #202327; padding: 13px 25px; color: #fff; font: inherit; font-weight: 800; cursor: pointer; }
.somdot-not-found__search button:hover { background: #7a5b42; }
.somdot-not-found__actions { display: flex; justify-content: center; align-items: center; gap: 24px; margin-top: 28px; }
.somdot-not-found__primary { border-radius: 999px; background: #202327; padding: 14px 25px; color: #fff; font-size: 14px; font-weight: 800; text-decoration: none; }
.somdot-not-found__primary:hover { background: #7a5b42; }
.somdot-not-found__secondary { color: #202327; font-size: 14px; font-weight: 800; text-decoration: none; }
.somdot-not-found__links { margin-top: 64px; padding-top: 28px; border-top: 1px solid rgb(32 35 39 / 12%); }
.somdot-not-found__links > p { margin: 0 0 16px; color: #858a8f; font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.somdot-not-found__links > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.somdot-not-found__links a { border: 1px solid rgb(32 35 39 / 14%); border-radius: 999px; background: rgb(255 255 255 / 52%); padding: 9px 15px; color: #34383d; font-size: 13px; text-decoration: none; transition: border-color .2s ease, background .2s ease; }
.somdot-not-found__links a:hover { border-color: #7a5b42; background: #fff; }

/* Cart */
.somdot-cart-page { padding: 62px 0 90px; background: #f7f6f3; color: #202327; }
.somdot-cart-page__header { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 42px; }
.somdot-cart-page__header p { margin: 0 0 10px; color: #7a5b42; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.somdot-cart-page__header h1 { margin: 0; font-size: clamp(42px, 6vw, 68px); font-weight: 600; letter-spacing: -.045em; line-height: 1; }
.somdot-cart-steps { display: flex; gap: 34px; margin: 0; padding: 0; list-style: none; }
.somdot-cart-steps li { display: flex; align-items: center; gap: 8px; color: #92969a; font-size: 12px; font-weight: 700; }
.somdot-cart-steps span { display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid #c8c9c7; border-radius: 50%; font-size: 11px; }
.somdot-cart-steps .is-current { color: #202327; }
.somdot-cart-steps .is-current span { border-color: #202327; background: #202327; color: #fff; }
.somdot-cart-page__content { max-width: 1360px; }
.somdot-cart-page .wc-block-components-sidebar-layout { align-items: start; gap: 30px; }
.somdot-cart-page .wc-block-components-main { width: calc(66.666% - 15px); padding-right: 0 !important; }
.somdot-cart-page .wc-block-components-sidebar { width: calc(33.333% - 15px); }
.somdot-cart-page .wc-block-cart-items { border-collapse: separate !important; border-spacing: 0 14px !important; }
.somdot-cart-page .wc-block-cart-items__header { color: #777c81; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.somdot-cart-page .wc-block-cart-items__header th { padding: 0 18px 8px !important; border: 0 !important; }
.somdot-cart-page .wc-block-cart-items__row { overflow: hidden; border-radius: 16px; background: #fff; box-shadow: 0 8px 28px rgb(45 39 31 / 6%); }
.somdot-cart-page .wc-block-cart-items__row td { padding: 24px 18px !important; border: 0 !important; vertical-align: middle !important; }
.somdot-cart-page .wc-block-cart-item__image { width: 142px !important; padding-right: 0 !important; }
.somdot-cart-page .wc-block-cart-item__image,
.somdot-cart-page .wc-block-cart-item__image a,
.somdot-cart-page .wc-block-cart-item__image img { background: #fff !important; }
.somdot-cart-page .wc-block-cart-item__image img { width: 118px !important; height: 138px !important; border-radius: 10px; object-fit: contain; }
.somdot-cart-page .wc-block-cart-items,
.somdot-cart-page .wc-block-cart-items tbody,
.somdot-cart-page .wc-block-cart-items__row,
.somdot-cart-page .wc-block-cart-items__row td { border-bottom: 0 !important; }
.somdot-cart-page .wc-block-cart-items__row::after { display: none !important; content: none !important; }
.somdot-cart-page .wc-block-components-product-name { display: block; max-width: 620px; margin-bottom: 10px !important; color: #202327 !important; font-size: 17px !important; font-weight: 700 !important; line-height: 1.35 !important; text-decoration: none !important; }
.somdot-cart-page .wc-block-cart-item__prices { margin-bottom: 8px; color: #202327; font-size: 17px; font-weight: 700; }
.somdot-cart-page .wc-block-components-product-details { margin: 0 0 16px !important; color: #777c81; font-size: 12px; }
.somdot-cart-page .wc-block-components-quantity-selector { height: 36px; border: 1px solid #d7d7d4 !important; border-radius: 999px !important; background: #fafafa; }
.somdot-cart-page .wc-block-components-quantity-selector input { min-width: 42px; color: #202327; font-weight: 700; }
.somdot-cart-page .wc-block-components-quantity-selector button { width: 34px !important; min-width: 34px !important; color: #202327 !important; }
.somdot-cart-page .wc-block-cart-item__remove-link { width: 34px !important; min-width: 34px; height: 34px !important; margin-left: 10px !important; border-radius: 50% !important; background-color: #f2f1ee !important; color: #6f7479 !important; }
.somdot-cart-page .wc-block-cart-item__total { color: #202327; font-size: 18px; font-weight: 800; }
.somdot-cart-page .wc-block-cart__sidebar { position: sticky; top: 118px; padding: 30px !important; border: 0 !important; border-radius: 16px; background: #fff; box-shadow: 0 8px 28px rgb(45 39 31 / 7%); }
.somdot-cart-page .wc-block-cart__totals-title { margin: 0 0 16px !important; padding: 0 0 18px !important; border-bottom: 1px solid #e6e4e0; color: #202327; font-size: 20px !important; font-weight: 700 !important; letter-spacing: -.02em !important; text-align: left !important; text-transform: none !important; }
.somdot-cart-page .wc-block-components-totals-wrapper { padding: 18px 0 !important; border-color: #e6e4e0 !important; }
.somdot-cart-page .wc-block-cart__totals-title + .wc-block-components-totals-wrapper { border-top: 0 !important; }
.somdot-cart-page .wc-block-components-totals-coupon-link { color: #555b61; font-size: 13px; text-decoration: none; }
.somdot-cart-page .wc-block-components-totals-footer-item { font-size: 18px; font-weight: 800; }
.somdot-cart-page .wc-block-cart__submit { margin-top: 20px; }
.somdot-cart-page .wc-block-cart__submit-button { min-height: 56px !important; border-radius: 999px !important; background: #202327 !important; color: #fff !important; font-size: 15px !important; font-weight: 800 !important; transition: background .2s ease, transform .2s ease; }
.somdot-cart-page .wc-block-cart__submit-button:hover { background: #7a5b42 !important; transform: translateY(-1px); }
.somdot-cart-page .wc-block-components-button__text { color: inherit !important; }
.somdot-cart-page .wc-block-components-notices { margin-bottom: 20px; }
.somdot-cart-page .wp-block-woocommerce-empty-cart-block { padding: 70px 30px; border-radius: 18px; background: #fff; text-align: center; }
.somdot-cart-page .wp-block-woocommerce-empty-cart-block h2 { font-size: 38px; letter-spacing: -.03em; }
.somdot-cart-assurance { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; max-width: 1360px; margin-top: 46px; overflow: hidden; border: 1px solid #e2e0dc; border-radius: 14px; background: #e2e0dc; }
.somdot-cart-assurance > div { display: grid; gap: 6px; padding: 24px 28px; background: #fff; }
.somdot-cart-assurance strong { font-size: 14px; }
.somdot-cart-assurance span { color: #74797e; font-size: 12px; line-height: 1.5; }

/* Cart drawer */
.header-icon--cart { position: relative; border: 0; background: transparent; color: inherit; cursor: pointer; font: inherit; }
.somdot-header-cart-count { position: absolute; top: -5px; right: -8px; display: grid; min-width: 18px; height: 18px; place-items: center; padding: 0 5px; border-radius: 999px; background: #fff; color: #202327; font-size: 10px; font-weight: 800; }
.somdot-header-cart-count.is-empty { display: none; }
.cart-drawer-open { overflow: hidden; }
.somdot-cart-drawer-layer { position: fixed; z-index: 100000; inset: 0; visibility: hidden; pointer-events: none; }
.somdot-cart-drawer-layer.is-open { visibility: visible; pointer-events: auto; }
.somdot-cart-drawer__backdrop { position: absolute; inset: 0; border: 0; background: rgb(20 22 24 / 48%); opacity: 0; transition: opacity .28s ease; }
.somdot-cart-drawer-layer.is-open .somdot-cart-drawer__backdrop { opacity: 1; }
.somdot-cart-drawer { position: absolute; top: 0; right: 0; display: flex; width: min(440px, 100%); height: 100%; flex-direction: column; background: #fff; box-shadow: -18px 0 50px rgb(20 22 24 / 18%); transform: translateX(102%); transition: transform .32s cubic-bezier(.22,.8,.25,1); }
.somdot-cart-drawer-layer.is-open .somdot-cart-drawer { transform: translateX(0); }
.somdot-cart-drawer > header { display: flex; align-items: center; justify-content: space-between; padding: 26px 28px; border-bottom: 1px solid #e3e1dc; background: #fff; }
.somdot-cart-drawer > header div { display: grid; gap: 3px; }
.somdot-cart-drawer > header .somdot-cart-drawer__heading { display: flex; align-items: center; gap: 12px; }
.somdot-cart-drawer__heading > i { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: #e8f5ed; color: #287146; font-style: normal; font-size: 20px; font-weight: 800; }
.somdot-cart-drawer > header span { color: #7a5b42; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.somdot-cart-drawer > header strong { color: #202327; font-size: 22px; }
.somdot-cart-drawer > header button { width: 38px; height: 38px; border: 1px solid #ddd9d2; border-radius: 50%; background: #fff; color: #202327; cursor: pointer; font-size: 25px; line-height: 1; }
.somdot-cart-drawer__contents { display: flex; min-height: 0; flex: 1; flex-direction: column; background: #fff; }
.somdot-cart-drawer__items { flex: 1; overflow-y: auto; padding: 18px 22px; background: #fff; }
.somdot-cart-drawer__item { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 16px; padding: 12px 0; border-bottom: 1px solid #e5e2dc; }
.somdot-cart-drawer__item img { width: 92px; height: 108px; border-radius: 10px; background: #fff; object-fit: contain; }
.somdot-cart-drawer__item > div { position: relative; display: grid; min-height: 108px; align-content: center; gap: 7px; padding-bottom: 22px; }
.somdot-cart-drawer__item-name { display: -webkit-box; overflow: hidden; color: #202327; font-size: 14px; font-weight: 700; line-height: 1.35; text-decoration: none; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.somdot-cart-drawer__item span { color: #777c81; font-size: 12px; }
.somdot-cart-drawer__item strong { color: #202327; font-size: 15px; }
.somdot-cart-drawer__remove { position: absolute; right: 0; bottom: 2px; color: #73787d !important; font-size: 12px !important; font-weight: 650; text-decoration: underline; text-underline-offset: 3px; }
.somdot-cart-drawer__remove:hover { color: #202327 !important; }
.somdot-cart-drawer__subtotal { display: flex; justify-content: space-between; padding: 20px 28px 12px; border-top: 1px solid #e3e1dc; background: #fff; color: #202327; font-size: 16px; }
.somdot-cart-drawer__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 28px 28px; background: #fff; }
.somdot-cart-drawer__actions a { display: grid; min-height: 50px; place-items: center; border: 1px solid #202327; border-radius: 999px; color: #202327; font-size: 13px; font-weight: 800; text-decoration: none; }
.somdot-cart-drawer__actions .is-primary { background: #202327; color: #fff; }
.somdot-cart-drawer__empty { display: grid; flex: 1; place-content: center; gap: 8px; padding: 36px; color: #202327; text-align: center; }
.somdot-cart-drawer__empty strong { font-size: 24px; }
.somdot-cart-drawer__empty span { max-width: 280px; color: #74797e; font-size: 13px; line-height: 1.5; }
.somdot-cart-feedback { position: fixed; z-index: 100100; top: 96px; left: 50%; min-width: min(360px, calc(100vw - 32px)); max-width: 520px; padding: 15px 22px; border: 1px solid #202327; border-radius: 999px; background: #fff; color: #202327; box-shadow: 0 12px 36px rgb(20 22 24 / 18%); font-size: 14px; font-weight: 750; text-align: center; opacity: 0; pointer-events: none; transform: translate(-50%, -18px); transition: opacity .2s ease, transform .2s ease; }
.somdot-cart-feedback.is-visible { opacity: 1; transform: translate(-50%, 0); }
.somdot-cart-feedback.is-success::before { content: '\2713'; margin-right: 9px; color: #202327; }
.somdot-cart-feedback.is-error { border-color: #f04f68; background: #f04f68; color: #fff; box-shadow: 0 12px 36px rgb(240 79 104 / 28%); }
.single-product .woocommerce-notices-wrapper { display: none !important; }

/* Dedicated WooCommerce Blocks checkout */
.somdot-checkout-page { padding: 42px 0 70px; background: #f6f5f2; }
.somdot-checkout-page__header { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.somdot-checkout-page__header p { margin: 0 0 8px; color: #7a5b42; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.somdot-checkout-page__header h1 { margin: 0 0 8px; color: #202327; font-size: clamp(32px, 4vw, 52px); line-height: 1; letter-spacing: -.045em; }
.somdot-checkout-page__header > div > span { color: #74797e; font-size: 13px; }
.somdot-checkout-page__content { max-width: 1260px; }
.somdot-checkout-page .wc-block-checkout { align-items: start; gap: 30px; }
.somdot-checkout-page .wc-block-components-main { width: calc(64% - 15px); padding-right: 0 !important; }
.somdot-checkout-page .wc-block-components-sidebar { position: sticky; top: 118px; width: calc(36% - 15px); padding: 28px !important; border: 0 !important; border-radius: 18px; background: #fff; box-shadow: 0 10px 34px rgb(45 39 31 / 8%); }
.somdot-checkout-page .wc-block-checkout__main > fieldset,
.somdot-checkout-page .wc-block-checkout__main > .wc-block-checkout__terms,
.somdot-checkout-page .wc-block-checkout__main > .wc-block-checkout__actions { margin: 0 0 20px !important; padding: 28px !important; border: 0 !important; border-radius: 18px; background: #fff; box-shadow: 0 8px 28px rgb(45 39 31 / 6%); }
.somdot-checkout-page .wc-block-components-checkout-step__heading { margin: 0 0 22px !important; }
.somdot-checkout-page .wc-block-components-checkout-step__title { color: #202327; font-size: 21px !important; font-weight: 750 !important; letter-spacing: -.02em; }
.somdot-checkout-page .wc-block-components-checkout-step__description { color: #7a7f84; font-size: 12px; }
.somdot-checkout-page .wc-block-components-text-input input,
.somdot-checkout-page .wc-block-components-combobox .wc-block-components-combobox-control input,
.somdot-checkout-page .wc-block-components-address-form select { min-height: 54px !important; border-color: #d8d6d1 !important; border-radius: 10px !important; background: #fff !important; color: #202327 !important; }
.somdot-checkout-page .somdot-checkout-country__native { position: absolute !important; width: 1px !important; height: 1px !important; min-height: 1px !important; margin: 0 !important; padding: 0 !important; opacity: 0; pointer-events: none; }
.somdot-checkout-country { position: relative; z-index: 12; width: 100%; }
.somdot-checkout-country__trigger { position: relative; width: 100%; min-height: 54px; border: 1px solid #d8d6d1; border-radius: 10px; padding: 18px 48px 8px 13px; background: #fff; color: #202327; font: inherit; text-align: left; cursor: pointer; }
.somdot-checkout-country__trigger::after { position: absolute; top: 50%; right: 18px; width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; content: ''; transform: translateY(-65%) rotate(45deg); transition: transform .18s ease; }
.somdot-checkout-country.is-open .somdot-checkout-country__trigger { border-color: #7a5b42; box-shadow: 0 0 0 2px rgb(122 91 66 / 12%); }
.somdot-checkout-country.is-open .somdot-checkout-country__trigger::after { transform: translateY(-15%) rotate(225deg); }
.somdot-checkout-country__list { position: absolute; z-index: 30; top: calc(100% + 7px); right: 0; left: 0; display: none; max-height: 280px; overflow-y: auto; border: 1px solid #ddd8d2; border-radius: 12px; padding: 7px; background: #fff; box-shadow: 0 18px 42px rgb(32 35 39 / 16%); }
.somdot-checkout-country.is-open .somdot-checkout-country__list { display: grid; }
.somdot-checkout-country__search { position: sticky; z-index: 2; top: -7px; padding: 7px 0 8px; background: #fff; }
.somdot-checkout-country__search input { width: 100%; min-height: 42px; border: 1px solid #d8d6d1; border-radius: 8px; padding: 0 12px; background: #faf9f7; color: #202327; font: inherit; }
.somdot-checkout-country__search input:focus { border-color: #7a5b42; box-shadow: 0 0 0 2px rgb(122 91 66 / 12%); outline: 0; }
.somdot-checkout-country__options { display: grid; }
.somdot-checkout-country__option { width: 100%; min-height: 42px; border: 0; border-radius: 8px; padding: 9px 12px; background: transparent; color: #202327; font: inherit; text-align: left; cursor: pointer; }
.somdot-checkout-country__option:hover,
.somdot-checkout-country__option:focus-visible { background: #f3efeb; outline: 0; }
.somdot-checkout-country__option[aria-selected="true"] { background: #202327; color: #fff; font-weight: 700; }
.somdot-checkout-country__empty { margin: 0; padding: 18px 12px; color: #74797e; font-size: 13px; text-align: center; }
.somdot-checkout-back { display: inline-flex; align-items: center; justify-content: center; width: 96px; min-height: 52px; margin: 0; padding: 0 16px; border: 1px solid #d8d6d1; border-radius: 999px; background: #fff; color: #202327; font-size: 14px; font-weight: 750; text-decoration: none; white-space: nowrap; }
.somdot-checkout-back:hover,
.somdot-checkout-back:focus-visible { border-color: #202327; background: #f5f3f0; color: #202327; }
.somdot-checkout-page .wc-block-components-text-input input:focus,
.somdot-checkout-page .wc-block-components-combobox .wc-block-components-combobox-control input:focus { border-color: #7a5b42 !important; box-shadow: 0 0 0 1px #7a5b42 !important; }
.somdot-checkout-page .wc-block-components-checkbox label { color: #555b61; font-size: 13px; }
.somdot-checkout-page .wc-block-checkout__actions_row { display: grid !important; grid-template-columns: 96px minmax(0, 260px); justify-content: start; gap: 12px; align-items: center; }
.somdot-checkout-page .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button { width: 100% !important; min-width: 0 !important; height: 52px !important; min-height: 52px !important; border: 0 !important; border-radius: 999px !important; background: #202327 !important; color: #fff !important; font-size: 15px; font-weight: 800; transition: background .2s ease, transform .2s ease; }
.somdot-checkout-page .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover { background: #7a5b42 !important; transform: translateY(-1px); }
.somdot-checkout-page .wc-block-components-order-summary__button-text,
.somdot-checkout-page .wc-block-checkout__sidebar .wc-block-components-title { color: #202327; font-size: 20px; font-weight: 750; }
.somdot-checkout-page .wc-block-components-order-summary-item { padding: 18px 0 !important; }
.somdot-checkout-page .wc-block-components-order-summary-item__image img { border-radius: 10px; background: #fff; object-fit: contain; }
.somdot-checkout-page .wc-block-components-order-summary-item__description { color: #202327; font-size: 13px; font-weight: 650; line-height: 1.4; }
.somdot-checkout-page .wc-block-components-totals-wrapper { padding: 17px 0 !important; border-color: #e6e4e0 !important; }
.somdot-checkout-page .wc-block-checkout__sidebar .wc-block-components-totals-wrapper:empty { display: none !important; padding: 0 !important; border: 0 !important; }
.somdot-checkout-page .wc-block-components-totals-item__label { color: #64696e; }
.somdot-checkout-page .wc-block-components-totals-footer-item { color: #202327; font-size: 19px; font-weight: 800; }
.somdot-checkout-page .wc-block-components-totals-coupon-link { color: #7a5b42; font-weight: 700; text-decoration: none; }
.somdot-checkout-page .wc-block-components-notices { margin-bottom: 20px; }
.somdot-checkout-page--result .somdot-checkout-page__content { max-width: 920px; }
.somdot-order-preview-note { margin: 0 0 14px; padding: 11px 16px; border: 1px solid #e2d4a7; border-radius: 10px; background: #fff9e8; color: #6c5724; font-size: 12px; text-align: center; }
.somdot-order-result { padding: clamp(34px, 6vw, 68px); border-radius: 22px; background: #fff; box-shadow: 0 12px 40px rgb(45 39 31 / 8%); text-align: center; }
.somdot-order-result__icon { display: grid; place-items: center; width: 66px; height: 66px; margin: 0 auto 22px; border-radius: 50%; color: #fff; font-size: 34px; line-height: 1; }
.somdot-order-result--success .somdot-order-result__icon { background: #2f7650; }
.somdot-order-result--failed .somdot-order-result__icon { background: #f04f68; box-shadow: 0 12px 28px rgb(240 79 104 / 24%); }
.somdot-order-result__eyebrow { margin: 0 0 10px; color: #7a5b42; font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.somdot-order-result h2 { margin: 0; color: #202327; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.04em; }
.somdot-order-result__lead { max-width: 620px; margin: 16px auto 30px; color: #686e73; line-height: 1.7; }
.somdot-order-result__summary { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 30px; padding: 0; border: 1px solid #e7e4de; border-radius: 14px; text-align: left; overflow: hidden; }
.somdot-order-result__summary > div { padding: 18px 20px; border-right: 1px solid #e7e4de; border-bottom: 1px solid #e7e4de; }
.somdot-order-result__summary > div:nth-child(3n) { border-right: 0; }
.somdot-order-result__summary dt { margin-bottom: 6px; color: #797e83; font-size: 11px; text-transform: uppercase; }
.somdot-order-result__summary dd { margin: 0; color: #202327; font-size: 14px; font-weight: 750; overflow-wrap: anywhere; }
.somdot-order-result__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.somdot-order-result__actions .button { min-width: 190px; padding: 15px 24px; border: 1px solid #202327; border-radius: 999px; background: #202327; color: #fff; font-weight: 750; text-decoration: none; }
.somdot-order-result__actions .button--secondary { background: #fff; color: #202327; }
.somdot-order-result__help { margin: 24px 0 0; color: #777c81; font-size: 13px; }
.somdot-order-result__help a { color: #202327; font-weight: 700; }
.somdot-checkout-page .woocommerce-order,
.somdot-checkout-page .woocommerce-order-pay,
.somdot-checkout-page [class*="wp-block-woocommerce-order-confirmation"] { padding: clamp(24px, 4vw, 46px); border-radius: 18px; background: #fff; box-shadow: 0 10px 34px rgb(45 39 31 / 8%); }
.somdot-checkout-page .woocommerce-thankyou-order-received { margin: 0 0 24px; color: #2f7650; font-size: 24px; font-weight: 800; }
.somdot-checkout-page .woocommerce-order-overview { display: grid; grid-template-columns: repeat(auto-fit, minmax(135px, 1fr)); gap: 0; margin: 0 0 30px !important; padding: 0 !important; border: 1px solid #e7e4de; border-radius: 12px; list-style: none; overflow: hidden; }
.somdot-checkout-page .woocommerce-order-overview li { margin: 0 !important; padding: 16px !important; border-right: 1px solid #e7e4de !important; color: #777c81; }
.somdot-checkout-page .woocommerce-order-overview strong { display: block; margin-top: 6px; color: #202327; }
.somdot-checkout-page .woocommerce-order-details,
.somdot-checkout-page .woocommerce-customer-details { margin-top: 30px; }
.somdot-order-tracking { margin: 30px 0 0; overflow: hidden; border: 1px solid #e3e1dc; border-radius: 16px; background: #fff; box-shadow: 0 8px 28px rgb(45 39 31 / 6%); }
.somdot-order-tracking header { padding: 20px 22px 16px; border-bottom: 1px solid #ebe8e3; }
.somdot-order-tracking header p { margin: 0 0 5px; color: #7a5b42; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.somdot-order-tracking h2 { margin: 0 !important; font-size: 22px; }
.somdot-order-tracking dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; }
.somdot-order-tracking dl > div { min-width: 0; padding: 20px 22px; }
.somdot-order-tracking dl > div + div { border-left: 1px solid #ebe8e3; }
.somdot-order-tracking dt { margin-bottom: 7px; color: #74797e; font-size: 12px; }
.somdot-order-tracking dd { margin: 0; color: #202327; font-weight: 750; overflow-wrap: anywhere; }
.somdot-order-tracking__number { display: inline-flex; align-items: center; gap: 7px; color: #7a5b42; text-decoration: underline; text-underline-offset: 3px; }
.somdot-order-tracking__number span { font-size: 13px; text-decoration: none; }
.somdot-order-tracking__number--plain { color: #202327; text-decoration: none; }
.somdot-order-tracking__hint { margin: 0; border-top: 1px solid #ebe8e3; padding: 13px 22px; background: #faf9f7; color: #74797e; font-size: 12px; }
@media (max-width: 640px) {
  .somdot-checkout-page .wc-block-checkout__actions_row { grid-template-columns: 86px minmax(0, 1fr); }
  .somdot-checkout-back { width: 86px; }
  .somdot-order-tracking dl { grid-template-columns: 1fr; }
  .somdot-order-tracking dl > div + div { border-top: 1px solid #ebe8e3; border-left: 0; }
}
.somdot-checkout-page .woocommerce-error { padding: 18px 22px 18px 48px; border: 0; border-radius: 12px; background: #f04f68; box-shadow: 0 12px 30px rgb(240 79 104 / 22%); color: #fff; }
.somdot-checkout-assurance { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; max-width: 1260px; margin-top: 42px; overflow: hidden; border: 1px solid #e2e0dc; border-radius: 14px; background: #e2e0dc; }
.somdot-checkout-assurance > div { display: grid; gap: 6px; padding: 22px 26px; background: #fff; }
.somdot-checkout-assurance strong { color: #202327; font-size: 14px; }
.somdot-checkout-assurance span { color: #74797e; font-size: 12px; line-height: 1.5; }

/* WooCommerce My Account */
.somdot-account-page { min-height: 680px; padding: 54px 0 84px; background: #f6f5f2; color: #202327; }
.somdot-account-page__hero { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.somdot-account-page__hero p { margin: 0 0 8px; color: #7a5b42; font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.somdot-account-page__hero h1 { margin: 0 0 8px; font-size: clamp(38px, 5vw, 60px); font-weight: 650; line-height: 1; letter-spacing: -.045em; }
.somdot-account-page__hero > div > span { color: #73787d; font-size: 13px; }
.somdot-account-page__hero > a { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; padding: 0 20px; border: 1px solid #202327; border-radius: 999px; color: #202327; font-size: 13px; font-weight: 750; text-decoration: none; }
.somdot-account-page__content { max-width: 1240px; }
.somdot-account-page .woocommerce { display: grid; grid-template-columns: 260px minmax(0, 1fr); align-items: start; gap: 26px; }
.somdot-account-page .woocommerce-notices-wrapper { grid-column: 1 / -1; }
.somdot-account-page .woocommerce-error,
.somdot-account-page .woocommerce-message,
.somdot-account-page .woocommerce-info { margin: 0 0 6px !important; padding: 16px 18px !important; border: 1px solid #e3dfd8; border-radius: 12px; background: #fff; box-shadow: 0 6px 20px rgb(45 39 31 / 5%); color: #555b61; list-style: none; }
.somdot-account-page .woocommerce-error { border-color: #f04f68; background: #f04f68; box-shadow: 0 12px 30px rgb(240 79 104 / 22%); color: #fff; }
.somdot-account-page .woocommerce-MyAccount-navigation { overflow: hidden; border: 1px solid #e4e1db; border-radius: 16px; background: #fff; box-shadow: 0 8px 28px rgb(45 39 31 / 6%); }
.somdot-account-page .woocommerce-MyAccount-navigation ul { margin: 0; padding: 10px; list-style: none; }
.somdot-account-page .woocommerce-MyAccount-navigation li { margin: 0; }
.somdot-account-page .woocommerce-MyAccount-navigation a { display: flex; min-height: 48px; align-items: center; padding: 0 15px; border-radius: 9px; color: #5f6469; font-size: 14px; font-weight: 650; text-decoration: none; transition: background .18s ease, color .18s ease; }
.somdot-account-page .woocommerce-MyAccount-navigation a:hover { background: #f6f4f0; color: #202327; }
.somdot-account-page .woocommerce-MyAccount-navigation .is-active a { background: #202327; color: #fff; }
.somdot-account-page .woocommerce-MyAccount-content,
.somdot-account-page .woocommerce-form-login,
.somdot-account-page .woocommerce-form-register { min-height: 360px; padding: 30px 34px; border: 1px solid #e4e1db; border-radius: 16px; background: #fff; box-shadow: 0 8px 28px rgb(45 39 31 / 6%); }
.somdot-account-page .woocommerce-MyAccount-content > :first-child { margin-top: 0; }
.somdot-account-page .woocommerce-MyAccount-content p { color: #5f6469; line-height: 1.65; }
.somdot-account-page .woocommerce-MyAccount-content a:not(.button) { color: #7a5b42; text-underline-offset: 3px; }
.somdot-view-order-summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 0 0 28px; }
.somdot-view-order-summary p { margin: 0; color: #202327 !important; font-weight: 650; }
.somdot-view-order-summary mark { padding: 0; background: transparent; color: inherit; font-weight: 800; }
.somdot-view-order-summary__back { flex: 0 0 auto; }
.somdot-account-page .woocommerce-customer-details { margin-top: 28px; }
.somdot-account-page .woocommerce-customer-details .woocommerce-columns--addresses { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.somdot-account-page .woocommerce-customer-details .woocommerce-column { display: flex; width: auto; float: none; flex-direction: column; }
.somdot-account-page .woocommerce-customer-details .woocommerce-column__title { margin: 0 0 12px; color: #202327; font-size: 20px; }
.somdot-account-page .woocommerce-customer-details address { margin: 0; padding: 22px; border: 1px solid #e6e3dd; border-radius: 12px; background: #fbfaf8; color: #4f555a; flex: 1; font-style: normal; line-height: 1.65; }
.somdot-account-page .woocommerce-customer-details address p { margin: 9px 0 0; }
.somdot-account-page .woocommerce-customer-details .somdot-order-address-fallback { margin: 0 0 10px; color: #777c81; font-size: 12px; font-weight: 700; }
.somdot-account-page .woocommerce-Addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.somdot-account-page .woocommerce-Address { width: auto !important; padding: 22px; border: 1px solid #e6e3dd; border-radius: 12px; background: #fbfaf8; }
.somdot-account-page .woocommerce-Address-title h2 { font-size: 19px; }
.somdot-account-page table.shop_table { width: 100%; border: 0; border-collapse: collapse; }
.somdot-account-page table.shop_table th { padding: 13px 12px; border-bottom: 1px solid #ddd9d2; color: #777c81; font-size: 11px; letter-spacing: .1em; text-align: left; text-transform: uppercase; }
.somdot-account-page table.shop_table td { padding: 16px 12px; border-bottom: 1px solid #ebe8e2; }
.somdot-account-page .button { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; padding: 0 18px !important; border: 0 !important; border-radius: 999px !important; background: #202327 !important; color: #fff !important; font-size: 13px !important; font-weight: 750 !important; text-decoration: none !important; }
.somdot-account-page form .form-row { margin: 0 0 17px; }
.somdot-account-page form label { display: block; margin-bottom: 6px; color: #555b61; font-size: 12px; font-weight: 650; }
.somdot-account-page form input.input-text,
.somdot-account-page form select { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid #d9d6d0; border-radius: 9px; background: #fff; color: #202327; }
.somdot-address-form__heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.somdot-address-form__heading h2 { margin: 0; color: #202327; font-size: 27px; letter-spacing: -.025em; }
.somdot-address-copy-button { display: inline-flex; min-height: 40px; flex: 0 0 auto; align-items: center; justify-content: center; padding: 0 16px; border: 1px solid #202327; border-radius: 999px; background: #fff; color: #202327; font: inherit; font-size: 12px; font-weight: 750; cursor: pointer; transition: background .18s ease, color .18s ease, box-shadow .18s ease; }
.somdot-address-copy-button:hover,
.somdot-address-copy-button:focus-visible { background: #202327; color: #fff; box-shadow: 0 6px 18px rgb(32 35 39 / 16%); outline: 0; }
.somdot-address-edit-form .woocommerce-address-fields__field-wrapper { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px 18px; overflow-anchor: none; }
.somdot-address-edit-form .woocommerce-address-fields__field-wrapper::before,
.somdot-address-edit-form .woocommerce-address-fields__field-wrapper::after { display: none; }
.somdot-address-edit-form .woocommerce-address-fields__field-wrapper .form-row { width: auto; float: none; margin: 0; }
.somdot-address-edit-form .woocommerce-address-fields__field-wrapper .form-row-wide { grid-column: 1 / -1; }
.somdot-address-edit-form .woocommerce-address-fields__field-wrapper [id$="_first_name_field"],
.somdot-address-edit-form .woocommerce-address-fields__field-wrapper [id$="_last_name_field"],
.somdot-address-edit-form .woocommerce-address-fields__field-wrapper [id$="_country_field"],
.somdot-address-edit-form .woocommerce-address-fields__field-wrapper [id$="_state_field"],
.somdot-address-edit-form .woocommerce-address-fields__field-wrapper [id$="_city_field"],
.somdot-address-edit-form .woocommerce-address-fields__field-wrapper [id$="_postcode_field"],
.somdot-address-edit-form .woocommerce-address-fields__field-wrapper [id$="_phone_field"],
.somdot-address-edit-form .woocommerce-address-fields__field-wrapper [id$="_email_field"] { grid-column: auto; }
.somdot-address-edit-form .woocommerce-address-fields__field-wrapper [id$="_address_1_field"],
.somdot-address-edit-form .woocommerce-address-fields__field-wrapper [id$="_address_2_field"] { grid-column: 1 / -1; }
.somdot-address-edit-form .woocommerce-input-wrapper > .select2-container { width: 100% !important; }
.somdot-address-edit-form .select2-container .select2-selection--single { min-height: 50px; border: 1px solid #d9d6d0; border-radius: 9px; }
.somdot-address-edit-form .select2-container .select2-selection--single .select2-selection__rendered { padding: 10px 40px 10px 14px; line-height: 28px; }
.somdot-address-edit-form .select2-container .select2-selection--single .select2-selection__arrow { top: 12px; right: 10px; }
.somdot-address-edit-form .select2-container--open .select2-selection--single,
.somdot-address-edit-form .select2-container--focus .select2-selection--single { border-color: #202327; box-shadow: 0 0 0 2px rgb(32 35 39 / 10%); }
.somdot-address-edit-form .select2-dropdown { overflow: hidden; border: 1px solid #d9d6d0; border-radius: 10px; background: #fff; box-shadow: 0 12px 28px rgb(32 35 39 / 14%); }
.somdot-address-edit-form .select2-search--dropdown { padding: 10px; }
.somdot-address-edit-form .select2-search--dropdown .select2-search__field { min-height: 40px; padding: 0 11px; border: 1px solid #d9d6d0; border-radius: 7px; }
.somdot-address-edit-form .select2-results__option { min-height: 38px; padding: 9px 12px; color: #202327; font-size: 13px; }
.somdot-address-edit-form .select2-container--default .select2-results__option--highlighted[aria-selected],
.somdot-address-edit-form .select2-container--default .select2-results__option--highlighted[data-selected] { background: #202327; color: #fff; }
body.woocommerce-edit-address .select2-container--open.select2-container--default .select2-results__option--highlighted[aria-selected],
body.woocommerce-edit-address .select2-container--open.select2-container--default .select2-results__option--highlighted[data-selected] { background-color: #202327; color: #fff; }
body.woocommerce-edit-address .select2-container--open.select2-container--default .select2-dropdown { border-color: #202327; box-shadow: 0 0 0 2px rgb(32 35 39 / 10%), 0 12px 28px rgb(32 35 39 / 14%); }
.somdot-address-form__save { display: flex; align-items: center; gap: 12px; margin: 22px 0 0 !important; }
.somdot-address-form__back { display: inline-flex !important; align-items: center; justify-content: center; min-height: 44px; border: 1px solid #202327 !important; background: #fff !important; color: #202327 !important; text-decoration: none !important; }
.somdot-address-form__back:hover,
.somdot-address-form__back:focus-visible { background: #f3f1ed !important; color: #202327 !important; }
.somdot-account-page fieldset { margin: 26px 0; padding: 22px; border: 1px solid #e5e1da; border-radius: 12px; }
.somdot-account-page legend { padding: 0 8px; font-weight: 750; }
.somdot-account-page .u-columns { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.somdot-account-page .u-column1,
.somdot-account-page .u-column2 { width: auto !important; }
.somdot-account-track-order > header { margin-bottom: 28px; }
.somdot-account-track-order > header p { margin: 0 0 7px; color: #7a5b42; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.somdot-account-track-order > header h2 { margin: 0 0 8px; color: #202327; font-size: 30px; letter-spacing: -.025em; }
.somdot-account-track-order > header span { color: #73787d; font-size: 13px; }
.somdot-account-track-order .track_order { max-width: 680px; margin: 0; padding: 24px; border: 1px solid #e6e3dd; border-radius: 12px; background: #fbfaf8; }
.somdot-account-track-order .track_order > p:first-child { margin-top: 0; }
.somdot-account-track-order .track_order .form-row { width: 100%; float: none; }
.somdot-account-shortcuts { margin-top: 30px; }
.somdot-account-shortcuts > header { margin-bottom: 16px; }
.somdot-account-shortcuts > header p { margin: 0 0 6px; color: #7a5b42; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.somdot-account-shortcuts > header h2 { margin: 0; color: #202327; font-size: clamp(24px, 3vw, 32px); letter-spacing: -.025em; }
.somdot-account-shortcuts__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.somdot-account-shortcuts__grid a { position: relative; display: grid; min-height: 132px; align-content: start; gap: 7px; padding: 20px 44px 20px 20px; border: 1px solid #e5e1da; border-radius: 13px; background: #fbfaf8; color: #202327 !important; text-decoration: none !important; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.somdot-account-shortcuts__grid a:hover { border-color: #c8c1b7; box-shadow: 0 10px 22px rgb(45 39 31 / 7%); transform: translateY(-2px); }
.somdot-account-shortcuts__grid strong { font-size: 16px; }
.somdot-account-shortcuts__grid span { color: #686d72; font-size: 13px; line-height: 1.55; }
.somdot-account-shortcuts__grid i { position: absolute; top: 20px; right: 20px; color: #7a5b42; font-size: 18px; font-style: normal; }

@media (max-width: 800px) {
  .somdot-account-page__hero { display: grid; align-items: start; }
  .somdot-account-page__hero > a { width: max-content; }
  .somdot-account-page .woocommerce { grid-template-columns: 1fr; }
  .somdot-account-page .woocommerce-MyAccount-navigation ul { display: flex; overflow-x: auto; gap: 4px; }
  .somdot-account-page .woocommerce-MyAccount-navigation li { flex: 0 0 auto; }
  .somdot-account-page .woocommerce-MyAccount-navigation a { padding: 0 14px; }
  .somdot-account-page .woocommerce-Addresses,
  .somdot-account-page .woocommerce-customer-details .woocommerce-columns--addresses,
  .somdot-account-page .u-columns { grid-template-columns: 1fr; }
  .somdot-view-order-summary { align-items: flex-start; }
  .somdot-account-shortcuts__grid { grid-template-columns: 1fr; }
  .somdot-account-shortcuts__grid a { min-height: 0; }
  .somdot-address-form__heading { align-items: flex-start; }
  .somdot-address-form__heading h2 { font-size: 24px; }
  .somdot-address-edit-form .woocommerce-address-fields__field-wrapper { grid-template-columns: 1fr; }
  .somdot-address-edit-form .woocommerce-address-fields__field-wrapper .form-row { grid-column: 1; }
}

@media (max-width: 520px) {
  .somdot-address-form__heading { display: grid; }
  .somdot-address-copy-button { width: 100%; }
}

@media (max-width: 900px) {
  .somdot-cart-page .wc-block-components-sidebar-layout { display: block; }
  .somdot-cart-page .wc-block-components-main,
  .somdot-cart-page .wc-block-components-sidebar { width: 100%; }
  .somdot-cart-page .wc-block-cart__sidebar { position: static; margin-top: 24px; }
  .somdot-checkout-page__header { display: grid; }
  .somdot-checkout-page .wc-block-checkout { display: block; }
  .somdot-checkout-page .wc-block-components-main,
  .somdot-checkout-page .wc-block-components-sidebar { width: 100%; }
  .somdot-checkout-page .wc-block-components-sidebar { position: static; margin-top: 24px; }
  .somdot-order-result__summary { grid-template-columns: 1fr; }
  .somdot-order-result__summary > div { border-right: 0; }
}

.journal-article { padding: 54px 0 96px; background: #fff; color: #202327; }
.journal-article__header { max-width: 980px; text-align: center; }
.journal-article__back { color: #555b61; }
.journal-article__back:hover { color: #111; }
.journal-article__eyebrow,
.journal-related__heading p { margin: 0 0 14px; color: #7a5b42; font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.journal-article__header h1 { max-width: 900px; margin: 0 auto 22px; font-size: clamp(42px, 6vw, 76px); font-weight: 600; letter-spacing: -.045em; line-height: 1.02; }
.journal-article__meta { display: flex; justify-content: center; align-items: center; gap: 11px; color: #72777d; font-size: 14px; }
.journal-article__hero { max-width: 1320px; margin-top: 54px; }
.journal-article__hero img { display: block; width: 100%; max-height: 720px; border-radius: 20px; object-fit: cover; }
.journal-article__layout { display: grid; grid-template-columns: minmax(0, 760px) 280px; justify-content: center; gap: 90px; padding-top: 68px; }
.journal-article__content { color: #33383d; font-family: Georgia, 'Times New Roman', serif; font-size: 19px; line-height: 1.82; }
.journal-article__content > :first-child { margin-top: 0; }
.journal-article__content h2,
.journal-article__content h3 { margin: 2.1em 0 .65em; color: #202327; font-family: Arial, sans-serif; letter-spacing: -.025em; line-height: 1.18; }
.journal-article__content h2 { font-size: 34px; }
.journal-article__content h3 { font-size: 25px; }
.journal-article__content p { margin: 0 0 1.45em; }
.journal-article__content a { color: #7a4b2e; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.journal-article__content img { height: auto; margin: 24px 0; border-radius: 14px; }
.journal-article__content blockquote { margin: 42px 0; padding: 8px 0 8px 30px; border-left: 3px solid #b99070; color: #555b61; font-size: 24px; font-style: italic; line-height: 1.55; }
.journal-article__content ul,
.journal-article__content ol { margin: 0 0 1.5em; padding-left: 1.4em; }
.journal-article__aside { align-self: start; position: sticky; top: 130px; padding: 30px; border-radius: 16px; background: #f5f2ed; }
.journal-article__aside p { margin: 0 0 12px; color: #7a5b42; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.journal-article__aside h2 { margin: 0 0 24px; font-size: 24px; line-height: 1.22; }
.journal-article__aside a { color: #202327; font-size: 14px; font-weight: 800; text-decoration: none; }
.journal-article__aside-links { display: grid; gap: 13px; }
.journal-article__navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1130px; margin-top: 76px; padding-top: 32px; border-top: 1px solid #dedede; }
.journal-article__navigation > div:last-child { text-align: right; }
.journal-article__navigation a { color: #202327; font-size: 18px; font-weight: 700; line-height: 1.3; text-decoration: none; }
.journal-article__navigation span { display: block; margin-bottom: 7px; color: #858a8f; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.journal-related { margin-top: 92px; padding-top: 68px; border-top: 1px solid #e4e4e4; }
.journal-related__heading { margin-bottom: 30px; text-align: center; }
.journal-related__heading h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.035em; }
.journal-related__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.journal-related__card { color: #202327; text-decoration: none; }
.journal-related__image { display: grid; min-height: 230px; margin-bottom: 18px; place-items: center; overflow: hidden; border-radius: 14px; background: #ece8e2; }
.journal-related__image img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .25s ease; }
.journal-related__card:hover img { transform: scale(1.025); }
.journal-related__image span { color: #7a5b42; font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.journal-related__card time { color: #858a8f; font-size: 12px; }
.journal-related__card h3 { margin: 8px 0 0; font-size: 21px; line-height: 1.25; }

@media (max-width: 900px) {
  .journal-featured { grid-template-columns: 1fr; }
  .journal-featured__image { min-height: 420px; }
  .journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journal-article__layout { grid-template-columns: minmax(0, 720px); gap: 42px; }
  .journal-article__aside { position: static; }
  .journal-related__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .somdot-cart-page { padding: 38px 0 64px; }
  .somdot-cart-page__header { display: block; margin-bottom: 28px; }
  .somdot-cart-page__header h1 { font-size: 44px; }
  .somdot-cart-steps { gap: 14px; margin-top: 26px; }
  .somdot-cart-steps li { gap: 5px; font-size: 10px; }
  .somdot-cart-steps span { width: 23px; height: 23px; }
  .somdot-cart-page .wc-block-cart-items__header { display: none; }
  .somdot-cart-page .wc-block-cart-items { border-spacing: 0 12px !important; }
  .somdot-cart-page .wc-block-cart-items__row { display: grid !important; grid-template-columns: 98px minmax(0, 1fr); padding: 16px; }
  .somdot-cart-page .wc-block-cart-items__row td { padding: 0 !important; }
  .somdot-cart-page .wc-block-cart-item__image { width: 98px !important; grid-row: 1 / span 2; }
  .somdot-cart-page .wc-block-cart-item__image img { width: 82px !important; height: 104px !important; }
  .somdot-cart-page .wc-block-components-product-name { font-size: 14px !important; }
  .somdot-cart-page .wc-block-cart-item__total { display: none; }
  .somdot-cart-page .wc-block-cart__sidebar { padding: 24px 20px !important; }
  .somdot-cart-assurance { grid-template-columns: 1fr; }
  .somdot-not-found { min-height: 0; padding: 54px 0 70px; }
  .somdot-not-found__code { margin-bottom: -22px; font-size: 145px; }
  .somdot-not-found h1 { font-size: 40px; }
  .somdot-not-found__intro { font-size: 15px; }
  .somdot-not-found__search { grid-template-columns: 1fr; border-radius: 18px; }
  .somdot-not-found__search input { text-align: center; }
  .somdot-not-found__search button { border-radius: 13px; }
  .somdot-not-found__actions { flex-direction: column; gap: 18px; }
  .somdot-not-found__links { margin-top: 48px; }
  .journal-index { padding: 46px 0 70px; }
  .journal-index__hero { margin-bottom: 42px; }
  .journal-index__hero h1 { font-size: 48px; }
  .journal-index__hero > div { font-size: 16px; }
  .journal-featured { margin-bottom: 50px; border-radius: 14px; }
  .journal-featured__image { min-height: 290px; }
  .journal-featured__copy { padding: 30px 24px 34px; }
  .journal-featured__copy h2 { font-size: 34px; }
  .journal-grid { grid-template-columns: 1fr; gap: 44px; }
  .journal-card__image { min-height: 250px; }
  .journal-article { padding: 30px 0 64px; }
  .journal-article__header h1 { font-size: 39px; }
  .journal-article__meta { flex-wrap: wrap; font-size: 12px; }
  .journal-article__hero { margin-top: 34px; padding: 0; }
  .journal-article__hero img { min-height: 280px; border-radius: 0; }
  .journal-article__layout { padding-top: 42px; }
  .journal-article__content { font-size: 17px; line-height: 1.75; }
  .journal-article__content h2 { font-size: 28px; }
  .journal-article__content h3 { font-size: 22px; }
  .journal-article__navigation { grid-template-columns: 1fr; margin-top: 52px; }
  .journal-article__navigation > div:last-child { text-align: left; }
  .journal-related { margin-top: 64px; padding-top: 48px; }
  .journal-related__grid { grid-template-columns: 1fr; }
}

.home-room {
  padding: 48px 0 56px;
  background: #fff;
}

.home-room__layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  width: 100%;
  max-width: 100%;
  min-height: 520px;
  border-top: 1px solid #dfe1e3;
  border-bottom: 1px solid #dfe1e3;
  overflow: hidden;
}

.home-room__copy {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  padding: 52px 42px 52px 0;
}

.home-room__eyebrow {
  margin: 0 0 14px;
  color: #71757a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-room__copy h2 {
  max-width: 480px;
  margin: 0;
  color: #111820;
  font-size: clamp(32px, 3.4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
}

.home-room__text {
  max-width: 460px;
  margin: 20px 0 28px;
  color: #30363b;
  font-size: 17px;
  line-height: 1.5;
}

.home-room__buttons {
  display: flex;
  max-width: 330px;
  flex-wrap: wrap;
  gap: 14px 16px;
}

.home-room__button {
  display: inline-flex;
  min-width: 116px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 22px;
  background: #e7e9eb;
  color: #39434c;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.home-room__button:hover,
.home-room__button:focus-visible,
.home-room__button.is-active {
  background: #1f252b;
  color: #fff;
  transform: translateY(-1px);
}

.home-room__visual {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  height: min(42vw, 560px);
  min-height: 460px;
  overflow: hidden;
  background: #f1f2f2;
}

.home-room__image-link,
.home-room__image-link img {
  display: block;
  width: 100%;
  height: 100%;
}

.home-room__image-link {
  position: relative;
}

.home-room__image-link img {
  object-fit: cover;
  transition: opacity .22s ease, transform .4s ease;
}

.home-room__image-link:hover img { transform: scale(1.015); }

.home-room__image-cta {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(31, 37, 43, 0.86);
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform .18s ease, background .18s ease;
}

.home-room__image-link:hover .home-room__image-cta,
.home-room__image-link:focus-visible .home-room__image-cta {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 1100px) {
  .home-room__layout { grid-template-columns: 1fr; }
  .home-room__copy {
    padding: 34px 28px;
  }
  .home-room__copy h2,
  .home-room__text { max-width: 680px; }
  .home-room__visual {
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .home-room { padding: 30px 0 42px; }
  .home-room__copy { padding: 30px 0; }
  .home-room__copy h2 { font-size: 34px; }
  .home-room__buttons { gap: 10px; }
  .home-room__button { min-width: 108px; }
  .home-room__visual { aspect-ratio: 4 / 3; }
}

@media (max-width: 980px) {
  .home-blog__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .home-blog { padding-top: 30px; padding-bottom: 40px; }
  .home-blog__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }
  .home-blog__grid::-webkit-scrollbar { display: none; }
  .home-blog__card { flex: 0 0 calc((100% - 12px) / 2); min-width: 0; scroll-snap-align: none; }
  .home-blog__card:nth-child(odd) { scroll-snap-align: start; scroll-snap-stop: always; }
  .home-blog__card:last-child { scroll-snap-align: end; scroll-snap-stop: always; }
  .home-blog__card h3 { min-height: 0; padding: 11px 12px 13px; font-size: 13px; }
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--aosom-line);
  background: #fff;
}

.newsletter-strip {
  margin-top: 20px;
  background: #fff;
  border-top: 1px solid var(--aosom-line);
  border-bottom: 1px solid var(--aosom-line);
  padding: 18px 0;
}

.newsletter-strip__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 20px;
  align-items: center;
}

.site-footer {
  background: #f7f8fa;
  color: #20242a;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.35fr 1.25fr 1.05fr 1fr;
  gap: 54px;
  padding: 38px 0 42px;
}

.site-footer__primary-column {
  display: contents;
}

.site-footer a {
  color: #20242a;
  text-decoration: none;
}

.site-footer h3 {
  margin: 0 0 13px;
  color: #111820;
  font-size: 16px;
  font-weight: 600;
}

.site-footer__brand-column,
.site-footer__links-column,
.site-footer__service-column,
.site-footer__payment-column {
  min-width: 0;
}

.site-footer__brand-column { grid-column: 1; }
.site-footer__links-column { grid-column: 2; }
.site-footer__service-column { grid-column: 3; }
.site-footer__payment-column { grid-column: 4; }

/* Keep the desktop footer modules on one explicit row. The primary wrapper
   uses display: contents, so explicit row placement prevents the links
   column from being auto-placed into a stretched second row. */
@media (min-width: 1321px) {
  .site-footer__brand-column,
  .site-footer__links-column,
  .site-footer__service-column,
  .site-footer__payment-column {
    grid-row: 1;
    align-self: start;
  }
}

.site-footer__brand {
  display: inline-flex;
  width: 162px;
  min-height: 40px;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  background: transparent;
}

.site-footer__brand img {
  display: block;
  width: 156px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

.site-footer__social {
  display: flex;
  gap: 10px;
  margin: 18px 0 24px;
}

.site-footer__social a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: #20242a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.site-footer__social a:hover {
  border-color: #b8bec7;
  box-shadow: 0 8px 18px rgba(17, 24, 32, 0.08);
  transform: translateY(-1px);
}

.site-footer__social img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__newsletter h2 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
}

.site-footer__newsletter-form {
  width: min(100%, 380px);
}

.site-footer__newsletter-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  border: 1px solid #8e949b;
  background: #fff;
}
.somdot-subscribe-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.site-footer__newsletter-status {
  min-height: 18px;
  margin: 7px 0 0;
  color: #4f565e;
  font-size: 12px;
  line-height: 1.45;
}

.site-footer__newsletter-status[data-state="success"] { color: #237a3b; }
.site-footer__newsletter-status[data-state="error"] { color: #f04f68; }

.site-footer__newsletter-form input,
.site-footer__newsletter-form button {
  min-width: 0;
  height: 48px;
  border: 0;
  padding: 0 12px;
}

.site-footer__newsletter-form input {
  background: #fff;
  color: #333;
}

.site-footer__newsletter-form button {
  background: #30343a;
  color: #fff;
  cursor: pointer;
}

.site-footer__trustpilot {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.site-footer__trustpilot strong {
  font-size: 22px;
}

.site-footer__trustpilot strong span {
  color: #00b67a;
}

.site-footer__trust-stars {
  display: flex;
  gap: 3px;
}

.site-footer__trust-stars i {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  background: #00b67a;
  color: #fff;
  font-size: 23px;
  font-style: normal;
}

.site-footer__trustpilot small {
  font-size: 13px;
}

.site-footer__links-column,
.site-footer__service-column {
  display: grid;
  align-content: start;
  gap: 24px;
}

.site-footer__links-column nav,
.site-footer__service-column nav,
.site-footer__service-column > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer__links-column h3,
.site-footer__service-column h3 {
  margin-bottom: 2px;
}

.site-footer__links-column a,
.site-footer__service-column a {
  color: #3f4852;
  font-size: 14px;
  line-height: 1.35;
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__badges b {
  display: inline-flex;
  min-width: 46px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e3e8;
  border-radius: 4px;
  background: #fff;
  color: #20242a;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.site-footer__badges--shipping b {
  min-width: 54px;
}

.badge-fedex {
  gap: 0;
}

.badge-fedex span:first-child {
  color: #4d148c;
}

.badge-fedex span:last-child {
  color: #ff6600;
}

.badge-ups {
  background: #351c15 !important;
  color: #ffb500 !important;
}

.badge-usps {
  color: #254b8f !important;
}

.site-footer__badges--payment {
  max-width: 300px;
  margin-bottom: 0;
}

.site-footer__payment-column {
  display: grid;
  align-content: start;
  gap: 24px;
}

.site-footer__logo-group {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.site-footer__payment-logos,
.site-footer__shipping-logos {
  display: grid;
  width: auto;
  min-width: 0;
  max-width: 100%;
  justify-self: stretch;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}

.site-footer__method-card {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 64px;
  height: 38px;
  place-items: center;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #e3e5e8;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(17, 24, 32, 0.04);
}

.site-footer__payment-logos .site-footer__method-card {
  border: 0;
}

.site-footer__shipping-logos .site-footer__method-card {
  border: 0;
}

.site-footer__payment-logos img,
.site-footer__shipping-logos img,
.site-footer__method-logo {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.site-footer__payment-logos img,
.site-footer__payment-logos .site-footer__method-logo {
  object-fit: fill !important;
  transform: none !important;
}

.site-footer__payment-logos .site-footer__method-card--paypal .site-footer__method-logo {
  object-fit: contain !important;
}

.site-footer__payment-logos .site-footer__method-card--apple-pay .site-footer__method-logo,
.site-footer__payment-logos .site-footer__method-card--google-pay .site-footer__method-logo {
  transform: scale(1.22) !important;
}

/* These official marks include extra whitespace in their source canvases. */
.site-footer__payment-logos .site-footer__method-card--mastercard .site-footer__method-logo {
  transform: scale(1.12) !important;
}

.site-footer__payment-logos .site-footer__method-card--discover .site-footer__method-logo {
  transform: scale(1.1) !important;
}

.site-footer__payment-logos .site-footer__method-card--klarna .site-footer__method-logo {
  transform: scale(1.12) !important;
}

.site-footer__shipping-logos img,
.site-footer__shipping-logos .site-footer__method-logo {
  object-fit: contain !important;
  padding: 0 !important;
  transform: scale(.84);
}

.woocommerce-product-gallery__trigger,
.product-gallery--woocommerce .woocommerce-product-gallery__trigger {
  display: none !important;
}

.badge-visa { color: #1a4fb5 !important; }
.badge-mastercard { color: #e85442 !important; }
.badge-amex { color: #2d72c9 !important; }
.badge-discover { color: #5e6670 !important; }
.badge-jcb { color: #1267b1 !important; }
.badge-paypal { color: #193b8f !important; }

.site-footer__app-download {
  display: flex;
  gap: 14px;
  align-items: center;
}

.site-footer__qr {
  width: 94px;
  height: 94px;
  border: 8px solid #fff;
  outline: 1px solid #333;
  object-fit: cover;
}

.site-footer__app-buttons {
  display: grid;
  gap: 12px;
}

.site-footer__app-buttons a {
  display: grid;
  width: 168px;
  min-height: 40px;
  place-items: center;
  border: 1px solid #d8dce2;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 12px;
  font-weight: 600;
}

.site-footer__bottom {
  border-top: 1px solid #e1e4e8;
  padding: 14px 0;
  color: #66707a;
  font-size: 12px;
}

.site-footer__bottom-inner,
.site-footer__bottom-links {
  display: flex;
  align-items: center;
}

.site-footer__bottom-inner {
  justify-content: space-between;
  gap: 24px;
}

.site-footer__bottom-links {
  justify-content: flex-end;
  gap: 24px;
}

.site-footer__bottom-links a {
  color: inherit;
  text-decoration: none;
}

.site-footer__bottom-links a:hover {
  color: #202327;
  text-decoration: none;
}

@media (max-width: 1320px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 34px 36px;
    padding: 34px 0 36px;
  }

  .site-footer__primary-column {
    display: grid;
    min-width: 0;
    align-content: start;
    gap: 34px;
  }

  .site-footer__primary-column .site-footer__brand-column,
  .site-footer__primary-column .site-footer__service-column {
    grid-column: auto;
  }

  .site-footer__links-column {
    grid-column: auto;
  }

  .site-footer__payment-column {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    padding-top: 4px;
  }
}

@media (max-width: 640px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 30px 0;
  }

  .site-footer__primary-column {
    display: contents;
  }

  .site-footer__brand-column { grid-row: 1; }
  .site-footer__links-column { grid-row: 2; }
  .site-footer__service-column { grid-row: 3; }

  .site-footer__payment-column {
    grid-column: auto;
    grid-row: 4;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 0;
  }

  .site-footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-footer__bottom-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 18px;
  }

  .site-footer__newsletter-form {
    width: 100%;
  }

  .site-footer__app-download {
    align-items: flex-start;
  }
}

@media (max-width: 980px) {
  .site-header__main,
  .hero__grid,
  .hero__main,
  .collection-layout,
  .product-main,
  .page-layout,
  .cart-layout,
  .account-grid,
  .newsletter-strip__inner {
    grid-template-columns: 1fr;
  }

  .header-actions {
    grid-template-columns: 1fr 1fr;
  }

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

  .promo-grid,
  .blog-grid,
  .inspiration-grid,
  .value-grid,
  .stats-grid,
  .promise-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-thumbs {
    display: flex;
    overflow-x: auto;
  }

  .product-thumb {
    flex: 0 0 66px;
  }
}

@media (max-width: 640px) {
  .page-width {
    width: min(100% - 20px, var(--page-width));
  }

  .top-bar__inner,
  .section-heading,
  .collection-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 12px;
  }

  .site-search {
    grid-template-columns: 1fr 82px;
  }

  .category-grid,
  .product-grid,
  .promo-grid,
  .blog-grid,
  .inspiration-grid,
  .value-grid,
  .stats-grid,
  .promise-list {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero__copy {
    padding: 24px;
  }

  .quantity-row,
  .cart-line {
    grid-template-columns: 1fr;
  }
}

.collection-hero--compact {
  padding: 16px 0 0;
  border: 0;
}

.category-overview {
  padding: 0 0 38px;
  background: #fff;
}

.category-overview__layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
}

.category-overview__menu {
  display: grid;
  align-content: start;
  gap: 0;
}

.category-overview__menu h2,
.category-overview__content h1 {
  margin: 0 0 18px;
  font-size: 21px;
  font-weight: 600;
}

.category-overview__menu strong,
.category-overview__menu a {
  padding: 7px 8px;
  color: #454545;
  font-size: 15px;
}

.category-overview__menu strong {
  color: #222;
  font-weight: 600;
}

.category-overview__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px 18px;
}

.category-overview__tile {
  display: grid;
  gap: 10px;
  text-align: center;
  font-size: 15px;
}

.category-overview__tile img,
.category-overview__tile .image-placeholder {
  width: 100%;
  height: 190px;
  min-height: 0;
  border-radius: 5px;
  background: #fff;
  object-fit: contain;
  padding: 8px;
}

.collection-results {
  border-top: 1px solid var(--aosom-line);
  padding-top: 24px;
}

.collection-layout {
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 18px;
}

.collection-products {
  min-width: 0;
}

.collection-toolbar {
  min-height: 66px;
  margin-bottom: 18px;
  border: 0;
  border-bottom: 1px solid var(--aosom-line);
  padding: 0;
}

.collection-toolbar p {
  font-size: 15px;
}

.collection-toolbar form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.collection-toolbar .sort-select {
  width: 240px;
  height: 44px;
}

.filter-panel {
  border: 0;
}

.filter-group {
  padding: 16px 0;
}

.filter-group h3 {
  font-size: 17px;
}

.filter-option {
  padding: 7px 0;
  font-size: 14px;
}

.filter-option input {
  width: 17px;
  height: 17px;
  margin: 0 8px 0 0;
  vertical-align: -3px;
}

.collection-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.collection-product-grid .product-card__media {
  aspect-ratio: 1.18 / 1;
}

.collection-product-grid .product-card__media img {
  padding: 18px;
}

.collection-product-grid .product-card__title {
  min-height: 44px;
}

.collection-product-grid .product-card {
  border: 1px solid #e4e5e7;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 3px 10px rgb(0 0 0 / 5%);
  transition: box-shadow .18s ease, transform .18s ease;
}

.collection-product-grid .product-card:hover,
.collection-product-grid .product-card:focus-within {
  box-shadow: 0 8px 18px rgb(0 0 0 / 10%);
  transform: translateY(-2px);
}

@media (max-width: 1280px) and (min-width: 981px) {
  .collection-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card--preview .product-card__compare {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  z-index: 2;
  background: transparent;
  color: #555;
  font-size: 20px;
}

.product-breadcrumb-wrap {
  padding-top: 18px;
}

.somdot-product-single {
  display: block;
}

.product-main {
  grid-template-columns: minmax(0, 760px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 8px 0 28px;
}

.product-gallery,
.product-info {
  align-self: start;
  border: 0;
}

.product-gallery {
  position: relative;
  display: block;
  padding: 0;
}

.product-gallery--woocommerce .woocommerce-product-gallery {
  width: 100% !important;
  margin: 0;
}

.product-gallery--woocommerce .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.product-gallery--woocommerce .woocommerce-product-gallery__image {
  aspect-ratio: 1;
  border: 0;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.product-gallery--woocommerce .woocommerce-product-gallery__image a {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.product-gallery--woocommerce .woocommerce-product-gallery__image img:not(.zoomImg) {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.product-gallery--woocommerce .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.product-gallery--woocommerce .flex-control-thumbs li {
  width: auto !important;
  float: none !important;
}

.product-gallery--woocommerce .flex-control-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid #e5e8ec;
  border-radius: 6px;
  background: #fff;
  object-fit: cover;
  padding: 0;
  opacity: 1;
}

.product-gallery--woocommerce .flex-control-thumbs img.flex-active,
.product-gallery--woocommerce .flex-control-thumbs img:hover {
  border-color: #20242a;
  box-shadow: 0 6px 16px rgba(17, 24, 32, 0.09);
}

.product-gallery--woocommerce .flex-control-thumbs li.is-selected-variation-image img {
  border-color: #20242a;
  box-shadow: 0 0 0 1px #20242a;
}

.product-gallery-navigation {
  display: none;
}

@media (min-width: 981px) {
  .product-gallery--woocommerce .flex-control-thumbs li {
    aspect-ratio: 1;
    overflow: hidden;
  }

  .product-gallery--woocommerce .flex-control-thumbs img {
    display: block;
    width: 100%;
    height: 100% !important;
    aspect-ratio: 1;
    object-fit: contain;
  }

  .product-gallery-navigation:not([hidden]) {
    position: absolute;
    z-index: 6;
    top: var(--somdot-product-gallery-navigation-top, 50%);
    right: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .product-gallery-navigation__button {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(32, 36, 42, .22);
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 22px rgba(17, 24, 32, .14);
    color: #20242a;
    cursor: pointer;
    pointer-events: auto;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
  }

  .product-gallery-navigation__button:hover,
  .product-gallery-navigation__button:focus-visible {
    border-color: #20242a;
    background: #fff;
    box-shadow: 0 10px 26px rgba(17, 24, 32, .2);
    transform: scale(1.04);
  }

  .product-gallery-navigation__button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }
}

.product-thumbs {
  gap: 12px;
}

.product-thumb {
  aspect-ratio: 1;
  border-radius: 5px;
  padding: 6px;
}

.product-thumb.is-active {
  border-color: #202327;
  box-shadow: 0 0 0 1px #202327;
}

.product-featured {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1;
  height: auto;
  border: 1px solid var(--aosom-line);
  border-radius: 5px;
  background: #fff;
  overflow: visible;
}

.product-featured img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.product-zoom-preview {
  position: absolute;
  top: 0;
  left: calc(100% + 16px);
  display: none;
  width: min(360px, 42vw);
  aspect-ratio: 1;
  border: 1px solid #dfe3e7;
  border-radius: 7px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 230%;
  box-shadow: 0 12px 28px rgb(0 0 0 / 16%);
  pointer-events: none;
  z-index: 20;
}

.product-zoom-preview.is-visible {
  display: block;
}

.product-info {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 0 0 0 8px;
}

.product-info h1 {
  padding-right: 58px;
  margin: 0;
  color: #171b20;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
}

.product-kicker {
  margin: 0;
  color: #69717b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-share {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 8;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.product-share button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #dfe3e7;
  border-radius: 50%;
  background: #fff;
  color: #20242a;
  cursor: pointer;
  font-size: 20px;
}
.product-share button.is-added { border-color: #d99000; color: #d99000; background: #fff9ec; }
.product-share button.is-copied { border-color: #2f7650; color: #2f7650; }
.somdot-share-dialog { width: min(620px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 34px; border: 0; border-radius: 20px; background: #fff; color: #202327; box-shadow: 0 28px 80px rgb(20 22 24 / 32%); }
.somdot-share-dialog::backdrop { background: rgb(20 22 24 / 58%); backdrop-filter: blur(3px); }
.somdot-share-dialog__close { position: absolute; top: 18px; right: 18px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid #ddd9d2; border-radius: 50%; background: #fff; color: #202327; font-size: 25px; cursor: pointer; }
.somdot-share-dialog__eyebrow { margin: 0 0 8px; color: #7a5b42; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.somdot-share-dialog h2 { margin: 0 45px 22px 0; font-size: 28px; letter-spacing: -.03em; }
.somdot-share-dialog__product { display: grid; grid-template-columns: 104px minmax(0,1fr); gap: 18px; align-items: center; padding: 14px; border-radius: 14px; background: #f7f6f3; }
.somdot-share-dialog__product img { width: 104px; height: 104px; border-radius: 10px; background: #fff; object-fit: contain; }
.somdot-share-dialog__product div { display: grid; gap: 7px; }
.somdot-share-dialog__product strong { font-size: 15px; line-height: 1.35; }
.somdot-share-dialog__product span { font-weight: 750; }
.somdot-share-dialog__product p { margin: 0; color: #73787d; font-size: 12px; line-height: 1.45; }
.somdot-share-dialog__networks { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; margin-top: 22px; }
.somdot-share-dialog__networks a,.somdot-share-dialog__networks button { display: flex; min-height: 54px; align-items: center; justify-content: center; gap: 9px; padding: 8px; border: 1px solid #dfddd8; border-radius: 12px; background: #fff; color: #202327; font: inherit; font-size: 13px; font-weight: 700; text-decoration: none; cursor: pointer; }
.somdot-share-dialog__networks img { display: block; width: 24px; height: 24px; flex: 0 0 24px; object-fit: contain; }
.somdot-share-dialog__networks a:hover,.somdot-share-dialog__networks button:hover { border-color: #7a5b42; background: #faf8f5; }
.somdot-share-dialog__networks b { font: inherit; }
.somdot-share-dialog__status { min-height: 20px; margin: 14px 0 0; color: #2f7650; font-size: 12px; text-align: center; }
@media(max-width:560px){.somdot-share-dialog{padding:26px 20px}.somdot-share-dialog__product{grid-template-columns:80px minmax(0,1fr)}.somdot-share-dialog__product img{width:80px;height:80px}.somdot-share-dialog__networks{grid-template-columns:repeat(2,1fr)}}
.somdot-account-list header { margin-bottom: 28px; }
.somdot-account-list header p { margin: 0 0 7px; color: #7a5b42; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.somdot-account-list header h2 { margin: 0 0 8px; font-size: 32px; }
.somdot-account-list header span { color: #73787d; }
.somdot-account-list__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.somdot-account-list__item { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 16px; border: 1px solid #e5e3de; border-radius: 16px; background: #fff; }
.somdot-account-list__image { display: grid; place-items: center; border-radius: 12px; background: #fff; overflow: hidden; }
.somdot-account-list__image img { width: 100%; height: 130px; object-fit: contain; }
.somdot-account-list__item > div { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
.somdot-account-list__name { color: #202327; font-weight: 700; line-height: 1.35; text-decoration: none; }
.somdot-account-list__item button { margin-top: auto; padding: 0; border: 0; background: none; color: #8a3933; font-weight: 700; text-decoration: underline; cursor: pointer; }
.somdot-account-list__empty { padding: 50px 24px; border-radius: 16px; background: #f7f5f1; text-align: center; }
.somdot-account-list__empty .button { display: inline-flex; align-items: center; justify-content: center; margin-top: 12px; padding: 13px 22px; border-radius: 999px; background: #202327; color: #fff; line-height: 1.2; text-decoration: none; }
@media (max-width: 720px) { .somdot-account-list__grid { grid-template-columns: 1fr; } .somdot-account-list__item { grid-template-columns: 100px 1fr; } .somdot-account-list__image img { height: 100px; } }

.product-rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #69717b;
  font-size: 14px;
}

.product-rating-line span {
  color: #f5a400;
  letter-spacing: 1px;
}

.product-rating-line strong {
  color: #20242a;
}

.product-rating-line a {
  color: #20242a;
  text-decoration: underline;
}

.product-variation-swatches {
  display: grid;
  gap: 10px;
  margin: 2px 0;
}

.product-variation-swatches__header {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-variation-swatches__header strong {
  color: #20242a;
  font-size: 15px;
}

.product-variation-swatches__header span {
  color: #69717b;
  font-size: 14px;
}

.product-variation-swatches__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-variation-swatch {
  display: grid;
  width: 82px;
  gap: 7px;
  border: 1px solid #dfe3e7;
  border-radius: 7px;
  background: #fff;
  padding: 7px;
  color: #20242a;
  cursor: pointer;
  text-align: center;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.product-variation-swatch:hover,
.product-variation-swatch.is-active {
  border-color: #20242a;
  box-shadow: 0 8px 18px rgba(17, 24, 32, .1);
}

.product-variation-swatch.is-active {
  transform: translateY(-1px);
}

.product-variation-swatch img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-variation-swatch span {
  display: block;
  overflow: hidden;
  color: #3f4852;
  font-size: 11px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-variation-options {
  display: grid;
  gap: 14px;
  margin: 2px 0;
}

.product-variation-option-group {
  display: grid;
  gap: 8px;
}

.product-variation-option-group > strong {
  color: #20242a;
  font-size: 15px;
}

.product-variation-option-group__values {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.product-variation-option-group__values button {
  min-width: 76px;
  min-height: 44px;
  border: 1px solid #dfe3e7;
  border-radius: 7px;
  background: #fff;
  color: #20242a;
  padding: 9px 14px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.product-variation-option-group__values button:hover,
.product-variation-option-group__values button:focus-visible,
.product-variation-option-group__values button.is-active {
  border-color: #20242a;
  box-shadow: 0 0 0 1px #20242a;
}

.product-variation-option-group__values button.is-active {
  transform: translateY(-1px);
}

.product-shipped-by {
  margin: 0 0 10px;
  color: #777;
  font-size: 14px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 2px 0;
}

.product-price-row .product-price {
  color: #222;
  font-size: 42px;
  font-weight: 600;
}

.single-product .product-price-row .product-price > .price {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.product-summary-points {
  display: grid;
  gap: 8px;
  margin: 4px 0;
  color: #4b535d;
  font-size: 15px;
  line-height: 1.55;
}

.product-summary-points p {
  position: relative;
  margin: 0;
  padding-left: 18px;
}

.product-summary-points p::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #20242a;
  content: "";
}

.product-identity {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin: -2px 0 4px;
  color: #69717b;
  font-size: 12px;
  line-height: 1.5;
}

.product-identity span {
  min-width: 0;
}

.product-identity strong {
  margin-right: 5px;
  color: #30363d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.product-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-service-grid a {
  position: relative;
  display: grid;
  gap: 5px;
  border: 1px solid #e6e9ee;
  border-radius: 7px;
  background: #fff;
  color: inherit;
  padding: 13px 30px 13px 13px;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.product-service-grid a::after {
  position: absolute;
  top: 50%;
  right: 12px;
  color: #7b838c;
  content: "→";
  transform: translateY(-50%);
}

.product-service-grid a:hover,
.product-service-grid a:focus-visible {
  border-color: #bfc6cd;
  box-shadow: 0 8px 18px rgba(17, 24, 32, .07);
  transform: translateY(-1px);
}

.product-service-grid strong {
  color: #20242a;
  font-size: 14px;
}

.product-service-grid span {
  color: #65707b;
  font-size: 12px;
  line-height: 1.45;
}

.product-purchase-panel {
  border: 1px solid #e1e5ea;
  border-radius: 8px;
  background: #fafbfc;
  padding: 14px;
  box-shadow: 0 8px 22px rgba(17, 24, 32, 0.05);
}

.product-purchase-panel form.cart,
.product-purchase-panel form.variations_form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.product-purchase-panel form.cart:not(.variations_form) {
  gap: 8px;
}

.product-purchase-panel table.variations {
  margin: 0;
}

.product-purchase-panel table.variations th,
.product-purchase-panel table.variations td {
  display: block;
  padding: 0 0 8px;
  text-align: left;
}

.product-purchase-panel table.variations tr.is-hidden-by-swatches {
  display: none;
}

.product-purchase-panel table.variations label {
  color: #20242a;
  font-size: 14px;
  font-weight: 700;
}

.product-purchase-panel table.variations select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #dfe3e7;
  border-radius: 5px;
  background: #fff;
  padding: 0 11px;
}

.product-purchase-panel .single_variation_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.product-purchase-panel .woocommerce-variation,
.product-purchase-panel .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.product-purchase-panel .woocommerce-variation {
  display: contents;
}

.product-purchase-panel .stock {
  display: none !important;
  width: auto;
  flex: 0 0 auto;
  align-items: center;
  white-space: nowrap;
  margin: 0;
  border: 1px solid #dbe3dc;
  border-radius: 999px;
  background: #fff;
  color: #2f6f3e;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.product-purchase-panel a.added_to_cart.wc-forward {
  display: none !important;
}

.product-purchase-panel .stock.out-of-stock {
  display: inline-flex !important;
  border-color: #f04f68;
  background: #fff5f7;
  color: #f04f68;
}

.product-purchase-panel .somdot-out-of-stock-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.product-purchase-panel .somdot-out-of-stock-actions .stock.out-of-stock {
  margin: 0;
}

.product-purchase-panel .woocommerce-variation-add-to-cart-disabled .single_add_to_cart_button,
.product-purchase-panel .woocommerce-variation-add-to-cart-disabled .quantity {
  display: none !important;
}

.product-purchase-panel .woocommerce-variation-price {
  display: none;
}

.product-purchase-panel .quantity {
  display: inline-flex;
  align-items: center;
}

.product-purchase-panel .qty {
  width: 74px;
  height: 46px;
  border: 1px solid #d7dde4;
  border-radius: 7px;
  background: #fff;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 600;
}

.product-purchase-panel .single_add_to_cart_button {
  min-height: 48px;
  min-width: 140px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  background: #20242a;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.product-purchase-panel .somdot-my-list-button {
  min-height: 48px;
  min-width: 130px;
  padding: 0 16px;
  border: 1px solid #20242a;
  border-radius: 7px;
  background: #fff;
  color: #20242a;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.product-purchase-panel .single_add_to_cart_button:hover,
.product-purchase-panel .single_add_to_cart_button:focus {
  background: #111418;
  box-shadow: 0 10px 18px rgba(17, 24, 32, 0.18);
  transform: translateY(-1px);
}

.product-purchase-panel .somdot-my-list-button:hover,
.product-purchase-panel .somdot-my-list-button:focus,
.product-purchase-panel .somdot-my-list-button.is-added {
  background: #f3f5f7;
  box-shadow: 0 10px 18px rgba(17, 24, 32, 0.1);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .single-product .product-main { gap: 14px; padding-top: 0; }
  .single-product .product-info { gap: 11px; padding: 0 4px; }
  .single-product .product-info h1 { padding: 0; font-size: 20px; font-weight: 650; line-height: 1.3; }
  .single-product .product-rating-line { order: -2; gap: 6px; font-size: 12px; }
  .single-product .product-rating-line .star-rating { font-size: 13px; }
  .single-product .product-identity,
  .single-product .product-summary-points { display: none; }
  .single-product .product-share { top: 12px; left: 12px; gap: 7px; }
  .single-product .product-share button { width: 32px; height: 32px; font-size: 16px; box-shadow: 0 3px 10px rgba(17,24,32,.1); }
  .single-product .product-gallery--woocommerce .woocommerce-product-gallery__image { border-radius: 10px; touch-action: pan-y; }
  .single-product .product-gallery--woocommerce .flex-control-thumbs { display: flex; min-height: 24px; align-items: center; justify-content: center; gap: 10px; margin: 8px 0 2px; }
  .single-product .product-gallery--woocommerce .flex-control-thumbs li { position: relative; display: block; width: 9px !important; height: 9px; flex: 0 0 9px; border-radius: 50%; background: #aeb4ba; cursor: pointer; overflow: visible; }
  .single-product .product-gallery--woocommerce .flex-control-thumbs li[hidden] { display: none; }
  .single-product .product-gallery--woocommerce .flex-control-thumbs li:has(img.flex-active),
  .single-product .product-gallery--woocommerce .flex-control-thumbs li.is-selected-variation-image { background: #20242a; box-shadow: 0 0 0 2px #fff,0 0 0 3px #20242a; }
  .single-product .product-gallery--woocommerce .flex-control-thumbs img { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; opacity: 0; cursor: pointer; }
  .single-product .product-gallery--woocommerce .flex-control-thumbs li.is-video { width: 0 !important; height: 0; flex-basis: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 10px solid #727980; border-radius: 0; background: transparent; }
  .single-product .product-gallery--woocommerce .flex-control-thumbs li.is-video:has(img.flex-active) { border-left-color: #20242a; box-shadow: none; }
  .single-product .product-variation-swatches { order: 0; gap: 7px; }
  .single-product .product-variation-swatches__header strong { font-size: 13px; }
  .single-product .product-variation-swatches__header span { font-size: 12px; }
  .single-product .product-variation-swatches__grid { flex-wrap: nowrap; gap: 7px; padding-bottom: 3px; overflow-x: auto; scrollbar-width: none; }
  .single-product .product-variation-swatches__grid::-webkit-scrollbar { display: none; }
  .single-product .product-variation-swatch { width: 68px; flex: 0 0 68px; gap: 4px; padding: 5px; }
  .single-product .product-price-row .product-price { font-size: 32px; }
  .product-service-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 6px;
  }

  .product-service-grid a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    padding: 7px 6px;
    background: #edf5ff;
    text-align: center;
  }
  .product-service-grid a:nth-child(2) { background: #fff3e5; }
  .product-service-grid a:nth-child(3) { background: #f1edff; }
  .product-service-grid a::after,
  .product-service-grid span { display: none; }
  .product-service-grid strong { font-size: 10px; line-height: 1.25; }

  .product-purchase-panel {
    padding: 12px;
  }

  .product-purchase-panel .woocommerce-variation-add-to-cart {
    width: 100%;
  }

  .product-purchase-panel .single_add_to_cart_button {
    flex: 1 1 190px;
  }

  .product-purchase-panel .somdot-my-list-button {
    width: 100%;
    flex: 1 1 100%;
  }

  .product-purchase-panel .somdot-out-of-stock-actions .somdot-my-list-button {
    width: auto;
    flex: 1 1 180px;
  }
}

.product-purchase-panel .reset_variations {
  color: #69717b;
  font-size: 13px;
  text-decoration: underline;
}

.product-price-row s {
  color: #888;
  font-size: 14px;
}

.product-save {
  color: #458b2f;
  font-size: 13px;
}

.product-coupon {
  margin: 14px 0 12px;
  border-radius: 4px;
  background: #3b3b3b;
  color: #fff;
  padding: 9px 12px;
  font-size: 14px;
}

.product-delivery {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--aosom-line);
  font-size: 14px;
}

.product-delivery strong {
  grid-column: 1;
  font-weight: 500;
}

.product-delivery a {
  grid-column: 2;
  grid-row: 2;
  text-decoration: underline;
}

.product-faq {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 1px solid #e5e7ea;
  border-radius: 7px;
  background: #fff;
  padding: 14px;
}

.product-faq h2 {
  margin: 0 0 2px;
  font-size: 17px;
}

.product-faq details {
  border-top: 1px solid #edf0f2;
  padding-top: 9px;
}

.product-faq details:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.product-faq summary {
  cursor: pointer;
  font-weight: 600;
}

.product-faq p {
  margin: 8px 0 0;
  color: #5f6670;
  font-size: 13px;
  line-height: 1.55;
}

.product-variant-field {
  position: relative;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin: 10px 0 0;
}

.product-variant-field label {
  grid-column: 1 / -1;
}

.product-variant-field select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--aosom-line);
  background: #fff;
  padding: 0 10px;
}

.product-variant-field span {
  padding-left: 12px;
  white-space: nowrap;
}

.product-purchase-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.product-purchase-row .quantity-input {
  width: 94px;
  height: 48px;
}

.wishlist-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--aosom-line);
  border-radius: 4px;
  background: #fff;
  font-size: 30px;
}

.product-buy-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.button--dark {
  border-color: #2c2c2c;
  background: #2c2c2c;
  color: #fff;
}

.product-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
}

.product-trust-row div {
  display: grid;
  min-height: 88px;
  place-items: center;
  align-content: center;
  gap: 5px;
  background: #fafafa;
  text-align: center;
  font-size: 12px;
}

.product-trust-row strong {
  font-size: 26px;
  font-weight: 400;
}

.product-details-section {
  padding: 34px 0 26px;
}

.product-rich-details {
  border: 1px solid #e4e6e8;
  border-radius: 7px;
  background: #fff;
}

.product-rich-details__heading {
  margin: 0;
  padding: 19px 22px;
  font-size: 20px;
  font-weight: 700;
}

.product-rich-layout {
  display: grid;
  gap: 22px;
  border-top: 1px solid #edf0f2;
  padding: 24px;
}

.product-story {
  display: grid;
  gap: 10px;
}

.product-story__eyebrow {
  margin: 0;
  color: #6b737d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-story h2,
.product-reviews__header h2 {
  margin: 0;
  color: #202327;
  font-size: 28px;
  line-height: 1.2;
}

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

.product-description {
  max-width: 100%;
  overflow: hidden;
  color: #3a3f45;
  line-height: 1.65;
}

.product-description * {
  box-sizing: border-box !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.product-spec-layout {
  display: grid;
  gap: 18px;
}

.product-spec-table {
  position: relative;
  z-index: 1;
  display: flow-root;
  min-height: 66px;
  border: 1px solid #e8eaed;
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}

.product-spec-table__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 16px 18px;
  color: #202327;
}

.product-spec-table__heading {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.product-spec-table__toggle {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.product-spec-table__toggle::after {
  display: block;
  width: 0;
  height: 0;
  margin: 0;
  border-right: 6px solid transparent;
  border-bottom: 0;
  border-left: 6px solid transparent;
  border-top: 8px solid currentColor;
  content: '';
  transition: transform .2s ease;
}

.product-spec-table__content {
  border-top: 1px solid #eef0f2;
}

.product-spec-table.is-open .product-spec-table__toggle::after {
  transform: rotate(180deg);
}

.product-spec-table__content { display: none; border-top: 0; }
.product-spec-table.is-open .product-spec-table__content { display: block; border-top: 1px solid #eef0f2; }

.product-spec-table dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  gap: 0;
  margin: 0;
  padding: 0 18px 16px;
}

.product-spec-table dl div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 14px;
  border-top: 1px solid #eef0f2;
  padding: 11px 0;
}

.product-spec-table dl div:nth-child(-n + 2) {
  border-top: 0;
}

.product-spec-table dt {
  color: #69717b;
}

.product-spec-table dd {
  margin: 0;
  color: #202327;
}

.product-detail-media {
  display: grid;
  gap: 16px;
  width: 100%;
}

.product-detail-media:empty {
  display: none;
}

.product-detail-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  padding: 0;
}

.product-reviews-section {
  margin-top: 56px;
  padding: 0 0 34px;
}

.somdot-back-to-top {
  position: fixed;
  z-index: 90;
  right: 28px;
  bottom: 94px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 50%;
  background: #202327;
  color: #fff;
  box-shadow: 0 12px 30px rgb(20 22 24 / 22%);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
}

.somdot-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.somdot-back-to-top:hover,
.somdot-back-to-top:focus-visible { background: #35393d; }

.somdot-back-to-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .product-reviews-section { margin-top: 44px; }
  .somdot-back-to-top { right: 18px; bottom: 82px; width: 52px; height: 52px; }
}

.somdot-support-chat {
  position: fixed;
  z-index: 100;
  right: 28px;
  bottom: 28px;
}

.somdot-support-chat__launcher {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f04f68;
  color: #fff;
  box-shadow: 0 14px 34px rgb(34 25 28 / 28%);
  cursor: pointer;
}

.somdot-support-chat__launcher:hover,
.somdot-support-chat__launcher:focus-visible { background: #d93c56; }
.somdot-support-chat__launcher svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.somdot-support-chat__unread { position: absolute; top: -5px; right: -5px; display: grid; min-width: 21px; height: 21px; box-sizing: border-box; place-items: center; border: 2px solid #fff; border-radius: 999px; padding: 0 4px; background: #202327; color: #fff; font-size: 11px; font-weight: 700; line-height: 1; box-shadow: 0 3px 10px rgb(0 0 0 / 22%); }
.somdot-support-chat__unread[hidden] { display: none; }
.somdot-support-chat__notice { position: absolute; right: 66px; bottom: 7px; width: max-content; max-width: min(230px, calc(100vw - 120px)); border: 1px solid #eadfe1; border-radius: 999px; padding: 10px 14px; background: #fff; color: #202327; font-size: 13px; font-weight: 700; line-height: 1.2; box-shadow: 0 10px 28px rgb(34 25 28 / 18%); pointer-events: none; }
.somdot-support-chat__notice::after { position: absolute; top: 50%; right: -5px; width: 9px; height: 9px; border-top: 1px solid #eadfe1; border-right: 1px solid #eadfe1; background: #fff; content: ''; transform: translateY(-50%) rotate(45deg); }
.somdot-support-chat__notice[hidden] { display: none; }
.somdot-support-chat__launcher.has-unread { animation: somdot-chat-attention 1.8s ease-in-out 2; }
@keyframes somdot-chat-attention { 0%, 100% { transform: scale(1); } 35% { transform: scale(1.08); } 65% { transform: scale(.98); } }
@media (prefers-reduced-motion: reduce) { .somdot-support-chat__launcher.has-unread { animation: none; } }

.somdot-support-chat__panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: flex;
  width: min(380px, calc(100vw - 36px));
  height: min(590px, calc(100vh - 120px));
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5e0dc;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 70px rgb(27 23 24 / 24%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.98);
  transform-origin: bottom right;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.somdot-support-chat.is-open .somdot-support-chat__panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.somdot-support-chat__header { display: flex; align-items: center; justify-content: space-between; min-height: 82px; padding: 18px 20px; background: #202327; color: #fff; }
.somdot-support-chat__header > div { display: grid; grid-template-columns: 10px 1fr; column-gap: 9px; align-items: center; }
.somdot-support-chat__header strong { font-size: 18px; }
.somdot-support-chat__header small { grid-column: 2; color: rgb(255 255 255 / 70%); font-size: 12px; }
.somdot-support-chat__header button { border: 0; background: transparent; color: #fff; font-size: 28px; cursor: pointer; }
.somdot-support-chat__status { width: 9px; height: 9px; border-radius: 50%; background: #aeb4b8; }
.somdot-support-chat__status.is-online { background: #4bd27a; box-shadow: 0 0 0 4px rgb(75 210 122 / 16%); }
.somdot-support-chat__identity { overflow-y: auto; padding: 28px 24px 22px; }
.somdot-support-chat__identity h2 { margin: 0 0 8px; font-size: 25px; }
.somdot-support-chat__identity > p { margin: 0 0 22px; color: #62666a; line-height: 1.55; }
.somdot-support-chat__identity form { display: grid; gap: 8px; }
.somdot-support-chat__identity label { margin-top: 7px; font-weight: 600; }
.somdot-support-chat__identity input { width: 100%; min-height: 48px; border: 1px solid #d8d5d2; border-radius: 10px; padding: 0 13px; font: inherit; }
.somdot-support-chat__identity input:focus { border-color: #202327; outline: 2px solid rgb(32 35 39 / 10%); }
.somdot-support-chat__identity form button { min-height: 50px; margin-top: 12px; border: 0; border-radius: 999px; background: #202327; color: #fff; font-weight: 700; cursor: pointer; }
.somdot-support-chat__identity > small { display: block; margin-top: 18px; color: #777; line-height: 1.45; }
.somdot-support-chat__identity a { color: inherit; text-decoration: underline; }
.somdot-support-chat__error { margin: 6px 0 0; color: #f04f68; font-weight: 600; }
.somdot-support-chat__conversation { display: flex; min-height: 0; flex: 1; flex-direction: column; }
.somdot-support-chat__conversation[hidden],
.somdot-support-chat__identity[hidden] { display: none; }
.somdot-support-chat__messages { display: flex; min-height: 0; flex: 1; flex-direction: column; gap: 12px; overflow-y: auto; padding: 20px; background: #faf9f8; }
.somdot-support-chat__message { max-width: 82%; border: 1px solid #d8e2e7; border-radius: 16px 16px 16px 4px; padding: 10px 13px; background: #edf3f6; color: #2f3d44; box-shadow: 0 2px 10px rgb(30 30 30 / 5%); line-height: 1.45; white-space: pre-wrap; }
.somdot-support-chat__message--customer { align-self: flex-start; }
.somdot-support-chat__message--support { align-self: flex-end; border-color: #dedbd7; border-radius: 16px 16px 4px; background: #f1f0ee; color: #3f4347; }
.somdot-support-chat__message--system { align-self: center; max-width: 92%; border: 0; padding: 8px 12px; background: transparent; box-shadow: none; color: #74797e; font-size: 12px; text-align: center; }
.somdot-support-chat__message time { display: block; margin-top: 5px; color: #8a8d90; font-size: 10px; }
.somdot-support-chat__message--support time { color: #85898d; }
.somdot-support-chat__composer { display: grid; grid-template-columns: 1fr 44px; gap: 8px; border-top: 1px solid #ebe7e4; padding: 12px; background: #fff; }
.somdot-support-chat__composer textarea { max-height: 100px; resize: none; border: 1px solid #dcd8d5; border-radius: 18px; padding: 11px 13px; font: inherit; }
.somdot-support-chat__composer button { display: grid; width: 44px; height: 44px; place-items: center; align-self: end; border: 0; border-radius: 50%; background: #f04f68; color: #fff; cursor: pointer; }
.somdot-support-chat__composer svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 640px) {
  .somdot-support-chat { right: 18px; bottom: 18px; }
  .somdot-support-chat__launcher { width: 52px; height: 52px; }
  .somdot-support-chat__panel { bottom: 64px; height: min(610px, calc(100vh - 96px)); }
}

.product-reviews__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #e7e9ec;
  padding-bottom: 16px;
}

.product-reviews__score {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.product-reviews__score strong {
  color: #202327;
  font-size: 34px;
  line-height: 1;
}

.product-reviews__score span,
.product-review__stars {
  color: #f5a400;
  letter-spacing: 1px;
}

.product-reviews__score small {
  color: #69717b;
}

.product-reviews__list {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.product-review {
  display: grid;
  gap: 8px;
  border: 1px solid #e7e9ec;
  border-radius: 7px;
  background: #fff;
  padding: 18px;
}

.product-review[hidden] {
  display: none;
}

.product-review__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #69717b;
  font-size: 13px;
}

.product-review__meta strong {
  color: #202327;
  font-size: 15px;
}

.product-review h3 {
  margin: 0;
  font-size: 18px;
}

.product-review p {
  margin: 0;
  color: #4d535b;
  line-height: 1.6;
}

.product-reviews__pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 16px;
}

.product-reviews__pagination button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #dfe3e7;
  border-radius: 50%;
  background: #fff;
  color: #202327;
  cursor: pointer;
  font-size: 24px;
}

.product-reviews__pagination button:disabled {
  opacity: .38;
  cursor: default;
}

.product-reviews__pagination span {
  min-width: 48px;
  color: #69717b;
  text-align: center;
  font-size: 14px;
}

.related-products .section-heading--rail a {
  text-decoration: underline;
}

.template-cart .site-header {
  display: none;
}

.cart-checkout-header {
  background: #353535;
  color: #fff;
}

.cart-checkout-header__inner {
  display: grid;
  min-height: 74px;
  grid-template-columns: 160px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
}

.cart-checkout-brand {
  font-size: 40px;
  font-weight: 600;
}

.cart-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #aaa;
}

.cart-progress strong {
  color: #fff;
}

.cart-secure {
  color: #ddd;
}

.cart-benefits {
  border-bottom: 1px solid var(--aosom-line);
  background: #fff;
}

.cart-benefits .page-width {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
}

.cart-main {
  min-height: 470px;
  padding: 44px 0 24px;
}

.empty-cart {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 75px 0;
}

.empty-cart__icon {
  display: grid;
  width: 140px;
  height: 110px;
  place-items: center;
  border-radius: 50%;
  background: #f5f5f5;
  color: #777;
  font-size: 68px;
  filter: grayscale(1);
}

.empty-cart h1 {
  margin: 0;
  color: #777;
  font-size: 25px;
  font-weight: 500;
}

.empty-cart .button {
  min-width: 230px;
}

.cart-recommendations {
  padding-top: 0;
}

.cart-recommendations .section-heading--rail h2::before {
  width: 4px;
  height: 24px;
  border-radius: 0;
  box-shadow: none;
}

.cart-recommendations .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-page-shell,
.account-page,
.login-page {
  min-height: 720px;
  background: #f7f7f7;
  padding: 28px 0 46px;
}

.content-page-shell .page-layout {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 30px;
  padding: 0;
}

.page-side {
  border: 0;
  border-radius: 7px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-side details {
  border-bottom: 1px solid var(--aosom-line);
}

.page-side summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 18px;
  font-size: 19px;
  font-weight: 500;
}

.page-side summary::after {
  content: "+";
  float: right;
}

.page-side details[open] summary::after {
  content: "-";
}

.page-side a {
  border: 0;
  margin: 0 18px;
  padding: 11px 12px;
}

.page-side a.is-active {
  background: #f1f1f1;
}

.page-content {
  border: 0;
  border-radius: 7px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  padding: 32px;
}

.page-content > h1 {
  margin: 0 0 28px;
  font-size: 26px;
}

.about-banner {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 5px;
  background: #ddd;
}

.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.about-banner > div {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  color: #fff;
  text-align: center;
}

.about-banner strong {
  font-size: 28px;
}

.about-banner span {
  font-size: 50px;
  font-weight: 600;
}

.page-content > h2 {
  margin: 28px 0 12px;
  font-size: 19px;
}

.about-facts {
  margin-top: 30px;
  border-radius: 4px;
  background: #2b2b2b;
  color: #fff;
  padding: 26px 30px;
}

.about-facts h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 20px;
}

.about-facts .stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.about-facts .stat-card {
  border: 0;
  padding: 10px;
}

.about-facts .stat-card strong {
  color: #fff;
  font-size: 22px;
}

.about-brand-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.about-brand-row span {
  display: grid;
  min-height: 72px;
  place-items: center;
  background: #f5f5f5;
  font-weight: 600;
}

.account-page .breadcrumb,
.login-page .breadcrumb {
  margin-bottom: 24px;
}

.account-dashboard {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
}

.account-sidebar,
.account-panel,
.login-shell {
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

.account-sidebar {
  display: grid;
  align-content: start;
  padding: 22px;
}

.account-sidebar h2 {
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--aosom-line);
}

.account-sidebar h3 {
  margin: 16px 0 8px;
  font-size: 17px;
}

.account-sidebar a {
  padding: 7px 10px;
}

.account-dashboard__main {
  display: grid;
  gap: 24px;
  align-content: start;
}

.account-panel {
  padding: 24px;
}

.account-panel h1,
.account-panel h2 {
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--aosom-line);
  font-size: 24px;
}

.account-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.account-metrics div {
  display: grid;
  min-height: 130px;
  place-items: center;
  align-content: center;
  gap: 10px;
}

.account-metrics strong {
  font-size: 38px;
  font-weight: 500;
}

.order-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-status-grid a {
  display: grid;
  min-height: 150px;
  place-items: center;
  align-content: center;
  gap: 14px;
}

.order-status-grid strong {
  font-size: 36px;
  font-weight: 400;
}

.login-shell {
  display: grid;
  width: min(940px, 100%);
  grid-template-columns: 1fr 1fr;
  margin: 45px auto;
  overflow: hidden;
}

.login-panel,
.login-benefits {
  padding: 44px;
}

.login-panel h1,
.login-benefits h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.login-panel form {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.login-panel .button {
  width: 100%;
}

.login-options {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
}

.login-benefits {
  background: #efefef;
}

.login-benefits li {
  margin: 12px 0;
}

.search-results-page {
  padding: 24px 0 50px;
}

.search-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--aosom-line);
}

.search-title-row h1 {
  margin: 0;
  font-size: 25px;
}

.search-page-form {
  display: grid;
  width: min(460px, 100%);
  grid-template-columns: 1fr 48px;
  border: 1px solid #aaa;
  border-radius: 5px;
  overflow: hidden;
}

.search-page-form input,
.search-page-form button {
  height: 44px;
  border: 0;
  background: #fff;
  padding: 0 12px;
}

.search-page-form button {
  font-size: 24px;
}

@media (max-width: 980px) {
  .category-overview__layout,
  .content-page-shell .page-layout,
  .account-dashboard,
  .product-main,
  .login-shell {
    grid-template-columns: 1fr;
  }

  .category-overview__menu {
    display: none;
  }

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

  .collection-layout,
  .search-layout {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .collection-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-gallery {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .product-zoom-preview {
    display: none !important;
  }

  .cart-checkout-header__inner {
    grid-template-columns: 130px 1fr;
  }

  .cart-secure,
  .cart-checkout-header__inner > a:last-child {
    display: none;
  }
}

@media (max-width: 640px) {
  .category-overview__grid {
    grid-template-columns: 1fr 1fr;
  }

  .collection-layout,
  .search-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    display: none;
  }

  .collection-toolbar {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }

  .collection-toolbar .sort-select {
    width: 150px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-thumbs {
    order: 2;
  }

  .product-featured {
    height: 380px;
  }

  .product-rich-layout {
    padding: 18px;
  }

  .product-story h2,
  .product-reviews__header h2 {
    font-size: 24px;
  }

  .product-spec-table dl {
    grid-template-columns: 1fr;
  }

  .product-spec-table dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .product-spec-table dl div:nth-child(2) {
    border-top: 1px solid #eef0f2;
  }

  .product-reviews__header {
    align-items: start;
    flex-direction: column;
  }

  .product-reviews__score {
    justify-items: start;
  }

  .product-buy-buttons,
  .product-trust-row,
  .about-facts .stats-grid,
  .about-brand-row,
  .account-metrics,
  .order-status-grid,
  .cart-recommendations .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid,
  .collection-product-grid,
  .cart-recommendations .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card,
  .product-card__content,
  .product-card__title {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .cart-progress {
    display: none;
  }

  .cart-benefits .page-width {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 0;
    font-size: 12px;
  }

  .about-banner span {
    font-size: 36px;
  }

  .page-content,
  .login-panel,
  .login-benefits {
    padding: 24px;
  }

  .search-title-row {
    align-items: stretch;
    flex-direction: column;
  }
}

:root {
  --aosom-red: #202327;
  --aosom-red-dark: #111820;
  --aosom-text: #282828;
  --aosom-muted: #666666;
  --aosom-line: #e9e9e9;
  --aosom-bg: #ffffff;
  --page-width: 1594px;
  --radius: 6px;
}

body {
  background: #fff;
  font-family: Urbanist, system-ui, sans-serif;
  font-size: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-header__primary {
  background: #282828;
  color: #fff;
}

.site-header__main {
  min-height: 88px;
  grid-template-columns: 174px minmax(420px, 1fr) max-content;
  gap: 28px;
}

.site-header__brand {
  color: #fff;
  width: 148px;
  height: 40px;
  justify-content: flex-start;
}

.site-header__brand img {
  display: block;
  width: 138px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.site-search {
  grid-template-columns: 1fr 58px;
  height: 50px;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
}

.site-search input {
  padding: 0 16px;
  color: #333;
  font-size: 15px;
}

.site-search button {
  background: #fff;
  color: #282828;
  display: grid;
  place-items: center;
}

.site-search button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-actions {
  display: flex;
  min-width: max-content;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 30px;
}

.header-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 52px;
  place-items: center;
  color: #fff;
  line-height: 1;
}

.header-icon__svg {
  display: block;
  width: 27px;
  height: 27px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-icon:hover .header-icon__svg {
  stroke-width: 1.9;
}

.header-icon b {
  position: absolute;
  top: 0;
  right: -2px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--aosom-red);
  font-size: 11px;
}

.country-selector__form {
  margin: 0;
}

.country-selector {
  position: relative;
}

.country-selector__toggle {
  width: 54px;
  cursor: pointer;
  list-style: none;
}

.country-selector__toggle::-webkit-details-marker {
  display: none;
}

.country-selector__current-flag {
  width: 28px;
  height: 20px;
  border-radius: 2px;
  object-fit: cover;
}

.country-selector__toggle small {
  margin-top: -8px;
  font-size: 11px;
  font-weight: 600;
}

.country-selector__menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 10px);
  right: 0;
  width: 250px;
  padding: 14px 0 8px;
  border: 1px solid var(--aosom-line);
  border-radius: 6px;
  background: #fff;
  color: #282828;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.country-selector__menu::before {
  position: absolute;
  top: -7px;
  right: 20px;
  width: 14px;
  height: 14px;
  background: #fff;
  content: "";
  transform: rotate(45deg);
}

.country-selector__menu > strong {
  display: block;
  padding: 0 16px 10px;
  font-size: 16px;
}

.country-selector__list {
  display: grid;
  max-height: 390px;
  overflow-y: auto;
}

.country-selector__list button {
  display: grid;
  min-height: 43px;
  grid-template-columns: 28px minmax(0, 1fr) 18px;
  gap: 8px;
  align-items: center;
  border: 0;
  background: #fff;
  padding: 8px 16px;
  color: #333;
  text-align: left;
  cursor: pointer;
}

.country-selector__list button:hover,
.country-selector__list button:focus-visible,
.country-selector__list button.is-current {
  background: #f5f5f5;
}

.country-selector__flag {
  width: 24px;
  height: 18px;
  border-radius: 1px;
  object-fit: cover;
}

.country-selector__check {
  color: var(--aosom-red);
  font-weight: 700;
}

.department-nav {
  position: relative;
  min-height: 56px;
  border: 0;
  overflow: visible;
}

.department-nav__inner {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 1.45vw, 28px);
}

.department-nav__dropdown {
  position: relative;
  flex: 0 0 auto;
}

.department-nav__dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.department-nav__dropdown > a span {
  font-size: 18px;
  line-height: 1;
}

.department-nav__submenu {
  position: absolute;
  z-index: 40;
  top: calc(100% - 2px);
  left: 0;
  display: none;
  width: 230px;
  padding: 8px 0;
  border: 1px solid var(--aosom-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.department-nav__dropdown:hover .department-nav__submenu,
.department-nav__dropdown:focus-within .department-nav__submenu {
  display: grid;
}

.department-nav .department-nav__submenu a,
.department-nav .department-nav__submenu a:first-child {
  min-width: 0;
  padding: 11px 16px;
  border: 0;
  background: #fff;
  color: #282828;
  font-size: 15px;
  font-weight: 500;
}

.department-nav .department-nav__submenu a:hover,
.department-nav .department-nav__submenu a:focus-visible {
  background: #f6f6f6;
  color: var(--aosom-red);
}

.category-overview__grid--rooms {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-overview__room {
  overflow: hidden;
  border: 1px solid var(--aosom-line);
  border-radius: 6px;
  background: #fff;
  text-align: left;
}

.category-overview__room.is-active {
  border-color: var(--aosom-red);
}

.category-overview__room img,
.category-overview__room .image-placeholder {
  height: 240px;
  border-radius: 0;
}

.category-overview__room-copy {
  display: grid;
  gap: 3px;
  padding: 14px 16px 16px;
}

.category-overview__room-copy strong {
  font-size: 18px;
  font-weight: 600;
}

.category-overview__room-copy small {
  color: var(--aosom-muted);
  font-size: 14px;
}

.department-nav a,
.department-nav a:first-child {
  min-width: 0;
  padding: 17px 0;
  border: 0;
  background: transparent;
  color: #282828;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.department-nav a.department-nav__inspiration,
.department-nav a.department-nav__inspiration:first-child {
  position: relative;
  margin-left: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f04f68;
  color: #fff;
  font-weight: 650;
  transition: background-color .2s ease, transform .2s ease;
}

.department-nav a.department-nav__inspiration::before {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -18px;
  width: 1px;
  background: #c9c6c1;
  content: '';
}

.department-nav a.department-nav__inspiration:hover,
.department-nav a.department-nav__inspiration:focus-visible,
.department-nav a.department-nav__inspiration[aria-current="page"] {
  background: #d93652;
  color: #fff;
  transform: translateY(-1px);
}

.algorithm-collection__hero {
  padding: clamp(48px, 7vw, 92px) 0 clamp(36px, 5vw, 64px);
  background: #f6f3ee;
}

.algorithm-collection__hero p {
  margin: 0 0 12px;
  color: #8a5b3d;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.algorithm-collection__hero h1 {
  margin: 0;
  color: #202327;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -.045em;
  line-height: 1;
}

.algorithm-collection__hero span {
  display: block;
  max-width: 680px;
  margin-top: 18px;
  color: #696e73;
  font-size: 16px;
  line-height: 1.65;
}

.algorithm-collection {
  padding-top: 40px;
  padding-bottom: 64px;
}

.algorithm-collection__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ddd9d2;
}

.algorithm-collection__toolbar strong { font-size: 24px; }
.algorithm-collection__toolbar span { color: #74797e; font-size: 14px; }
.algorithm-collection__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.algorithm-collection__grid .product-card {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
  align-self: start;
  overflow: hidden;
}

.algorithm-collection__grid .product-card__media {
  flex: 0 0 auto;
}

.algorithm-collection__grid .product-card__content {
  flex: 0 0 auto;
  height: auto;
  min-height: 0;
}
.algorithm-collection__grid:where(:has(> .product-card:nth-child(4):last-child)) { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.algorithm-collection__grid:where(:has(> .product-card:nth-child(3):last-child)) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.algorithm-collection__grid:where(:has(> .product-card:nth-child(2):last-child)) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.algorithm-collection__grid:where(:has(> .product-card:first-child:last-child)) { grid-template-columns: minmax(0, 320px); }

.algorithm-collection__sentinel {
  display: grid;
  min-height: 72px;
  place-items: center;
  color: #69717b;
  font-size: 14px;
}

.algorithm-collection__sentinel.is-loading::before {
  width: 22px;
  height: 22px;
  border: 2px solid #d8dadd;
  border-top-color: #202327;
  border-radius: 50%;
  content: '';
  animation: somdot-collection-spin .7s linear infinite;
}

.algorithm-collection__sentinel.is-loading span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.algorithm-collection__sentinel button { border: 1px solid #202327; border-radius: 999px; padding: 10px 18px; background: #fff; color: #202327; font: inherit; font-weight: 700; cursor: pointer; }

@keyframes somdot-collection-spin { to { transform: rotate(360deg); } }
.algorithm-collection .collection-pagination { display: flex; justify-content: center; margin-top: 32px; }

.algorithm-collection__empty {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 42px;
  border: 1px solid #e1ded8;
  border-radius: 10px;
  background: #faf9f7;
}

.algorithm-collection__empty h2,
.algorithm-collection__empty p { margin: 0; }

@media (max-width: 1280px) {
  .algorithm-collection__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .algorithm-collection__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .algorithm-collection__hero { padding: 42px 0 34px; }
  .algorithm-collection__hero h1 { font-size: 42px; }
  .algorithm-collection__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .algorithm-collection__empty { padding: 28px; }
}

.department-nav__sale {
  position: relative;
}

.department-nav__sale span {
  position: absolute;
  top: 4px;
  right: -20px;
  padding: 1px 5px;
  border-radius: 8px;
  background: #ee1b24;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.department-nav__dropdown.mega-menu {
  position: static;
  flex: 0 1 auto;
}

.mega-menu > summary {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 17px 0;
  color: #282828;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  list-style: none;
  white-space: nowrap;
  pointer-events: auto;
}

.mega-menu > summary::-webkit-details-marker { display: none; }
.mega-menu > summary::after { display: none; content: none; }

.department-nav__mega {
  position: absolute;
  z-index: 50;
  top: 100%;
  left: 50%;
  display: none;
  width: min(var(--page-width), calc(100vw - 24px));
  min-height: 320px;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  padding: 26px 36px 30px;
  border-top: 1px solid var(--aosom-line);
  background: #fff;
  box-shadow: 0 14px 26px rgb(0 0 0 / 14%);
  transform: translateX(-50%);
}

.mega-menu[open] > .department-nav__mega,
.mega-menu.is-hovered > .department-nav__mega,
.mega-menu:hover > .department-nav__mega,
.mega-menu:focus-within > .department-nav__mega { display: grid; }

.mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-content: start;
}

.mega-menu--compact .mega-menu__columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.mega-menu__columns > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.mega-menu__columns strong {
  margin: 0 0 2px;
  color: #282828;
  font-size: 15px;
  font-weight: 700;
}

.mega-menu__columns strong:not(:first-child) { margin-top: 12px; }

.department-nav .mega-menu__columns a {
  padding: 0;
  color: #777b80;
  font-size: 13px;
  font-weight: 400;
  white-space: normal;
}

.department-nav .mega-menu__columns a:hover,
.department-nav .mega-menu__columns a:focus-visible { color: var(--aosom-red); }

.mega-menu__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mega-menu--compact .mega-menu__cards { grid-template-columns: 1fr; }

.mega-menu__cards a {
  display: grid;
  align-content: start;
  gap: 5px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--aosom-line);
  border-radius: 4px;
  color: #282828;
  background: #fafafa;
}

.department-nav .mega-menu__cards a:hover,
.department-nav .mega-menu__cards a:focus-visible { color: var(--aosom-red); }

.mega-menu__cards img,
.mega-menu__cards a > img {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: contain;
  background: #fff;
}

.mega-menu__cards strong,
.mega-menu__cards span { padding: 0 10px; }
.mega-menu__cards strong { padding-top: 8px; font-size: 14px; }
.mega-menu__cards span { padding-bottom: 11px; color: #777b80; font-size: 12px; }

.department-nav__divider {
  width: 1px;
  height: 22px;
  margin: 0 4px;
  background: #ddd;
}

.hero {
  background: #fff;
}

.hero__grid {
  display: block;
  padding: 24px 0 14px;
}

.hero-carousel {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 8px;
  background: #e7e7e7;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.hero-carousel.is-swiping { cursor: grabbing; }

.hero-banner {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background: #e7e7e7;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.hero-banner.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.hero-banner--blue {
  background: #2e9fc1;
}

.hero-banner--aqua {
  background: #4eb8ba;
}

.hero-banner__media {
  position: absolute;
  inset: 0;
}

.hero-banner__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-banner__media img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
}

.hero-banner--primary .hero-banner__media img {
  object-position: 70% center;
}

.hero-banner--blue .hero-banner__media img,
.hero-banner--aqua .hero-banner__media img {
  width: 100%;
  height: 100%;
  margin-left: 0;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.12) 65%, rgba(0, 0, 0, 0) 100%);
}

.hero-banner--blue .hero-banner__overlay {
  background: linear-gradient(90deg, rgba(8, 42, 52, 0.72) 0%, rgba(8, 42, 52, 0.22) 66%, rgba(8, 42, 52, 0.05) 100%);
}

.hero-banner--aqua .hero-banner__overlay {
  background: linear-gradient(90deg, rgba(42, 36, 28, 0.7) 0%, rgba(42, 36, 28, 0.2) 66%, rgba(42, 36, 28, 0.04) 100%);
}

.hero-banner__copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 86px;
  max-width: 700px;
  transform: translateY(-50%);
}

.hero-banner__copy h1,
.hero-banner__copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.12;
}

.hero-banner__copy p {
  margin: 22px 0 0;
  font-size: 24px;
  line-height: 1.3;
}

.hero-banner__button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 30px;
  padding: 0 24px;
  border-radius: 6px;
  background: #fff;
  color: #282828;
  font-size: 16px;
  font-weight: 600;
}

.hero-banner__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-banner__arrow--left {
  left: 18px;
}

.hero-banner__arrow--right {
  right: 18px;
}

.hero-banner__dots {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-banner__dots button {
  width: 26px;
  height: 5px;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.75);
  padding: 0;
  cursor: pointer;
}

.hero-banner__dots button.is-active {
  background: var(--aosom-red);
}

.product-rail {
  padding: 32px 0 24px;
}

.section-heading--rail {
  min-height: 48px;
  margin: 0 0 12px;
  border: 0;
  padding: 0;
}

.section-heading--rail h2 {
  font-size: 28px;
  font-weight: 500;
}

.section-heading--rail h2::before {
  display: none;
  content: none;
}

.rail-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rail-controls a {
  text-decoration: underline;
  font-weight: 600;
}

.rail-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fafafa;
  color: #777;
  font-size: 30px;
}

.product-grid {
  gap: 16px;
}

.product-rail__viewport {
  overflow: hidden;
  padding: 6px 5px 9px;
  margin: -6px -5px -9px;
}

.product-rail__track.product-grid {
  display: flex;
  gap: 16px;
  transform: translate3d(0, 0, 0);
  transition: transform 420ms ease;
  will-change: transform;
}

.product-rail__track .product-card {
  flex: 0 0 calc((100% - 64px) / 5);
}

.product-rail--single-row .product-rail__track.product-grid {
  transform: none;
  transition: none;
  will-change: auto;
}

.product-rail--single-row .product-rail__track:has(> .product-card:nth-child(4):last-child) .product-card {
  flex-basis: calc((100% - 48px) / 4);
}

.product-rail--single-row .product-rail__track:has(> .product-card:nth-child(3):last-child) .product-card {
  flex-basis: calc((100% - 32px) / 3);
}

.product-rail--single-row .product-rail__track:has(> .product-card:nth-child(2):last-child) .product-card {
  flex-basis: calc((100% - 16px) / 2);
}

.product-rail--single-row .product-rail__track:has(> .product-card:first-child:last-child) .product-card {
  flex-basis: min(100%, 320px);
}

.rail-controls button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.product-card {
  border: 0;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 5%);
  transition: box-shadow .18s ease, transform .18s ease;
}

.product-card:hover,
.product-card:focus-within {
  box-shadow: 0 8px 18px rgb(0 0 0 / 10%);
  transform: translateY(-2px);
}

.product-card__media {
  aspect-ratio: 1.05 / 1;
  border-radius: 6px 6px 0 0;
}

.product-card__media img {
  padding: 22px;
}

.product-card__content {
  gap: 7px;
  padding: 13px 14px 16px;
}

.product-card__title {
  min-height: 44px;
  font-size: 15px;
  line-height: 1.45;
}

.rating {
  color: #f1a900;
  font-size: 14px;
}

.rating small {
  color: #777;
}

.price {
  color: #282828;
  font-size: 21px;
  font-weight: 700;
}

.shipping-line {
  color: #4d8f26;
}

@media (max-width: 980px) {
  .mega-menu > summary { pointer-events: auto; }

  .site-header__main {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 12px;
  }

  .header-actions {
    display: none;
  }

  .department-nav__inner {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .department-nav__submenu {
    display: none !important;
  }

  .department-nav__mega {
    display: none !important;
  }

  .mega-menu[open] > .department-nav__mega {
    position: absolute;
    top: 100%;
    left: 0;
    display: block !important;
    width: min(360px, calc(100vw - 24px));
    min-height: 0;
    padding: 20px;
    transform: none;
  }

  .mega-menu[open] .mega-menu__columns,
  .mega-menu[open] .mega-menu__cards {
    grid-template-columns: 1fr;
  }

  .mega-menu[open] .mega-menu__cards { margin-top: 18px; }

  .category-overview__grid--rooms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid {
    display: block;
  }

  .product-rail__track .product-card {
    flex-basis: calc((100% - 32px) / 3);
  }
}

@media (max-width: 640px) {
  .site-header__main {
    min-height: 72px;
    grid-template-columns: 1fr;
  }

  .site-header__brand {
    font-size: 30px;
  }

  .site-search {
    grid-column: 1 / -1;
    height: 44px;
    margin-bottom: 12px;
  }

  .department-nav__inner {
    gap: 24px;
  }

  .category-overview__room img,
  .category-overview__room .image-placeholder {
    height: 180px;
  }

  .hero-carousel {
    min-height: 500px;
  }

  .hero-banner__copy {
    left: 28px;
    right: 28px;
    max-width: 310px;
  }

  .hero-banner__copy h1,
  .hero-banner__copy h2 {
    font-size: 38px;
  }

  .hero-banner__copy p {
    font-size: 18px;
  }

  .hero-banner__arrow {
    top: auto;
    bottom: 16px;
    width: 38px;
    height: 38px;
    transform: none;
  }

  .hero-banner--blue .hero-banner__media img,
  .hero-banner--aqua .hero-banner__media img {
    width: 100%;
    opacity: 0.72;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-rail__track .product-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .section-heading--rail {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }

  .rail-controls {
    gap: 8px;
  }

  .rail-controls a {
    display: none;
  }

  .rail-controls button {
    width: 36px;
    height: 36px;
    font-size: 26px;
  }
}

.shop-video {
  padding: 34px 0 50px;
  overflow: hidden;
  background: #fff;
}

.shop-video__header {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.shop-video__header h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}

.shop-video__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.shop-video__arrow {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fafafa;
  color: #777;
  cursor: pointer;
}

.shop-video__arrow span {
  font-size: 30px;
  line-height: 1;
  transform: translateY(-1px);
}

.shop-video__count {
  min-width: 42px;
  text-align: center;
  white-space: nowrap;
}

.shop-video__count b {
  font-weight: 500;
}

.shop-video__rail {
  display: grid;
  grid-auto-columns: calc((100% - 48px) / 4);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 5px 9px;
  margin: -6px -5px -9px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.shop-video__rail::-webkit-scrollbar {
  display: none;
}

.shop-video-card {
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.11);
  outline-offset: 2px;
}

.shop-video-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 0;
  background: #efefef;
  padding: 0;
  cursor: pointer;
}

.shop-video-card__media-trigger {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.shop-video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-video-card__preview-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #111;
  pointer-events: none;
}

.shop-video-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #777;
  font-size: 24px;
  font-weight: 600;
}

.shop-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%);
  transition: background 160ms ease, transform 160ms ease;
}

.shop-video-card__media:hover .shop-video-card__play {
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%) scale(1.06);
}

.shop-video-card__play i {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #282828;
}

.shop-video-product {
  display: grid;
  min-height: 124px;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.shop-video-product__image {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.shop-video-product__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-video-product__copy {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.shop-video-product__copy strong {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.shop-video-product__copy > span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #555;
  font-size: 15px;
  line-height: 1.4;
}

.shop-video-modal {
  width: min(520px, calc(100% - 28px));
  max-width: none;
  border: 0;
  border-radius: 7px;
  background: #111;
  padding: 0;
  overflow: visible;
}

.shop-video-modal::backdrop {
  background: rgba(0, 0, 0, 0.75);
}

.shop-video-modal__close {
  position: absolute;
  z-index: 2;
  top: -16px;
  right: -16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.shop-video-modal__frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 7px;
}

.shop-video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.product-detail-media img.is-deferred {
  background: #f7f7f5;
}

.instagram-feed {
  padding: 44px 0 72px;
  background: #fff;
}

.instagram-feed__intro {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.instagram-feed__eyebrow {
  margin: 0 0 8px;
  color: #202327;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.instagram-feed__intro h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.instagram-feed__description {
  margin-top: 12px;
  color: #5f6368;
  font-size: 16px;
  line-height: 1.6;
}

.instagram-feed__description p { margin: 0; }

.instagram-feed__filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.instagram-feed__filter {
  min-width: 108px;
  padding: 10px 18px;
  border: 1px solid #d5d8dc;
  border-radius: 3px;
  background: #fff;
  color: #303238;
  cursor: pointer;
  font: inherit;
}

.instagram-feed__filter:hover,
.instagram-feed__filter.is-active {
  border-color: #303238;
  background: #303238;
  color: #fff;
}

.instagram-feed__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.instagram-post[hidden] { display: none; }

.instagram-post {
  overflow: hidden;
  border: 1px solid #e4e5e7;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 3px 10px rgb(0 0 0 / 5%);
  transition: box-shadow .18s ease, transform .18s ease;
}

.instagram-post:hover,
.instagram-post:focus-within {
  box-shadow: 0 8px 18px rgb(0 0 0 / 10%);
  transform: translateY(-2px);
}

.instagram-post__open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.instagram-post__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: #f2f3f4;
}

.instagram-post__media img,
.instagram-post__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-post__placeholder {
  display: grid;
  place-items: center;
  color: #81858a;
  font-size: 22px;
  font-weight: 700;
}

.instagram-post__hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgb(0 0 0 / 48%);
  color: #fff;
  font-weight: 700;
  opacity: 0;
  transition: opacity .18s ease;
}

.instagram-post__open:hover .instagram-post__hover,
.instagram-post__open:focus-visible .instagram-post__hover { opacity: 1; }

.instagram-post__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 88%);
  transform: translate(-50%, -50%);
}

.instagram-post__play i {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #303238;
}

.instagram-post__meta {
  display: grid;
  gap: 4px;
  padding: 11px 2px 2px;
}

.instagram-post__meta strong { font-size: 14px; }
.instagram-post__meta span { color: #71757a; font-size: 13px; }

.instagram-feed__empty {
  padding: 54px 24px;
  border: 1px dashed #cdd1d5;
  color: #676b70;
  text-align: center;
}

.instagram-post-modal {
  width: min(980px, calc(100vw - 32px));
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: #fff;
  color: #24262a;
  box-shadow: 0 24px 80px rgb(0 0 0 / 30%);
}

.instagram-post-modal::backdrop { background: rgb(0 0 0 / 62%); }

.instagram-post-modal__body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
}

.instagram-post-modal__media {
  display: grid;
  min-height: 540px;
  place-items: center;
  background: #111;
}

.instagram-post-modal__media img,
.instagram-post-modal__media video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 72vh;
  object-fit: contain;
}

.instagram-post-modal__info { padding: 44px 34px 34px; }
.instagram-post-modal__handle { margin: 0 0 14px; color: #202327; font-weight: 700; }
.instagram-post-modal__info h2 { margin: 0 0 16px; font-size: 24px; line-height: 1.2; }
.instagram-post-modal__caption { margin: 0 0 18px; color: #5f6368; line-height: 1.6; white-space: pre-line; }
.instagram-post-modal__tags { margin: 0; color: #202327; font-size: 14px; }

.instagram-post-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 92%);
  color: #24262a;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

@media (max-width: 900px) {
  .instagram-feed__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .instagram-feed { padding: 30px 0 48px; }
  .instagram-feed__filters { gap: 6px; }
  .instagram-feed__filter { min-width: 0; padding: 9px 12px; font-size: 13px; }
  .instagram-feed__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .instagram-post__meta { padding-top: 8px; }
  .instagram-post__meta strong { font-size: 13px; }
  .instagram-post__meta span { font-size: 11px; }
  .instagram-post-modal__body { grid-template-columns: 1fr; }
  .instagram-post-modal__media { min-height: 0; aspect-ratio: 1 / 1; }
  .instagram-post-modal__info { padding: 24px; }
}

@media (max-width: 980px) {
  .shop-video__rail {
    grid-auto-columns: calc((100% - 32px) / 3);
  }
}

@media (max-width: 640px) {
  .shop-video {
    padding: 26px 0 38px;
  }

  .shop-video__header h2 {
    font-size: 26px;
  }

  .shop-video__controls {
    gap: 8px;
  }

  .shop-video__arrow {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .shop-video__rail {
    grid-auto-columns: 84%;
    gap: 12px;
  }

  .shop-video-product {
    min-height: 110px;
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 12px;
  }

  .shop-video-product__image {
    width: 76px;
    height: 76px;
  }

  .shop-video-product__copy strong {
    font-size: 22px;
  }

  .shop-video-modal__close {
    top: 8px;
    right: 8px;
  }
}

/* Final header positioning override: keep the full navigation attached to the viewport. */
.shopify-section-group-header-group {
  min-height: 145px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  z-index: 100;
}

.template-collection .collection-results {
  padding: 24px 0 56px;
  border-top: 0;
  background: #fff;
}

.template-collection .collection-layout {
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 26px;
  padding-top: 0;
}

.template-collection .filter-panel {
  position: sticky;
  top: 166px;
  border: 1px solid #e7e8eb;
  border-radius: 7px;
  background: #fff;
  padding: 16px 18px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 4%);
}

.template-collection .filter-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #e7e8eb;
  padding-bottom: 12px;
}

.template-collection .filter-panel__header h2 {
  margin: 0;
  font-size: 20px;
}

.template-collection .filter-panel__header a {
  color: #6b737d;
  font-size: 13px;
  text-decoration: underline;
}

.template-collection .filter-group {
  padding: 17px 0;
  border-bottom: 1px solid #eef0f2;
}

.template-collection .filter-group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.template-collection .filter-group h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.template-collection .filter-option {
  border-radius: 5px;
  padding: 8px 9px;
  color: #434950;
}

.template-collection .filter-option:hover,
.template-collection .filter-option.is-active {
  background: #f3f4f5;
  color: #111;
}

.template-collection .price-filter {
  display: grid;
  gap: 10px;
}

.template-collection .attribute-filter-form { display: grid; }
.template-collection .filter-group--attribute { margin: 0; border: 0; border-bottom: 1px solid #eef0f2; }
.template-collection .filter-group--attribute legend { margin-bottom: 10px; padding: 0; font-size: 16px; font-weight: 750; }
.template-collection .attribute-filter-option { display: grid; grid-template-columns: 18px minmax(0, 1fr) auto; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 6px; color: #434950; cursor: pointer; font-size: 13px; }
.template-collection .attribute-filter-option:hover { background: #f3f4f5; }
.template-collection .attribute-filter-option input { width: 16px; height: 16px; accent-color: #202327; }
.template-collection .attribute-filter-option small { color: #7a8086; font-size: 12px; }
.template-collection .attribute-filter-form__apply { width: 100%; margin-top: 14px; }

.template-collection .collection-toolbar {
  min-height: auto;
  margin-bottom: 18px;
  border: 1px solid #e7e8eb;
  border-radius: 7px;
  padding: 15px 18px;
  background: #fff;
  box-shadow: 0 3px 10px rgb(0 0 0 / 4%);
}

.template-collection .collection-toolbar strong,
.template-collection .collection-toolbar h1 {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}

.template-collection .collection-toolbar h1 {
  margin-top: 0;
  line-height: 1.2;
}

.template-collection .collection-toolbar p {
  margin: 0;
  color: #6a717b;
}

.template-collection .collection-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.template-collection .collection-product-grid .product-card {
  min-width: 0;
  border: 1px solid #e7e8eb;
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 10px rgb(0 0 0 / 5%);
  transition: box-shadow .18s ease, transform .18s ease;
}

.template-collection .collection-product-grid .product-card:hover,
.template-collection .collection-product-grid .product-card:focus-within {
  box-shadow: 0 8px 18px rgb(0 0 0 / 10%);
  transform: translateY(-2px);
}

.template-collection .collection-product-grid .product-card__media {
  aspect-ratio: 1.05 / 1;
}

.template-collection .collection-product-grid .product-card__media img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
}

.template-collection .collection-product-grid .product-card__content {
  padding: 14px 15px 17px;
}

.template-collection .collection-empty {
  display: grid;
  justify-items: start;
  gap: 12px;
  border: 1px solid #e7e8eb;
  border-radius: 7px;
  padding: 34px;
  background: #fff;
}

.template-collection .collection-empty h2,
.template-collection .collection-empty p {
  margin: 0;
}

.template-collection .collection-pagination {
  margin-top: 28px;
  justify-content: center;
}

@media (max-width: 1280px) {
  .template-collection .collection-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .template-collection .collection-layout {
    grid-template-columns: 1fr;
  }

  .template-collection .filter-panel {
    position: static;
  }

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

@media (max-width: 640px) {
  .template-collection .collection-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .template-collection .collection-toolbar form {
    width: 100%;
  }

  .template-collection .collection-toolbar .sort-select {
    width: 100%;
  }

  .template-collection .collection-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

html {
  scroll-padding-top: 145px;
}

@media (max-width: 749px) {
  .shopify-section-group-header-group {
    min-height: 132px;
  }

  html {
    scroll-padding-top: 132px;
  }
}

/* About Somdot */
.about-page { background: #fff; color: #202327; }
.about-eyebrow { margin: 0 0 18px; color: #866044; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.about-hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 72px; align-items: end; padding-top: 100px; padding-bottom: 110px; }
.about-hero > .about-eyebrow { grid-column: 1 / -1; margin-bottom: -32px; }
.about-hero h1 { margin: 0; max-width: 850px; font-size: clamp(58px, 8vw, 112px); font-weight: 600; letter-spacing: -.065em; line-height: .9; }
.about-hero__intro { padding-bottom: 8px; }
.about-hero__intro p { margin: 0 0 30px; color: #62686d; font-size: 18px; line-height: 1.7; }
.about-manifesto { padding: 105px 0; background: #242628; color: #fff; }
.about-manifesto__grid { display: grid; grid-template-columns: minmax(180px, .35fr) minmax(0, 1fr); gap: 70px; }
.about-manifesto .about-eyebrow { color: #d3ad8e; }
.about-manifesto h2 { max-width: 850px; margin: 0 0 34px; font-size: clamp(42px, 6vw, 76px); letter-spacing: -.045em; line-height: 1; }
.about-manifesto__grid > div p { max-width: 750px; margin: 0 0 20px; color: #c9ccce; font-size: 18px; line-height: 1.75; }
.about-values { padding-top: 110px; padding-bottom: 120px; }
.about-section-heading { max-width: 760px; margin-bottom: 55px; }
.about-section-heading h2 { margin: 0; font-size: clamp(40px, 5vw, 68px); letter-spacing: -.045em; line-height: 1.02; }
.about-section-heading--row { display: flex; max-width: none; justify-content: space-between; gap: 40px; align-items: end; }
.about-section-heading--row > div { max-width: 760px; }
.about-section-heading--row > a { color: inherit; font-weight: 700; text-decoration: none; }
.about-values__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid #d9d9d7; }
.about-values__grid article { min-height: 290px; padding: 28px 30px 20px 0; border-right: 1px solid #d9d9d7; }
.about-values__grid article + article { padding-left: 30px; }
.about-values__grid article:last-child { border-right: 0; }
.about-values__grid span { color: #9a9da0; font-size: 12px; }
.about-values__grid h3 { margin: 72px 0 16px; font-size: 24px; }
.about-values__grid p { margin: 0; color: #666b70; line-height: 1.65; }
.about-lines { padding: 110px 0 120px; background: #f3f0eb; }
.about-lines__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.about-line { position: relative; min-height: 260px; padding: 34px; border: 1px solid #d8d2ca; border-radius: 14px; background: #faf8f5; color: inherit; text-decoration: none; transition: transform .2s, background .2s; }
.about-line:hover { transform: translateY(-3px); background: #fff; }
.about-line > span { position: absolute; top: 28px; right: 30px; font-size: 22px; }
.about-line h3 { max-width: 260px; margin: 98px 0 15px; font-size: 25px; line-height: 1.15; }
.about-line p { margin: 0; color: #686d72; line-height: 1.6; }
.about-promise { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; padding-top: 120px; padding-bottom: 125px; }
.about-promise h2 { max-width: 620px; margin: 0; font-size: clamp(44px, 6vw, 78px); letter-spacing: -.05em; line-height: .98; }
.about-promise > div:last-child { padding-top: 36px; }
.about-promise > div:last-child p { margin: 0 0 28px; color: #62686d; font-size: 18px; line-height: 1.75; }
.about-promise a { color: inherit; font-weight: 700; text-decoration: none; }
.journal-index--news .journal-index__hero > p { color: #9b3d32; }
.journal-index--news .journal-card__copy > p { color: #9b3d32; }
.journal-index__posts > .page-numbers { display: flex; justify-content: center; gap: 8px; margin: 72px 0 0; padding: 0; list-style: none; }

@media (max-width: 980px) {
  .about-hero { grid-template-columns: 1fr; gap: 36px; }
  .about-hero > .about-eyebrow { margin-bottom: 0; }
  .about-manifesto__grid { grid-template-columns: 1fr; gap: 24px; }
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .about-values__grid article:nth-child(2) { border-right: 0; }
  .about-lines__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .about-hero { padding-top: 62px; padding-bottom: 74px; }
  .about-hero h1 { font-size: 58px; }
  .about-manifesto, .about-lines { padding: 72px 0; }
  .about-values { padding-top: 74px; padding-bottom: 78px; }
  .about-values__grid, .about-lines__grid, .about-promise { grid-template-columns: 1fr; }
  .about-values__grid article, .about-values__grid article + article { min-height: 0; padding: 24px 0 32px; border-right: 0; border-bottom: 1px solid #d9d9d7; }
  .about-values__grid h3 { margin-top: 34px; }
  .about-section-heading--row { display: block; }
  .about-section-heading--row > a { display: inline-block; margin-top: 22px; }
  .about-line { min-height: 230px; }
  .about-promise { gap: 20px; padding-top: 78px; padding-bottom: 82px; }
}

/* Affiliate program and SliceWP portal */
.affiliate-program-page,.affiliate-portal-page{background:#fff;color:#202327}.affiliate-program-hero{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);gap:70px;align-items:end;padding-top:96px;padding-bottom:104px}.affiliate-program-hero>p,.affiliate-program-eyebrow,.affiliate-portal-page__header>p{grid-column:1/-1;margin:0 0 -28px;color:#806047;font-size:11px;font-weight:800;letter-spacing:.18em;text-transform:uppercase}.affiliate-program-hero h1{margin:0;font-size:clamp(56px,7.5vw,105px);font-weight:600;letter-spacing:-.06em;line-height:.92}.affiliate-program-hero>div>p{margin:0 0 30px;color:#62686d;font-size:18px;line-height:1.7}.affiliate-program-actions{display:flex;gap:12px;flex-wrap:wrap}.affiliate-program-summary{background:#242628;color:#fff}.affiliate-program-summary>.page-width{display:grid;grid-template-columns:repeat(4,1fr)}.affiliate-program-summary article{display:grid;gap:8px;padding:38px 26px;border-right:1px solid #46494b}.affiliate-program-summary article:first-child{border-left:1px solid #46494b}.affiliate-program-summary strong{font-size:32px}.affiliate-program-summary span{color:#babec1;font-size:13px}.affiliate-program-fit{display:grid;grid-template-columns:minmax(250px,.42fr) minmax(0,1fr);gap:75px;padding-top:105px;padding-bottom:115px}.affiliate-program-fit>div:first-child h2,.affiliate-program-how h2,.affiliate-program-cta h2{margin:0;font-size:clamp(40px,5vw,66px);letter-spacing:-.045em;line-height:1}.affiliate-program-fit__grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid #d8d8d6}.affiliate-program-fit__grid article{padding:26px 28px 10px 0;border-right:1px solid #d8d8d6}.affiliate-program-fit__grid article+article{padding-left:28px}.affiliate-program-fit__grid article:last-child{border-right:0}.affiliate-program-fit__grid span{color:#969b9f;font-size:12px}.affiliate-program-fit__grid h3{margin:62px 0 15px;font-size:23px}.affiliate-program-fit__grid p,.affiliate-program-how li p{margin:0;color:#676c71;line-height:1.65}.affiliate-program-how{padding:105px 0;background:#f3f0eb}.affiliate-program-how h2{max-width:760px;margin-bottom:54px}.affiliate-program-how ol{display:grid;grid-template-columns:repeat(4,1fr);margin:0;padding:0;list-style:none}.affiliate-program-how li{display:flex;gap:18px;padding:28px 25px 8px 0;border-top:1px solid #cfc8bf}.affiliate-program-how li+li{padding-left:25px}.affiliate-program-how li>span{display:grid;width:32px;height:32px;flex:0 0 32px;place-items:center;border:1px solid #999;border-radius:50%;font-size:12px}.affiliate-program-how h3{margin:5px 0 12px;font-size:21px}.affiliate-program-cta{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:end;padding-top:105px;padding-bottom:110px}.affiliate-program-cta>div:last-child{display:grid;justify-items:start;gap:18px}.affiliate-program-cta>div:last-child p{margin:0;color:#686d72}.affiliate-program-cta>div:last-child a:not(.button){color:inherit}.affiliate-portal-page{padding:70px 0 100px}.affiliate-portal-page__header{max-width:900px;margin-bottom:48px;text-align:center}.affiliate-portal-page__header>p{margin-bottom:14px}.affiliate-portal-page__header h1{margin:0 0 18px;font-size:clamp(44px,6vw,72px);letter-spacing:-.045em}.affiliate-portal-page__header>div{max-width:650px;margin:0 auto;color:#686d72;font-size:17px;line-height:1.6}.affiliate-portal-page__content{max-width:980px;padding:38px;border:1px solid #e0e0de;border-radius:16px;box-shadow:0 10px 40px rgba(20,25,30,.07)}.affiliate-portal-page__content .slicewp-form{max-width:none}.affiliate-portal-page__content input,.affiliate-portal-page__content select,.affiliate-portal-page__content textarea{border-radius:7px!important}.affiliate-portal-page__content input[type=submit],.affiliate-portal-page__content button{border-radius:999px!important;background:#202327!important;color:#fff!important}.affiliate-terms-page{padding-bottom:90px}
.affiliate-program-eyebrow{margin-bottom:18px}
@media(max-width:900px){.affiliate-program-hero,.affiliate-program-fit,.affiliate-program-cta{grid-template-columns:1fr}.affiliate-program-hero>p{margin-bottom:0}.affiliate-program-summary>.page-width,.affiliate-program-how ol{grid-template-columns:repeat(2,1fr)}.affiliate-program-fit__grid{grid-template-columns:1fr}.affiliate-program-fit__grid article,.affiliate-program-fit__grid article+article{padding:24px 0 30px;border-right:0;border-bottom:1px solid #d8d8d6}.affiliate-program-fit__grid h3{margin-top:28px}}
@media(max-width:600px){.affiliate-program-hero{gap:30px;padding-top:62px;padding-bottom:70px}.affiliate-program-hero h1{font-size:54px}.affiliate-program-summary>.page-width,.affiliate-program-how ol{grid-template-columns:1fr}.affiliate-program-summary article,.affiliate-program-summary article:first-child{border-right:0;border-left:0;border-bottom:1px solid #46494b}.affiliate-program-fit,.affiliate-program-cta{gap:36px;padding-top:72px;padding-bottom:76px}.affiliate-program-how{padding:72px 0}.affiliate-program-how li,.affiliate-program-how li+li{padding:22px 0}.affiliate-portal-page{padding:45px 0 70px}.affiliate-portal-page__content{padding:24px 18px;border-radius:12px}}

/* Fluent Forms contact card below the editor-managed Echo Help Center. */
.customer-support-contact{display:grid;grid-template-columns:minmax(0,.75fr) minmax(0,1.25fr);gap:70px;margin:72px auto 0;padding:64px;max-width:1200px;border-radius:24px;background:#f5f2ed}.customer-support-contact__intro h2{margin:0 0 18px;font-size:clamp(30px,4vw,48px);line-height:1.08;letter-spacing:-.03em}.customer-support-contact__intro>p:last-child{max-width:430px;color:#666;line-height:1.7}.customer-support-contact .customer-support-eyebrow{margin:0 0 14px;color:#8a5d3b;font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase}.customer-support-contact .somdot-support-form-wrap{min-width:0}.customer-support-contact .ff-el-group{margin-bottom:18px}.customer-support-contact .ff-el-input--label label{font-size:14px;font-weight:700;color:#222629}.customer-support-contact .ff-el-form-control{min-height:48px;border:1px solid #d8d5cf!important;border-radius:8px!important;background:#fff!important;box-shadow:none!important}.customer-support-contact textarea.ff-el-form-control{min-height:150px}.customer-support-contact .ff-btn-submit{min-height:50px;border:0!important;border-radius:999px!important;padding:0 28px!important;background:#222629!important;color:#fff!important;font-weight:700!important}.customer-support-contact .ff-message-success{border:1px solid #d8d2ca;border-radius:10px;background:#f5f2ed;color:#202327}
.customer-support-contact{grid-template-columns:minmax(260px,.72fr) minmax(0,1.28fr);gap:clamp(48px,7vw,96px);padding:clamp(38px,5vw,72px);box-shadow:0 24px 70px rgba(31,33,35,.06)}.customer-support-contact .somdot-support-form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px 18px}.customer-support-contact .somdot-support-form .ff-el-group{min-width:0;margin:0}.customer-support-contact .somdot-support-field--full,.customer-support-contact .somdot-support-actions{grid-column:1/-1}.customer-support-contact .ff-el-input--label{margin-bottom:8px}.customer-support-contact .ff-el-form-control{box-sizing:border-box;width:100%;padding:12px 14px;font-size:15px;transition:border-color .18s ease,box-shadow .18s ease}.customer-support-contact .ff-el-form-control:focus{border-color:#8a5d3b!important;box-shadow:0 0 0 3px rgba(138,93,59,.12)!important;outline:0}.customer-support-contact textarea.ff-el-form-control{min-height:168px;resize:vertical}.customer-support-contact .somdot-support-upload .ff-el-input--content{padding:12px;border:1px dashed #c8c1b8;border-radius:12px;background:rgba(255,255,255,.62)}.customer-support-contact input[type=file].ff-el-form-control{min-height:52px;padding:6px;border:0!important;background:transparent!important}.customer-support-contact input[type=file]::file-selector-button{height:38px;margin-right:12px;padding:0 16px;border:0;border-radius:999px;background:#e8e2d9;color:#222629;font:inherit;font-weight:700;cursor:pointer}.customer-support-contact .somdot-support-upload small{display:block;margin-top:7px;color:#6c6b68;line-height:1.5}.customer-support-contact .somdot-support-privacy label{display:flex;align-items:flex-start;gap:10px;color:#4e4f50;line-height:1.55}.customer-support-contact .somdot-support-privacy input{flex:0 0 auto;margin-top:4px}.customer-support-contact .somdot-support-actions{display:flex;align-items:center;gap:16px}.customer-support-contact .somdot-support-actions span{color:#777;font-size:13px}.customer-support-contact .ff-btn-submit{padding:0 32px!important;transition:transform .18s ease,background .18s ease}.customer-support-contact .ff-btn-submit:hover{background:#0f1011!important;transform:translateY(-1px)}@media(max-width:800px){.customer-support-contact{grid-template-columns:1fr;gap:34px;padding:32px 22px}.customer-support-contact .somdot-support-form{grid-template-columns:1fr}.customer-support-contact .somdot-support-field--half{grid-column:1/-1}}@media(max-width:480px){.customer-support-contact .somdot-support-actions{align-items:flex-start;flex-direction:column}.customer-support-contact .ff-btn-submit{width:100%}}
.customer-support-contact .somdot-support-privacy label>span{display:inline;min-width:0}.customer-support-contact .somdot-support-privacy a{display:inline;white-space:nowrap}
@media(max-width:760px){.customer-support-contact{grid-template-columns:1fr;gap:34px;margin-top:48px;padding:34px 22px;border-radius:18px}}
.customer-support-contact .somdot-support-result{position:relative;box-sizing:border-box;min-height:100%;padding:clamp(30px,5vw,52px);overflow:hidden;border:1px solid #b9ddc4;border-radius:22px;background:linear-gradient(145deg,#f2fbf5 0%,#fff 58%,#f7faf8 100%);box-shadow:0 22px 55px rgba(31,91,50,.13);color:#173520}.customer-support-contact .somdot-support-result::after{position:absolute;right:-82px;bottom:-105px;width:240px;height:240px;border-radius:50%;background:rgba(83,170,108,.1);content:"";pointer-events:none}.customer-support-contact .somdot-support-result__icon{display:inline-flex;width:68px;height:68px;align-items:center;justify-content:center;margin-bottom:25px;border-radius:50%;background:#237a3b;box-shadow:0 12px 25px rgba(35,122,59,.24);color:#fff}.customer-support-contact .somdot-support-result__icon svg{width:38px;height:38px;fill:none;stroke:currentColor;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round}.customer-support-contact .somdot-support-result__eyebrow{margin:0 0 9px;color:#237a3b;font-size:12px;font-weight:800;letter-spacing:.15em;text-transform:uppercase}.customer-support-contact .somdot-support-result h3{max-width:520px;margin:0;color:#173520;font-size:clamp(28px,3vw,42px);line-height:1.08;letter-spacing:-.035em}.customer-support-contact .somdot-support-result__message{max-width:600px;margin:18px 0 0;color:#486151;font-size:16px;line-height:1.65}.customer-support-contact .somdot-support-result__ticket{position:relative;z-index:1;display:flex;max-width:520px;align-items:center;justify-content:space-between;gap:20px;margin:28px 0 0;padding:17px 20px;border:1px solid #c8e2cf;border-radius:13px;background:#fff;box-shadow:0 8px 22px rgba(31,91,50,.08)}.customer-support-contact .somdot-support-result__ticket span{color:#65776a;font-size:12px;font-weight:750;letter-spacing:.08em;text-transform:uppercase}.customer-support-contact .somdot-support-result__ticket strong{color:#173520;font-size:17px;letter-spacing:.025em}.customer-support-contact .somdot-support-result__next{position:relative;z-index:1;max-width:590px;margin:28px 0 0;padding-top:23px;border-top:1px solid #d7e8dc;color:#486151;font-size:14px;line-height:1.7}@media(max-width:600px){.customer-support-contact .somdot-support-result{padding:28px 22px;border-radius:17px}.customer-support-contact .somdot-support-result__icon{width:58px;height:58px;margin-bottom:20px}.customer-support-contact .somdot-support-result__icon svg{width:32px;height:32px}.customer-support-contact .somdot-support-result__ticket{align-items:flex-start;flex-direction:column;gap:5px}.customer-support-contact .somdot-support-result__ticket strong{font-size:16px}}
.customer-support-contact .somdot-support-result--warning{border-color:#e5c47e;background:linear-gradient(145deg,#fff9eb 0%,#fff 58%,#fffaf0 100%);box-shadow:0 22px 55px rgba(132,87,13,.14);color:#51390f}.customer-support-contact .somdot-support-result--warning::after{background:rgba(218,163,53,.12)}.customer-support-contact .somdot-support-result--warning .somdot-support-result__icon{background:#b87512;box-shadow:0 12px 25px rgba(184,117,18,.24)}.customer-support-contact .somdot-support-result--warning .somdot-support-result__eyebrow{color:#9b600a}.customer-support-contact .somdot-support-result--warning h3,.customer-support-contact .somdot-support-result--warning .somdot-support-result__ticket strong{color:#51390f}.customer-support-contact .somdot-support-result--warning .somdot-support-result__message,.customer-support-contact .somdot-support-result--warning .somdot-support-result__next{color:#6d572f}.customer-support-contact .somdot-support-result--warning .somdot-support-result__ticket{border-color:#ead4a8;box-shadow:0 8px 22px rgba(132,87,13,.08)}.customer-support-contact .somdot-support-result--warning .somdot-support-result__next{border-top-color:#ecddb9}
.customer-support-contact .somdot-support-result__ticket a{color:inherit;text-decoration:underline;text-decoration-thickness:1.5px;text-underline-offset:4px}.customer-support-contact .somdot-support-result__ticket a:hover,.customer-support-contact .somdot-support-result__ticket a:focus{opacity:.72}.customer-support-contact .somdot-support-result__next a{color:inherit;font-weight:800;text-underline-offset:3px}
.customer-support-contact .somdot-support-error{display:flex;align-items:flex-start;gap:16px;margin:0 0 24px;padding:20px 22px;border:0;border-radius:15px;background:#f04f68;box-shadow:0 14px 30px rgba(240,79,104,.25);color:#fff}.customer-support-contact .somdot-support-error__icon{display:inline-flex;width:42px;height:42px;flex:0 0 42px;align-items:center;justify-content:center;border-radius:50%;background:rgba(255,255,255,.18)}.customer-support-contact .somdot-support-error__icon svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:2.5;stroke-linecap:round}.customer-support-contact .somdot-support-error strong{display:block;margin:1px 0 5px;color:#fff;font-size:17px;line-height:1.3}.customer-support-contact .somdot-support-error p{margin:0;color:#fff;font-size:14px;line-height:1.55}@media(max-width:600px){.customer-support-contact .somdot-support-error{gap:13px;padding:17px 16px}.customer-support-contact .somdot-support-error__icon{width:38px;height:38px;flex-basis:38px}.customer-support-contact .somdot-support-error strong{font-size:16px}}
.wc-block-components-notice-banner.is-error{border-color:#f04f68!important;background:#f04f68!important;box-shadow:0 12px 30px rgb(240 79 104 / 22%);color:#fff!important}.wc-block-components-notice-banner.is-error a,.wc-block-components-notice-banner.is-error button,.wc-block-components-notice-banner.is-error svg{color:#fff!important;fill:currentColor}.single-product .single_add_to_cart_button.has-error{background:#f04f68!important;box-shadow:0 10px 22px rgb(240 79 104 / 24%)}
.somdot-page-intro {
  box-sizing: border-box;
  width: min(100% - 32px, 1600px);
  max-width: none;
  margin: 0 auto 36px;
  padding: clamp(34px, 5vw, 72px) clamp(20px, 5vw, 72px) clamp(24px, 3vw, 44px);
  border-radius: 0 0 22px 22px;
  background: #f7f5f1;
  text-align: center;
}

.somdot-page-intro > p {
  margin: 0 0 10px;
  color: #7b5135;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.somdot-page-intro h1 {
  margin: 0;
  color: #202327;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.05;
}

.somdot-page-intro > span {
  display: block;
  max-width: 720px;
  margin: 16px auto 0;
  color: #65676b;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
}

.help-center-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto 34px;
}

.help-center-shortcuts a {
  position: relative;
  display: grid;
  min-height: 152px;
  align-content: start;
  gap: 7px;
  padding: 22px 42px 22px 20px;
  border: 1px solid #e2ded8;
  border-radius: 15px;
  background: #fff;
  color: #202327;
  box-shadow: 0 8px 24px rgba(31, 33, 35, .05);
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.help-center-shortcuts a::after {
  position: absolute;
  top: 20px;
  right: 18px;
  color: #8a5d3b;
  content: "→";
  font-size: 18px;
}

.help-center-shortcuts a:hover {
  border-color: #c7bdb2;
  box-shadow: 0 14px 30px rgba(31, 33, 35, .09);
  transform: translateY(-2px);
}

.help-center-shortcuts span {
  color: #8a5d3b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.help-center-shortcuts strong {
  font-size: 17px;
  line-height: 1.3;
}

.help-center-shortcuts small {
  color: #6b6e72;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .help-center-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .help-center-shortcuts {
    grid-template-columns: 1fr;
  }

  .help-center-shortcuts a {
    min-height: 0;
  }
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid #b65f20;
  outline-offset: 3px;
}

#MainContent:focus {
  outline: none;
}

.department-nav a[aria-current="page"] {
  box-shadow: inset 0 -3px 0 #b65f20;
}

/* Mobile storefront navigation */
.mobile-header-actions,
.mobile-menu-layer { display: none; }

@media (max-width: 980px) {
  .site-header__main { grid-template-columns: 128px minmax(0, 1fr) auto; }
  .mobile-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
  .mobile-menu-toggle { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; background: transparent; color: #fff; }
  .mobile-menu-toggle svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
  .department-nav { display: none; }
  .mobile-menu-layer { position: fixed; z-index: 100200; inset: 0; display: block; visibility: hidden; pointer-events: none; }
  .mobile-menu-layer.is-open { visibility: visible; pointer-events: auto; }
  .mobile-menu-layer__backdrop { position: absolute; inset: 0; border: 0; background: rgba(15,17,19,.52); opacity: 0; transition: opacity .22s ease; }
  .mobile-menu-layer.is-open .mobile-menu-layer__backdrop { opacity: 1; }
  .mobile-menu-drawer { position: absolute; top: 0; right: 0; display: flex; width: min(74vw, 320px); height: 100%; height: 100dvh; flex-direction: column; padding: 18px; background: #fff; color: #202327; box-shadow: -18px 0 42px rgba(0,0,0,.18); transform: translateX(102%); transition: transform .25s ease; }
  .mobile-menu-layer.is-open .mobile-menu-drawer { transform: translateX(0); }
  .mobile-menu-drawer > header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid #e8e6e2; }
  .mobile-menu-drawer > header strong { font-size: 21px; }
  .mobile-menu-drawer > header button { width: 38px; height: 38px; border: 1px solid #dedbd6; border-radius: 50%; background: #fff; font-size: 25px; line-height: 1; }
  .mobile-menu-drawer nav { display: grid; padding: 6px 0; overflow-y: auto; }
  .mobile-menu-drawer nav a,
  .mobile-menu-drawer__account a { padding: 11px 4px; border-bottom: 1px solid #efede9; color: #202327; font-size: 15px; font-weight: 600; }
  .mobile-menu-drawer nav a[aria-current="page"] { color: #d93652; }
  .mobile-menu-drawer nav .mobile-menu-drawer__inspiration { margin: 8px 0 6px; border: 0; border-radius: 999px; background: #f04468; color: #fff; text-align: center; box-shadow: 0 8px 20px rgba(240,68,104,.26); }
  .mobile-menu-drawer nav .mobile-menu-drawer__inspiration[aria-current="page"],
  .mobile-menu-drawer nav .mobile-menu-drawer__inspiration:hover { background: #d92f55; color: #fff; }
  .mobile-menu-drawer__account { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: auto; padding-top: 12px; }
  .mobile-menu-drawer__account a,
  .mobile-menu-drawer__account button { position: relative; display: flex; min-width: 0; min-height: 72px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid #dedbd6; border-radius: 16px; padding: 9px; background: #fff; color: #202327; font: inherit; font-size: 12px; font-weight: 700; text-align: center; cursor: pointer; }
  .mobile-menu-drawer__account svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-menu-drawer__cart-icon { position: relative; display: grid; place-items: center; }
  .mobile-menu-drawer__account .somdot-header-cart-count { top: -8px; right: -12px; background: #f04468; color: #fff; }
  html.mobile-menu-open { overflow: hidden; }
}

@media (max-width: 640px) {
  .site-header__main { min-height: 60px; grid-template-columns: 78px minmax(0,1fr) 36px; gap: 5px; padding: 8px; }
  .site-header__brand { grid-column: 1; grid-row: 1; width: 78px; height: 28px; justify-self: start; }
  .site-header__brand img { width: 76px; max-height: 22px; }
  .site-search { grid-column: 2; grid-row: 1; grid-template-columns: minmax(0,1fr) 42px; min-height: 42px; margin: 0; }
  .site-search input { min-width: 0; padding: 0 8px 0 11px; font-size: 14px; }
  .site-search button { width: 42px; }
  .site-search button svg { width: 25px; height: 25px; stroke-width: 2.5; }
  .mobile-header-actions { grid-column: 3; grid-row: 1; justify-self: end; }
  .mobile-menu-toggle { width: 36px; height: 36px; }
  .product-grid,
  .collection-product-grid,
  .template-collection .collection-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-rail__track.product-grid .product-card,
  .product-rail--single-row .product-rail__track.product-grid .product-card,
  .product-rail--single-row .product-rail__track:has(> .product-card:nth-child(4):last-child) .product-card,
  .product-rail--single-row .product-rail__track:has(> .product-card:nth-child(3):last-child) .product-card,
  .product-rail--single-row .product-rail__track:has(> .product-card:nth-child(2):last-child) .product-card { flex: 0 0 calc((100% - 16px) / 2); min-width: 0; }
  .product-rail__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }
  .product-rail__viewport::-webkit-scrollbar { display: none; }
  .product-rail__track.product-grid .product-card { scroll-snap-align: none; }
  .product-rail__track.product-grid .product-card:nth-child(odd) { scroll-snap-align: start; scroll-snap-stop: always; }
  .product-rail__track.product-grid .product-card:last-child { scroll-snap-align: end; scroll-snap-stop: always; }
  .product-rail .rail-controls a { display: inline-flex; font-size: 13px; }
  .product-card__media,
  .template-collection .collection-product-grid .product-card__media { aspect-ratio: 1 / 1; }
  .product-card__media img,
  .template-collection .collection-product-grid .product-card__media img { width: 100%; height: 100%; padding: 0; object-fit: contain; }
  .product-card__content,
  .template-collection .collection-product-grid .product-card__content { padding: 11px 10px 14px; }
  .product-card__title { min-height: 42px; overflow: hidden; font-size: 14px; line-height: 1.45; word-break: normal; overflow-wrap: anywhere; }
  .product-card .price { font-size: 18px; line-height: 1.25; word-break: normal; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Storefront responsive refinements: release 0.2.66 */
@media (max-width: 980px) {
  html, body { max-width: 100%; overflow-x: clip; }
  .single-product .product-main { padding-top: 0; }
  .somdot-product-single, .single-product .product-main, .single-product .product-gallery, .single-product .product-info { min-width: 0; max-width: 100%; }
  .single-product .product-gallery { width: 100vw; max-width: 100vw; margin-right: calc(50% - 50vw); margin-left: calc(50% - 50vw); }
  .single-product .product-gallery--woocommerce .woocommerce-product-gallery__image,
  .single-product .product-gallery--woocommerce .woocommerce-product-gallery__image img { border-radius: 0 !important; }
  .single-product .product-gallery--woocommerce .woocommerce-product-gallery__image { touch-action: pan-y; }
  .single-product .product-gallery--woocommerce .flex-control-thumbs { display:flex;min-height:24px;align-items:center;justify-content:center;gap:10px;margin:9px 12px 3px; }
  .single-product .product-gallery--woocommerce .flex-control-thumbs li { position:relative;display:block;width:9px!important;height:9px;flex:0 0 9px;border-radius:50%;background:#aeb4ba;cursor:pointer;overflow:visible; }
  .single-product .product-gallery--woocommerce .flex-control-thumbs li[hidden] { display:none; }
  .single-product .product-gallery--woocommerce .flex-control-thumbs li:has(img.flex-active),
  .single-product .product-gallery--woocommerce .flex-control-thumbs li.is-selected-variation-image { background:#20242a;box-shadow:0 0 0 2px #fff,0 0 0 3px #20242a; }
  .single-product .product-gallery--woocommerce .flex-control-thumbs img { position:absolute;inset:0;width:100%;height:100%;border:0;padding:0;opacity:0;cursor:pointer; }
  .single-product .product-gallery--woocommerce .flex-control-thumbs li.is-video { width:0!important;height:0;flex-basis:0;border-top:6px solid transparent;border-bottom:6px solid transparent;border-left:10px solid #727980;border-radius:0;background:transparent; }
  .single-product .product-gallery--woocommerce .flex-control-thumbs li.is-video:has(img.flex-active) { border-left-color:#20242a;box-shadow:none; }
  .single-product .product-info h1 { font-size:20px;line-height:1.28; }
  .single-product .product-variation-swatches, .single-product .product-variation-swatches__grid { min-width:0;max-width:100%; }
  .single-product .product-variation-swatches__grid { flex-wrap:nowrap;padding:4px 2px;overflow-x:auto;overflow-y:visible;scrollbar-width:none; }
  .single-product .product-variation-swatches__grid::-webkit-scrollbar { display:none; }
  .single-product .product-variation-swatch.is-active { outline:0;box-shadow:inset 0 0 0 2px #20242a; }
  .product-service-grid a, .product-service-grid a:nth-child(2), .product-service-grid a:nth-child(3) { background:#f0f1f2; }
  .mobile-menu-drawer nav .mobile-menu-drawer__inspiration { box-sizing:border-box;min-height:42px;margin:10px 2px 8px;padding:11px 16px;line-height:20px; }
  .mobile-menu-drawer nav { flex:1 1 auto;min-height:0; }
  .mobile-menu-drawer__market { padding:12px 0 2px;border-top:1px solid #e8e6e2; }
  .mobile-menu-drawer__market>strong { display:block;margin-bottom:8px;font-size:13px; }
  .mobile-menu-drawer__market>div { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px; }
  .mobile-menu-drawer__market a { display:grid;min-width:0;grid-template-columns:24px minmax(0,1fr) auto;align-items:center;gap:6px;border:1px solid #dedbd6;border-radius:9px;padding:7px;color:#202327;font-size:12px;text-decoration:none; }
  .mobile-menu-drawer__market a.is-current { border-color:#202327;background:#f4f2ef; }
  .mobile-menu-drawer__market img { width:24px;height:18px;object-fit:cover; }
  .mobile-menu-drawer__market small { display:block;margin-top:7px;color:#686b70;font-size:10px;line-height:1.35; }
  .mobile-menu-drawer__account { margin-top:10px; }
}
@media (max-width:640px) {
  .site-search input { padding-right:8px;font-size:14px; }
  .single-product .product-info h1 { font-size:18px; }
}

/* Homepage section actions share one visual system across product, video and Blog headings. */
.home .product-rail .rail-controls > a,
.home .ssi-home-videos .shop-video__header > .shop-video__see-more,
.home .home-blog .home-blog__heading > a {
  display: inline-flex;
  align-items: center;
  color: #282828;
  font-family: Urbanist, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.home .product-rail .rail-controls > a:hover,
.home .ssi-home-videos .shop-video__header > .shop-video__see-more:hover,
.home .home-blog .home-blog__heading > a:hover {
  color: #111;
}

@media (max-width: 640px) {
  .home .product-rail .rail-controls > a,
  .home .ssi-home-videos .shop-video__header > .shop-video__see-more,
  .home .home-blog .home-blog__heading > a {
    font-size: 13px;
  }
}

/* Storefront responsive refinements: release 0.2.67 */
@media (min-width:641px) and (max-width:980px) {
  .site-header__main {
    grid-template-columns:112px minmax(180px,1fr) 86px 40px;
    gap:10px;
    min-height:64px;
    padding-top:7px;
    padding-bottom:7px;
  }
  .site-header__brand { grid-column:1;grid-row:1; }
  .site-header__brand img { width:108px;max-height:30px; }
  .site-search { grid-column:2;grid-row:1;min-width:0;min-height:38px; }
  .site-search input { padding:0 10px 0 12px;font-size:13px; }
  .site-search button { width:38px; }
  .site-search button svg { width:23px;height:23px;stroke-width:2.4; }
  .header-actions { display:grid;grid-column:3;grid-row:1;grid-template-columns:repeat(2,38px);gap:6px;align-self:center; }
  .header-actions>.header-icon { display:grid;width:38px;height:38px;place-items:center; }
  .header-actions>.country-selector { display:none; }
  .mobile-header-actions { grid-column:4;grid-row:1;align-self:center; }
  .mobile-menu-toggle { width:38px;height:38px; }
  .home .product-rail__viewport {
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    scrollbar-width:none;
    overscroll-behavior-inline:contain;
    -webkit-overflow-scrolling:touch;
  }
  .home .product-rail__viewport::-webkit-scrollbar { display:none; }
  .home .product-rail--single-row .product-rail__track.product-grid .product-card,
  .home .product-rail--single-row .product-rail__track:has(> .product-card:nth-child(4):last-child) .product-card,
  .home .product-rail--single-row .product-rail__track:has(> .product-card:nth-child(3):last-child) .product-card,
  .home .product-rail--single-row .product-rail__track:has(> .product-card:nth-child(2):last-child) .product-card {
    flex:0 0 calc((100% - 32px) / 3);
    min-width:0;
    scroll-snap-align:start;
    scroll-snap-stop:always;
  }
  .home .product-rail--single-row .product-rail__track.product-grid .product-card:last-child { scroll-snap-align:end; }
  .mobile-menu-drawer { width:min(54vw,360px);padding:16px 18px; }
  .mobile-menu-drawer nav { padding:0; }
  .mobile-menu-drawer nav a { padding:10px 3px; }
  .mobile-menu-drawer nav .mobile-menu-drawer__inspiration { margin:7px 0 8px; }
  .mobile-menu-drawer__market { padding-top:9px; }
  .mobile-menu-drawer__account { margin-top:8px; padding-top:8px; }
  .single-product .product-main { gap:0; }
  .single-product .product-gallery { margin-top:0; }
}
@media (min-width:981px) and (max-width:1180px) {
  .home .product-rail__viewport {
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    scrollbar-width:none;
    overscroll-behavior-inline:contain;
    -webkit-overflow-scrolling:touch;
  }
  .home .product-rail__viewport::-webkit-scrollbar { display:none; }
  .home .product-rail--single-row .product-rail__track.product-grid .product-card,
  .home .product-rail--single-row .product-rail__track:has(> .product-card:nth-child(4):last-child) .product-card,
  .home .product-rail--single-row .product-rail__track:has(> .product-card:nth-child(3):last-child) .product-card,
  .home .product-rail--single-row .product-rail__track:has(> .product-card:nth-child(2):last-child) .product-card {
    flex:0 0 calc((100% - 48px) / 4);
    min-width:0;
    scroll-snap-align:start;
    scroll-snap-stop:always;
  }
  .home .product-rail--single-row .product-rail__track.product-grid .product-card:last-child { scroll-snap-align:end; }
}
@media (max-width:980px) {
  .mobile-menu-drawer { width:min(68vw,292px);padding:13px 15px; }
  .mobile-menu-drawer>header { padding-bottom:8px; }
  .mobile-menu-drawer>header strong { font-size:18px; }
  .mobile-menu-drawer>header button { width:34px;height:34px;font-size:22px; }
  .mobile-menu-drawer nav { align-content:start;padding:3px 0; }
  .mobile-menu-drawer nav a { box-sizing:border-box;display:flex;min-height:40px;align-items:center;padding:9px 3px;font-size:14px;line-height:20px; }
  .mobile-menu-drawer nav .mobile-menu-drawer__inspiration,
  .mobile-menu-drawer nav .mobile-menu-drawer__inspiration:hover,
  .mobile-menu-drawer nav .mobile-menu-drawer__inspiration[aria-current="page"] {
    min-height:40px;justify-content:center;margin:5px 0;padding:9px 13px;border-radius:9px;background:#f04468;color:#fff;line-height:20px;box-shadow:none;transform:none;transition:none;
  }
  .mobile-menu-drawer__market { position:relative;padding:8px 0 0; }
  .mobile-menu-drawer__market>strong { margin-bottom:5px;font-size:12px; }
  .mobile-market-picker { position:relative;width:100%; }
  .mobile-market-picker>summary { list-style:none; }
  .mobile-market-picker>summary::-webkit-details-marker { display:none; }
  .mobile-market-picker__toggle {
    box-sizing:border-box;
    display:flex;
    width:100%;
    min-height:40px;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    border:1px solid #c8c8c8;
    border-radius:12px;
    padding:7px 11px;
    background:#fff;
    color:#202327;
    font-size:12px;
    cursor:pointer;
    transition:border-color .16s ease,box-shadow .16s ease,background-color .16s ease;
  }
  .mobile-market-picker__toggle:hover,
  .mobile-market-picker__toggle:focus-visible,
  .mobile-market-picker[open]>.mobile-market-picker__toggle { border-color:#202327;box-shadow:0 0 0 3px rgb(32 35 39 / 10%);outline:0; }
  .mobile-market-picker__selection { display:flex;min-width:0;align-items:center;gap:9px; }
  .mobile-market-picker__selection img,
  .mobile-market-picker__option img { width:24px;height:18px;flex:0 0 24px;border-radius:2px;object-fit:cover; }
  .mobile-market-picker__selection>span { overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }
  .mobile-market-picker__toggle>svg { width:18px;height:18px;flex:0 0 18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;transition:transform .16s ease; }
  .mobile-market-picker[open]>.mobile-market-picker__toggle>svg { transform:rotate(180deg); }
  .mobile-market-picker__menu {
    position:absolute;
    z-index:12;
    right:0;
    bottom:calc(100% + 7px);
    left:0;
    overflow:hidden;
    border:1px solid #d8d5d0;
    border-radius:13px;
    padding:5px;
    background:#fff;
    box-shadow:0 -10px 28px rgb(25 28 31 / 15%);
  }
  .mobile-market-picker:not([open])>.mobile-market-picker__menu { display:none; }
  .mobile-menu-drawer__market .mobile-market-picker__option {
    display:grid;
    min-height:40px;
    grid-template-columns:24px minmax(0,1fr) 18px;
    align-items:center;
    gap:9px;
    border:0;
    border-radius:9px;
    padding:7px 9px;
    color:#202327;
    font-size:12px;
    text-decoration:none;
  }
  .mobile-menu-drawer__market .mobile-market-picker__option:hover,
  .mobile-menu-drawer__market .mobile-market-picker__option:focus-visible { background:#f1f2f3;outline:0; }
  .mobile-menu-drawer__market .mobile-market-picker__option.is-current { border:0;background:#edf2ff;color:#174fbd; }
  .mobile-market-picker__check { justify-self:end;font-size:14px;font-weight:700; }
  .mobile-menu-drawer__account { gap:7px;margin-top:7px;padding-top:7px; }
  .mobile-menu-drawer__account a,.mobile-menu-drawer__account button { min-height:54px;border-radius:11px;padding:6px; }
  .mobile-menu-drawer__account svg { width:21px;height:21px; }
  .single-product .product-gallery { margin-top:0!important; }
}

/* Product archive filters: compact phone and Pad dialog, release 0.2.82 */
.collection-toolbar__summary {
  display:flex;
  min-width:0;
  align-items:center;
}

.collection-toolbar__title {
  min-width:0;
}

.collection-filter-trigger,
.collection-toolbar__divider {
  display:none;
}

.collection-filter-dialog[hidden] {
  display:none !important;
}

.collection-filter-dialog {
  position:fixed;
  z-index:100020;
  inset:0;
  display:grid;
  place-items:center;
  padding:16px;
}

.collection-filter-dialog__backdrop {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  background:rgb(15 18 22 / 56%);
  cursor:default;
}

.collection-filter-dialog__panel {
  position:relative;
  display:flex;
  width:min(720px, calc(100vw - 32px));
  max-height:calc(100dvh - 32px);
  flex-direction:column;
  overflow:hidden;
  border-radius:18px;
  background:#fff;
  box-shadow:0 20px 55px rgb(0 0 0 / 24%);
}

.collection-filter-dialog__header {
  position:relative;
  display:grid;
  min-height:72px;
  flex:0 0 auto;
  place-items:center;
  border-bottom:1px solid #e5e7ea;
  padding:14px 68px;
}

.collection-filter-dialog__header h2 {
  margin:0;
  color:#202327;
  font-size:24px;
  line-height:1.2;
}

.collection-filter-dialog__close {
  position:absolute;
  top:14px;
  right:16px;
  display:grid;
  width:42px;
  height:42px;
  place-items:center;
  border:1px solid #d7dade;
  border-radius:50%;
  background:#fff;
  color:#202327;
  cursor:pointer;
}

.collection-filter-dialog__close svg {
  width:23px;
  height:23px;
}

.collection-filter-dialog__form {
  display:flex;
  min-height:0;
  flex:1 1 auto;
  flex-direction:column;
}

.collection-filter-dialog__body {
  min-height:0;
  flex:1 1 auto;
  overflow-y:auto;
  overscroll-behavior:contain;
  padding:0 24px;
}

.collection-filter-section {
  border-bottom:1px solid #e5e7ea;
}

.collection-filter-section summary {
  position:relative;
  display:flex;
  min-height:58px;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  list-style:none;
  color:#30343a;
  font-size:17px;
  font-weight:750;
  cursor:pointer;
}

.collection-filter-section summary::-webkit-details-marker {
  display:none;
}

.collection-filter-section summary::after {
  width:9px;
  height:9px;
  flex:0 0 auto;
  border-right:1.7px solid currentColor;
  border-bottom:1.7px solid currentColor;
  content:"";
  transform:rotate(45deg) translate(-2px, 2px);
  transition:transform .16s ease;
}

.collection-filter-section[open] summary::after {
  transform:rotate(225deg) translate(-2px, 2px);
}

.collection-filter-section__content {
  display:grid;
  gap:6px;
  padding:0 0 16px;
}

.collection-filter-section__content select,
.collection-filter-dialog__price input {
  width:100%;
  min-height:44px;
  border:1px solid #cfd3d8;
  border-radius:9px;
  background:#fff;
  padding:9px 11px;
  color:#202327;
  font:inherit;
}

.collection-filter-choice {
  display:grid;
  min-height:38px;
  grid-template-columns:18px minmax(0, 1fr) auto;
  align-items:center;
  gap:10px;
  border-radius:7px;
  padding:6px 8px;
  color:#434950;
  cursor:pointer;
}

.collection-filter-choice:hover {
  background:#f3f4f5;
}

.collection-filter-choice input {
  width:17px;
  height:17px;
  margin:0;
  accent-color:#202327;
}

.collection-filter-choice small {
  color:#7a8086;
  font-size:12px;
}

.collection-filter-dialog__price {
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.collection-filter-dialog__price label {
  display:grid;
  gap:6px;
  color:#4f555c;
  font-size:13px;
}

.collection-filter-dialog__footer {
  display:grid;
  flex:0 0 auto;
  gap:10px;
  border-top:1px solid #e5e7ea;
  padding:14px 24px 18px;
  background:#fff;
  box-shadow:0 -8px 20px rgb(0 0 0 / 4%);
}

.collection-filter-dialog__clear,
.collection-filter-dialog__submit {
  display:flex;
  width:100%;
  min-height:42px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  text-align:center;
}

.collection-filter-dialog__clear {
  border:1px solid #cfd3d8;
  color:#5e646b;
}

.collection-filter-dialog__submit {
  border-color:#202327;
  background:#202327;
  color:#fff;
}

body.collection-filter-is-open {
  overflow:hidden;
}

@media (max-width:1180px) {
  .template-collection .collection-results {
    padding-top:20px;
  }

  .template-collection .collection-layout {
    display:block;
    width:min(100% - 24px, var(--page-width));
  }

  .template-collection .filter-panel {
    display:none;
  }

  .template-collection .collection-products,
  .template-collection .collection-toolbar,
  .template-collection .collection-empty,
  .template-collection .collection-product-grid {
    width:100%;
    max-width:none;
  }

  .template-collection .collection-toolbar {
    display:flex;
    min-height:68px;
    align-items:center;
    padding:11px 15px;
  }

  .template-collection .collection-toolbar__summary {
    width:100%;
  }

  body.template-collection .collection-toolbar > form.woocommerce-ordering {
    display:none !important;
  }

  .template-collection .collection-filter-trigger {
    display:grid;
    min-width:58px;
    flex:0 0 58px;
    justify-items:center;
    gap:2px;
    border:0;
    padding:2px 7px;
    background:transparent;
    color:#202327;
    cursor:pointer;
  }

  .template-collection .collection-filter-trigger svg {
    width:24px;
    height:24px;
  }

  .template-collection .collection-filter-trigger span {
    font-size:12px;
    font-weight:650;
    line-height:1.15;
  }

  .template-collection .collection-toolbar__divider {
    display:block;
    width:1px;
    height:42px;
    flex:0 0 1px;
    margin:0 14px 0 8px;
    background:#dfe2e5;
  }
}

@media (max-width:640px) {
  .template-collection .collection-results {
    padding-top:14px;
  }

  .template-collection .collection-toolbar {
    flex-direction:row;
    align-items:center;
    padding:10px 11px;
  }

  .template-collection .collection-filter-trigger {
    min-width:52px;
    flex-basis:52px;
  }

  .template-collection .collection-toolbar__divider {
    margin-right:10px;
    margin-left:5px;
  }

  .template-collection .collection-toolbar h1 {
    font-size:18px;
  }

  .template-collection .collection-toolbar p {
    font-size:13px;
  }

  .collection-filter-dialog {
    padding:10px;
  }

  .collection-filter-dialog__panel {
    width:calc(100vw - 20px);
    max-height:calc(100dvh - 20px);
    border-radius:16px;
  }

  .collection-filter-dialog__header {
    min-height:64px;
  }

  .collection-filter-dialog__header h2 {
    font-size:22px;
  }

  .collection-filter-dialog__close {
    top:12px;
    right:12px;
    width:40px;
    height:40px;
  }

  .collection-filter-dialog__body {
    padding:0 18px;
  }

  .collection-filter-section summary {
    min-height:54px;
    font-size:16px;
  }

  .collection-filter-dialog__footer {
    padding:12px 18px 16px;
  }
}
@media (max-width:640px) {
  .header-actions { display:none; }
}
.woocommerce-notices-wrapper>.woocommerce-message { display:none!important; }
.customer-support-contact .somdot-support-upload input[type=file]{position:absolute;width:1px!important;height:1px!important;overflow:hidden;clip:rect(0 0 0 0);clip-path:inset(50%);white-space:nowrap}
.somdot-localized-file{display:flex;min-height:50px;align-items:center;gap:12px;padding:7px 10px;border:1px dashed #c8c1b8;border-radius:12px;background:#fff;cursor:pointer}
.somdot-localized-file>span{flex:0 0 auto;padding:9px 15px;border-radius:999px;background:#e8e2d9;color:#222629;font-weight:700}
.somdot-localized-file>small{min-width:0;margin:0!important;overflow:hidden;color:#6c6b68;text-overflow:ellipsis;white-space:nowrap}
