
:root:has([data-theme-pack="cloudloom"]),
[data-theme-pack="cloudloom"] {
  --cl-bg: var(--color-bg, #F7F5F2);
  --cl-surface: var(--color-card, #FFFFFF);
  --cl-mist: var(--color-muted, #EDEAE4);
  --cl-border: var(--color-border, #E2DED6);
  --cl-heading: var(--color-heading, var(--color-text, #171717));
  --cl-body: var(--color-text, #3F3F3C);
  --cl-muted: var(--color-muted-text, #7A7A74);
  --cl-brand: var(--color-primary, #171717);
  --cl-brand-2: var(--color-accent, #171717);
  --cl-on-primary: var(--color-on-primary, #F7F5F2);
  --cl-forest: #171717;
  --cl-sale: var(--color-sale, #C45C4A);
  --cl-radius: 4px;
  --cl-radius-sm: 4px;
  --cl-font: var(--font-sans, "Noto Sans Georgian", "Noto Sans", system-ui, sans-serif);
  --cl-page-pad: clamp(1.1rem, 4vw, 2.5rem);
  --cl-max: 1280px;
  --cl-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --cl-drawer-z: 10050;
  --cl-header-h: 4rem;
}

html.dark:has([data-theme-pack="cloudloom"]),
html.dark [data-theme-pack="cloudloom"],
html.dark body.cl-app {
  --cl-bg: var(--color-dark-bg, var(--color-bg-dark, #121211));
  --cl-surface: var(--color-dark-card, #1C1C1A);
  --cl-mist: #242422;
  --cl-border: #2E2E2B;
  --cl-heading: var(--color-dark-heading, #F4F2EE);
  --cl-body: var(--color-dark-text, #C8C6C0);
  --cl-muted: #9A9892;
  --cl-forest: #F4F2EE;
}

html[data-theme-slug="cloudloom"] body.cl-app,
body.cl-app {
  background: var(--cl-bg);
  color: var(--cl-body);
  font-family: var(--cl-font);
}

body.cl-app,
.cl-wrap,
.cl-header,
.cl-footer,
.cl-hero,
.cl-section,
.cl-pdp,
.cl-catalog,
.cl-cart,
.cl-checkout,
.cl-auth,
.cl-about,
.cl-contact,
.cl-faq,
.cl-stories,
.cl-404,
.cl-content,
.cl-account {
  box-sizing: border-box;
  font-family: var(--cl-font);
  color: var(--cl-body);
}

.cl-container {
  width: 100%;
  max-width: var(--cl-max);
  margin: 0 auto;
  padding-left: var(--cl-page-pad);
  padding-right: var(--cl-page-pad);
}

.cl-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cl-brand);
  font-weight: 600;
}

.cl-heading h1,
.cl-heading h2,
.cl-collection-header h1,
.cl-page-banner__title,
.cl-hero__copy h1,
.cl-pdp__title,
.cl-auth__title,
.cl-faq h1,
.cl-about h1,
.cl-404 h1,
.cl-cart h1,
.cl-account-app h1 {
  margin: 0;
  color: var(--cl-heading);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.25rem;
  border: 0;
  border-radius: var(--cl-radius);
  background: var(--cl-brand);
  color: var(--cl-on-primary);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms var(--cl-ease), opacity 180ms var(--cl-ease);
}

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

.cl-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.cl-btn--ghost {
  background: transparent;
  color: var(--cl-heading);
  border: 1px solid var(--cl-border);
}

.cl-btn--on-sage {
  background: var(--cl-surface);
  color: var(--cl-brand);
}

/* —— Facebook shimmer —— */
.cl-fb-shimmer {
  position: relative;
  overflow: hidden;
  background: color-mix(in srgb, var(--cl-muted) 18%, var(--cl-surface));
}

.cl-fb-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--cl-surface) 72%, transparent) 50%, transparent 100%);
  animation: cl-fb-shimmer 1.15s ease-in-out infinite;
}

@keyframes cl-fb-shimmer {
  100% { transform: translateX(100%); }
}

.cl-pc--skeleton { pointer-events: none; }
.cl-pc-skeleton__media {
  aspect-ratio: 1;
  border-radius: 0;
  margin-bottom: 0.85rem;
}
.cl-pc-skeleton__body { display: flex; flex-direction: column; gap: 0.5rem; }
.cl-pc-skeleton__line { height: 0.75rem; width: 78%; border-radius: 8px; }
.cl-pc-skeleton__line--short { width: 42%; height: 0.65rem; }

@media (prefers-reduced-motion: reduce) {
  .cl-fb-shimmer::after { animation: none; transform: none; }
  .cl-btn { transition: none; }
}

/* —— Header —— */
.cl-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--cl-bg) 92%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid color-mix(in srgb, var(--cl-border) 70%, transparent);
}

.cl-header .cl-container { position: relative; }

.cl-header__bar {
  display: flex;
  align-items: center;
  min-height: var(--cl-header-h);
  gap: 1rem;
}

.cl-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--cl-heading);
  font-weight: 560;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.cl-logo img { height: 26px; width: auto; }
.cl-logo__mark { display: inline-flex; align-items: center; gap: 0.45rem; }
.cl-logo__cloud { display: none; }

.cl-nav { flex: 1; min-width: 0; }
.cl-nav__links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.35rem;
}
.cl-nav__links a {
  color: var(--cl-heading);
  text-decoration: none;
  font-size: 0.88rem;
  white-space: nowrap;
}
.cl-nav__links a:hover { opacity: 0.65; }
.cl-nav__links a[aria-current="page"] { text-decoration: underline; text-underline-offset: 0.35em; }

.cl-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.05rem;
}

.cl-action,
.cl-burger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--cl-heading);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
}

.cl-action__bubble {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--cl-brand);
  color: var(--cl-on-primary);
  font-size: 9px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cl-action--desk { display: none; }
.cl-header__lang, .cl-header__theme { display: none; }

@media (max-width: 959px) {
  .cl-nav { display: none; }
  .cl-header__bar > .cl-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 960px) {
  .cl-burger { display: none; }
  .cl-action--desk { display: inline-flex; }
  .cl-header__lang, .cl-header__theme { display: inline-flex; }
}

.cl-menu {
  position: fixed;
  inset: 0;
  z-index: 12000;
}
.cl-menu__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(23, 23, 23, 0.4);
}
.cl-menu__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100vw, 22rem);
  background: var(--cl-surface);
  padding: 1.1rem 1.35rem calc(1.5rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: -12px 0 40px rgba(23, 23, 23, 0.12);
}
.cl-menu__head { display: flex; justify-content: space-between; align-items: center; }
.cl-menu__close {
  width: 42px; height: 42px; border: 0; background: var(--cl-mist); border-radius: 999px; cursor: pointer; color: var(--cl-heading);
}
.cl-menu__nav { display: flex; flex-direction: column; gap: 0.15rem; }
.cl-menu__nav a,
.cl-menu__account {
  color: var(--cl-heading);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.55rem 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.cl-menu__tools { display: flex; gap: 0.75rem; margin-top: auto; align-items: center; }

/* —— Footer —— */
.cl-footer { margin-top: 2.5rem; background: var(--cl-surface); }
.cl-footer__promises {
  background: var(--cl-mist);
  color: var(--cl-heading);
  padding: 1.35rem 0;
  border-top: 1px solid var(--cl-border);
  border-bottom: 1px solid var(--cl-border);
}
.cl-footer__promises-row {
  display: grid;
  gap: 1.1rem;
}
.cl-footer__promises h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.cl-footer__promises p { margin: 0; opacity: 0.85; font-size: 0.88rem; }
.cl-footer__grid {
  display: grid;
  gap: 1.5rem;
  padding: 2.25rem 0 1.4rem;
}
.cl-footer__logo img { height: 32px; }
.cl-footer__tagline { color: var(--cl-muted); max-width: 28ch; }
.cl-footer__social { display: flex; gap: 0.85rem; }
.cl-footer__social a { color: var(--cl-brand); }
.cl-footer__col h3 { margin: 0 0 0.6rem; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; }
.cl-footer__col ul { list-style: none; margin: 0; padding: 0; }
.cl-footer__col a, .cl-footer__contact a { color: var(--cl-body); text-decoration: none; }
.cl-footer__contact { font-style: normal; display: flex; flex-direction: column; gap: 0.35rem; }
.cl-footer__bottom { border-top: 1px solid var(--cl-border); padding: 1rem 0 1.5rem; color: var(--cl-muted); font-size: 0.82rem; }
.cl-footer__powered { margin-left: 0.4rem; }

@media (min-width: 800px) {
  .cl-footer__promises-row { grid-template-columns: repeat(3, 1fr); }
  .cl-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* —— Hero full-bleed —— */
.cl-hero { padding: 0; }
.cl-hero__stage {
  position: relative;
  min-height: min(68vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--cl-mist);
}
.cl-hero__copy {
  position: relative;
  z-index: 2;
  padding: 3.2rem 0 3.4rem;
  max-width: 36rem;
}
.cl-hero__copy h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); font-weight: 500; }
.cl-hero__sub { margin: 0.85rem 0 1.35rem; font-size: 1.02rem; line-height: 1.55; max-width: 38ch; color: var(--cl-body); }
.cl-hero__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.cl-hero__trust { display: none; }
.cl-hero__well {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(160deg, #efe8dc, #d9cfc0 45%, #c4b8a6);
}
.cl-hero--photo .cl-hero__well::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 23, 23, 0.42), transparent 58%);
}
.cl-hero--photo .cl-hero__copy,
.cl-hero--photo .cl-hero__copy h1,
.cl-hero--photo .cl-hero__sub { color: #fff; }
.cl-hero--photo .cl-btn--ghost { border-color: rgba(255,255,255,0.45); color: #fff; }
.cl-hero__media {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}
.cl-hero__media--mob { display: none; }
.cl-hero__bed {
  position: absolute;
  inset: 22% 14% 18%;
  border-radius: 8px 8px 4px 4px;
  background: #f7f3ec;
  box-shadow: 0 18px 40px rgba(23, 23, 23, 0.12);
}
.cl-hero__pillow {
  position: absolute;
  top: -8%;
  left: 18%;
  right: 18%;
  height: 28%;
  border-radius: 999px;
  background: #fbf8f3;
}
.cl-hero__linen {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  border-radius: 0 0 4px 4px;
  background: color-mix(in srgb, #c4b8a6 40%, white);
}
.cl-hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.8rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}
.cl-hero__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
}
.cl-hero__dot.is-active { background: #fff; width: 22px; }
.cl-hero__sk-line { height: 0.9rem; width: 70%; border-radius: 4px; margin-bottom: 0.7rem; }
.cl-hero__sk-line--lg { height: 2.2rem; width: 88%; }
.cl-hero__sk-line--sm { width: 42%; }

@media (min-width: 900px) {
  .cl-hero__copy { padding: 5.5rem 0 4.5rem; }
}

@media (max-width: 760px) {
  .cl-hero__stage { min-height: 32rem; }
  .cl-hero__copy { padding: 2rem 0 2.25rem; max-width: none; }
  .cl-hero__copy h1 { font-size: clamp(1.7rem, 8vw, 2.25rem); }
  .cl-hero__sub { font-size: 0.95rem; margin: 0.65rem 0 1.1rem; }
  .cl-hero__actions .cl-btn--ghost { display: none; }
  .cl-hero--photo .cl-hero__well::after {
    background: linear-gradient(180deg, transparent 28%, rgba(23, 23, 23, 0.78));
  }
}

@media (max-width: 640px) {
  .cl-hero__media--desk.cl-hero__media--desk { display: none; }
  .cl-hero__media--mob { display: block; }
}

#demo-products,
#demo-cats,
#demo-story,
#demo-quotes,
#demo-journal,
#newsletter {
  scroll-margin-top: calc(var(--cl-header-h) + 0.85rem);
}

/* —— Product cards —— */
.cl-product-grid {
  display: grid;
  gap: 1.15rem 1rem;
}
.cl-product-grid[data-cols="2"],
.cl-product-grid[data-cols="3"],
.cl-product-grid[data-cols="4"] { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 980px) {
  .cl-product-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
  .cl-product-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); gap: 1.35rem; }
}

