:root {
  color-scheme: light;
  --ink: #080808;
  --muted: #77736d;
  --quiet: #aaa49b;
  --line: #dedad2;
  --paper: #f4f2ed;
  --white: #ffffff;
  --soft: #e9e5dc;
  --shadow: 0 30px 90px rgba(8, 8, 8, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

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

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(222, 218, 210, 0.82);
  background: rgba(244, 242, 237, 0.9);
  backdrop-filter: blur(22px);
}

.brand,
.main-nav,
.footer-links,
.hero-actions,
.contact-row {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  width: clamp(190px, 24vw, 360px);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  gap: clamp(16px, 3vw, 42px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.text-link:hover,
.back-link:hover {
  color: var(--ink);
}

main {
  width: min(1680px, 100%);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  gap: clamp(34px, 8vw, 140px);
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: clamp(54px, 8vw, 118px) clamp(18px, 4vw, 64px) clamp(42px, 6vw, 92px);
}

.hero-copy {
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 1030px;
  font-size: clamp(52px, 9.4vw, 154px);
  line-height: 0.88;
}

h2 {
  font-size: clamp(32px, 5vw, 80px);
  line-height: 0.92;
}

.hero-copy p:not(.eyebrow),
.page-intro p,
.detail-copy {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: clamp(16px, 1.35vw, 19px);
}

.hero-actions {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 0 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.secondary-button {
  background: transparent;
  color: var(--ink);
}

.primary-button:hover,
.secondary-button:hover {
  background: var(--white);
  color: var(--ink);
}

.hero-product {
  display: grid;
  gap: 14px;
}

.hero-product img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--soft);
  box-shadow: var(--shadow);
  filter: saturate(0.84) contrast(1.04);
}

.hero-product div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--quiet);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-product strong {
  color: var(--ink);
  text-align: right;
}

.carousel-section {
  overflow: hidden;
  padding: 12px 0 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eeeae2;
}

.carousel-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: slide-left 42s linear infinite;
}

.carousel-section:hover .carousel-track {
  animation-play-state: paused;
}

.carousel-item {
  position: relative;
  display: block;
  width: clamp(170px, 17vw, 310px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--soft);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.78) contrast(1.05);
  transition: transform 700ms ease, filter 700ms ease;
}

.carousel-item:hover img {
  transform: scale(1.035);
  filter: saturate(0.95) contrast(1.06);
}

.carousel-item span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 8px;
  background: rgba(244, 242, 237, 0.84);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes slide-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 6px));
  }
}

.featured-section,
.catalog-section,
.related-section,
.product-detail,
.page-intro,
.rent-hero,
.rent-section {
  padding-left: clamp(18px, 4vw, 64px);
  padding-right: clamp(18px, 4vw, 64px);
}

.featured-section,
.catalog-section,
.related-section {
  padding-bottom: clamp(76px, 9vw, 140px);
}

.featured-section {
  padding-top: clamp(72px, 9vw, 138px);
}

.page-intro {
  padding-top: clamp(56px, 8vw, 126px);
  padding-bottom: 34px;
}

.page-intro h1 {
  font-size: clamp(50px, 8vw, 132px);
}

.page-intro p {
  max-width: 620px;
  margin: 22px 0 0;
}

