/* ==========================================================================
   YUI YUI ONLINE FASHION — CROWN POP COMMERCE
   --------------------------------------------------------------------------
   DESIGN LOGIC
   1) A creamy neutral canvas keeps the saturated logo palette commercially premium.
   2) Pink / lavender / gold are used as "jewelry highlights", not as a full-page wash.
   3) Content uses asymmetric editorial cards so a 1085×1451 viewport feels intentionally
      dense — closer to a luxury shopping app than a corporate template.
   4) The cart is a true bottom sheet because mobile commerce behavior should stay
      thumb-friendly and instantly visible.
   ========================================================================== */

:root {
  --cream: #fffaf7;
  --paper: #fffefe;
  --blush: #ffe7f2;
  --pink: #f765a5;
  --pink-deep: #e94d94;
  --pink-soft: #ffb6d3;
  --lavender: #b987e9;
  --lavender-deep: #8f62cf;
  --gold: #f5b942;
  --berry: #4a1839;
  --ink: #231620;
  --muted: #756875;
  --line: rgba(75, 30, 61, 0.12);
  --glass: rgba(255, 255, 255, 0.74);
  --shadow: 0 28px 70px rgba(124, 61, 102, 0.16);
  --shadow-small: 0 14px 35px rgba(124, 61, 102, 0.12);
  --radius-xl: 38px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shell: min(1085px, calc(100% - 36px));
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- Reset / base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffdfb 0%, #fff7fb 45%, #fff9f0 100%);
  font-family:
    "Noto Sans Thai", "Leelawadee UI", "Tahoma",
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

button,
a,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

/* ---------- Ambient brand atmosphere ---------- */
.ambient {
  position: fixed;
  z-index: -4;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
}

.ambient--one {
  width: 34vw;
  height: 34vw;
  top: 6vh;
  right: -12vw;
  background: radial-gradient(circle, rgba(255, 118, 178, .22), transparent 68%);
}

.ambient--two {
  width: 30vw;
  height: 30vw;
  top: 52vh;
  left: -10vw;
  background: radial-gradient(circle, rgba(181, 132, 234, .16), transparent 70%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: .08;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(75, 24, 57, .45) .55px, transparent .55px);
  background-size: 10px 10px;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 80%, transparent);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  width: min(1125px, calc(100% - 24px));
  height: 76px;
  margin: 12px auto 0;
  padding: 10px 14px 10px 20px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  background: rgba(255, 252, 252, .82);
  box-shadow: 0 12px 40px rgba(87, 38, 69, .09);
  backdrop-filter: blur(24px);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  height: 58px;
}

.brand-lockup__thai {
  width: 178px;
  height: 58px;
  object-fit: contain;
  object-position: center;
}

.brand-lockup__english {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: .93rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--berry);
}

.brand-lockup__english img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

html[lang="en"] .brand-lockup__thai {
  display: none;
}

html[lang="en"] .brand-lockup__english {
  display: inline-flex;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .91rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--lavender));
  transform: translateX(-50%);
  transition: width .25s var(--ease);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
}

.language-switcher {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
}

.language-button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.04rem;
  display: grid;
  place-items: center;
  opacity: .5;
  filter: grayscale(.25);
  transition: .22s var(--ease);
}

.language-button:hover,
.language-button.is-active {
  opacity: 1;
  filter: none;
  background: white;
  box-shadow: 0 5px 18px rgba(77, 28, 61, .12);
  transform: translateY(-1px);
}

.bag-button {
  position: relative;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--berry), #2d1226);
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(74, 24, 57, .22);
}

.bag-button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.bag-button__count {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border: 2px solid white;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  font-size: .68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 670px;
  padding: 74px 0 44px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 38px;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--pink-deep);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(247, 101, 165, .20);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
}

.eyebrow__spark {
  color: var(--gold);
}

.hero h1 {
  max-width: 640px;
  margin: 20px 0 20px;
  color: var(--berry);
  font-size: clamp(3.3rem, 6.3vw, 6.6rem);
  line-height: .94;
  letter-spacing: -.055em;
}