.cl-pc {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}
.cl-pc__media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  background: var(--cl-mist);
  overflow: hidden;
}
.cl-pc__media img, .cl-pc__media .object-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cl-pc__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  color: var(--cl-muted);
}
.cl-pc__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.28rem 0.6rem;
  border-radius: var(--cl-radius);
  background: var(--cl-surface);
  color: var(--cl-heading);
  font-size: 0.7rem;
  font-weight: 600;
}
.cl-pc__badge--sale { background: var(--cl-sale); color: #fff; }
.cl-pc__badge--oos { background: var(--cl-forest); color: #fff; }
.cl-pc__body { padding: 0.75rem 0 1.15rem; display: flex; flex-direction: column; gap: 0.28rem; flex: 1; }
.cl-pc__title { margin: 0; font-size: 0.95rem; font-weight: 500; }
.cl-pc__title a { color: var(--cl-heading); text-decoration: none; }
.cl-pc__desc { margin: 0; color: var(--cl-muted); font-size: 0.8rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cl-pc__price { margin: 0.1rem 0 0; display: flex; gap: 0.5rem; align-items: baseline; color: var(--cl-heading); font-weight: 500; font-size: 0.92rem; }
.cl-pc__price .compare { color: var(--cl-muted); text-decoration: line-through; font-weight: 400; font-size: 0.85rem; }
.cl-pc__cta {
  margin-top: 0.35rem;
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: var(--cl-heading);
  font: inherit;
  font-weight: 500;
  padding: 0.2rem 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.28em;
}
.cl-pc--oos { opacity: 0.62; }

.cl-heading { margin: 0 0 1.15rem; }
.cl-heading h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); }

/* —— Sections —— */
.cl-section { padding: 2.4rem 0; }
@media (max-width: 760px) {
  .cl-section { padding: 1.65rem 0; }
  .cl-pc__cta { font-size: 0.8rem; }
}
.cl-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.cl-section__all { color: var(--cl-brand); text-decoration: none; font-weight: 600; }
.cl-empty { color: var(--cl-muted); }

.cl-cats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.cl-cat {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--cl-heading);
}
.cl-cat__media {
  display: block;
  aspect-ratio: 1;
  border-radius: 0;
  overflow: hidden;
  background: var(--cl-mist);
}
.cl-cat__media img { width: 100%; height: 100%; object-fit: cover; }
.cl-cat__ph { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 1.6rem; color: var(--cl-muted); }
.cl-cat__label { margin-top: 0.45rem; font-weight: 500; font-size: 0.88rem; }
@media (min-width: 900px) {
  .cl-cats__grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
}

