:root {
  --black: #050505;
  --ink: #111111;
  --muted: #666666;
  --paper: #f0f0ee;
  --white: #ffffff;
  --yellow: #fff200;
  --silver: #cfd4d6;
  --cool: #dce8e9;
  --line: rgba(5, 5, 5, 0.18);
  --header: 96px;
  --max: 1200px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
}

body.is-menu-open {
  overflow: hidden;
}

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

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

ul,
ol,
p,
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.page-cover {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background: var(--yellow);
  animation: cover-out 1s var(--ease) forwards;
}

@keyframes cover-out {
  0% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--header);
  transition: background-color .25s ease, height .25s ease;
}

.site-header.is-compact {
  height: 72px;
  background: rgba(240, 240, 238, .82);
  backdrop-filter: blur(12px);
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--black);
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 58px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo__cross {
  font-weight: 200;
}

.site-header.is-compact .brand-logo {
  font-size: 31px;
}

.menu-button {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 45;
  width: 44px;
  height: 44px;
  transition: top .25s ease, transform .25s ease;
}

.site-header.is-compact .menu-button {
  top: 16px;
}

.menu-button span,
.menu-button span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  content: "";
  transform: translateY(-50%);
  transition: background-color .25s ease, transform .25s ease;
}

.menu-button span::before {
  top: 0;
  transform: rotate(90deg);
}

.is-menu-open .menu-button span {
  background: var(--white);
  transform: translateY(-50%) rotate(135deg);
}

.is-menu-open .menu-button span::before {
  background: var(--white);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  justify-content: end;
  visibility: hidden;
  pointer-events: none;
}

.site-menu__inner {
  width: min(1080px, 84vw);
  height: 100vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-areas:
    "top products"
    "news products"
    "store products"
    "sns products";
  gap: 42px 96px;
  align-content: center;
  padding: 72px 112px;
  color: var(--white);
  background: var(--black);
  clip-path: inset(0 0 0 100%);
  transition: clip-path .5s var(--ease);
}

.is-menu-open .site-menu {
  visibility: visible;
  pointer-events: auto;
}

.is-menu-open .site-menu__inner {
  clip-path: inset(0 0 0 0);
}

.site-menu__heading {
  width: fit-content;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
}

.site-menu__heading[href],
.site-menu a {
  background: linear-gradient(var(--white), var(--white)) 100% 100% / 0 1px no-repeat;
  transition: opacity .2s ease, background-size .25s ease;
}

.site-menu a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.site-menu__current {
  opacity: .52;
  pointer-events: none;
}

.site-menu__store {
  grid-area: store;
}

.site-menu__store ul,
.site-menu__group ul {
  margin-top: 24px;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.9;
}

.site-menu__store li::before,
.site-menu__group li::before,
.site-footer li::before {
  content: "- ";
}

.site-menu__products {
  grid-area: products;
}

.site-menu__group {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.8;
}

.site-menu__sns {
  grid-area: sns;
  display: flex;
  gap: 24px;
  align-self: end;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 57px;
}

.hero__slider {
  display: grid;
}