.hero__lead {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.72;
}

.hero__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: white;
  background: linear-gradient(135deg, var(--pink-deep), var(--lavender-deep));
  box-shadow: 0 12px 28px rgba(226, 79, 147, .24);
}

.button--glass {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
}

.button--dark {
  color: white;
  background: var(--berry);
}

.hero__proof {
  margin-top: 38px;
  display: flex;
  gap: 26px;
}

.hero__proof div {
  min-width: 104px;
}

.hero__proof strong,
.hero__proof span {
  display: block;
}

.hero__proof strong {
  color: var(--berry);
  font-size: 1.06rem;
}

.hero__proof span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.4;
}

/* ---------- Hero editorial stage ---------- */
.hero-stage {
  position: relative;
  min-height: 530px;
}

.hero-stage__halo {
  position: absolute;
  inset: 9% 8% 12% 7%;
  border-radius: 48% 52% 53% 47% / 44% 42% 58% 56%;
  background:
    linear-gradient(145deg, rgba(255,191,218,.84), rgba(218,190,255,.72) 55%, rgba(255,235,188,.85));
  filter: drop-shadow(0 30px 45px rgba(114, 56, 97, .15));
  transform: rotate(-4deg);
}

.glass-card {
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-stage__main-card {
  position: absolute;
  z-index: 3;
  inset: 14% 14% 8% 13%;
  border-radius: 42px;
  padding: 24px;
  overflow: hidden;
  transform: rotate(3deg);
}

.hero-stage__main-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -38% 20%;
  height: 62%;
  background: radial-gradient(circle, rgba(255, 122, 182, .24), transparent 65%);
}

.hero-stage__chip {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  color: var(--berry);
  font-size: .72rem;
  font-weight: 900;
}

.hero-stage__jewel {
  height: 300px;
  display: grid;
  place-items: center;
  position: relative;
}

.hero-stage__ring {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 18px solid rgba(246, 184, 64, .88);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 5px rgba(255,255,255,.65),
    0 18px 40px rgba(194, 122, 26, .18);
}

.hero-stage__gem {
  position: relative;
  z-index: 1;
  width: 124px;
  height: 124px;
  border-radius: 42% 42% 48% 48%;
  background:
    radial-gradient(circle at 35% 25%, #ffd6eb 0 10%, transparent 11%),
    linear-gradient(145deg, #ff8fc0, #ef4c9a 55%, #c850bf);
  color: white;
  display: grid;
  place-items: center;
  font-size: 3.1rem;
  box-shadow:
    inset -10px -14px 20px rgba(122, 29, 91, .18),
    0 18px 32px rgba(236, 71, 155, .28);
  transform: rotate(45deg);
}

.hero-stage__gem::first-letter {
  transform: rotate(-45deg);
}

.hero-stage__caption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.hero-stage__caption span {
  max-width: 66%;
  color: var(--berry);
  font-weight: 800;
}

.hero-stage__caption strong {
  color: var(--pink-deep);
  font-size: 1.25rem;
}

.floating-card {
  position: absolute;
  z-index: 6;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 22px;
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
}

.floating-card span {
  font-size: 1.25rem;
}

.floating-card--pink {
  top: 10%;
  left: 1%;
  padding: 14px 16px;
  background: rgba(255, 226, 239, .90);
  transform: rotate(-6deg);
}

.floating-card--lavender {
  right: 0;
  bottom: 15%;
  padding: 14px 16px;
  background: rgba(234, 220, 255, .92);
  transform: rotate(6deg);
}

.hero-stage__brand-orbit {
  position: absolute;
  z-index: 7;
  top: 2%;
  right: 8%;
  width: 86px;
  height: 86px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 35px rgba(110,52,91,.16);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

/* ==========================================================================
   SHARED SECTION HEADING
   ========================================================================== */
.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  max-width: 740px;
  margin: 8px 0 0;
  color: var(--berry);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: end;
}

.section-heading--split > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

/* ==========================================================================
   CATEGORY RAIL
   ========================================================================== */
.category-section {
  padding: 76px 0 50px;
}

.category-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding: 7px 2px 20px;
  scrollbar-width: none;
}

.category-rail::-webkit-scrollbar {
  display: none;
}

.category-card {
  min-height: 150px;
  border: 1px solid rgba(77, 27, 60, .08);
  border-radius: 28px;
  padding: 20px 18px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 34px rgba(82, 38, 67, .07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: .25s var(--ease);
}

.category-card:nth-child(3n+2) {
  transform: translateY(12px);
}

.category-card:hover,
.category-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(242, 90, 158, .28);
  box-shadow: 0 18px 40px rgba(154, 65, 121, .14);
}

.category-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 17px;
  background: linear-gradient(145deg, var(--blush), #f2e8ff);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.category-card strong {
  display: block;
  margin-top: 20px;
  color: var(--berry);
  font-size: .96rem;
}

/* ==========================================================================
   PRODUCTS
   ========================================================================== */
.products-section {
  padding: 60px 0 82px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  min-height: 430px;
  grid-column: span 4;
  border-radius: 32px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(77, 27, 60, .08);
  box-shadow: 0 18px 50px rgba(93, 39, 75, .09);
  overflow: hidden;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}

.product-card:nth-child(1),
.product-card:nth-child(5) {
  grid-column: span 8;
}

.product-card:nth-child(1) {
  min-height: 520px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(93, 39, 75, .14);
}

.product-card__visual {
  position: relative;
  min-height: 265px;
  padding: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.82), transparent 28%),
    linear-gradient(145deg, var(--product-a), var(--product-b));
}