.cl-trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem 1.25rem;
}
.cl-trust__list li { display: grid; grid-template-columns: auto 1fr; column-gap: 0.7rem; }
.cl-trust__n { font-size: 0.75rem; color: var(--cl-muted); font-weight: 600; grid-row: 1 / span 2; padding-top: 0.15rem; }
.cl-trust__list h3 { margin: 0; font-size: 0.92rem; }
.cl-trust__list p { margin: 0.2rem 0 0; color: var(--cl-muted); font-size: 0.86rem; }
@media (min-width: 800px) {
  .cl-trust__list { grid-template-columns: repeat(4, 1fr); }
  .cl-trust--grid .cl-trust__list { grid-template-columns: repeat(3, 1fr); }
}

.cl-cta__band {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem 1.4rem;
  border-radius: var(--cl-radius);
  background: var(--cl-brand);
  color: var(--cl-on-primary);
}
.cl-cta__band h2 { margin: 0 0 0.35rem; color: inherit; }
.cl-cta__band p { margin: 0; opacity: 0.9; }
@media (min-width: 760px) {
  .cl-cta__band { flex-direction: row; align-items: center; justify-content: space-between; padding: 2rem 2.1rem; }
}

.cl-lookbook__stack { display: grid; gap: 1rem; }
.cl-lookbook__row {
  display: grid;
  gap: 0;
  text-decoration: none;
  color: inherit;
  border-radius: var(--cl-radius);
  overflow: hidden;
  background: var(--cl-surface);
  border: 1px solid var(--cl-border);
}
.cl-lookbook__photo { min-height: 180px; background-size: cover; background-position: center; }
.cl-lookbook__copy { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: 0.35rem; }
.cl-lookbook__copy strong { color: var(--cl-brand); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.cl-lookbook__copy h2 { margin: 0; }
@media (min-width: 800px) {
  .cl-lookbook__row { grid-template-columns: 1.1fr 0.9fr; }
}
@media (max-width: 760px) {
  .cl-lookbook__photo { min-height: 200px; }
  .cl-lookbook__copy { padding: 0.9rem 0 0.2rem; }
  .cl-lookbook__row { border: 0; background: transparent; }
}

.cl-mega__pair { display: grid; gap: 0.9rem; }
.cl-mega__tile {
  position: relative;
  min-height: 200px;
  border-radius: var(--cl-radius);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.cl-mega__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cl-mega__copy { position: relative; padding: 1.2rem; background: linear-gradient(transparent, rgba(14,23,21,0.72)); width: 100%; }
.cl-mega__copy h2, .cl-mega__copy p { margin: 0 0 0.25rem; color: #fff; }
@media (min-width: 800px) { .cl-mega__pair { grid-template-columns: 1fr 1fr; } }

.cl-quotes__layout { display: grid; gap: 1rem; }
.cl-quotes__lead {
  margin: 0;
  padding: 1.5rem;
  border-radius: var(--cl-radius);
  background: var(--cl-mist);
}
.cl-quotes__lead p { margin: 0; font-size: 1.25rem; line-height: 1.45; color: var(--cl-heading); }
.cl-quotes__lead footer { margin-top: 1rem; display: flex; gap: 0.5rem; color: var(--cl-muted); }
.cl-quotes__rest { display: grid; gap: 0.75rem; }
.cl-quotes__rest blockquote {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: var(--cl-radius-sm);
  background: var(--cl-surface);
  border: 1px solid var(--cl-border);
}
.cl-quotes__rest p { margin: 0 0 0.5rem; }
@media (min-width: 880px) {
  .cl-quotes__layout { grid-template-columns: 1.3fr 0.7fr; }
}

.cl-journal__list { display: grid; gap: 0.75rem; }
.cl-journal__row {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
  align-items: center;
}
.cl-journal__thumb {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cl-mist);
}
.cl-journal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cl-journal__copy h3 { margin: 0 0 0.25rem; color: var(--cl-heading); }
.cl-journal__copy span { color: var(--cl-brand); font-size: 0.85rem; }

.cl-ig__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.cl-ig__grid a { display: block; aspect-ratio: 1; border-radius: 16px; overflow: hidden; }
.cl-ig__grid img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 720px) { .cl-ig__grid { grid-template-columns: repeat(4, 1fr); } }

.cl-news__panel {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: var(--cl-radius);
  background: var(--cl-brand);
  color: var(--cl-on-primary);
}
.cl-news__panel h2 { margin: 0 0 0.4rem; color: inherit; }
.cl-news__panel p { margin: 0; opacity: 0.9; }
.cl-news__form { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.cl-news__form input {
  flex: 1 1 180px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 1rem;
  font: inherit;
}
.cl-news__error { width: 100%; color: #ffd7d0; }
.cl-news__done { margin: 0; }
@media (min-width: 800px) {
  .cl-news__panel { grid-template-columns: 1fr 1fr; align-items: center; }
}

.cl-section--button { padding: 1rem 0 2rem; }

/* —— Collection / catalog —— */
.cl-collection-header { padding: 1.4rem 0 0.4rem; }
.cl-collection-header h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cl-collection-header__count { margin: 0.4rem 0 0; color: var(--cl-muted); }
.cl-page-banner { padding: 1.2rem 0 0.2rem; }
.cl-page-banner__title { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-top: 0.45rem; }
.cl-breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; color: var(--cl-muted); font-size: 0.82rem; }
.cl-breadcrumb a { color: inherit; text-decoration: none; }
.cl-breadcrumb .is-active { color: var(--cl-heading); }
.cl-breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 0.35rem; opacity: 0.5; }
.cl-catalog__body, .cl-content__body, .cl-contact__body, .cl-stories__body { padding: 1rem 0 3rem; }
.cl-about__body, .cl-faq__body, .cl-404__body { padding: 2rem 0 3.5rem; max-width: 720px; }
.cl-404__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
.cl-faq__list { margin-top: 1.4rem; display: grid; gap: 0.55rem; }
.cl-faq__item, .cl-acc {
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius-sm);
  background: var(--cl-surface);
}
.cl-faq__q, .cl-acc__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.05rem;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--cl-heading);
  cursor: pointer;
  text-align: left;
}
.cl-faq__a, .cl-acc__a { padding: 0 1.05rem 1.05rem; color: var(--cl-body); line-height: 1.55; }

