:root {
  --cream: #f8f3ec;
  --paper: #fffdf9;
  --ink: #244936;
  --muted: #6f756d;
  --orange: #f28b1d;
  --violet: #7b57b7;
  --green: #315c43;
  --soft-green: #e8efe7;
  --line: rgba(36, 73, 54, 0.14);
  --shadow: 0 18px 45px rgba(36, 73, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 14px;
  background: var(--paper);
}

.brand strong {
  display: block;
  letter-spacing: .02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  font-size: 14px;
  color: var(--green);
  font-weight: 700;
}

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

nav a.active {
  color: var(--orange);
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(36px, 6vw, 76px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 84% 18%, rgba(242,139,29,.20), transparent 30%),
    radial-gradient(circle at 15% 82%, rgba(123,87,183,.16), transparent 32%),
    linear-gradient(115deg, rgba(255,253,249,.98), rgba(255,253,249,.78)),
    linear-gradient(135deg, rgba(242,139,29,.15), rgba(123,87,183,.14));
  overflow: hidden;
}

.hero-text {
  transform: translateY(-44px);
}

.hero .eyebrow,
.page-hero .eyebrow,
.studio-hero .eyebrow,
.about-hero .eyebrow {
  font-size: clamp(14px, 1.15vw, 17px);
  letter-spacing: .12em;
  margin-bottom: 16px;
}

.page-hero {
  padding: clamp(58px, 9vw, 120px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(255,253,249,.96), rgba(255,253,249,.78)),
    linear-gradient(135deg, rgba(242,139,29,.12), rgba(123,87,183,.10));
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
}

.product-page-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.product-hero-image {
  width: 100%;
  height: min(56vw, 560px);
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.studio-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 7vw, 86px) clamp(20px, 5vw, 72px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.studio-hero-image {
  width: 100%;
  height: min(58vw, 560px);
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 7vw, 86px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(255,253,249,.96), rgba(255,253,249,.78)),
    linear-gradient(135deg, rgba(242,139,29,.12), rgba(123,87,183,.10));
  border-bottom: 1px solid var(--line);
}

.about-portrait {
  width: 100%;
  height: min(62vw, 640px);
  min-height: 420px;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--orange);
  font-weight: 800;
  font-size: 12px;
  margin: 0 0 12px;
}

h1, h2, h3 {
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 6vw, 72px);
  max-width: 900px;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(42px, 4.9vw, 66px);
}

.page-hero h1,
.studio-hero h1,
.about-hero h1 {
  font-size: clamp(44px, 5.8vw, 78px);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 50px);
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 660px;
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--muted);
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-tags span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: var(--orange);
}

.hero-media {
  position: relative;
  min-height: min(66vw, 640px);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(49, 92, 67, .16);
  box-shadow: 0 26px 70px rgba(36, 73, 54, .18);
  background: var(--paper);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(36, 73, 54, .02), rgba(36, 73, 54, .22));
  pointer-events: none;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: min(66vw, 640px);
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-media-card {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(49, 92, 67, .14);
  border-radius: 8px;
  background: rgba(255, 253, 249, .93);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(36, 73, 54, .16);
}

.hero-media-card img {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 8px;
  background: var(--paper);
}

.hero-media-card strong,
.hero-media-card span {
  display: block;
}

.hero-media-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  color: var(--green);
}

.hero-media-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 750;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: white;
}

.button.secondary {
  background: var(--paper);
  color: var(--green);
  border-color: var(--line);
}

.hero-card {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 28px;
  min-height: 500px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-logo {
  width: min(82%, 360px);
  height: auto;
}

.hero-panel {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 18px;
  border-left: 4px solid var(--orange);
  background: var(--soft-green);
}

.hero-panel span,
.hero-panel small {
  color: var(--muted);
}

.hero-panel strong {
  font-size: 20px;
}

.intro, .collection, .custom, .order, .feature-grid, .split-section, .photo-story, .about-text, .values-grid, .yoga-offer {
  padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 72px);
}

.intro {
  max-width: 980px;
}

.intro p,
.custom p,
.order p {
  font-size: 19px;
  color: var(--muted);
  max-width: 760px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

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

.feature-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(36, 73, 54, 0.06);
}

.feature-card span {
  color: var(--orange);
  font-weight: 850;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
}

.split-section,
.order-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, 1.05fr);
  gap: 34px;
  align-items: start;
}

.split-section p {
  color: var(--muted);
  font-size: 19px;
  max-width: 720px;
}

.split-section .button {
  margin-top: 18px;
}

.about-text {
  max-width: 1040px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.about-text p {
  color: var(--muted);
  font-size: 20px;
  max-width: 880px;
}

.about-craft-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 48%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--soft-green);
}

.values-grid article {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.values-grid span {
  color: var(--orange);
  font-weight: 850;
}

.values-grid p {
  color: var(--muted);
  margin: 0;
}

.yoga-offer {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.yoga-offer .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.yoga-offer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.yoga-offer-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(232, 239, 231, .72), rgba(255, 253, 249, .9)),
    var(--paper);
}