.product-card:nth-child(1) .product-card__visual {
  min-height: 330px;
}

.product-card__visual::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -48px;
  bottom: -54px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 45% 55% 56% 44%;
  transform: rotate(24deg);
}

.product-card__badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  color: var(--berry);
  font-size: .69rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.product-card__art {
  position: absolute;
  inset: 20px;
  display: grid;
  place-items: center;
  font-size: clamp(5.3rem, 10vw, 8.4rem);
  filter: drop-shadow(0 18px 20px rgba(96, 42, 76, .12));
  transform: rotate(var(--art-rotate));
  user-select: none;
}

.product-card__body {
  padding: 18px 20px 20px;
}

.product-card__meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.product-card__meta h3 {
  margin: 0;
  color: var(--berry);
  font-size: 1.05rem;
  line-height: 1.38;
}

.product-card__sku {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .69rem;
  letter-spacing: .05em;
}

.product-card__price {
  flex: 0 0 auto;
  color: var(--pink-deep);
  font-size: 1.12rem;
  font-weight: 900;
}

.product-card__actions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.quantity {
  display: inline-grid;
  grid-template-columns: 34px 32px 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  overflow: hidden;
}

.quantity button {
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.quantity span {
  text-align: center;
  font-size: .82rem;
  font-weight: 800;
}

.add-button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--berry);
  color: white;
  font-weight: 850;
  cursor: pointer;
  transition: .22s var(--ease);
}

.add-button:hover {
  background: var(--pink-deep);
}

/* ==========================================================================
   WHOLESALE PANEL
   ========================================================================== */
.trade-section {
  padding: 18px 0 92px;
}