/* —— PDP —— */
.cl-pdp { padding: 0.6rem 0 3rem; }
.cl-pdp__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  color: var(--cl-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.cl-pdp__crumb a { color: inherit; }
.cl-pdp__wish { margin-left: auto; }
.cl-pdp__layout { display: grid; gap: 1.4rem; }
.cl-pdp__gallery { border-radius: var(--cl-radius); overflow: hidden; background: var(--cl-mist); }
.cl-pdp__buy {
  background: var(--cl-surface);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  padding: 1.25rem 1.2rem 1.4rem;
}
.cl-pdp__title { font-size: clamp(1.45rem, 2.4vw, 2rem); }
.cl-pdp__rating { display: flex; gap: 0.45rem; align-items: center; margin: 0.55rem 0; color: var(--cl-muted); font-size: 0.85rem; }
.cl-pdp__price { margin: 0.6rem 0 1rem; }
.cl-pdp__promises {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}
.cl-pdp__promises li {
  background: var(--cl-mist);
  border-radius: 14px;
  padding: 0.65rem 0.5rem;
  text-align: center;
}
.cl-pdp__promises strong { display: block; font-size: 0.82rem; color: var(--cl-heading); }
.cl-pdp__promises span { font-size: 0.72rem; color: var(--cl-muted); }
.cl-pdp__stock { color: var(--cl-sale); }
.cl-pdp__label { margin: 0 0 0.4rem; font-weight: 600; color: var(--cl-heading); }
.cl-pdp__block { margin: 0.85rem 0; }
.cl-pdp__buybar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  margin-top: 1rem;
  position: sticky;
  bottom: 4.6rem;
  z-index: 5;
  background: var(--cl-surface);
  padding-top: 0.4rem;
}
.cl-pdp__buy-now { grid-column: 1 / -1; }
.cl-pdp__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--cl-border);
  border-radius: 999px;
  overflow: hidden;
}
.cl-pdp__qty button {
  width: 40px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--cl-heading);
  cursor: pointer;
  font-size: 1.1rem;
}
.cl-pdp__qty span { min-width: 1.4rem; text-align: center; }
.cl-pdp__accordions { margin-top: 1.6rem; display: grid; gap: 0.55rem; }
.cl-pdp__rich :where(p, ul, ol) { line-height: 1.6; }
.cl-pdp__muted { color: var(--cl-muted); }
.cl-pdp__specs { display: grid; gap: 0.4rem; }
.cl-pdp__specs > div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed var(--cl-border); padding: 0.35rem 0; }
.cl-related { margin-top: 2.4rem; }
.cl-related .cl-heading { margin-bottom: 1rem; }