.rent-hero {
  display: grid;
  align-content: end;
  min-height: calc(72vh - 68px);
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: clamp(52px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.rent-hero h1 {
  max-width: 1180px;
}

.rent-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}

.rent-section {
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.rent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.rent-grid article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 32px;
  padding: clamp(18px, 3vw, 30px);
  background: var(--paper);
}

.rent-grid span {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 700;
}

.rent-grid h3 {
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1;
}

.rent-grid p,
.rent-policy li {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.rent-policy {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  padding-top: clamp(22px, 4vw, 46px);
  border-top: 1px solid var(--ink);
}

.rent-policy ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading.compact h2 {
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1;
}

.text-link,
.result-count {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.filters {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(5, minmax(120px, 180px)) auto;
  gap: 1px;
  align-items: end;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

label {
  display: grid;
  gap: 9px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

input::placeholder,
textarea::placeholder {
  color: var(--quiet);
}

.filter-reset {
  min-width: 90px;
  min-height: 100%;
  border-color: transparent;
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.product-card {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.image-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--soft);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: saturate(0.82) contrast(1.04);
  transition: transform 650ms ease, filter 650ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.03);
  filter: saturate(0.95) contrast(1.05);
}

.badge-row {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 26px;
}

.availability-group {
  display: flex;
  margin-left: auto;
  justify-content: flex-end;
  gap: 6px;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  background: var(--white);
  color: #0b6b37;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.status.sold {
  background: var(--white);
  color: #8c1f1f;
}

.availability {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  background: var(--white);
  color: #263f78;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.availability.rent {
  color: #6f3f80;
}

.card-meta {
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.card-topline,
.card-bottomline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.card-brand,
.card-bottomline {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-brand-main {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-price {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.card-title {
  min-height: 42px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.empty-state {
  margin: 42px 0 0;
  color: var(--muted);
}

.product-detail {
  padding-top: clamp(38px, 6vw, 92px);
  padding-bottom: clamp(56px, 8vw, 116px);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(34px, 6vw, 100px);
  align-items: start;
}

.gallery {
  display: grid;
  gap: 14px;
}

.main-photo {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 760px;
  height: min(820px, calc(100vh - 150px));
  min-height: 520px;
  place-items: center;
  background: var(--soft);
  overflow: hidden;
  justify-self: start;
}

.main-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: saturate(0.84) contrast(1.04);
  transition: opacity 280ms ease, transform 280ms ease;
}

.main-photo img.is-changing {
  opacity: 0;
  transform: scale(0.985);
}

.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: saturate(0.84) contrast(1.04);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(8, 8, 8, 0.16);
  border-radius: 50%;
  background: rgba(244, 242, 237, 0.82);
  color: var(--ink);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(12px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gallery-arrow:hover {
  border-color: var(--ink);
  background: var(--white);
}

.gallery-arrow-prev {
  left: 18px;
}

.gallery-arrow-next {
  right: 18px;
}

.thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thumbs button {
  width: clamp(74px, 7vw, 104px);
  aspect-ratio: 1;
  border: 1px solid transparent;
  background: var(--soft);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.58;
}

.thumbs button.active,
.thumbs button:hover {
  border-color: var(--ink);
  opacity: 1;
}

.detail-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 24px;
}

.back-link {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-panel h1 {
  font-size: clamp(42px, 5.8vw, 88px);
  line-height: 0.92;
}

.detail-price {
  font-size: 18px;
  font-weight: 700;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-badges .status,
.detail-badges .availability {
  position: static;
}

.detail-copy {
  max-width: 560px;
  margin: 0;
}

.size-block {
  display: grid;
  gap: 13px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  margin-bottom: -24px;
}

.size-block span,
.detail-notes h2 {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.size-block div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-block strong {
  display: inline-flex;
  min-width: 66px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 12px;
}

.spec-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border-top: 1px solid var(--line);
}

.spec-list::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
  pointer-events: none;
}

.spec-list div {
  min-height: 70px;
  padding: 14px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.spec-list div:nth-child(odd) {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

.spec-list div:nth-child(even) {
  border-right: 1px solid var(--line);
  padding-left: 18px;
}

.spec-list div:nth-child(odd):last-child {
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  padding-right: 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.detail-notes {
  display: grid;
  gap: 12px;
}

.detail-notes ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 17px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-row {
  gap: 10px;
  flex-wrap: wrap;
}

.not-found {
  display: grid;
  gap: 22px;
  max-width: 760px;
  min-height: 46vh;
  align-content: center;
}

.admin-nav-button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  text-transform: uppercase;
}

.admin-shell {
  padding: clamp(38px, 6vw, 92px) clamp(18px, 4vw, 64px) clamp(56px, 8vw, 116px);
}

.admin-login {
  max-width: 760px;
}

.admin-login h1,
.admin-panel h1 {
  font-size: clamp(48px, 8vw, 112px);
}

.admin-login-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) auto;
  gap: 1px;
  align-items: stretch;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.admin-login-form label {
  background: var(--paper);
}

.admin-login-form button {
  min-height: 100%;
}

.admin-message {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.admin-panel {
  display: grid;
  gap: 32px;
}

.admin-heading-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.admin-product-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.admin-product-list button {
  display: grid;
  gap: 6px;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  padding: 14px;
  text-align: left;
}

.admin-product-list button:hover {
  background: var(--white);
}

.admin-product-list span,
.admin-empty {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-product-list strong {
  font-size: 14px;
}

.admin-empty {
  margin: 0;
  padding: 14px;
  background: var(--paper);
}

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

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.admin-form-grid label,
.admin-product-form > label {
  background: var(--paper);
}

.admin-product-form > label {
  border: 1px solid var(--line);
}

.admin-product-form > label.admin-upload {
  border-style: dashed;
}

.admin-upload input {
  min-height: auto;
  padding: 8px 0 0;
  cursor: pointer;
}

.admin-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  border: 1px solid var(--line);
  padding: 14px;
}

.admin-checks legend {
  padding: 0 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-checks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  font-size: 11px;
}

.admin-checks input {
  width: auto;
  min-height: auto;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-image-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.admin-image-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 8px;
}

.admin-image-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--soft);
}

.admin-image-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.admin-image-tools button {
  min-height: 32px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-image-tools button:disabled {
  cursor: default;
  opacity: 0.42;
}

.admin-live-preview {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 14px;
}

.admin-live-preview .eyebrow {
  margin: 0;
}

.admin-preview-card {
  display: grid;
  grid-template-columns: minmax(120px, 200px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.admin-preview-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--soft);
  border: 1px solid var(--line);
}

.admin-preview-copy {
  display: grid;
  gap: 8px;
}

.admin-preview-copy span,
.admin-preview-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-preview-copy span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-preview-copy h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 0.95;
}

.admin-preview-copy strong {
  font-size: 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.site-footer div:first-child {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--ink);
  font-size: 11px;
  text-transform: uppercase;
}

.footer-links {
  gap: 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

  .filters {
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(120px, 1fr));
  }

  .filter-reset {
    grid-column: span 4;
    min-height: 44px;
  }
}

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

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .detail-panel {
    position: static;
  }

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

  .filter-reset {
    grid-column: span 2;
  }

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

  .rent-policy {
    grid-template-columns: 1fr;
  }

  .admin-layout,
  .admin-login-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section-heading,
  .site-footer,
  .hero-product div,
  .card-topline,
  .card-bottomline {
    align-items: flex-start;
    flex-direction: column;
  }

  .filters,
  .product-grid,
  .rent-grid,
  .spec-list,
  .admin-form-grid,
  .admin-preview-card {
    grid-template-columns: 1fr;
  }

  .filter-reset {
    grid-column: auto;
  }

  .main-photo {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .spec-list div:nth-child(odd) {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .spec-list::after {
    display: none;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .hero-product strong {
    text-align: left;
  }

  h1 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .card-title {
    min-height: auto;
  }
}