.trade-panel {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  padding: 42px;
  color: white;
  background:
    radial-gradient(circle at 85% 10%, rgba(248, 177, 66, .30), transparent 30%),
    radial-gradient(circle at 35% 95%, rgba(255, 107, 177, .18), transparent 35%),
    linear-gradient(145deg, #4d183b, #2f1329);
  box-shadow: 0 30px 65px rgba(67, 20, 51, .24);
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 50px;
}

.trade-panel::after {
  content: "♛";
  position: absolute;
  right: 5%;
  top: -25px;
  color: rgba(255,255,255,.045);
  font-size: 14rem;
  line-height: 1;
}

.trade-panel .section-kicker {
  color: #ffadd1;
}

.trade-panel h2 {
  max-width: 650px;
  margin: 10px 0 14px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.trade-panel__copy > p {
  max-width: 670px;
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.72;
}

.trade-steps {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trade-step {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
}

.trade-step > span {
  color: #f7b943;
  font-size: .74rem;
  font-weight: 900;
}

.trade-step strong {
  display: block;
  margin-top: 14px;
}

.trade-step p {
  margin: 7px 0 0;
  color: rgba(255,255,255,.64);
  font-size: .8rem;
  line-height: 1.55;
}

.trade-panel__side {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

.trade-stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  color: var(--berry);
}

.trade-stat span,
.trade-stat strong {
  display: block;
}

.trade-stat span {
  color: var(--muted);
  font-size: .73rem;
}

.trade-stat strong {
  margin-top: 6px;
  font-size: .95rem;
  line-height: 1.35;
}

.trade-panel__side .button {
  margin-top: 5px;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
}

/* ==========================================================================
   CONTACT / MAP
   ========================================================================== */
.contact-section {
  padding: 15px 0 105px;
}

.contact-card {
  padding: 18px;
  border: 1px solid rgba(74, 24, 57, .08);
  border-radius: 42px;
  background: rgba(255,255,255,.68);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
}

.contact-card__content {
  padding: 30px 24px 26px;
}

.contact-card h2 {
  margin: 8px 0 12px;
  color: var(--berry);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -.04em;
}

.contact-card__intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.contact-list {
  margin-top: 26px;
  display: grid;
  gap: 8px;
}

.contact-list a {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  transition: .22s var(--ease);
}

.contact-list a:hover {
  transform: translateX(4px);
  border-color: rgba(234, 77, 148, .28);
}

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

.contact-list span {
  color: var(--muted);
  font-size: .72rem;
}

.contact-list strong {
  margin-top: 3px;
  color: var(--berry);
  font-size: .91rem;
}

.contact-address {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-address span {
  color: var(--pink-deep);
  font-size: .75rem;
  font-weight: 900;
}

.contact-address p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.map-shell {
  position: relative;
  min-height: 470px;
  border-radius: 31px;
  overflow: hidden;
  background: #f2e8f0;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
  filter: saturate(.72) contrast(.94);
}

.map-shell__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 10px 15px 10px 10px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(16px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--berry);
  font-size: .76rem;
  font-weight: 850;
}

.map-shell__badge img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* ==========================================================================
   CART DOCK
   ========================================================================== */
.cart-dock {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 18px;
  width: min(520px, calc(100% - 28px));
  min-height: 62px;
  padding: 8px 12px 8px 9px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(66, 21, 52, .94);
  color: white;
  box-shadow: 0 18px 44px rgba(61, 16, 47, .25);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: 1fr auto 34px;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
  cursor: pointer;
}

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

.cart-dock__bubble {
  min-width: 43px;
  height: 43px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  display: grid;
  place-items: center;
  font-weight: 900;
}

.cart-dock__label {
  font-size: .83rem;
  font-weight: 850;
}

.cart-dock__arrow {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: grid;
  place-items: center;
}

/* ==========================================================================
   BOTTOM SHEET
   ========================================================================== */
.sheet-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  background: rgba(32, 12, 27, .34);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: .28s var(--ease);
}

.sheet-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.cart-sheet {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 0;
  width: min(760px, 100%);
  max-height: 88vh;
  padding: 10px 22px 22px;
  border-radius: 38px 38px 0 0;
  background: rgba(255, 252, 252, .98);
  box-shadow: 0 -28px 80px rgba(73, 22, 57, .24);
  transform: translate(-50%, 103%);
  transition: transform .38s var(--ease);
  overflow: auto;
}

.cart-sheet.is-open {
  transform: translate(-50%, 0);
}

.cart-sheet__handle {
  width: 46px;
  height: 5px;
  margin: 3px auto 17px;
  border-radius: 999px;
  background: rgba(74, 24, 57, .17);
}

.cart-sheet__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.cart-sheet__header h2 {
  margin: 5px 0 0;
  color: var(--berry);
  font-size: 2rem;
}

.sheet-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  font-size: 1.5rem;
}

.cart-items {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.cart-empty {
  padding: 38px 20px;
  border: 1px dashed rgba(74, 24, 57, .16);
  border-radius: 24px;
  color: var(--muted);
  text-align: center;
}

.cart-item {
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: white;
  display: grid;
  grid-template-columns: 66px 1fr auto;
  gap: 12px;
  align-items: center;
}

.cart-item__visual {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--product-a), var(--product-b));
  display: grid;
  place-items: center;
  font-size: 2.1rem;
}

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