@media (min-width: 960px) {
  .cl-pdp__layout { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
  .cl-pdp__buy { position: sticky; top: 6.2rem; }
  .cl-pdp__buybar { position: static; }
}

/* —— Cart / checkout —— */
.cl-cart__head { display: flex; justify-content: space-between; align-items: flex-end; margin: 1rem 0 1.3rem; }
.cl-cart__layout { display: grid; gap: 1.2rem; }
.cl-cart__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.cl-cart__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.85rem;
  padding: 0.85rem;
  background: var(--cl-surface);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius-sm);
}
.cl-cart__thumb { border-radius: 12px; overflow: hidden; background: var(--cl-mist); aspect-ratio: 4 / 3; }
.cl-cart__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cl-cart__top { display: flex; justify-content: space-between; gap: 0.6rem; }
.cl-cart__remove { border: 0; background: transparent; color: var(--cl-muted); cursor: pointer; }
.cl-cart__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 0.55rem; }
.cl-cart__summary {
  background: var(--cl-mist);
  border-radius: var(--cl-radius);
  padding: 1.2rem;
}
.cl-cart__sum-row { display: flex; justify-content: space-between; margin: 0.45rem 0; }
.cl-cart__sum-row--total { font-size: 1.1rem; }
.cl-cart__go { width: 100%; margin-top: 0.8rem; }
.cl-cart__keep { display: block; text-align: center; margin-top: 0.65rem; color: var(--cl-brand); }
.cl-cart__empty { text-align: center; padding: 3rem 0; }
.cl-checkout__note { color: var(--cl-muted); margin: 0.4rem 0 1rem; }
.cl-checkout__body { padding-bottom: 2.5rem; }
@media (min-width: 900px) {
  .cl-cart__layout { grid-template-columns: 1.4fr 0.7fr; align-items: start; }
}