.yoga-offer-grid span {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: .08em;
}

.yoga-offer-grid h3 {
  color: var(--green);
}

.yoga-offer-grid p {
  margin: 0;
  color: var(--muted);
}

.photo-story {
  display: grid;
  gap: 24px;
}

.photo-story article {
  display: grid;
  grid-template-columns: minmax(260px, .92fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(36, 73, 54, 0.07);
}

.photo-story article:nth-child(even) img {
  order: 2;
}

.photo-story img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.photo-story div {
  padding: 28px;
}

.photo-story p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

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

.product-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(36, 73, 54, 0.07);
}

.product-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-visual {
  height: 190px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(242,139,29,.12), rgba(123,87,183,.12)),
    var(--paper);
}

.product-photo {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center 40%;
  background: var(--soft-green);
}

.product-photo-contain {
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
}

.product-illustration {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 22px;
  background: white;
  border-bottom: 1px solid var(--line);
}

.product-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background: rgba(242, 139, 29, .34);
  mix-blend-mode: multiply;
}

.product-content {
  position: relative;
  z-index: 2;
}

.tint-zafu::before {
  width: 180px;
  height: 44px;
  left: calc(50% - 90px);
  top: 168px;
  border-radius: 999px;
  background: rgba(242, 139, 29, .36);
}

.tint-bolster::before {
  width: 148px;
  height: 54px;
  left: calc(50% + 2px);
  top: 126px;
  border-radius: 999px;
  background: rgba(123, 87, 183, .24);
  transform: rotate(-4deg);
}

.tint-fuzen::before {
  width: 210px;
  height: 46px;
  left: calc(50% - 105px);
  top: 172px;
  border-radius: 0 0 999px 999px;
  background: rgba(242, 139, 29, .32);
}

.tint-sac::before {
  width: 178px;
  height: 92px;
  left: calc(50% - 88px);
  top: 94px;
  border-radius: 8px 8px 36px 36px;
  background: rgba(49, 92, 67, .20);
}

.tint-eye::before {
  width: 116px;
  height: 42px;
  left: calc(50% - 82px);
  top: 78px;
  border-radius: 10px;
  background: rgba(123, 87, 183, .26);
  transform: rotate(12deg);
}

.tint-trousse::before {
  width: 160px;
  height: 92px;
  left: calc(50% - 80px);
  top: 98px;
  border-radius: 12px 12px 28px 28px;
  background: rgba(242, 139, 29, .28);
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  inset: auto;
}

.product-visual.zafu::before {
  width: 126px;
  height: 126px;
  border: 4px solid var(--green);
  border-radius: 999px;
  left: calc(50% - 63px);
  top: 32px;
  background: rgba(242,139,29,.18);
}

.product-visual.bolster::before {
  width: 210px;
  height: 78px;
  border: 4px solid var(--green);
  border-radius: 999px;
  left: calc(50% - 105px);
  top: 56px;
  background: rgba(49,92,67,.18);
}

.product-visual.fuzen::before {
  width: 180px;
  height: 90px;
  border: 4px solid var(--green);
  border-radius: 0 0 120px 120px;
  left: calc(50% - 90px);
  top: 56px;
  background: rgba(123,91,166,.18);
}

.product-visual.bag::before {
  width: 140px;
  height: 118px;
  border: 4px solid var(--green);
  border-radius: 26px 26px 16px 16px;
  left: calc(50% - 70px);
  top: 52px;
  background: rgba(242,139,29,.18);
}

.product-visual.bag::after {
  width: 86px;
  height: 48px;
  border: 4px solid var(--green);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  left: calc(50% - 43px);
  top: 28px;
}

.product-visual.eye::before {
  width: 180px;
  height: 70px;
  border: 4px solid var(--green);
  border-radius: 999px;
  left: calc(50% - 90px);
  top: 62px;
  background: rgba(49,92,67,.16);
}

.product-visual.pouch::before {
  width: 160px;
  height: 96px;
  border: 4px solid var(--green);
  border-radius: 18px;
  left: calc(50% - 80px);
  top: 56px;
  background: rgba(123,91,166,.16);
}

.product-content {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.product-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.price {
  font-weight: 850;
  color: var(--orange);
}

.cart-add {
  width: 100%;
  margin-top: 4px;
}

.stock-section {
  padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 72px);
}

.stock-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
  max-width: 760px;
  margin: 0;
}

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

.stock-card {
  display: grid;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(36, 73, 54, 0.06);
}

.stock-card > img,
.product-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--soft-green);
}

.product-gallery {
  position: relative;
  overflow: hidden;
  background: var(--soft-green);
}

.product-gallery img {
  display: block;
}

.gallery-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(49, 92, 67, .16);
  border-radius: 999px;
  background: rgba(255, 253, 249, .92);
  color: var(--green);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