.cart-item__info strong {
  color: var(--berry);
  font-size: .86rem;
}

.cart-item__info span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .7rem;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 9px;
}

.cart-item__controls .quantity {
  grid-template-columns: 30px 27px 30px;
}

.remove-button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #fff2f7;
  color: var(--pink-deep);
  cursor: pointer;
}

.cart-sheet__summary {
  position: sticky;
  bottom: -22px;
  margin: 18px -22px -22px;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  background: rgba(255,252,252,.97);
  backdrop-filter: blur(18px);
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.summary-row--total {
  margin-top: 8px;
  color: var(--berry);
  font-size: 1.2rem;
}

.summary-row--total strong {
  color: var(--pink-deep);
  font-size: 1.5rem;
}

.checkout-button {
  width: 100%;
  min-height: 54px;
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-deep), var(--lavender-deep));
  color: white;
  box-shadow: 0 14px 28px rgba(224, 75, 146, .22);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 900;
}

.checkout-button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.checkout-note {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: .72rem;
  line-height: 1.5;
}

.toast {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 98px;
  max-width: calc(100% - 36px);
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--berry);
  color: white;
  box-shadow: 0 12px 30px rgba(65, 18, 50, .22);
  transform: translate(-50%, 14px);
  opacity: 0;
  pointer-events: none;
  transition: .25s var(--ease);
  font-size: .78rem;
  font-weight: 750;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-footer {
  padding: 0 0 110px;
  color: var(--muted);
  font-size: .75rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .hero-stage {
    min-height: 510px;
  }

  .section-heading--split,
  .trade-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 14px;
  }

  .trade-panel {
    gap: 30px;
  }

  .trade-panel__side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .trade-panel__side .button {
    grid-column: 1 / -1;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 390px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 24px, 1085px);
    --radius-xl: 30px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    height: 66px;
    margin-top: 8px;
    padding: 8px 9px 8px 13px;
  }

  .brand-lockup {
    height: 48px;
  }

  .brand-lockup__thai {
    width: 144px;
    height: 47px;
  }

  .brand-lockup__english {
    font-size: .74rem;
    letter-spacing: .09em;
  }

  .brand-lockup__english img {
    width: 36px;
    height: 36px;
  }

  .language-button {
    width: 31px;
    height: 31px;
    font-size: .9rem;
  }

  .bag-button {
    width: 39px;
    height: 39px;
  }

  .hero {
    padding-top: 42px;
    gap: 10px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero__proof {
    gap: 14px;
    justify-content: space-between;
  }

  .hero__proof div {
    min-width: 0;
  }

  .hero-stage {
    min-height: 450px;
    margin-top: 10px;
  }

  .hero-stage__main-card {
    inset: 15% 7% 8%;
  }

  .hero-stage__jewel {
    height: 250px;
  }

  .hero-stage__ring {
    width: 160px;
    height: 160px;
  }

  .hero-stage__gem {
    width: 105px;
    height: 105px;
  }

  .floating-card--pink {
    left: 0;
  }

  .floating-card--lavender {
    right: 0;
  }

  .category-section,
  .products-section {
    padding-top: 55px;
  }

  .category-rail {
    grid-auto-columns: 140px;
  }

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

  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(5) {
    grid-column: auto;
    min-height: 390px;
  }

  .product-card:nth-child(1) {
    grid-column: 1 / -1;
  }

  .product-card__visual,
  .product-card:nth-child(1) .product-card__visual {
    min-height: 240px;
  }

  .product-card__art {
    font-size: 5.5rem;
  }

  .product-card__meta {
    display: block;
  }

  .product-card__price {
    display: block;
    margin-top: 8px;
  }

  .product-card__actions {
    grid-template-columns: 1fr;
  }

  .quantity {
    width: 104px;
  }

  .trade-panel {
    padding: 28px 20px;
    border-radius: 30px;
  }

  .trade-steps {
    grid-template-columns: 1fr;
  }

  .trade-panel__side {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 10px;
    border-radius: 30px;
  }

  .contact-card__content {
    padding: 24px 15px 18px;
  }

  .map-shell {
    border-radius: 24px;
  }

  .cart-item {
    grid-template-columns: 58px 1fr;
  }

  .cart-item__visual {
    width: 58px;
    height: 58px;
  }

  .cart-item__controls {
    grid-column: 2;
    justify-content: space-between;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 480px) {
  .header-actions {
    gap: 5px;
  }

  .brand-lockup__thai {
    width: 128px;
  }

  .brand-lockup__english span {
    display: none;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

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

  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(5) {
    grid-column: 1;
  }

  .cart-dock__label {
    display: none;
  }

  .cart-sheet {
    padding-inline: 14px;
  }

  .cart-sheet__summary {
    margin-inline: -14px;
    padding-inline: 14px;
  }
}

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

/* ========================================================================== 
   EXPANDED PRODUCT CATALOG — 267 PRODUCT BUILD
   --------------------------------------------------------------------------
   The original editorial grid was optimized for six concept cards. The real
   catalog is much larger, so this layer keeps the premium visual language but
   switches the commerce area to a scalable, image-first grid with lazy loading.
   ========================================================================== */

.section-heading--catalog {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 28px;
}

.catalog-meta {
  justify-self: end;
  max-width: 380px;
  text-align: right;
}

.catalog-meta strong,
.catalog-meta span {
  display: block;
}

.catalog-meta strong {
  color: var(--berry);
  font-size: .9rem;
}

.catalog-meta span {
  margin-top: 7px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.55;
}

.catalog-toolbar {
  position: sticky;
  top: 99px;
  z-index: 22;
  margin: 0 0 22px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.84);
  border-radius: 999px;
  background: rgba(255, 250, 250, .82);
  box-shadow: 0 12px 35px rgba(94, 37, 75, .08);
  backdrop-filter: blur(20px);
}

.product-search {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
}

.product-search svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--pink-deep);
  stroke-width: 1.8;
}