/* —— Auth —— */
.cl-auth-modal { position: fixed; inset: 0; z-index: 13000; }
.cl-auth-modal--page { position: relative; min-height: 70vh; padding: 2rem var(--cl-page-pad); }
.cl-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(14, 23, 21, 0.45);
}
.cl-auth-modal--page .cl-auth-modal__backdrop { background: transparent; }
.cl-auth-modal__sheet {
  position: relative;
  margin: 8vh auto 0;
  width: min(100%, 420px);
  background: var(--cl-surface);
  border-radius: 24px 24px 0 0;
  padding: 1.15rem 1.2rem 1.6rem;
}
.cl-auth-modal--page .cl-auth-modal__sheet {
  border-radius: var(--cl-radius);
  margin: 0 auto;
  box-shadow: 0 16px 50px rgba(20, 36, 31, 0.08);
}
.cl-auth-modal__close {
  width: 40px; height: 40px; border: 0; border-radius: 999px; background: var(--cl-mist); cursor: pointer; color: var(--cl-heading);
}
.cl-auth__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.8rem; }
.cl-auth__underline { display: flex; gap: 1.1rem; border-bottom: 1px solid var(--cl-border); margin: 1rem 0; }
.cl-auth__underline button {
  border: 0; background: transparent; padding: 0.5rem 0 0.7rem; font: inherit; color: var(--cl-muted); cursor: pointer;
}
.cl-auth__underline .is-active { color: var(--cl-heading); box-shadow: inset 0 -2px 0 var(--cl-brand); }
.cl-auth__channel { display: flex; gap: 0.4rem; margin-bottom: 0.85rem; }
.cl-auth__channel button {
  border: 1px solid var(--cl-border); background: transparent; border-radius: 999px; padding: 0.35rem 0.8rem; font: inherit; cursor: pointer; color: var(--cl-body);
}
.cl-auth__channel .is-active { background: var(--cl-mist); color: var(--cl-heading); }
.cl-auth__form { display: grid; gap: 0.7rem; }
.cl-auth__field { display: grid; gap: 0.3rem; font-size: 0.85rem; color: var(--cl-muted); }
.cl-auth__field input {
  min-height: 46px;
  border: 1px solid var(--cl-border);
  border-radius: 14px;
  padding: 0 0.85rem;
  font: inherit;
  background: var(--cl-bg);
  color: var(--cl-heading);
}
.cl-auth__submit { width: 100%; }
.cl-auth__link { border: 0; background: transparent; color: var(--cl-brand); font: inherit; cursor: pointer; justify-self: start; }
.cl-auth__msg { font-size: 0.85rem; }
.cl-auth__msg--error { color: var(--cl-sale); }
.cl-auth__divider { display: flex; align-items: center; gap: 0.6rem; color: var(--cl-muted); font-size: 0.8rem; margin: 1rem 0 0.6rem; }
.cl-auth__divider::before, .cl-auth__divider::after { content: ""; flex: 1; height: 1px; background: var(--cl-border); }
.cl-auth__social { display: grid; gap: 0.5rem; }
.cl-auth__social a {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 46px; border: 1px solid var(--cl-border); border-radius: 999px; text-decoration: none; color: var(--cl-heading);
}