.gallery-status {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 253, 249, .92);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.product-gallery.single-image .gallery-control,
.product-gallery.single-image .gallery-status {
  display: none;
}

.stock-card > div:not(.product-gallery) {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.stock-card h3 {
  font-size: 19px;
}

.stock-card p {
  color: var(--muted);
  margin: 0;
}

.stock-subheading {
  display: grid;
  gap: 8px;
  margin: 42px 0 18px;
}

.stock-subheading:first-of-type {
  margin-top: 0;
}

.stock-subheading h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--green);
}

.stock-subheading p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.custom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
  gap: 32px;
  align-items: start;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 28px;
  background: var(--paper);
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(36, 73, 54, 0.07);
}

.checklist li {
  position: relative;
  padding-left: 34px;
  margin: 16px 0;
}

.checklist li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.quote {
  padding: 64px clamp(20px, 5vw, 72px);
  background: var(--green);
  color: white;
}

blockquote {
  max-width: 940px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.18;
  text-align: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0;
}

.contact-cards.vertical {
  grid-template-columns: 1fr;
  margin: 0;
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(36, 73, 54, 0.06);
}

.contact-card strong,
.contact-card span {
  display: block;
}

.contact-card span {
  color: var(--muted);
  margin-top: 6px;
}

.order-form {
  max-width: 760px;
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
}

.cart-widget {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 20;
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(49, 92, 67, .18);
  border-radius: 999px;
  background: var(--green);
  color: white;
  box-shadow: 0 18px 42px rgba(36, 73, 54, .24);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
}

.cart-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(380px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 120px));
  display: none;
  overflow: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(36, 73, 54, .22);
}

.cart-widget.open .cart-panel {
  display: grid;
  gap: 16px;
}

.cart-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.cart-panel-header h2 {
  font-size: 30px;
}

.cart-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--green);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cart-list {
  display: grid;
  gap: 10px;
}

.cart-empty,
.cart-note {
  margin: 0;
  color: var(--muted);
}

.cart-item {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item span {
  color: var(--muted);
  font-size: 14px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cart-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft-green);
  color: var(--green);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.cart-remove {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--orange);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cart-mail[aria-disabled="true"] {
  opacity: .55;
  pointer-events: none;
}

.cart-clear:disabled {
  opacity: .45;
  cursor: not-allowed;
}

footer {
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p {
  margin: 4px 0;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 750;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--green);
  text-decoration: none;
}

.social-links a:hover {
  border-color: rgba(242, 139, 29, .32);
  color: var(--orange);
}

.social-links a::before,
.button[href*="instagram.com"]::before,
.button[href*="facebook.com"]::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.social-links a[href*="instagram.com"]::before,
.button[href*="instagram.com"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm8.9 2.2a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2ZM12 7.2a4.8 4.8 0 1 1 0 9.6 4.8 4.8 0 0 1 0-9.6Zm0 2a2.8 2.8 0 1 0 0 5.6 2.8 2.8 0 0 0 0-5.6Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm8.9 2.2a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2ZM12 7.2a4.8 4.8 0 1 1 0 9.6 4.8 4.8 0 0 1 0-9.6Zm0 2a2.8 2.8 0 1 0 0 5.6 2.8 2.8 0 0 0 0-5.6Z'/%3E%3C/svg%3E");
}

.social-links a[href*="facebook.com"]::before,
.button[href*="facebook.com"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.2 8.4V6.8c0-.8.3-1.3 1.4-1.3H18V2.2C17.6 2.1 16.5 2 15.2 2c-2.8 0-4.7 1.7-4.7 4.7v1.7H7.4V12h3.1v10h3.8V12h3.1l.5-3.6h-3.7Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.2 8.4V6.8c0-.8.3-1.3 1.4-1.3H18V2.2C17.6 2.1 16.5 2 15.2 2c-2.8 0-4.7 1.7-4.7 4.7v1.7H7.4V12h3.1v10h3.8V12h3.1l.5-3.6h-3.7Z'/%3E%3C/svg%3E");
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .product-page-hero,
  .studio-hero,
  .about-hero,
  .about-text,
  .custom,
  .split-section,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .hero-text {
    transform: none;
  }

  .studio-hero-image {
    height: 420px;
  }

  .about-portrait {
    height: 520px;
  }

  .product-hero-image {
    height: 480px;
  }

  .photo-story article {
    grid-template-columns: 1fr;
  }

  .photo-story article:nth-child(even) img {
    order: 0;
  }

  .photo-story img {
    height: 360px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media > img {
    min-height: 420px;
  }

  .hero-card {
    min-height: 380px;
  }

  .product-grid,
  .stock-grid,
  .contact-cards,
  .feature-grid,
  .values-grid,
  .yoga-offer-grid {
    grid-template-columns: 1fr;
  }

  nav {
    gap: 12px;
  }
}