.product-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--berry);
  background: transparent;
}

.product-search input::placeholder {
  color: #a2909f;
}

.category-card__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}

.category-card__bottom small {
  flex: 0 0 auto;
  min-width: 28px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #fff1f7;
  color: var(--pink-deep);
  font-size: .66rem;
  font-weight: 850;
  text-align: center;
}

/* Scalable grid: four commerce cards on the target desktop density. */
.product-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 15px;
}

.product-card,
.product-card:nth-child(1),
.product-card:nth-child(5) {
  grid-column: span 3;
  min-height: 0;
}

.product-card.product-card--feature {
  grid-column: span 6;
}

.product-card__visual,
.product-card:nth-child(1) .product-card__visual {
  min-height: 0;
  aspect-ratio: 4 / 5;
  padding: 0;
  background: #f4edf2;
}

.product-card--feature .product-card__visual {
  aspect-ratio: 16 / 10;
}

.product-card__visual::after {
  display: none;
}

.product-card__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s var(--ease);
}

.product-card:hover .product-card__visual > img {
  transform: scale(1.035);
}

.product-card__badge {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 13px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 5px 20px rgba(75, 28, 59, .08);
}

.product-card__market {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 13px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  display: grid;
  place-items: center;
  box-shadow: 0 5px 18px rgba(204, 73, 148, .22);
  font-weight: 900;
}

.product-card__body {
  padding: 17px 17px 18px;
}

.product-card__meta {
  gap: 12px;
}

.product-card__meta h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.75em;
  font-size: .96rem;
}

.product-card__price {
  font-size: 1rem;
}

.product-card__description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.5;
}

.product-card__minimum {
  display: inline-flex;
  margin-top: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff1d7;
  color: #9a6514;
  font-size: .66rem;
  font-weight: 850;
}