/* —— Account sidebar —— */
.cl-account-app {
  display: grid;
  gap: 1.2rem;
  padding: 1.2rem 0 3rem;
}
.cl-account-app__side {
  background: var(--cl-surface);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  padding: 1.1rem;
}
.cl-account-app__who { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1rem; }
.cl-account-app__avatar {
  width: 48px; height: 48px; border-radius: 999px; background: var(--cl-mist); display: grid; place-items: center; font-weight: 700; color: var(--cl-brand);
}
.cl-account-app__meta { margin: 0.2rem 0 0; color: var(--cl-muted); font-size: 0.82rem; }
.cl-account-app__nav { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.cl-account-app__link {
  border: 1px solid var(--cl-border);
  background: transparent;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font: inherit;
  cursor: pointer;
  color: var(--cl-body);
}
.cl-account-app__link.is-active { background: var(--cl-brand); color: var(--cl-on-primary); border-color: transparent; }
.cl-account-app__side-foot { display: flex; justify-content: space-between; margin-top: 1rem; }
.cl-account-app__side-foot a, .cl-account-app__side-foot button {
  border: 0; background: transparent; color: var(--cl-brand); font: inherit; cursor: pointer; text-decoration: none;
}
@media (min-width: 900px) {
  .cl-account-app { grid-template-columns: 260px 1fr; align-items: start; }
  .cl-account-app__nav { flex-direction: column; }
  .cl-account-app__link { text-align: left; border-radius: 14px; }
  .cl-account-app__side { position: sticky; top: 6.2rem; }
}

/* —— Tabbar + cart drawer —— */
.cl-tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483000;
  padding: 0.35rem 0.6rem calc(0.4rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--cl-surface) 92%, transparent);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--cl-border);
}
.cl-tabbar__inner { display: flex; justify-content: space-around; }
.cl-tabbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 64px;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: var(--cl-muted);
  text-decoration: none;
  font: inherit;
  font-size: 0.68rem;
  cursor: pointer;
}
.cl-tabbar__item.is-active { color: var(--cl-brand); }
.cl-tabbar__icon { position: relative; }
.cl-tabbar__badge {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--cl-brand);
  color: var(--cl-on-primary);
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
@media (min-width: 960px) {
  .cl-tabbar { display: none; }
}