.hero__slide {
  grid-area: 1 / 1;
  display: block;
  height: min(720px, calc(100vh - 57px));
  min-height: 520px;
  overflow: hidden;
  background: var(--cool);
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__badge {
  position: absolute;
  right: 48px;
  bottom: -48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 240px;
  height: 240px;
  padding-left: 38px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.35;
  transition: transform .25s ease;
}

.hero__badge:hover {
  transform: scale(.98);
}

.mini-product {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 46px;
  height: 116px;
  border-radius: 22px 22px 13px 13px;
  background: linear-gradient(90deg, rgba(255,255,255,.85), #6a5b24 45%, #f0d45c);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.18);
}

.mini-product::before {
  position: absolute;
  top: -10px;
  left: 12px;
  width: 22px;
  height: 14px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(#f3f3f3, #8b8f91);
  content: "";
}

.mini-product::after {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 52px;
  height: 4px;
  background: var(--yellow);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: fit-content;
  margin-top: -38px;
}

.highlight {
  width: fit-content;
  padding: 14px 18px 15px 120px;
  background: var(--white);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.22;
}

.highlight--right {
  padding-right: 18px;
}

.brand-subline {
  width: fit-content;
  margin: 5px auto 10px 460px;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.section-title {
  position: relative;
  z-index: 4;
  display: inline-block;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.section-title span {
  display: inline-block;
  padding-bottom: 12px;
  background: linear-gradient(var(--black), var(--black)) 0 100% / 100% 2px no-repeat;
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(420px, 620px) minmax(500px, 620px) 1fr;
  grid-template-areas:
    ". image image image"
    ". text circles .";
  margin-top: 150px;
}

.about__image-wrap {
  position: relative;
  grid-area: image;
}

.about .section-title {
  position: absolute;
  top: -20px;
  left: -62px;
}

.about__image {
  width: 100%;
  height: 416px;
  object-fit: cover;
  object-position: center;
}

.about__text {
  grid-area: text;
  margin-top: 34px;
  margin-right: 30px;
  font-size: 15px;
  line-height: 2.16;
  letter-spacing: .02em;
}

.about__circles {
  grid-area: circles;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: -34px;
  transform: translateX(42px);
}

.care-circle {
  display: grid;
  grid-template-rows: 1fr 1fr;
  width: 280px;
  height: 280px;
  overflow: hidden;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: linear-gradient(to top, var(--yellow) 50%, transparent 50%);
}

.care-circle > div {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
}

.care-circle p:first-child {
  position: relative;
  font-size: 48px;
  font-weight: 200;
  line-height: 1;
}

.care-circle p:first-child::before,
.care-circle p:first-child::after {
  position: absolute;
  bottom: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.care-circle p:first-child::before {
  left: 25%;
}

.care-circle p:first-child::after {
  right: 25%;
}

.care-circle p:last-child {
  font-size: 23px;
  font-weight: 300;
}

.care-circle span {
  display: grid;
  place-items: center;
  padding-bottom: 22px;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.about__cross {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 61px;
  height: 61px;
}

.about__cross::before,
.about__cross::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 1px;
  background: var(--black);
  content: "";
}

.about__cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.about__cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.category-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 160px auto 0;
  padding: 0 40px;
}

.category-nav li {
  position: relative;
  width: 336px;
  min-height: 190px;
}

.category-nav__visual {
  margin: 0 auto 22px;
  transform: scale(.64);
  transform-origin: bottom center;
}

.category-nav a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 24px;
  background: var(--yellow);
  overflow: hidden;
  transition: color .25s ease;
}

.category-nav a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--black);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .25s ease;
}

.category-nav a:hover {
  color: var(--white);
}

.category-nav a:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.category-nav span:not(.category-nav__visual) {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.15;
}

.category-nav i,
.news__heading i {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--black);
  transition: background-color .25s ease;
}

.category-nav i::before,
.news__heading i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  content: "";
  transform: translate(-58%, -66%) rotate(45deg);
  transition: border-color .25s ease;
}

.category-nav a:hover i {
  background: var(--white);
}

.category-nav a:hover i::before {
  border-color: var(--black);
}

.products {
  margin-top: 180px;
}

.products__title {
  margin-left: max(16px, calc((100vw - var(--max)) / 2));
}

.product-section {
  margin-top: 60px;
}

.product-section + .product-section {
  margin-top: 170px;
}

.product-section__header {
  position: relative;
  min-height: 510px;
  padding-top: 180px;
  overflow: hidden;
}

.product-section__header h3 {
  position: absolute;
  z-index: 4;
  top: 181px;
  left: 48px;
  padding: 10px 58px 12px;
  background: var(--white);
  font-size: 46px;
  font-weight: 300;
  line-height: 1;
}

.marquee {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 1;
  display: flex;
  gap: 70px;
  width: 220%;
  color: var(--yellow);
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 180px;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.product-section__visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  height: 420px;
  margin-top: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.72), transparent 28%),
    linear-gradient(120deg, #d4e1e1, #edf1ef 58%, #cfd8d9);
}