.size-select {
  margin-top: 13px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: center;
}

.size-select > span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
}

.size-select select {
  width: 100%;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  padding: 0 30px 0 10px;
  color: var(--berry);
  background: white;
  font-size: .72rem;
  font-weight: 750;
}

.product-details {
  margin-top: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-details summary {
  padding: 10px 0;
  color: var(--berry);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 850;
  list-style: none;
}

.product-details summary::-webkit-details-marker {
  display: none;
}

.product-details summary::after {
  content: "+";
  float: right;
  color: var(--pink-deep);
  font-size: 1rem;
}

.product-details[open] summary::after {
  content: "−";
}

.product-details__body {
  padding: 0 0 11px;
}

.product-details__body p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .69rem;
  line-height: 1.55;
}

.product-details__body p:last-child {
  margin-bottom: 0;
}

.product-details__body strong {
  display: block;
  margin-bottom: 3px;
  color: var(--pink-deep);
}

.product-card__actions {
  margin-top: 14px;
}

.catalog-more-wrap {
  padding-top: 26px;
  display: flex;
  justify-content: center;
}

.catalog-more {
  min-width: 210px;
  border: 1px solid rgba(74,24,57,.13);
  cursor: pointer;
}

.catalog-more[hidden] {
  display: none;
}

.catalog-empty {
  grid-column: 1 / -1;
  min-height: 220px;
  border: 1px dashed rgba(74,24,57,.14);
  border-radius: 30px;
  background: rgba(255,255,255,.64);
  color: var(--muted);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}

.cart-item__visual {
  overflow: hidden;
  background: #f3edf2;
}

.cart-item__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide the old concept-art helper if any stale card markup is injected. */
.product-card__art {
  display: none;
}

@media (max-width: 980px) {
  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(5) {
    grid-column: span 4;
  }

  .product-card.product-card--feature {
    grid-column: span 8;
  }
}

@media (max-width: 760px) {
  .section-heading--catalog {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .catalog-meta {
    justify-self: start;
    text-align: left;
  }

  .catalog-toolbar {
    top: 82px;
  }

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

  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(5),
  .product-card.product-card--feature {
    grid-column: auto;
  }

  .product-card.product-card--feature .product-card__visual,
  .product-card__visual,
  .product-card:nth-child(1) .product-card__visual {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 520px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card__visual,
  .product-card.product-card--feature .product-card__visual {
    aspect-ratio: 5 / 6;
  }
}


/* ==========================================================================
   HERO V3 — EDITORIAL LOOKBOOK OVERRIDE
   --------------------------------------------------------------------------
   Scope is intentionally limited to `.hero--lookbook` and `.lookbook-*`.
   No category, catalog, wholesale, contact, cart or footer styles are changed.
   ========================================================================== */

.hero--lookbook {
  min-height: 690px;
  padding: 72px 0 48px;
  grid-template-columns: .88fr 1.12fr;
  gap: 48px;
  align-items: center;
}

.hero--lookbook .hero__copy {
  align-self: center;
}

.hero--lookbook h1 {
  max-width: 540px;
  font-size: clamp(3.15rem, 5.7vw, 5.95rem);
  line-height: .96;
}

.hero--lookbook .hero__lead {
  max-width: 520px;
}

.lookbook-stage {
  position: relative;
  min-height: 565px;
  isolation: isolate;
}

.lookbook-stage::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 8% 0 2% 5%;
  border-radius: 46% 54% 42% 58% / 46% 38% 62% 54%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,.95), transparent 20%),
    linear-gradient(145deg, rgba(255,220,235,.94), rgba(234,216,255,.86) 52%, rgba(255,239,200,.84));
  transform: rotate(-2.2deg);
  box-shadow: 0 34px 72px rgba(113,55,93,.12);
}

.lookbook-stage::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 235px;
  height: 235px;
  right: 2%;
  top: 4%;
  border: 1px solid rgba(101, 42, 78, .10);
  border-radius: 50%;
}

.lookbook-stage__outline {
  position: absolute;
  z-index: -1;
  inset: 15% 8% 10% 4%;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 44px;
  transform: rotate(2deg);
}