.cl-drawer__backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--cl-drawer-z);
  border: 0;
  background: rgba(14, 23, 21, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--cl-ease);
}
.cl-drawer__backdrop.is-open { opacity: 1; pointer-events: auto; }
.cl-drawer.cl-drawer,
aside.cl-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: calc(var(--cl-drawer-z) + 1);
  display: flex;
  flex-direction: column;
  width: min(100vw, 26rem);
  background: var(--cl-surface);
  transform: translateX(100%);
  transition: transform 280ms var(--cl-ease);
}
aside.cl-drawer.is-open { transform: translateX(0); }
.cl-drawer__handle { display: none; }
.cl-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--cl-border);
}
.cl-drawer__title { margin: 0; font-size: 1.05rem; color: var(--cl-heading); }
.cl-drawer__count { margin-left: 0.35rem; color: var(--cl-muted); font-size: 0.85rem; }
.cl-drawer__close {
  width: 42px; height: 42px; border: 0; border-radius: 999px; background: var(--cl-mist); cursor: pointer; color: var(--cl-heading);
}
.cl-drawer__main, .cl-drawer__cols { display: flex; flex: 1; flex-direction: column; min-height: 0; }
.cl-drawer__body { flex: 1; overflow-y: auto; padding: 1rem 1.15rem; }
.cl-drawer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.cl-drawer__item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 0.75rem;
  padding: 0.7rem;
  border: 1px solid var(--cl-border);
  border-radius: 14px;
}
.cl-drawer__thumb { border-radius: 10px; overflow: hidden; background: var(--cl-mist); aspect-ratio: 4 / 3; }
.cl-drawer__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cl-drawer__name { margin: 0; font-weight: 600; color: var(--cl-heading); }
.cl-drawer__price { margin: 0.2rem 0 0; }
.cl-drawer__row { display: flex; justify-content: space-between; align-items: center; margin-top: 0.4rem; }
.cl-drawer__remove { border: 0; background: transparent; color: var(--cl-muted); cursor: pointer; }
.cl-drawer__hint, .cl-drawer__empty { text-align: center; padding: 2rem 0.5rem; color: var(--cl-muted); }
.cl-drawer__empty { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.cl-drawer__foot { padding: 1rem 1.15rem calc(1rem + env(safe-area-inset-bottom)); border-top: 1px solid var(--cl-border); }
.cl-drawer__total { margin: 0 0 0.7rem; }
.cl-drawer__actions { display: grid; gap: 0.45rem; }
.cl-drawer__checkout { width: 100%; text-align: center; }
.cl-drawer__view { text-align: center; color: var(--cl-brand); text-decoration: none; font-size: 0.85rem; }

body.cl-cart-open .cl-tabbar,
body.cl-menu-open .cl-tabbar,
body.cl-auth-open .cl-tabbar { visibility: hidden; }

body.cl-app { padding-bottom: 4.4rem; }
@media (min-width: 960px) {
  body.cl-app { padding-bottom: 0; }
}