.product-section__visual--wash {
  background:
    radial-gradient(circle at 72% 45%, rgba(255,255,255,.7), transparent 25%),
    linear-gradient(120deg, #dde6e6, #f5f4ef 50%, #c8d5d8);
}

.product-section__visual--scalp {
  background:
    radial-gradient(circle at 36% 40%, rgba(255,255,255,.65), transparent 29%),
    linear-gradient(120deg, #d4dadd, #edf0ee 54%, #bac4c8);
}

.product-section__visual--deodorant {
  background:
    radial-gradient(circle at 64% 30%, rgba(255,255,255,.65), transparent 24%),
    linear-gradient(120deg, #d9e6de, #f2f1e9 50%, #cdd4cb);
}

.product-section__visual--skincare {
  background:
    radial-gradient(circle at 45% 28%, rgba(255,255,255,.76), transparent 24%),
    linear-gradient(120deg, #e7e5d9, #f5f4ee 52%, #d3d7d3);
}

.product-section__visual .product-drawing {
  transform: scale(.9);
}

.product-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 64px;
  width: min(1200px, calc(100% - 96px));
  margin: -170px auto 0;
}

.product-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(790px, calc(100% - 96px));
}

.product-card {
  position: relative;
  display: block;
  min-height: 520px;
}

.product-card__visual {
  margin: 0 auto;
}

.product-card h4 {
  min-height: 114px;
  margin-top: 16px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.product-card h4 span {
  display: block;
  width: fit-content;
  margin-top: 8px;
  padding: 8px 20px 11px;
  background: var(--white);
}

.button-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  margin-top: 20px;
  padding: 0 24px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.button-link::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--white);
  content: "";
  mix-blend-mode: difference;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .25s ease;
}

.button-link::after {
  width: 17px;
  height: 17px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.product-card:hover .button-link::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.product-card__new {
  position: absolute;
  top: 28px;
  right: 6px;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
}

.product-drawing {
  position: relative;
  display: block;
  width: 220px;
  height: 280px;
  flex: 0 0 auto;
}

.product-drawing::before,
.product-drawing::after {
  position: absolute;
  content: "";
}

.product-drawing--tube::before {
  left: 48px;
  top: 8px;
  width: 112px;
  height: 225px;
  border-radius: 28px 28px 16px 16px;
  background:
    linear-gradient(140deg, transparent 48%, rgba(255,255,255,.1) 49%, rgba(255,255,255,.06) 60%, transparent 61%),
    linear-gradient(100deg, #3b4244, #090909 72%);
  box-shadow: 0 22px 24px rgba(0,0,0,.22), inset -18px 0 24px rgba(255,255,255,.08);
  transform: rotate(-5deg);
}

.product-drawing--tube::after {
  left: 73px;
  top: 198px;
  width: 64px;
  height: 8px;
  background: var(--yellow);
  border-radius: 8px;
  transform: rotate(-5deg);
}

.product-drawing--pump::before,
.product-drawing--bottle::before {
  left: 54px;
  top: 60px;
  width: 118px;
  height: 198px;
  border-radius: 18px 18px 24px 24px;
  background: linear-gradient(100deg, #333b3d, #050505 74%);
  box-shadow: 0 23px 22px rgba(0,0,0,.24), inset -16px 0 22px rgba(255,255,255,.08);
}

.product-drawing--pump::after,
.product-drawing--bottle::after {
  left: 78px;
  top: 38px;
  width: 94px;
  height: 43px;
  border-radius: 12px 12px 5px 5px;
  background: linear-gradient(90deg, #f6f8f7, #8e9699 60%, #e9eceb);
  box-shadow: 42px -12px 0 -14px #acb3b6;
}

.product-drawing--bottle::before {
  left: 42px;
  top: 50px;
  width: 136px;
  height: 210px;
}

.product-drawing--bottle::after {
  left: 75px;
  top: 21px;
}

.product-drawing--serum::before,
.product-drawing--lotion::before {
  left: 74px;
  top: 44px;
  width: 82px;
  height: 218px;
  border-radius: 38px 38px 18px 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.56), rgba(20,20,20,.15) 30%, rgba(210,168,62,.68) 72%, rgba(255,255,255,.24)),
    rgba(45, 53, 55, .34);
  box-shadow: 0 23px 20px rgba(0,0,0,.2), inset 0 0 0 2px rgba(0,0,0,.15);
}

.product-drawing--serum::after,
.product-drawing--lotion::after {
  left: 70px;
  top: 20px;
  width: 90px;
  height: 42px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(90deg, #f5f6f5, #7d8588 58%, #eef0ef);
}

.product-drawing--lotion::before {
  left: 66px;
  width: 96px;
}

.product-drawing--lotion::after {
  left: 76px;
  width: 78px;
  box-shadow: 42px -10px 0 -15px #9da5a8;
}

.product-drawing--stick::before {
  left: 58px;
  top: 62px;
  width: 112px;
  height: 176px;
  border-radius: 34px 34px 21px 21px;
  background:
    linear-gradient(180deg, #cfd5d6 0 24%, #1a1d1e 25% 100%);
  box-shadow: 0 22px 22px rgba(0,0,0,.22), inset -12px 0 18px rgba(255,255,255,.12);
}

.product-drawing--stick::after {
  left: 80px;
  top: 165px;
  width: 70px;
  height: 7px;
  background: var(--yellow);
  border-radius: 8px;
}

.product-drawing--sachet::before {
  left: 42px;
  top: 44px;
  width: 136px;
  height: 186px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.3), rgba(0,0,0,.08), rgba(255,255,255,.18)),
    #c8cdcf;
  box-shadow: 0 22px 18px rgba(0,0,0,.18), inset 0 0 0 1px rgba(0,0,0,.14);
  transform: rotate(5deg);
}

.product-drawing--sachet::after {
  left: 46px;
  top: 165px;
  width: 128px;
  height: 8px;
  background: var(--yellow);
  border-radius: 8px;
  transform: rotate(5deg);
}

.product-drawing--foam::before {
  left: 28px;
  top: 92px;
  width: 168px;
  height: 118px;
  border-radius: 52% 48% 46% 54%;
  background:
    radial-gradient(circle at 45% 18%, #fff 0 18%, transparent 19%),
    radial-gradient(circle at 64% 31%, #f4f7f6 0 24%, transparent 25%),
    radial-gradient(circle at 30% 42%, #f7faf9 0 30%, transparent 31%),
    radial-gradient(circle at 54% 54%, #eef3f2 0 54%, transparent 55%);
  filter: drop-shadow(0 22px 18px rgba(0,0,0,.16));
}

.product-drawing--foam::after {
  left: 45px;
  top: 205px;
  width: 132px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,.13);
  filter: blur(8px);
}

.product-drawing--jar::before {
  left: 44px;
  top: 130px;
  width: 138px;
  height: 84px;
  border-radius: 22px 22px 36px 36px;
  background: linear-gradient(100deg, #333b3d, #050505 72%);
  box-shadow: 0 20px 18px rgba(0,0,0,.24), inset -14px 0 18px rgba(255,255,255,.08);
}

.product-drawing--jar::after {
  left: 52px;
  top: 104px;
  width: 122px;
  height: 36px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(90deg, #f6f8f7, #8a9295 58%, #f0f2f1);
}

.news {
  display: grid;
  grid-template-columns: 1fr minmax(0, 1200px) 1fr;
  grid-template-areas:
    ". heading ."
    ". cards cards";
  row-gap: 52px;
  margin-top: 190px;
}

.news__heading {
  grid-area: heading;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.news__heading a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: -8px;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
}

.news__heading i {
  width: 18px;
  height: 18px;
}

.news__heading i::before {
  width: 7px;
  height: 7px;
  transform: translate(-66%, -50%) rotate(-45deg);
}

.news__cards {
  grid-area: cards;
  display: flex;
  gap: 52px;
  overflow: hidden;
}

.news-card {
  display: block;
  flex: 0 0 480px;
}

.news-card__image {
  display: block;
  height: 270px;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 36%, rgba(255,255,255,.95) 0 18%, transparent 19%),
    linear-gradient(120deg, #d8e3e4, #f2f1ea);
}

.news-card__image--one {
  background:
    radial-gradient(circle at 56% 44%, rgba(255,242,0,.95) 0 13%, transparent 14%),
    linear-gradient(120deg, #d5dfdf, #f6f5ef);
}

.news-card__image--two {
  background:
    linear-gradient(90deg, transparent 52%, rgba(255,242,0,.8) 53% 56%, transparent 57%),
    linear-gradient(120deg, #c8d6d8, #f1f1ef);
}

.news-card__image--three {
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.85) 0 16%, transparent 17%),
    linear-gradient(120deg, #d9dce0, #eef0eb 50%, #bdc7cb);
}

.news-card__image--four {
  background:
    linear-gradient(0deg, transparent 56%, rgba(255,242,0,.8) 57% 61%, transparent 62%),
    linear-gradient(120deg, #e0e5dd, #f5f3e9);
}

.news-card__image--five {
  background:
    radial-gradient(circle at 50% 45%, rgba(5,5,5,.9) 0 18%, transparent 19%),
    linear-gradient(120deg, #d9e3e1, #f7f5eb);
}

.news-card p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 2.05;
}

.news-card time {
  display: block;
  margin-top: 10px;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
}

.caption {
  width: min(1200px, calc(100% - 32px));
  margin: 260px auto 58px;
  color: #444;
  font-size: 12px;
  line-height: 1.8;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
}

.site-footer__layout {
  display: grid;
  grid-template:
    "logo products news" auto
    "logo products store" auto
    "sns products about" 1fr
    "copy note note" auto / 1fr auto 300px;
  gap: 20px 72px;
  width: min(1190px, calc(100% - 64px));
  min-height: 460px;
  margin: 0 auto;
  padding: 66px 70px 58px 0;
  font-size: 16px;
}

.site-footer__logo {
  grid-area: logo;
  display: block;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.45;
}

.site-footer__logo span {
  display: block;
}

.site-footer__products {
  grid-area: products;
}

.site-footer__products > p,
.site-footer__heading,
.site-footer__store > p {
  font-size: 24px;
  line-height: 1;
}

.site-footer__products div {
  margin-top: 18px;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.9;
}

.site-footer__products ul,
.site-footer__store ul {
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
}

.site-footer__heading {
  grid-area: news;
  width: fit-content;
}

.site-footer__store {
  grid-area: store;
  margin-top: 12px;
}

.site-footer__store ul {
  margin-top: 18px;
  line-height: 2;
}

.site-footer__about {
  grid-area: about;
  align-self: end;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.75;
}

.site-footer__about a {
  display: block;
  width: fit-content;
  margin-bottom: 15px;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
}

.site-footer__sns {
  grid-area: sns;
  align-self: end;
  display: flex;
  gap: 22px;
}

.site-footer__copy {
  grid-area: copy;
  margin-top: 20px;
  font-size: 11px;
}

.site-footer__note {
  grid-area: note;
  margin-top: 20px;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  font-size: 12px;
}

.site-footer a {
  background: linear-gradient(var(--white), var(--white)) 100% 100% / 0 1px no-repeat;
  transition: background-size .25s ease;
}

.site-footer a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 980px) {
  :root {
    --header: 84px;
  }

  .site-header {
    position: relative;
    justify-content: flex-start;
    height: 84px;
  }

  .site-header.is-compact {
    height: 84px;
    background: transparent;
    backdrop-filter: none;
  }

  .brand-logo,
  .site-header.is-compact .brand-logo {
    display: block;
    margin-left: 16px;
    font-size: 27px;
    line-height: 1.18;
    white-space: normal;
  }

  .brand-logo span {
    display: block;
  }

  .brand-logo__cross {
    display: none !important;
  }

  .menu-button,
  .site-header.is-compact .menu-button {
    top: 18px;
    right: 16px;
    width: 28px;
    height: 28px;
  }

  .site-menu__inner {
    width: 100vw;
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "products"
      "news"
      "store"
      "sns";
    gap: 34px;
    padding: 72px 40px 80px;
  }

  .site-menu__heading {
    font-size: 27px;
  }

  .site-menu__group,
  .site-menu__store ul {
    font-size: 16px;
  }

  .hero {
    padding-top: 0;
  }

  .hero__slide {
    height: 563px;
    min-height: 0;
  }

  .hero__slide img {
    object-position: 46% center;
  }

  .hero__badge {
    right: -15px;
    bottom: -27px;
    width: 128px;
    height: 128px;
    gap: 6px;
    padding-left: 20px;
    font-size: 18px;
  }

  .mini-product {
    width: 27px;
    height: 76px;
  }

  .mini-product::before {
    top: -7px;
    left: 7px;
    width: 13px;
    height: 9px;
  }

  .mini-product::after {
    left: 6px;
    right: 6px;
    top: 34px;
    height: 3px;
  }

  .hero-copy {
    margin-top: -72px;
  }

  .highlight {
    padding: 8px 10px 10px 16px;
    font-size: 24px;
    line-height: 1.28;
  }

  .brand-subline {
    margin: 7px 0 9px 96px;
    font-size: 16px;
  }

  .section-title {
    font-size: 29px;
  }

  .section-title span {
    padding-bottom: 7px;
  }

  .about {
    display: block;
    margin-top: 66px;
  }

  .about .section-title {
    position: relative;
    top: 0;
    left: 16px;
    margin-bottom: -2px;
  }

  .about__image {
    width: calc(100% - 32px);
    height: 193px;
    margin-left: 32px;
    object-position: center;
  }

  .about__circles {
    gap: 10px;
    margin-top: -12px;
    margin-left: 32px;
    transform: none;
  }

  .care-circle {
    width: 132px;
    height: 132px;
  }

  .care-circle > div {
    gap: 3px;
  }

  .care-circle p:first-child {
    font-size: 24px;
  }

  .care-circle p:first-child::before,
  .care-circle p:first-child::after {
    bottom: -5px;
    width: 3px;
    height: 3px;
  }

  .care-circle p:last-child {
    font-size: 12px;
  }

  .care-circle span {
    padding: 0 12px 11px;
    font-size: 12px;
    text-align: center;
  }

  .about__cross {
    width: 27px;
    height: 27px;
  }

  .about__cross::before,
  .about__cross::after {
    width: 38px;
  }

  .about__text {
    margin: 32px 0 0;
    padding: 0 32px;
    font-size: 14px;
    line-height: 2.18;
  }

  .category-nav {
    flex-direction: column;
    gap: 42px;
    width: min(343px, calc(100% - 32px));
    margin-top: 72px;
    padding: 0;
  }

  .category-nav li {
    width: 100%;
    min-height: 92px;
  }

  .category-nav__visual {
    position: absolute;
    left: -34px;
    bottom: 1px;
    z-index: 2;
    margin: 0;
    transform: scale(.36);
    pointer-events: none;
  }

  .category-nav a {
    min-height: 64px;
    padding: 0 20px 0 92px;
  }

  .category-nav span:not(.category-nav__visual) {
    font-size: 22px;
  }

  .category-nav i {
    width: 25px;
    height: 25px;
  }

  .products {
    margin-top: 112px;
  }

  .products__title {
    margin-left: 16px;
  }

  .product-section {
    margin-top: 48px;
  }

  .product-section + .product-section {
    margin-top: 130px;
  }

  .product-section__header {
    min-height: 336px;
    padding-top: 126px;
  }

  .product-section__header h3 {
    top: 126px;
    left: 16px;
    padding: 6px 16px 8px;
    font-size: 24px;
  }

  .marquee {
    top: 30px;
    gap: 28px;
    font-size: 78px;
  }

  .product-section__visual {
    height: 265px;
    gap: 12px;
  }

  .product-section__visual .product-drawing {
    transform: scale(.5);
    margin-left: -56px;
    margin-right: -56px;
  }

  .product-grid,
  .product-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 32px;
    width: calc(100% - 64px);
    margin-top: -80px;
  }

  .product-card {
    min-height: 332px;
  }

  .product-card__visual {
    transform: scale(.62);
    transform-origin: bottom center;
    margin: -46px auto -26px;
  }

  .product-card h4 {
    min-height: 85px;
    font-size: 16px;
  }

  .product-card h4 span {
    margin-top: 4px;
    padding: 6px 8px 7px;
  }

  .button-link {
    min-height: 40px;
    margin-top: 12px;
    padding: 0 10px;
    font-size: 15px;
  }

  .button-link::after {
    width: 11px;
    height: 11px;
  }

  .product-card__new {
    top: 16px;
    width: 48px;
    height: 48px;
    font-size: 14px;
  }

  .news {
    display: block;
    margin-top: 104px;
    padding-left: 16px;
  }

  .news__heading {
    padding-right: 16px;
    align-items: center;
  }

  .news__heading a {
    margin-bottom: -4px;
    font-size: 16px;
  }

  .news__cards {
    gap: 32px;
    margin-top: 48px;
    padding-right: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .news__cards::-webkit-scrollbar {
    display: none;
  }

  .news-card {
    flex-basis: 240px;
  }

  .news-card__image {
    height: 135px;
  }

  .news-card p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.65;
  }

  .news-card time {
    margin-top: 4px;
    font-size: 13px;
  }

  .caption {
    margin-top: 146px;
    margin-bottom: 52px;
    padding: 0 16px 0 0;
    font-size: 11px;
    line-height: 1.65;
  }

  .site-footer__layout {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 24px 32px 52px;
    font-size: 14px;
  }

  .site-footer__logo {
    font-size: 28px;
  }

  .site-footer__products {
    margin-top: 40px;
  }

  .site-footer__products > p,
  .site-footer__heading,
  .site-footer__store > p {
    font-size: 20px;
  }

  .site-footer__products div {
    margin-top: 18px;
    font-size: 14px;
  }

  .site-footer__heading {
    display: block;
    margin-top: 30px;
  }

  .site-footer__store {
    margin-top: 28px;
  }

  .site-footer__about {
    margin-top: 24px;
  }

  .site-footer__about a {
    display: inline-block;
    margin-right: 20px;
  }

  .site-footer__sns {
    margin-top: 42px;
  }

  .site-footer__copy,
  .site-footer__note {
    margin-top: 12px;
  }
}

@media (max-width: 430px) {
  .hero__slide img {
    width: 168%;
    max-width: none;
    transform: translateX(-28%);
  }

  .product-grid,
  .product-grid--two {
    gap: 34px 24px;
    width: calc(100% - 52px);
  }

  .product-card h4 {
    font-size: 15px;
  }
}
/* Mobile hero/footer balance fixes aligned with the two-button product LP. */
.hero__cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(720px, calc(100% - 32px));
  margin: 18px 0 0 120px;
}

.store-button {
  display: grid;
  align-content: center;
  min-height: 64px;
  padding: 12px 18px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.25;
}

.store-button span {
  font-size: 18px;
}

.store-button strong {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
}

.store-button--rakuten { background: #bf0000; }
.store-button--amazon { background: #232f3e; }

@media (max-width: 980px) {
  .hero__slide {
    height: 510px;
  }

  .hero__slide img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center top;
    transform: none;
  }

  .hero__badge {
    right: 16px;
    bottom: 18px;
    width: 112px;
    height: 112px;
    padding-left: 16px;
    font-size: 15px;
  }

  .hero-copy {
    width: auto;
    margin-top: 18px;
    padding: 0 16px;
  }

  .highlight,
  .highlight--right {
    width: 100%;
    padding: 8px 10px 10px 12px;
  }

  .brand-subline {
    margin-left: 0;
  }

  .hero__cta {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 16px 0 0;
  }

  .store-button {
    min-height: 58px;
    padding: 11px 16px;
  }

  .store-button span {
    font-size: 17px;
  }

  .about__image {
    width: calc(100% - 32px);
    height: auto;
    aspect-ratio: 16 / 10;
    margin: 0 auto;
    object-fit: contain;
    background: #fff;
  }

  .about__circles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 32px);
    margin: 24px auto 0;
  }

  .care-circle {
    width: 100%;
    height: auto;
    min-height: 112px;
    aspect-ratio: 1;
  }

  .products {
    margin-top: 72px;
  }

  .product-section,
  .product-section + .product-section {
    margin-top: 42px;
  }

  .product-section__header {
    display: grid;
    gap: 18px;
    min-height: 0;
    padding: 0 16px;
    overflow: visible;
  }

  .product-section__header h3 {
    position: relative;
    top: auto;
    left: auto;
    z-index: 3;
    width: fit-content;
    max-width: 100%;
    font-size: 22px;
    line-height: 1.35;
  }

  .marquee {
    position: relative;
    top: auto;
    left: auto;
    order: -1;
    width: 100%;
    overflow: hidden;
    font-size: clamp(45px, 16vw, 70px);
    opacity: .42;
    animation: none;
  }

  .product-section__visual {
    height: auto;
    min-height: 210px;
    padding: 24px 10px;
    gap: 0;
  }

  .product-section__visual .product-drawing {
    transform: scale(.58);
    margin: -26px -54px;
  }

  .product-grid,
  .product-grid--two {
    grid-template-columns: 1fr;
    gap: 18px;
    width: calc(100% - 32px);
    margin-top: 24px;
  }

  .product-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 0;
    padding: 12px;
    background: #fff;
  }

  .product-card__visual {
    width: 104px;
    height: 124px;
    margin: 0;
    transform: scale(.56);
    transform-origin: center;
  }

  .product-card h4 {
    min-height: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
  }

  .button-link {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .product-card__new {
    top: 8px;
    right: 8px;
  }

  .caption {
    margin-top: 76px;
  }

  .site-footer__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
    padding: 32px 20px 64px;
  }

  .site-footer__logo,
  .site-footer__products,
  .site-footer__about,
  .site-footer__sns,
  .site-footer__note,
  .site-footer__copy {
    grid-column: 1 / -1;
  }

  .site-footer__products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 10px;
  }

  .site-footer__products > p {
    grid-column: 1 / -1;
  }

  .site-footer__heading,
  .site-footer__store {
    margin-top: 0;
  }

  .site-footer__about {
    margin-top: 0;
  }
}

@media (max-width: 430px) {
  .hero__slide {
    height: 470px;
  }

  .hero__slide img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .product-section__visual .product-drawing {
    transform: scale(.5);
    margin: -34px -62px;
  }

  .site-footer__products {
    grid-template-columns: 1fr;
  }
}


/* Final mobile spacing pass after DOM measurement. */
@media (max-width: 980px) {
  .about__circles {
    margin-top: 44px;
  }

  .product-grid,
  .product-grid--two {
    margin-top: 44px;
  }
}

/* First viewport CTA fit pass. */
@media (max-width: 980px) {
  .hero__slide {
    height: 430px;
  }
}

@media (max-width: 430px) {
  .hero__slide {
    height: 392px;
  }
}


/* Mandatory mobile footer and product-image repair. */
.product-photo {
  display: block;
  width: min(100%, 250px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.product-section__visual .product-photo {
  width: min(31vw, 220px);
  max-width: 220px;
}

.product-card__visual.product-photo,
.product-card .product-photo {
  width: min(100%, 220px);
  max-width: 220px;
}

@media (max-width: 980px) {
  .product-section__visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    align-items: center;
    justify-items: center;
    min-height: 0;
    padding: 18px 12px;
    gap: 10px;
  }

  .product-section__visual .product-photo {
    width: 100%;
    max-width: 132px;
  }

  .product-card {
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 0;
  }

  .product-card .product-photo {
    width: 118px;
    max-width: 118px;
  }

  .site-footer__layout {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    gap: 24px;
    padding: 34px 24px 74px;
    font-size: 14px;
  }

  .site-footer__logo {
    display: block;
    font-size: 26px;
    line-height: 1.25;
  }

  .site-footer__products {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0;
  }

  .site-footer__products > p,
  .site-footer__heading,
  .site-footer__store > p {
    font-size: 20px;
  }

  .site-footer__products div,
  .site-footer__store,
  .site-footer__about,
  .site-footer__sns,
  .site-footer__copy,
  .site-footer__note {
    margin: 0;
  }

  .site-footer__products div {
    font-size: 13px;
    line-height: 1.75;
  }

  .site-footer__products ul,
  .site-footer__store ul {
    margin-top: 8px;
    line-height: 1.75;
  }

  .site-footer__about {
    font-size: 12px;
    line-height: 1.65;
  }

  .site-footer__about a {
    display: inline-block;
    margin: 0 18px 10px 0;
    font-size: 14px;
  }

  .site-footer__sns {
    gap: 18px;
  }

  .site-footer__note,
  .site-footer__copy {
    font-size: 11px;
    line-height: 1.7;
  }
}

@media (max-width: 430px) {
  .product-section__visual .product-photo {
    max-width: 112px;
  }

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

  .product-card .product-photo {
    width: 112px;
    max-width: 112px;
  }
}

/* Product image final sizing pass. */
.product-card__visual.product-photo {
  transform: none;
}

@media (max-width: 980px) {
  .product-card__visual.product-photo,
  .product-card .product-photo {
    width: 116px;
    max-width: 116px;
    height: 116px;
    object-fit: contain;
    transform: none;
  }

  .site-footer__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 18px;
  }

  .site-footer__products > p {
    grid-column: 1 / -1;
  }

  .site-footer__about,
  .site-footer__sns {
    align-self: stretch;
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .product-card__visual.product-photo,
  .product-card .product-photo {
    width: 112px;
    max-width: 112px;
    height: 112px;
  }
}

/* Real-product grooming repair pass. */
.hero__slide img[src$="hero-mens-beauty.svg"] {
  object-position: center;
}

@media (max-width: 980px) {
  .hero__slide img[src$="hero-mens-beauty.svg"] {
    object-fit: cover;
    object-position: 56% center;
  }

  .site-footer__logo {
    font-size: 24px;
  }

  .site-footer__products div p,
  .site-footer__store p {
    font-weight: 700;
  }
}

/* Additional screenshot collapse fix: about circles, category buttons, footer labels. */
@media (max-width: 980px) {
  .brand-logo,
  .site-header.is-compact .brand-logo {
    font-size: 23px;
    line-height: 1.12;
  }

  .about {
    margin-top: 46px;
  }

  .about__circles {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
    width: calc(100% - 32px);
    margin: 26px auto 0 !important;
  }

  .about__cross {
    display: none;
  }

  .care-circle {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 1;
  }

  .care-circle p:first-child {
    font-size: 28px;
    line-height: 1.05;
  }

  .care-circle p:last-child {
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
  }

  .care-circle span {
    padding: 0 8px 10px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
  }

  .about__text {
    margin-top: 30px;
    padding: 0 24px;
    line-height: 2.05;
  }

  .category-nav {
    gap: 14px;
    width: calc(100% - 32px);
    margin-top: 52px;
  }

  .category-nav li {
    min-height: 0;
  }

  .category-nav__visual {
    display: none;
  }

  .category-nav a {
    min-height: 58px;
    padding: 0 18px;
  }

  .category-nav span:not(.category-nav__visual) {
    font-size: 18px;
    line-height: 1.25;
  }

  .products {
    margin-top: 78px;
  }

  .site-footer__layout {
    padding-top: 38px;
  }

  .site-footer__logo span {
    display: inline;
  }
}

@media (max-width: 430px) {
  .care-circle p:first-child {
    font-size: 25px;
  }

  .care-circle p:last-child,
  .care-circle span {
    font-size: 11px;
  }
}

/* Hero and readable product-image final pass. */
html {
  font-size: 17px;
}

@media (max-width: 980px) {
  html {
    font-size: 18px;
  }

  body {
    font-size: 18px;
  }

  .site-header {
    height: 96px;
  }

  .brand-logo,
  .site-header.is-compact .brand-logo {
    max-width: 300px;
    font-size: 25px;
    line-height: 1.18;
  }

  .hero {
    margin-top: 0;
  }

  .hero__slide {
    height: 460px;
    background: #eef3f1;
  }

  .hero__slide img[src$="hero-mens-beauty.svg"] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    background: #eef3f1;
  }

  .hero__badge {
    right: 18px;
    bottom: 22px;
    width: 104px;
    height: 104px;
    font-size: 15px;
  }

  .highlight,
  .highlight--right {
    font-size: 28px;
    line-height: 1.32;
  }

  .brand-subline {
    font-size: 18px;
  }

  .about__text {
    font-size: 17px;
    line-height: 2.05;
  }

  .category-nav span:not(.category-nav__visual) {
    font-size: 20px;
  }

  .product-section__header h3 {
    font-size: 25px;
  }

  .product-section__visual {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 18px;
  }

  .product-section__visual .product-photo {
    width: 100%;
    max-width: 260px;
  }

  .product-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .product-card__visual.product-photo,
  .product-card .product-photo {
    width: 100%;
    max-width: 280px;
    height: auto;
    justify-self: center;
  }

  .product-card h4 {
    font-size: 20px;
    line-height: 1.5;
  }

  .product-card h4 span {
    display: block;
  }

  .button-link {
    min-height: 54px;
    font-size: 18px;
  }

  .site-footer__layout,
  .site-footer__products div,
  .site-footer__about,
  .site-footer__note,
  .site-footer__copy {
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  .hero__slide {
    height: 430px;
  }

  .product-section__visual .product-photo {
    max-width: 250px;
  }

  .product-card__visual.product-photo,
  .product-card .product-photo {
    width: 100%;
    max-width: 270px;
    height: auto;
  }
}

/* First viewport balance after font increase. */
@media (max-width: 980px) {
  .hero__slide {
    height: 360px;
  }
}

@media (max-width: 430px) {
  .hero__slide {
    height: 350px;
  }
}

/* Readable actual-product card pass. */
.product-visual-link {
  display: block;
  width: min(100%, 280px);
  margin: 0 auto;
}

.product-visual-link .product-photo {
  width: 100%;
  max-width: none;
}

.product-card__visual.product-photo {
  background: #fff;
}

@media (max-width: 980px) {
  .product-section__visual {
    grid-template-columns: 1fr;
    background: #eef3f1;
  }

  .product-visual-link {
    width: min(100%, 300px);
  }

  .product-card__visual.product-photo,
  .product-card .product-photo {
    width: 100%;
    max-width: 300px;
  }

  .product-card h4 {
    font-size: 21px;
  }
}