.lookbook-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: white;
  border: 6px solid rgba(255,255,255,.92);
  box-shadow: 0 24px 48px rgba(72, 25, 57, .17);
}

.lookbook-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-shot--main {
  z-index: 4;
  width: 49%;
  height: 78%;
  left: 27%;
  top: 8%;
  border-radius: 110px 30px 80px 30px;
  transform: rotate(1.5deg);
}

.lookbook-shot--main img {
  object-position: center 28%;
}

.lookbook-shot--left {
  z-index: 2;
  width: 35%;
  height: 43%;
  left: 1%;
  bottom: 3%;
  border-radius: 32px 32px 32px 90px;
  transform: rotate(-5deg);
}

.lookbook-shot--left img {
  object-position: center 48%;
}

.lookbook-shot--right {
  z-index: 3;
  width: 30%;
  height: 54%;
  right: 0;
  top: 28%;
  border-radius: 28px 86px 28px 28px;
  transform: rotate(5deg);
}

.lookbook-shot--right img {
  object-position: center 25%;
}

.lookbook-crown {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 17%;
  width: 72px;
  height: 72px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 34px rgba(88,33,69,.14);
  transform: rotate(-8deg);
  backdrop-filter: blur(16px);
}

.lookbook-crown img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lookbook-price {
  position: absolute;
  z-index: 9;
  right: 5%;
  bottom: 4%;
  min-width: 120px;
  height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--berry);
  color: white;
  box-shadow: 0 14px 34px rgba(70,19,51,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: rotate(-3deg);
}

.lookbook-price span {
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -.03em;
}

.lookbook-price i {
  color: #ffd365;
  font-style: normal;
  font-size: .9rem;
}

.lookbook-index {
  position: absolute;
  z-index: 7;
  right: 1%;
  top: 5%;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--berry);
  font-size: .67rem;
  font-weight: 950;
  letter-spacing: .16em;
}

.lookbook-index__line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--pink), rgba(74,24,57,.12));
}

/* HERO V3 responsive behavior only. */
@media (max-width: 900px) {
  .hero--lookbook {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero--lookbook .hero__copy {
    max-width: 690px;
  }

  .lookbook-stage {
    min-height: 590px;
  }

  .lookbook-shot--main {
    width: 47%;
    left: 28%;
  }

  .lookbook-shot--left {
    width: 35%;
    left: 5%;
  }

  .lookbook-shot--right {
    width: 29%;
    right: 4%;
  }
}

@media (max-width: 700px) {
  .hero--lookbook {
    padding-top: 42px;
  }

  .hero--lookbook h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .lookbook-stage {
    min-height: 500px;
    margin-top: 22px;
  }

  .lookbook-stage::before {
    inset: 8% 1% 3%;
  }

  .lookbook-shot {
    border-width: 4px;
  }

  .lookbook-shot--main {
    width: 53%;
    height: 76%;
    left: 24%;
    top: 8%;
    border-radius: 74px 24px 60px 24px;
  }

  .lookbook-shot--left {
    width: 35%;
    height: 40%;
    left: 1%;
    bottom: 3%;
    border-radius: 24px 24px 24px 62px;
  }

  .lookbook-shot--right {
    width: 29%;
    height: 49%;
    right: 1%;
    top: 31%;
    border-radius: 22px 58px 22px 22px;
  }

  .lookbook-crown {
    left: 11%;
    width: 62px;
    height: 62px;
  }

  .lookbook-price {
    right: 2%;
    bottom: 1%;
  }
}

@media (max-width: 480px) {
  .lookbook-stage {
    min-height: 430px;
  }

  .lookbook-shot--main {
    width: 58%;
    height: 75%;
    left: 21%;
  }

  .lookbook-shot--left {
    width: 38%;
    height: 37%;
  }

  .lookbook-shot--right {
    width: 31%;
    height: 46%;
  }

  .lookbook-price {
    min-width: 104px;
    height: 50px;
    padding-inline: 14px;
  }

  .lookbook-price span {
    font-size: 1.12rem;
  }
}
