@import url("/fonts.css");
.cart-product {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}
.cart-product > img {
  width: 50px;
  height: 65px;
  flex-shrink: 0;
}
.cart-product > div {
  min-width: 0;
}
@media (max-width: 700px) {
  .cart-product {
    flex-direction: column;
    align-items: flex-start;
  }
  .cart-product > img {
    width: 40px;
    height: 50px;
  }
}
:root {
  --paper: #f5f3ed;
  --ink: #272b25;
  --muted: #74766e;
  --line: #d8d9d0;
  --accent: #5a614a;
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
button:disabled {
  opacity: 0.55;
  cursor: wait;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(38px, 4vw, 64px);
}
h3 {
  font-weight: 400;
  font-size: 23px;
  letter-spacing: -0.03em;
}
em {
  font-family: var(--serif);
  font-weight: 400;
}
nav a {
  white-space: nowrap;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.5;
}
.wordmark {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: -1px;
  white-space: nowrap;
  line-height: 1.1;
}
.wordmark span {
  display: block;
  font: 8px Arial;
  letter-spacing: 2.5px;
  margin-top: 8px;
}
.public-header,
.workspace-header {
  height: 100px;
  padding: 0 4.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--paper);
  position: relative;
  z-index: 10;
}
.public-header nav,
.workspace-header nav {
  display: flex;
  gap: 35px;
  align-items: center;
  font-size: 12px;
}
.nav-login {
  border-left: 1px solid var(--line);
  padding: 12px 0 12px 34px;
}
.nav-login span {
  padding-left: 24px;
  font-size: 20px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 24px;
  width: 48px;
  height: 48px;
}
.hero {
  height: calc(100svh - 100px);
  min-height: 580px;
  max-height: 1100px;
  position: relative;
  background: #464438;
  color: #fff;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  object-position: 65% 52%;
  animation: hero-image 1.5s ease both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 26, 23, 0.65), rgba(20, 26, 23, 0.1) 80%),
    linear-gradient(0deg, rgba(20, 26, 23, 0.4), transparent 35%);
}
.hero-content {
  position: relative;
  z-index: 1;
  margin-left: 7%;
  padding-top: 6vh;
}
.hero-content .eyebrow {
  margin-bottom: 30px;
  animation: rise 0.8s both;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(80px, 10vw, 165px);
  line-height: 0.87;
  letter-spacing: -0.065em;
  margin: 0 0 38px;
  animation: rise 1s 0.1s both;
}
.hero h1 span {
  font-family: Arial;
  font-size: 17px;
  letter-spacing: 0;
  display: block;
  margin-top: 30px;
  line-height: 1.4;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 44px;
  min-height: 54px;
  padding: 15px 26px;
  border: 1px solid transparent;
  font-size: 12px;
  transition:
    background 0.25s,
    transform 0.25s;
}
.button:hover {
  transform: translateY(-2px);
}
.light {
  background: var(--paper);
  color: var(--ink);
}
.light:hover {
  background: #fff;
}
.dark {
  background: var(--ink);
  color: white;
}
.dark:hover {
  background: var(--accent);
}
.outline {
  border-color: var(--line);
  background: transparent;
}
.hero-bottom {
  position: absolute;
  bottom: 28px;
  left: 4.5%;
  right: 4.5%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  letter-spacing: 0.12em;
}
.editorial-note {
  opacity: 0.75;
}
.section {
  padding: 120px 7%;
}
.about {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8%;
}
.small-mark {
  font: italic 90px var(--serif);
  color: #a3a897;
  display: block;
  margin-top: 70px;
}
.about h2 {
  max-width: 760px;
}
.about-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  color: var(--muted);
  font-size: 14px;
  max-width: 700px;
  margin: 40px 0 25px;
}
.text-link {
  display: inline-flex;
  gap: 40px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
}
.text-link:hover {
  color: var(--accent);
}
.collection-section {
  padding: 80px 7%;
  background: #e7e9e0;
}
.section-title {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.section-title > p:last-child {
  font-size: 13px;
  color: var(--muted);
  padding-top: 10px;
}
.collection-photo {
  height: 540px;
  position: relative;
  overflow: hidden;
  margin: 25px 0 0;
}
.collection-photo img {
  object-position: 50% 55%;
  transition: transform 1s;
}
.collection-photo:hover img {
  transform: scale(1.035);
}
.collection-photo > div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 30px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  font-size: 10px;
  letter-spacing: 0.1em;
}
.collection-access {
  padding: 32px 0;
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid #bfc5b4;
}
.collection-access > span:first-child {
  font-size: 25px;
  line-height: 1.3;
}
.collection-access strong {
  font-weight: 400;
  font-family: var(--serif);
  font-style: italic;
}
.collection-access > span:last-child {
  margin-left: auto;
  font-size: 12px;
}
.round-arrow {
  border: 1px solid #adb59f;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-size: 24px;
  transition: transform 0.3s;
}
.collection-access:hover .round-arrow {
  transform: rotate(45deg);
}
.partnership {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
}
.partnership h2 {
  margin-top: 40px;
}
.partnership > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
}
.partnership .button {
  margin-top: 24px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  display: flex;
  gap: 36px;
  border-top: 1px solid var(--line);
  padding: 26px 0;
}
.steps li > span {
  font-size: 11px;
  color: var(--muted);
  padding-top: 5px;
}
.steps h3 {
  margin-bottom: 8px;
}
.steps p {
  font-size: 13px;
  color: var(--muted);
  max-width: 310px;
  margin: 0;
}
.contacts {
  padding: 100px 7%;
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.contacts h2 {
  font-size: clamp(65px, 8vw, 130px);
  margin: 40px 0;
}
.contacts .text-link {
  border-color: #909588;
}
#contact-details {
  position: absolute;
  left: 58%;
  top: 40%;
  max-width: 34%;
  font-size: 16px;
}
#contact-details a {
  display: block;
  margin: 10px 0;
  font-size: 22px;
}
footer {
  padding: 42px 4.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
}
footer > div {
  display: flex;
  gap: 25px;
}
footer > span {
  color: var(--muted);
}
.reveal {
  animation: rise 0.7s both;
}
.login-page > .wordmark {
  display: block;
  margin: 34px 5%;
}
.login-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - 122px);
}
.login-picture {
  position: relative;
  min-height: 650px;
}
.login-picture img {
  position: absolute;
  object-position: 64% center;
  filter: brightness(0.75);
}
.login-picture p {
  position: absolute;
  bottom: 55px;
  left: 10%;
  color: #fff;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.login-form {
  padding: 35px 16% 60px;
}
.back-link {
  display: inline-block;
  font-size: 12px;
  margin-bottom: 45px;
  color: var(--muted);
}
.login-form h1 {
  font-size: 54px;
  margin: 22px 0;
}
.login-form > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
}
label {
  display: block;
  font-size: 12px;
  margin: 18px 0;
}
input,
textarea,
select {
  display: block;
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  padding: 12px;
  color: var(--ink);
  margin-top: 7px;
  font-size: 16px;
}
textarea {
  resize: vertical;
  min-height: 90px;
}
.password-field {
  display: flex;
  border: 1px solid var(--line);
  margin-top: 7px;
}
.password-field input {
  border: 0;
  margin: 0;
  min-width: 0;
}
.password-field button {
  border: 0;
  background: none;
  font-size: 10px;
  padding: 0 12px;
  color: var(--muted);
}
form .button {
  width: 100%;
  margin-top: 10px;
}
.login-help {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-top: 28px;
}
.login-help a {
  text-decoration: underline;
}
.error {
  color: #a23e2b;
  font-size: 13px;
  min-height: 20px;
}
.workspace-header {
  border-bottom: 1px solid var(--line);
  height: 90px;
}
.workspace-header nav {
  gap: 26px;
}
.workspace-header button {
  background: none;
  border: 0;
  min-height: 44px;
}
.workspace {
  max-width: 1400px;
  margin: auto;
  padding: 55px 5% 90px;
  min-height: 80vh;
}
.workspace h1 {
  font-size: 52px;
  margin: 16px 0 30px;
}
.workspace h2 {
  font-size: 32px;
}
.workspace .eyebrow {
  color: var(--muted);
}
.workspace-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.filters {
  display: grid;
  grid-template-columns: 2fr 1fr 0.7fr 1fr auto;
  gap: 15px;
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0 24px;
  margin-bottom: 30px;
}
.filters label {
  margin: 0;
}
.filters .button {
  margin: 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 24px;
}
.product-tile .product-image {
  height: auto;
  aspect-ratio: 4/5;
  background: #e8e8e0;
  overflow: hidden;
}
.product-image img {
  transition: transform 0.5s;
}
.product-tile:hover img {
  transform: scale(1.04);
}
.product-tile h3 {
  font-size: 19px;
  margin: 16px 0 6px;
}
.product-tile p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.product-tile strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
}
.product-detail .product-image {
  aspect-ratio: 4/5;
  background: #e6e7df;
}
.product-detail h1 {
  font-size: 46px;
}
.muted {
  color: var(--muted);
}
.size-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.2fr 85px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 13px;
}
.size-row input {
  margin: 0;
}
.size-head {
  font-size: 10px;
  color: var(--muted);
}
.empty {
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.empty h2 {
  margin: 15px 0;
}
.empty p {
  color: var(--muted);
  font-size: 14px;
}
.empty .button {
  margin-top: 15px;
}
.pagination {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 45px 0;
  align-items: center;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 65px;
}
.cart-row {
  display: grid;
  grid-template-columns: 1fr 80px 100px 44px;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  align-items: center;
}
.cart-row h3 {
  font-size: 18px;
  margin: 0 0 7px;
}
.cart-row p {
  font-size: 12px;
  margin: 0;
  color: var(--muted);
}
.cart-row input {
  margin: 0;
}
.delete-item {
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  font-size: 22px;
}
.checkout-box {
  background: #e9ebe2;
  padding: 28px;
}
.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 25px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.small {
  font-size: 12px;
}
.order-row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.6fr 1fr 1.3fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  align-items: center;
}
.order-row:hover {
  background: #eceee5;
}
.status {
  font-size: 12px;
  color: var(--accent);
}
.order-items {
  margin: 30px 0;
}
.order-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.timeline {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 30px 0;
}
.timeline li {
  flex: 1;
  border-top: 2px solid var(--line);
  padding: 20px 12px 10px 0;
  color: var(--muted);
  font-size: 12px;
}
.timeline li.done {
  border-color: var(--accent);
  color: var(--ink);
}
.history {
  font-size: 13px;
  color: var(--muted);
}
.profile {
  max-width: 650px;
}
.profile dl {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}
.profile dt {
  color: var(--muted);
  font-size: 13px;
}
.profile dd {
  margin: 0;
  overflow-wrap: anywhere;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 16px 24px;
  z-index: 50;
  max-width: 90%;
  display: none;
}
#toast.show {
  display: block;
}
.legal {
  max-width: 850px;
  margin: auto;
  padding: 90px 30px;
}
.legal h1 {
  font-size: 55px;
}
.legal h2 {
  font-size: 30px;
  margin-top: 40px;
}
.legal p {
  color: var(--muted);
}
.loading {
  padding: 70px;
  text-align: center;
  animation: pulse 1s infinite alternate;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-image {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}
@keyframes pulse {
  to {
    opacity: 0.4;
  }
}
@media (min-width: 1000px) {
  .public-header {
    position: sticky;
    top: 0;
  }
  .hero-content .button {
    animation: rise 1s 0.25s both;
  }
}
@media (max-width: 1000px) {
  .public-header nav {
    gap: 20px;
  }
  .section {
    padding: 85px 6%;
  }
  .section-title {
    grid-template-columns: 1fr 2fr;
  }
  .section-title > p:last-child {
    grid-column: 2;
  }
  .hero-content {
    padding-top: 12vh;
  }
  .hero h1 {
    font-size: 115px;
  }
  .partnership {
    gap: 8%;
  }
  .login-form {
    padding: 30px 10%;
  }
  .workspace-header {
    height: auto;
    min-height: 90px;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .filters {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .product-detail {
    gap: 30px;
  }
  .cart-layout {
    gap: 30px;
  }
  .cart-row {
    grid-template-columns: 1fr 65px 75px 35px;
    gap: 8px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  footer {
    flex-wrap: wrap;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 20px;
  }
  .public-header {
    height: 80px;
    padding: 0 6%;
  }
  .wordmark {
    font-size: 22px;
  }
  .menu-toggle {
    display: block;
  }
  .public-header nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 25px 6%;
    border-bottom: 1px solid var(--line);
  }
  .public-header nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .public-header nav a {
    padding: 15px 0;
    border: 0;
  }
  .hero {
    height: calc(100svh - 80px);
    min-height: 570px;
    max-height: 850px;
  }
  .hero > img {
    object-position: 62% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(20, 26, 23, 0.66), rgba(20, 26, 23, 0.16)),
      linear-gradient(0deg, rgba(20, 26, 23, 0.6), transparent 40%);
  }
  .hero-content {
    margin-left: 7%;
    padding-top: 12vh;
  }
  .hero-content .eyebrow {
    font-size: 8px;
  }
  .hero h1 {
    font-size: clamp(68px, 19vw, 120px);
  }
  .hero h1 span {
    font-size: 14px;
    letter-spacing: 0;
    margin-top: 28px;
  }
  .hero-bottom {
    bottom: 22px;
    left: 7%;
    right: 7%;
    font-size: 8px;
    flex-wrap: wrap;
  }
  .editorial-note {
    display: none;
  }
  .section {
    padding: 70px 7%;
  }
  .about,
  .partnership {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .small-mark {
    display: none;
  }
  .about h2 {
    font-size: 37px;
  }
  .about-copy {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 25px;
  }
  .collection-section {
    padding: 65px 7%;
  }
  .section-title {
    display: block;
  }
  .section-title h2 {
    margin: 25px 0;
  }
  .collection-photo {
    height: 440px;
  }
  .collection-photo > div {
    padding: 18px;
    gap: 30px;
    font-size: 8px;
  }
  .collection-access {
    flex-wrap: wrap;
    gap: 20px;
  }
  .collection-access > span:first-child {
    font-size: 23px;
  }
  .collection-access > span:last-child {
    margin: 0;
    width: 100%;
    font-size: 11px;
  }
  .round-arrow {
    margin-left: auto;
  }
  .partnership h2 {
    margin: 28px 0;
  }
  .steps {
    margin-top: 25px;
  }
  .contacts {
    padding: 70px 7%;
  }
  .contacts h2 {
    font-size: 74px;
  }
  #contact-details {
    position: static;
    max-width: 100%;
    margin: 25px 0 35px;
    font-size: 14px;
  }
  #contact-details a {
    font-size: 18px;
  }
  footer {
    padding: 35px 7%;
    align-items: flex-start;
    gap: 25px;
  }
  footer > div {
    flex-direction: column;
    gap: 12px;
  }
  footer > span {
    width: 100%;
  }
  .login-layout {
    display: block;
  }
  .login-picture {
    display: none;
  }
  .login-form {
    padding: 10px 7% 60px;
    max-width: 480px;
    margin: auto;
  }
  .login-page > .wordmark {
    margin: 30px 7%;
  }
  .back-link {
    margin-bottom: 30px;
  }
  .login-form h1 {
    font-size: 48px;
  }
  .workspace-header {
    padding: 22px 6% 12px;
    gap: 15px;
  }
  .workspace-header nav {
    width: 100%;
    gap: 0;
    justify-content: space-between;
    font-size: 11px;
  }
  .workspace-header nav a {
    padding: 12px 0;
  }
  .workspace-header button {
    font-size: 11px;
    padding: 0;
  }
  .workspace {
    padding: 35px 6% 60px;
  }
  .workspace h1 {
    font-size: 40px;
  }
  .workspace-title {
    display: block;
  }
  .workspace-title > span {
    display: block;
    margin-bottom: 20px;
  }
  .filters {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .filters label:first-child {
    grid-column: 1/-1;
  }
  .filters .button {
    min-height: 48px;
    align-self: end;
  }
  .product-grid {
    gap: 30px 15px;
  }
  .product-tile h3 {
    font-size: 16px;
  }
  .product-tile strong {
    font-size: 13px;
  }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .product-detail .product-image {
    max-height: 460px;
  }
  .product-detail h1 {
    font-size: 35px;
  }
  .cart-layout {
    display: block;
  }
  .checkout-box {
    padding: 22px;
    margin-top: 35px;
  }
  .cart-row {
    grid-template-columns: 1fr 64px 76px 32px;
  }
  .cart-row h3 {
    font-size: 15px;
  }
  .cart-row strong {
    font-size: 12px;
  }
  .order-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
  }
  .order-row > .status {
    grid-column: 1/-1;
  }
  .order-item {
    grid-template-columns: 1.8fr 0.6fr 1fr;
    gap: 12px;
    font-size: 12px;
  }
  .timeline {
    flex-direction: column;
    padding: 15px 0;
  }
  .timeline li {
    border-top: 0;
    border-left: 2px solid var(--line);
    padding: 15px 20px;
  }
  .timeline li.done {
    border-color: var(--accent);
  }
  .profile dl {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .profile dd {
    margin-bottom: 18px;
  }
  .legal {
    padding: 50px 7%;
  }
  .legal h1 {
    font-size: 38px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  padding-bottom: env(safe-area-inset-bottom);
}
@media (max-width: 700px) {
  .public-header,
  .workspace-header {
    padding-left: max(6%, env(safe-area-inset-left));
    padding-right: max(6%, env(safe-area-inset-right));
  }
}

.product-gallery {
  display: grid;
  gap: 16px;
  align-content: start;
}
@media (max-width: 700px) {
  .contacts h2 {
    font-size: clamp(50px, 14vw, 68px);
  }
}
