:root {
  --ink: #171112;
  --muted: #6d5d5d;
  --line: #e8dcda;
  --soft: #fff6f4;
  --cream: #fbefe9;
  --blush: #f4d6d3;
  --rose: #8f294c;
  --plum: #3a1324;
  --gold: #b48557;
  --white: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 246, 244, 0.9), rgba(255, 255, 255, 0.9) 360px),
    var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

button,
select,
input {
  font: inherit;
}

.promo {
  background: linear-gradient(90deg, #171112, #4b2030, #171112);
  color: var(--white);
  padding: 9px 16px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 34px;
  background: rgba(255, 250, 249, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(58, 19, 36, 0.06);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

nav a {
  position: relative;
  padding: 8px 0;
}

nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bag {
  justify-self: end;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: brightness(0.74);
}

.hero-copy {
  position: relative;
  max-width: 720px;
  padding: 0 7vw 7vw;
  color: var(--white);
}

.hero-copy p,
.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.95;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 12px 24px rgba(23, 17, 18, 0.12);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(23, 17, 18, 0.16);
}

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

.button.ghost {
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  box-shadow: none;
}

.button.full {
  width: 100%;
}

.section-heading,
.filters,
.product-grid,
.product-strip,
.split-feature,
.category-grid,
.lookbook,
.info-columns,
.about-hero,
.product-page,
.studio,
.page-hero {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 58px 0 22px;
}

.section-heading h2,
.page-hero h1,
.split-feature h2,
.about-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  font-weight: 500;
}

.product-strip,
.product-grid {
  display: grid;
  gap: 22px;
}

.product-strip {
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 54px;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
  padding: 28px 0 70px;
}

.product-card {
  display: grid;
  gap: 12px;
  padding-bottom: 8px;
}

.product-card img,
.lookbook img {
  aspect-ratio: 4 / 5;
  background: var(--cream);
  box-shadow: 0 18px 46px rgba(58, 19, 36, 0.09);
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.product-card:hover img,
.lookbook article:hover img,
.category-grid a:hover img {
  transform: translateY(-3px);
  filter: saturate(1.04) contrast(1.03);
  box-shadow: 0 24px 62px rgba(58, 19, 36, 0.14);
}

.product-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.swatches,
.shade-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.swatch {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 160ms ease, outline-color 160ms ease;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.38);
}

.swatch:hover {
  transform: scale(1.08);
}

.swatch.active,
.shade-pill.active {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.split-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
  padding: 68px 0;
  border-top: 1px solid var(--line);
}

.split-feature img,
.about-hero img {
  aspect-ratio: 1 / 1;
}

.split-feature p,
.page-hero p,
.about-hero p,
.info-columns p,
.lookbook p {
  color: var(--muted);
  line-height: 1.65;
}

.category-grid,
.lookbook,
.info-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 26px 0 72px;
}

.category-grid a {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
}

.category-grid img {
  height: 100%;
  filter: brightness(0.82);
}

.category-grid span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.page-hero {
  padding: 62px 0 24px;
}

.page-hero.compact h1 {
  margin-bottom: 14px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.filter {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.product-page {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.9fr);
  gap: 54px;
  padding: 54px 0 74px;
}

.product-gallery img {
  aspect-ratio: 4 / 5;
  background: var(--cream);
}

.product-details {
  top: 104px;
  align-self: start;
}

.product-details h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 12px;
}

.price {
  font-size: 18px;
  margin-bottom: 26px;
}

.shade-pill {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.shade-pill:hover {
  transform: translateY(-1px);
  border-color: #d0aaa6;
  box-shadow: 0 10px 22px rgba(58, 19, 36, 0.08);
}

.shade-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.studio {
  display: grid;
  grid-template-columns: minmax(300px, 340px) 1fr;
  gap: 30px;
  padding: 22px 0 86px;
}

.studio-panel {
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(232, 220, 218, 0.94);
  background: rgba(255, 246, 244, 0.88);
  box-shadow: 0 24px 70px rgba(58, 19, 36, 0.1);
  backdrop-filter: blur(18px);
}

.field-label {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

select,
input[type="range"] {
  width: 100%;
}

select {
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 12px;
  outline: none;
}

select:focus,
input[type="range"]:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(143, 41, 76, 0.38);
  outline-offset: 3px;
}

#imageUpload {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.file-actions {
  display: grid;
  gap: 10px;
}

.lighting {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lighting button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lighting button.active {
  background: linear-gradient(135deg, var(--plum), var(--rose));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(143, 41, 76, 0.18);
}

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

.canvas-wrap {
  position: relative;
  min-height: 620px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 36%),
    linear-gradient(135deg, #f3dfda, #e7cbc4);
  overflow: hidden;
  box-shadow: 0 28px 86px rgba(58, 19, 36, 0.14);
}

#tryonCanvas {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  cursor: crosshair;
}

#cameraFeed {
  display: none;
}

.canvas-note {
  position: absolute;
  left: 18px;
  bottom: 16px;
  margin: 0;
  max-width: calc(100% - 36px);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  box-shadow: 0 12px 30px rgba(58, 19, 36, 0.1);
  backdrop-filter: blur(16px);
}

.lookbook article,
.info-columns div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.lookbook h2,
.info-columns h2 {
  margin: 16px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 58px 0;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 16px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .bag {
    display: none;
  }

  .product-strip,
  .product-grid,
  .category-grid,
  .lookbook,
  .info-columns,
  .split-feature,
  .about-hero,
  .product-page,
  .studio {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 640px;
  }

  .product-details {
    position: static;
  }

  .canvas-wrap,
  #tryonCanvas {
    min-height: 480px;
  }
}

@media (max-width: 520px) {
  .section-heading,
  .filters,
  .product-grid,
  .product-strip,
  .split-feature,
  .category-grid,
  .lookbook,
  .info-columns,
  .about-hero,
  .product-page,
  .studio,
  .page-hero {
    width: min(100% - 28px, 1180px);
  }

  .hero-copy {
    padding: 0 22px 42px;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 18px;
  }
}

/* Luxury ecommerce redesign */
:root {
  --charcoal: #383536;
}

.luxury-header {
  min-height: 122px;
  align-content: center;
}

.luxury-header .brand {
  display: grid;
  justify-items: center;
  gap: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.luxury-header .brand small {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
}

.locale {
  font-size: 14px;
  color: var(--charcoal);
}

.locale span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-left: 6px;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
}

.header-icons {
  justify-self: end;
  display: flex;
  gap: 22px;
  font-size: 24px;
  line-height: 1;
}

.luxury-header nav {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: -4px;
  text-transform: lowercase;
  font-size: 15px;
  letter-spacing: 0;
}

.luxury-hero {
  position: relative;
  min-height: calc(100vh - 150px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #e4e4e4;
}

.luxury-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: 62% center;
  filter: saturate(0.92) brightness(1.04);
}

.luxury-hero-copy {
  position: relative;
  width: min(380px, calc(100% - 42px));
  margin-left: 3vw;
  animation: fadeUp 680ms ease both;
}

.luxury-hero-copy p,
.section-heading.centered p,
.campaign-copy p,
.tryon-cta p {
  margin: 0 0 10px;
  color: #bf8392;
  font-weight: 900;
  text-transform: uppercase;
}

.luxury-hero-copy h1,
.editorial-split h2,
.campaign-copy h2,
.tryon-cta h2 {
  color: #bf8392;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  text-transform: uppercase;
  font-weight: 900;
}

.luxury-hero-copy span,
.campaign-copy span,
.tryon-cta span {
  display: block;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.35;
}

.section-heading.centered {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 54px 0 20px;
}

.section-heading.centered h2 {
  margin: 0;
  color: #bf8392;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
}

.carousel-row {
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  grid-template-columns: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 0 62px;
}

.carousel-row .product-card {
  min-width: 320px;
  scroll-snap-align: start;
}

.product-card {
  overflow: hidden;
  border: 1px solid #eadbdd;
  border-radius: 8px;
  background: #fff;
}

.product-image {
  position: relative;
  display: block;
  background: #dedede;
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 5px;
  background: rgba(255, 246, 250, 0.92);
  color: var(--charcoal);
  font-size: 12px;
  text-transform: lowercase;
}

.product-card > :not(.product-image) {
  margin-left: 16px;
  margin-right: 16px;
}

.rating {
  color: var(--charcoal);
  font-size: 14px;
  letter-spacing: 1px;
}

.rating span {
  color: var(--muted);
  letter-spacing: 0;
}

.card-line {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: start;
}

.card-line strong {
  white-space: nowrap;
}

.card-actions,
.buy-row {
  display: grid;
  grid-template-columns: 0.95fr 1.3fr;
  gap: 10px;
  margin-bottom: 16px;
}

.mini-button,
.qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--charcoal);
  border-radius: 5px;
  background: #fff;
  color: var(--charcoal);
  font-size: 13px;
  text-transform: lowercase;
}

.mini-button.dark {
  background: var(--charcoal);
  color: #fff;
}

.product-gallery {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
}

.product-gallery img {
  aspect-ratio: 1 / 1;
}

.thumb-rail {
  display: grid;
  align-content: end;
  gap: 14px;
}

.thumb-rail img {
  border: 1px solid var(--line);
  border-radius: 5px;
}

.main-product-image {
  border-radius: 8px;
}

.product-details h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  text-transform: lowercase;
}

.details-panel {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.details-panel h2 {
  margin: 0 0 8px;
  color: #bf8392;
  text-transform: lowercase;
}

.review-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  border-radius: 8px;
  background: #f8eef2;
}

.editorial-split,
.campaign-band,
.tryon-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 56px;
}

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.editorial-split img {
  height: 100%;
  min-height: 520px;
}

.editorial-split div {
  padding: 8vw;
  text-align: center;
}

.campaign-band,
.tryon-cta {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.campaign-band img,
.tryon-cta img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: saturate(0.96) brightness(1.06);
}

.campaign-copy,
.tryon-cta div {
  position: relative;
  width: min(320px, calc(100% - 40px));
  margin-left: 36px;
}

.story-reels {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.story-reels article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 9 / 14;
  background: #ddd;
}

.story-reels img {
  height: 100%;
  filter: brightness(0.86);
}

.story-reels span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: #fff;
  font-weight: 800;
  text-transform: lowercase;
}

.category-grid.refined {
  grid-template-columns: repeat(4, 1fr);
  width: min(900px, calc(100% - 40px));
}

.category-grid.refined a {
  min-height: 260px;
  border-radius: 7px;
}

.finish-toggle button.active {
  background: linear-gradient(135deg, #c28896, #4b2030);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .luxury-header {
    min-height: auto;
  }

  .locale,
  .header-icons {
    display: none;
  }

  .luxury-hero {
    min-height: 650px;
  }

  .luxury-hero img {
    object-position: center;
    opacity: 0.8;
  }

  .editorial-split,
  .product-gallery,
  .story-reels,
  .category-grid.refined {
    grid-template-columns: 1fr;
  }

  .thumb-rail {
    grid-template-columns: repeat(3, 1fr);
    order: 2;
  }

  .campaign-copy,
  .tryon-cta div {
    margin-left: 22px;
  }
}

/* Kylie-inspired homepage reference recreation */
.home-page {
  background: #f8f0f3;
  color: #242224;
}

.kylie-promo {
  min-height: 28px;
  display: grid;
  place-items: center;
  background: #efd1df;
  color: #171112;
  font-size: 13px;
  text-transform: lowercase;
}

.kc-header {
  position: absolute;
  inset: 28px 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 20px 8vw 0;
  color: #2e2d2e;
}

.kc-brand {
  display: grid;
  justify-items: center;
  line-height: 1;
  text-align: center;
}

.kc-brand span {
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 950;
  letter-spacing: -1px;
}

.kc-brand small {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 5px;
}

.kc-locale {
  font-size: 14px;
}

.kc-locale span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-left: 8px;
  border: 1px solid #333;
  border-radius: 50%;
}

.kc-icons {
  justify-self: end;
  display: flex;
  gap: 22px;
  font-size: 25px;
  line-height: 1;
}

.kc-nav {
  grid-column: 1 / -1;
  justify-self: center;
  display: flex;
  gap: 42px;
  margin-top: 18px;
  font-size: 16px;
  text-transform: lowercase;
  letter-spacing: 0;
}

.kc-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #dedede;
}

.kc-hero-image,
.kc-cosmic > img,
.kc-lipbutter > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kc-hero-image {
  object-position: center bottom;
}

.kc-hero-copy {
  position: relative;
  z-index: 2;
  width: min(330px, 82vw);
  margin: 0 0 22vh 3vw;
  animation: fadeUp 700ms ease both;
}

.kc-hero-copy p,
.kc-cosmic p,
.kc-lipbutter p {
  margin: 0 0 8px;
  color: #be7f8e;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.kc-hero-copy h1,
.kc-lipbutter h2 {
  margin: 0 0 22px;
  color: #c18493;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 950;
  text-transform: uppercase;
}

.kc-hero-copy span,
.kc-cosmic span,
.kc-lipbutter span,
.kc-tryon-banner span {
  display: block;
  margin-bottom: 26px;
  font-size: 18px;
  line-height: 1.35;
}

.kc-btn {
  display: inline-grid;
  place-items: center;
  min-width: 104px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid #2f2d2e;
  border-radius: 4px;
  background: #fff;
  color: #2f2d2e;
  font-size: 13px;
  text-transform: lowercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.kc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(74, 45, 56, 0.16);
}

.kc-btn.outline {
  background: transparent;
}

.award-seal {
  position: absolute;
  right: 18vw;
  top: 230px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 154px;
  height: 154px;
  border: 9px solid #fff;
  border-radius: 50%;
  background: #f11738;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.home-product-row {
  position: relative;
  padding: 44px 0 32px;
  background: #f8f0f3;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #eadde2;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow.left {
  left: max(16px, calc((100vw - 1320px) / 2 - 56px));
}

.carousel-arrow.right {
  right: max(16px, calc((100vw - 1320px) / 2 - 56px));
}

.home-row-inner {
  width: min(1320px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 1fr);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.home-row-inner .product-card {
  min-width: 360px;
  scroll-snap-align: start;
  background: #fff;
  border-color: #eadde2;
  border-radius: 8px;
  position: relative;
}

.home-row-inner .product-card img {
  aspect-ratio: 1.15 / 1;
  background: #dedede;
  filter: saturate(0.9) brightness(1.08);
}

.home-row-inner .product-card .card-actions {
  grid-template-columns: 1fr 1.8fr;
}

.small-cards .product-card {
  opacity: 0.82;
}

.kc-editorial {
  width: min(1320px, calc(100% - 44px));
  margin: 28px auto 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.kc-editorial img {
  height: 100%;
  min-height: 430px;
}

.kc-editorial div {
  display: grid;
  place-items: center;
  align-content: center;
  padding: 52px;
  text-align: center;
}

.kc-editorial h2 {
  margin: 0 0 18px;
  color: #bd7f8f;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.kc-editorial p {
  width: min(420px, 100%);
  font-size: 19px;
  line-height: 1.35;
}

.kc-cosmic,
.kc-lipbutter,
.kc-tryon-banner {
  position: relative;
  min-height: 410px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.kc-cosmic {
  background: #f5f5f5;
}

.kc-cosmic > div:first-child,
.kc-lipbutter > div:first-child {
  position: relative;
  z-index: 2;
  width: min(260px, 74vw);
  margin-left: 3vw;
}

.floating-lip {
  position: absolute;
  width: 150px;
  height: 310px;
  border-radius: 90px 90px 72px 72px;
  background: linear-gradient(145deg, #f2ddd3, #8a4d41);
  box-shadow: inset -26px 0 42px rgba(0, 0, 0, 0.16), 0 18px 44px rgba(0, 0, 0, 0.16);
}

.fragrance-cards {
  width: min(760px, calc(100% - 44px));
  margin: 28px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.fragrance-cards a {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 5px;
  background: #ddd;
}

.fragrance-cards img {
  height: 100%;
  filter: brightness(0.72) saturate(1.08);
}

.fragrance-cards span,
.fragrance-cards small {
  position: absolute;
  left: 18px;
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
}

.fragrance-cards span {
  bottom: 38px;
  font-size: 20px;
  line-height: 0.95;
}

.fragrance-cards small {
  bottom: 16px;
  padding: 6px 10px;
  background: #fff;
  color: #2d2a2b;
  font-size: 10px;
  text-transform: lowercase;
}

.kc-lipbutter {
  background: #f6efe4;
}

.kc-section-title {
  display: grid;
  place-items: center;
  padding: 38px 0 18px;
}

.kc-section-title h2 {
  margin: 0;
  color: #bd7f8f;
  font-size: 22px;
  font-weight: 950;
  text-transform: uppercase;
}

.reel-row {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.reel-row article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 7px;
  background: #ddd;
}

.reel-row img {
  height: 100%;
  filter: brightness(0.78);
}

.reel-row button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%);
}

.reel-row span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.kc-category-grid {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.kc-category-grid a {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 6px;
}

.kc-category-grid img {
  height: 100%;
  filter: brightness(0.76) saturate(1.05);
  transition: transform 260ms ease;
}

.kc-category-grid a:hover img {
  transform: scale(1.04);
}

.kc-category-grid span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 19px;
  font-weight: 950;
  text-transform: uppercase;
}

/* =========================================
TRY ON BANNER
========================================= */

.kc-tryon-banner{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    margin:60px auto;
    min-height:560px;
    background:#e8dede;
}

.kc-tryon-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.kc-tryon-overlay{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    min-height:560px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:60px 40px;
}

.kc-tryon-content{
    max-width:520px;
    text-align:center;
    color:#fff;
}

.kc-tryon-content p{
    font-size:72px;
    line-height:0.95;
    text-transform:uppercase;
    font-weight:700;
    margin-bottom:24px;
}

.kc-tryon-content span{
    display:block;
    font-size:18px;
    line-height:1.7;
    margin-bottom:30px;
}

.kc-tryon-content .kc-btn{
    min-width:200px;
}

.floating-lip{
    position:absolute;
    top:16px;
    width:115px;
    height:240px;
    opacity:0.9;
    pointer-events:none;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
}

.floating-lip.left{
    left:5vw;
    transform:rotate(52deg);

    background-image:url("https://kyliecosmetics.com/cdn/shop/files/Kylash_VolumeMascara_Black_1x1.jpg?v=1722459412");
}

.floating-lip.right{
    right:7vw;
    top:64px;
    transform:rotate(-16deg);

    background-image:url("https://kyliecosmetics.com/cdn/shop/files/v1_Lip-Butter_Pomegranate_1x1.jpg?v=1770151361");
}

@media(max-width:991px){

    .kc-tryon-banner{
        min-height:460px;
    }

    .kc-tryon-overlay{
        min-height:460px;
    }

    .kc-tryon-content p{
        font-size:52px;
    }

}

@media(max-width:768px){

    .kc-tryon-banner{
        min-height:380px;
        border-radius:0;
    }

    .kc-tryon-overlay{
        min-height:380px;
        padding:30px 20px;
    }

    .kc-tryon-content p{
        font-size:38px;
        margin-bottom:14px;
    }

    .kc-tryon-content span{
        font-size:14px;
        line-height:1.6;
        margin-bottom:20px;
    }

    .floating-lip{
        width:70px;
        height:150px;
        opacity:0.7;
    }

    .floating-lip.left{
        left:-10px;
    }

    .floating-lip.right{
        right:-10px;
        top:100px;
    }

}
.kc-tryon-banner > div:not(.floating-lip) {
  width: min(260px, 78vw);
  margin: 0 auto;
  text-align: center;
}

.kc-tryon-banner p {
  margin: 0 0 8px;
  color: #bd7f8f;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.floating-lip {
  top: 16px;
  width: 115px;
  height: 240px;
  opacity: 0.9;
  transform: rotate(52deg);
}

.floating-lip.left {
  left: 5vw;
}

.floating-lip.right {
  right: 7vw;
  top: 64px;
  transform: rotate(-16deg);
}

.ig-title {
  padding-top: 54px;
}

.ig-grid {
  width: min(1250px, calc(100% - 40px));
  margin: 0 auto 88px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 14px;
}

.ig-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* left big image */
.ig-grid .large {
  grid-row: span 2;
}

/* mobile */
@media (max-width: 768px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .ig-grid .large {
    grid-column: span 2;
    grid-row: span 1;
    height: 320px;
  }
}
.kc-footer {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 36px 20px 70px;
  background: #f8f0f3;
  text-align: center;
}

.kc-footer form {
  display: grid;
  gap: 6px;
  width: min(420px, 100%);
  text-align: left;
  font-size: 11px;
}

.kc-footer form div {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 10px;
}

.kc-footer input,
.kc-footer button {
  height: 28px;
  border: 1px solid #342f31;
  background: transparent;
  font-size: 11px;
}

.kc-footer nav {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  color: #3a3335;
  font-size: 11px;
  text-transform: lowercase;
  letter-spacing: 0;
}

@media (max-width: 980px) {
  .kc-header {
    position: sticky;
    inset: 0 auto auto;
    background: rgba(248, 240, 243, 0.94);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 14px 18px;
  }

  .kc-locale,
  .kc-icons {
    display: none;
  }

  .kc-nav {
    grid-column: auto;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 0;
  }

  .kc-hero {
    min-height: 780px;
    align-items: start;
  }

  .kc-hero-copy {
    margin: 64px auto 0;
    text-align: center;
  }

  .hero-products {
    right: auto;
    left: 50%;
    bottom: 34px;
    width: 720px;
    transform: translateX(-50%) scale(0.72);
  }

  .award-seal {
    right: 8vw;
    top: 360px;
    transform: scale(0.75) rotate(-8deg);
  }

  .kc-editorial,
  .fragrance-cards,
  .reel-row,
  .kc-category-grid,
  .ig-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kc-editorial {
    width: calc(100% - 28px);
  }
}

@media (max-width: 620px) {
  .kc-brand span {
    font-size: 22px;
  }

  .kc-hero {
    min-height: 690px;
  }

  .hero-products {
    transform: translateX(-50%) scale(0.48);
    bottom: -38px;
  }

  .award-seal {
    top: 360px;
    right: 3vw;
  }

  .home-row-inner {
    grid-auto-columns: minmax(280px, 82vw);
  }

  .home-row-inner .product-card {
    min-width: 280px;
  }

  .kc-editorial,
  .fragrance-cards,
  .reel-row,
  .kc-category-grid,
  .ig-grid {
    grid-template-columns: 1fr;
  }

  .kc-editorial div {
    padding: 36px 22px;
  }

  .fragrance-cluster,
  .butter-tubes {
    opacity: 0.42;
    transform: translateX(-35%) scale(0.7);
  }

  .kc-cosmic > div:first-child,
  .kc-lipbutter > div:first-child {
    margin: 0 auto;
    text-align: center;
  }

  .floating-lip {
    opacity: 0.26;
  }
}

/* ecommerce page shell */
.commerce-page {
  background: #f8f0f3;
}

.page-header {
  position: sticky;
  inset: 0 auto auto;
  background: rgba(248, 240, 243, 0.96);
  border-bottom: 1px solid #eadde2;
}

.listing-hero,
.collection-banner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 28px;
  text-align: center;
}

.listing-hero h1,
.collection-banner h1,
.auth-panel h1,
.cart-panel h1 {
  margin: 0 0 12px;
  color: #bd7f8f;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.collection-banner {
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.8), transparent 28%),
    linear-gradient(120deg, #ead8dc, #f8f0f3 45%, #e8d1d8);
}

.listing-grid {
  padding-top: 18px;
}

.account-shell {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 70vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
  padding: 72px 0;
}

.auth-panel,
.cart-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid #eadde2;
  border-radius: 10px;
  background: #fff;
}

.auth-panel label {
  display: grid;
  gap: 8px;
  color: #7b6269;
  font-size: 12px;
  text-transform: uppercase;
}

.auth-panel input {
  height: 44px;
  border: 1px solid #d8bdc6;
  border-radius: 4px;
  padding: 0 12px;
}

.cart-panel {
  grid-column: 1 / -1;
  width: min(760px, 100%);
  margin: 0 auto;
}

.cart-panel article {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #eadde2;
  border-bottom: 1px solid #eadde2;
}

.cart-panel img {
  aspect-ratio: 1;
  border-radius: 6px;
  background: #ddd;
}

.cart-panel article div {
  display: grid;
  gap: 6px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

@media (max-width: 760px) {
  .account-shell,
  .cart-panel article {
    grid-template-columns: 1fr;
  }
}


/* =====================================
FINAL OVERRIDE FIX
PUT THIS AT VERY BOTTOM
===================================== */

.kc-header{
position:sticky !important;
top:0 !important;
z-index:99999 !important;
background:rgba(248,240,243,0.96) !important;
backdrop-filter:blur(12px);
padding:18px 40px !important;
border-bottom:1px solid #eadde2 !important;
}

.kc-nav{
display:flex !important;
justify-content:center !important;
align-items:center !important;
gap:40px !important;
flex-wrap:wrap !important;
margin-top:18px !important;
}

.kc-nav a{
font-size:16px !important;
font-weight:500 !important;
}

.home-product-row{
padding:50px 0 !important;
overflow:hidden !important;
}

.home-row-inner{
width:min(1320px,calc(100% - 40px)) !important;
margin:auto !important;
display:flex !important;
gap:22px !important;
overflow-x:auto !important;
padding-bottom:18px !important;
scroll-behavior:smooth;
}

.home-row-inner::-webkit-scrollbar{
height:6px;
}

.product-card{
min-width:340px !important;
max-width:340px !important;
background:#fff !important;
border-radius:10px !important;
overflow:hidden !important;
border:1px solid #eadde2 !important;
flex-shrink:0 !important;
transition:0.35s;
}

.product-card:hover{
transform:translateY(-4px);
}

.product-card img{
width:100% !important;
height:420px !important;
object-fit:cover !important;
display:block;
}

.product-info{
padding:16px !important;
}

.product-info h3{
font-size:18px !important;
line-height:1.2 !important;
margin-bottom:10px !important;
}

.product-info p{
font-size:15px !important;
line-height:1.5 !important;
color:#666 !important;
}

.card-actions{
display:grid !important;
grid-template-columns:1fr 1fr !important;
gap:10px !important;
margin-top:16px !important;
}

.card-actions button{
height:44px;
}

.reel-row{
width:min(1100px,calc(100% - 40px)) !important;
margin:auto !important;
display:grid !important;
grid-template-columns:repeat(4,1fr) !important;
gap:16px !important;
padding-bottom:70px !important;
}

.reel-row article{
min-height:320px !important;
border-radius:10px !important;
overflow:hidden !important;
position:relative;
}

.reel-row img{
width:100% !important;
height:100% !important;
object-fit:cover !important;
}

.kc-category-grid{
width:min(1100px,calc(100% - 40px)) !important;
margin:auto !important;
display:grid !important;
grid-template-columns:repeat(3,1fr) !important;
gap:18px !important;
padding-bottom:70px !important;
}

.kc-category-grid a{
height:300px !important;
border-radius:10px !important;
overflow:hidden !important;
position:relative;
}

.kc-category-grid img{
width:100% !important;
height:100% !important;
object-fit:cover !important;
}

.fragrance-cards{
width:min(1100px,calc(100% - 40px)) !important;
margin:auto !important;
display:grid !important;
grid-template-columns:repeat(3,1fr) !important;
gap:18px !important;
padding:60px 0 !important;
}

.fragrance-cards a{
height:340px !important;
border-radius:10px !important;
overflow:hidden !important;
position:relative;
}
.fragrance-overlay{
position:absolute;
left:0;
right:0;
bottom:0;
padding:26px 28px 30px;
display:flex;
flex-direction:column;
align-items:flex-start;
justify-content:flex-end;
height:55%;
background:linear-gradient(
to top,
rgba(0,0,0,0.72) 0%,
rgba(0,0,0,0.45) 40%,
rgba(0,0,0,0.0) 100%
);
}
.fragrance-cards img{
width:100% !important;
height:100% !important;
object-fit:cover !important;
}

.fragrance-overlay h3{
font-size:22px;
line-height:0.95;
font-weight:800;
color:#fff;
margin-bottom:14px;
text-transform:uppercase;
letter-spacing:-1px;
max-width:260px;
}
.fragrance-card{
position:relative;
height:520px;}

.fragrance-card img{
object-position:center;
}

/* MOBILE */

@media(max-width:992px){

.kc-category-grid{
grid-template-columns:repeat(2,1fr) !important;
}

.fragrance-cards{
grid-template-columns:1fr !important;
}

.reel-row{
grid-template-columns:repeat(2,1fr) !important;
}

}

@media(max-width:768px){

.kc-header{
padding:14px 18px !important;
}

.kc-nav{
justify-content:flex-start !important;
overflow-x:auto !important;
flex-wrap:nowrap !important;
padding-bottom:10px;
}

.kc-nav::-webkit-scrollbar{
display:none;
}

.product-card{
min-width:280px !important;
max-width:280px !important;
}

.product-card img{
height:320px !important;
}

.reel-row{
display:flex !important;
overflow-x:auto !important;
}

.reel-row article{
min-width:220px !important;
}

.kc-category-grid{
grid-template-columns:1fr !important;
}

}


.fragrance-overlay button{
height:46px;
padding:0 28px;
border:none;
background:#fff;
color:#111;
font-size:13px;
font-weight:600;
cursor:pointer;
text-transform:lowercase;
border-radius:4px;
position:relative;
overflow:hidden;
transition:
background .35s ease,
color .35s ease,
transform .35s ease,
box-shadow .35s ease;
box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

.fragrance-overlay button::before{
content:"";
position:absolute;
top:0;
left:-120%;
width:100%;
height:100%;
background:rgba(255,255,255,0.35);
transform:skewX(-25deg);
transition:0.6s;
}

.fragrance-overlay button:hover::before{
left:120%;
}

.fragrance-overlay button:hover{
background:#111;
color:#fff;
transform:translateY(-2px);
box-shadow:0 10px 24px rgba(0,0,0,0.28);
}


/* -------------------------------------------------------------- */

/* =========================================
FINAL PRODUCT HOVER FIX
PUT THIS AT VERY BOTTOM
========================================= */

.product-card{
overflow:hidden !important;
position:relative !important;
background:#fff !important;
}

.product-image-area{
position:relative !important;
overflow:hidden !important;
}

.product-image-link{
display:block !important;
position:relative !important;
width:100% !important;
height:100% !important;
}

.product-image{
width:100% !important;
height:420px !important;
object-fit:cover !important;
display:block !important;
transition:opacity .45s ease, transform .45s ease !important;
}

.default-image{
position:relative !important;
z-index:2 !important;
opacity:1 !important;
}

.hover-image{
position:absolute !important;
top:0 !important;
left:0 !important;
width:100% !important;
height:420px !important;
object-fit:cover !important;
opacity:0 !important;
z-index:3 !important;
}

.product-card:hover .hover-image{
opacity:1 !important;
transform:scale(1.02);
}

.product-card:hover .default-image{
opacity:0 !important;
}

/* FIX CARD STRETCH */

.product-card{
display:flex;
flex-direction:column;
height:auto !important;
}

.product-content{
position:relative;
padding:16px;
padding-bottom:20px;
overflow:hidden;
}

.hover-cart{
opacity:0;
transform:translateY(20px);
transition:0.35s ease;
position:absolute;
left:16px;
right:16px;
bottom:16px;
background:#fff;
padding-top:10px;
pointer-events:none;
}

.product-card:hover .hover-cart{
opacity:1;
transform:translateY(0);
pointer-events:auto;
}

.product-card:hover .product-desc{
opacity:0;
}

.product-desc{
transition:0.25s;
min-height:42px;
}

.product-content{
min-height:190px;
}

.product-image-area{
height:420px;
}

.product-image,
.hover-image{
height:100%;
}
.product-card:hover .hover-cart{
opacity:1 !important;
max-height:300px !important;
margin-top:18px !important;
}

.product-content{
padding:16px !important;
background:#fff !important;
position:relative !important;
z-index:5 !important;
}

.qty-box{
display:flex !important;
align-items:center !important;
justify-content:space-between !important;
height:44px !important;
border:1px solid #ccc !important;
margin-bottom:12px !important;
border-radius:4px !important;
overflow:hidden !important;
}

.qty-btn{
width:42px !important;
height:100% !important;
border:none !important;
background:#fff !important;
font-size:20px !important;
cursor:pointer !important;
}

.qty-btn:hover{
background:#f5f5f5 !important;
}

.mini-button.dark{
background:#2d292b !important;
color:#fff !important;
width:100% !important;
height:46px !important;
border:none !important;
border-radius:4px !important;
font-weight:600 !important;
}

.mini-button.dark:hover{
background:#000 !important;
}

.card-line{
display:flex !important;
justify-content:space-between !important;
align-items:flex-start !important;
gap:12px !important;
}

.product-info{
flex:1 !important;
}

.product-info h3{
font-size:16px !important;
font-weight:700 !important;
line-height:1.3 !important;
margin-bottom:8px !important;
}

.product-info h3 a{
text-decoration:none !important;
color:#111 !important;
}

.product-desc{
font-size:14px !important;
line-height:1.5 !important;
color:#666 !important;
margin-top:10px !important;
}

.price{
font-size:28px !important;
font-weight:700 !important;
white-space:nowrap !important;
}

.swatches{
display:flex !important;
align-items:center !important;
gap:8px !important;
margin-bottom:14px !important;
}

.swatch{
width:24px !important;
height:24px !important;
border-radius:50% !important;
cursor:pointer !important;
border:2px solid #fff !important;
box-shadow:0 0 0 1px #bbb !important;
}

.swatch.active{
box-shadow:0 0 0 2px #111 !important;
}

.badge-left,
.badge-right{
position:absolute !important;
top:14px !important;
background:#fff4f7 !important;
padding:6px 10px !important;
font-size:11px !important;
border-radius:4px !important;
z-index:10 !important;
}

.badge-left{
left:14px !important;
}

.badge-right{
right:14px !important;
}

@media(max-width:768px){

.product-image,
.hover-image{
height:320px !important;
}

.price{
font-size:22px !important;
}

}

/* =========================================
COSMIC SECTION
========================================= */

.kc-cosmic{
position:relative;
width:100%;
height:100vh;
overflow:hidden;
background:#f3f3f3;
}

.cosmic-image-wrap{
display:block;
width:100%;
height:100%;
}

.cosmic-image{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.cosmic-content{
position:absolute;
left:50px;
top:50%;
transform:translateY(-50%);
z-index:5;
max-width:320px;
}

.cosmic-content p{
font-size:58px;
line-height:0.95;
font-weight:800;
text-transform:uppercase;
color:#c48f9d;
margin-bottom:28px;
}

.cosmic-content span{
display:block;
font-size:22px;
line-height:1.6;
color:#444;
margin-bottom:32px;
}

.kc-btn.outline{
display:inline-flex;
align-items:center;
justify-content:center;
padding:14px 30px;
background:#fff;
border:1px solid #111;
text-decoration:none;
color:#111;
font-size:14px;
transition:0.35s;
}

.kc-btn.outline:hover{
background:#111;
color:#fff;
}

/* MOBILE */

@media(max-width:768px){

.kc-cosmic{
height:70vh;
}

.cosmic-content{
left:24px;
max-width:240px;
}

.cosmic-content p{
font-size:34px;
}

.cosmic-content span{
font-size:15px;
line-height:1.5;
}

}


/* =========================
PRODUCT PAGE
========================= */

.product-page{
    max-width:1400px;
    margin:60px auto;
    padding:0 40px;
    display:grid;
    grid-template-columns:560px 520px;
    gap:60px;
    align-items:start;
}

/* =========================
LEFT GALLERY
========================= */

.product-gallery{
    display:flex;
    gap:24px;
    align-items:flex-start;
}

.thumb-rail{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:260px;
}

.thumb{
    width:70px;
    height:90px;
    object-fit:cover;
    border-radius:6px;
    cursor:pointer;
    border:1px solid #e6d8dc;
    transition:.3s;
    background:#f3f3f3;
}

.thumb:hover{
    border-color:#111;
}

.thumb.active{
    border-color:#111;
}

.main-image-wrap{
    flex:1;
    width:100%;
    min-width:420px;
    background:#f3f3f3;
    border-radius:10px;
    overflow:hidden;
}

.main-product-image{
    width:100%;
    height:760px;
    object-fit:cover;
    display:block;
}

/* =========================
RIGHT CONTENT
========================= */

.product-details{
    padding-top:10px;
}

.eyebrow{
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
    color:#555;
}

.product-details h1{
    font-size:64px;
    line-height:.95;
    text-transform:lowercase;
    font-weight:700;
    color:#13090d;
    margin-bottom:18px;
}

.product-subtitle{
    font-size:18px;
    color:#333;
    margin-bottom:18px;
}

.rating.large{
    font-size:15px;
    margin-bottom:24px;
    color:#333;
}

.rating.large span{
    color:#777;
}

.product-price-large{
    font-size:48px;
    font-weight:700;
    color:#13090d;
    margin-bottom:24px;
}

.product-description{
    font-size:18px;
    line-height:1.7;
    color:#555;
    margin-bottom:28px;
}

/* =========================
SHADE BUTTONS
========================= */

.field-label{
    display:block;
    margin-bottom:14px;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#444;
}

.shade-list{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:28px;
}

.shade-chip{
    border:1px solid #dcc9ce;
    border-radius:999px;
    padding:10px 16px;
    background:#fff;
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    transition:.3s;
    font-size:16px;
}

.shade-chip:hover{
    border-color:#111;
}

.shade-chip.active{
    border:2px solid #111;
}

.shade-dot{
    width:22px;
    height:22px;
    border-radius:50%;
}

/* =========================
BUY ROW
========================= */

.buy-row{
    display:flex;
    gap:18px;
    align-items:center;
    margin-bottom:24px;
}

.qty-box{
    width:210px;
    height:58px;
    border:1px solid #111;
    border-radius:4px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 18px;
    background:#fff;
}

.qty-box button{
    border:none;
    background:none;
    font-size:24px;
    cursor:pointer;
    color:#111;
}

.qty-box span{
    font-size:18px;
}

.dark-btn{
    flex:1;
    height:58px;
    background:#16080d;
    color:#fff;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:1px;
    text-decoration:none;
    transition:.3s;
}

.dark-btn:hover{
    background:#000;
    transform:translateY(-2px);
}

/* =========================
TRY SHADE BUTTON
========================= */

.try-btn{
    width:100%;
    height:60px;
    border:1px solid #111;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-transform:uppercase;
    text-decoration:none;
    color:#111;
    margin-bottom:40px;
    transition:.3s;
    background:#fff;
}

.try-btn:hover{
    background:#111;
    color:#fff;
}

/* =========================
DETAILS ACCORDION
========================= */

.details-panel{
    border-top:1px solid #ead7dc;
    padding-top:26px;
}

.accordion-item{
    border-bottom:1px solid #ead7dc;
    padding:20px 0;
}

.accordion-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:20px;
    font-weight:700;
    color:#cb93a1;
    text-transform:lowercase;
    margin-bottom:14px;
}

.accordion-content{
    font-size:16px;
    line-height:1.8;
    color:#555;
}

/* =========================
ICONS
========================= */

.product-icons{
    display:flex;
    gap:24px;
    margin-top:34px;
}

.product-icons div{
    text-align:center;
}

.icon-circle{
    width:74px;
    height:74px;
    border:1px solid #dcc9ce;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 12px;
    font-size:28px;
    background:#fff;
}

.product-icons p{
    font-size:13px;
    text-transform:lowercase;
    color:#555;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

.product-page{
    grid-template-columns:1fr;
    gap:40px;
    padding:0 20px;
}

.product-gallery{
    flex-direction:column-reverse;
}

.thumb-rail{
    flex-direction:row;
    margin-top:0;
}

.main-image-wrap{
    min-width:100%;
}

.main-product-image{
    height:auto;
}

.product-details h1{
    font-size:44px;
}

.buy-row{
    flex-direction:column;
}

.qty-box{
    width:100%;
}

.dark-btn{
    width:100%;
}

.product-icons{
    flex-wrap:wrap;
}

}

.ingredient-content{
    display:none;
    padding-top:16px;
}

.ingredient-item.active .ingredient-content{
    display:block;
}














/* --------------------------------------------------- */



.product-bottom-section{
    width:100%;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:24px;
    padding:60px;
    background:#f7f3f4;
}

.bottom-banner{
    position:relative;
    height:520px;
    overflow:hidden;
    border-radius:8px;
}

.bottom-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.bottom-banner-text{
    position:absolute;
    left:35px;
    bottom:30px;
}

.bottom-banner-text span{
    color:#b78492;
    font-size:22px;
    font-weight:600;
    display:block;
    margin-bottom:18px;
}

.bottom-banner-text h2{
    color:#b78492;
    font-size:58px;
    line-height:0.92;
    font-weight:900;
    max-width:520px;
}

.bottom-right{
    background:#fff;
    border-radius:8px;
    padding:20px;
}

.top-media{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:20px;
}

.top-media img,
.bottom-video{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:6px;
    display:block;
}

.how-use-content h3{
    font-size:40px;
    margin-bottom:20px;
    text-transform:lowercase;
}

.how-use-content p{
    font-size:15px;
    line-height:1.9;
    margin-bottom:12px;
    color:#222;
}
.product-bottom-section{
    grid-column:1 / -1 !important;
    width:100% !important;
    display:grid !important;
    grid-template-columns:1.1fr .9fr !important;
}

/* /* =========================================/ */


@media(max-width:768px){

.product-bottom-section{
display:flex !important;
flex-direction:column !important;
gap:16px !important;
padding:16px !important;
}

.product-bottom-left{
width:100% !important;
}

.product-bottom-left img{
width:100% !important;
height:420px !important;
object-fit:cover !important;
border-radius:12px !important;
display:block !important;
}

.product-bottom-right{
width:100% !important;
display:block !important;
}

.product-howto-grid{
display:grid !important;
grid-template-columns:1fr 1fr !important;
gap:12px !important;
margin-bottom:20px !important;
}

.product-howto-grid video,
.product-howto-grid img{
width:100% !important;
height:180px !important;
object-fit:cover !important;
border-radius:10px !important;
display:block !important;
}

.product-howto-content{
width:100% !important;
}

.product-howto-content h2{
font-size:28px !important;
line-height:1.1 !important;
margin-bottom:16px !important;
}

.product-howto-content p{
font-size:15px !important;
line-height:1.8 !important;
margin-bottom:12px !important;
}

}


/* ------------------------------------------------------------------------- */


.kc-category-card{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    display:block;
}

.kc-category-image,
.kc-category-video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.kc-category-video{
    position:absolute;
    inset:0;
    opacity:0;
    pointer-events:none;
}

.kc-category-card:hover .kc-category-video{
    opacity:1;
}

.kc-category-card:hover .kc-category-image{
    opacity:0;
}

.kc-category-card span{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    font-size:22px;
    font-weight:700;
    text-transform:uppercase;
    z-index:3;
    letter-spacing:1px;
    pointer-events:none;
}

.product-card{
    display:block;
    text-decoration:none;
    color:#111;
    cursor:pointer;
}
#shopProducts{
    display:grid;
    grid-template-columns:1fr 1.15fr 1fr;
    gap:16px;
    align-items:start;
}

.lips-video-card{
    grid-column:3;
    grid-row:1 / span 2;
    border-radius:6px;
    overflow:hidden;
    height:100%;
}

.lips-video-card video{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
}
@media(max-width:768px){

    #shopProducts{
        grid-template-columns:1fr 1fr;
    }

    .lips-video-card{
        grid-column:auto;
        grid-row:auto;
    }

    
}


.fragrance-banner-card{
    grid-column:3;
    grid-row:1 / span 2;
    overflow:hidden;
    border-radius:6px;
}

.fragrance-banner-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.fragrance-page{
    background:#d95b56;
}

.fragrance-page .promo{
    background:#ffffff;
    color:#cf4742;
}

.fragrance-page .site-header{
    background:#d95b56;
    border-bottom:1px solid rgba(255,255,255,0.15);
}

.fragrance-page .site-header a,
.fragrance-page .site-header span,
.fragrance-page .site-header small,
.fragrance-page .site-header nav a,
.fragrance-page .locale{
    color:#ffffff;
}

.fragrance-page .page-hero h1,
.fragrance-page .page-hero p{
    color:#ffffff;
}

.fragrance-page .product-card{
    background:#efc1bf;
    border:1px solid rgba(255,255,255,0.15);
}

.fragrance-page .product-content{
    background:#ffffff;
}

.fragrance-page .product-content h3 a,
.fragrance-page .product-desc,
.fragrance-page .price,
.fragrance-page .rating{
    color:#2a1a1a;
}

.fragrance-page .badge-left,
.fragrance-page .badge-right{
    background:#ffffff;
    color:#cf4742;
}

.fragrance-page .site-footer{
    background:#ffffff;
    color:#cf4742;
}

.fragrance-banner-card{
    grid-column:3;
    grid-row:1 / span 2;
    overflow:hidden;
    border-radius:8px;
    background:#cf4742;
}

.fragrance-banner-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.face-video-card{
    grid-column:2;
    grid-row:1 / span 2;
    border-radius:8px;
    overflow:hidden;
    height:820px;
    background:#f3e7e5;
}

.face-video-card video{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
}

@media(max-width:991px){

    .face-video-card{
        grid-column:1 / -1;
        grid-row:auto;
        height:600px;
    }

}

@media(max-width:768px){

    .face-video-card{
        height:420px;
    }

}

.blush-video-card{
    grid-column:2;
    grid-row:1 / span 2;
    border-radius:8px;
    overflow:hidden;
    height:820px;
    background:#f7d7de;
}

.blush-video-card video{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
}

@media(max-width:991px){

    .blush-video-card{
        grid-column:1 / -1;
        grid-row:auto;
        height:600px;
    }

}

@media(max-width:768px){

    .blush-video-card{
        height:420px;
    }

}
@media(max-width:768px){

#shopProducts{
    grid-template-columns:1fr 1fr !important;
    gap:12px;
}

    .product-card{
        width:100%;
        max-width:100%;
    }

    .product-image-area{
        height:auto;
    }

    .product-image{
        width:100%;
        height:auto;
        object-fit:contain;
    }

    .face-video-card,
    .blush-video-card,
    .lips-video-card,
    .fragrance-banner-card{
        grid-column:auto !important;
        grid-row:auto !important;
        height:420px !important;
        width:100%;
    }

    .face-video-card video,
    .blush-video-card video,
    .lips-video-card video,
    .fragrance-banner-card img{
        width:100%;
        height:100%;
        object-fit:cover;
    }

}

/* =========================================
FINAL MOBILE SHOP FIX
========================================= */

@media(max-width:768px){

#shopProducts{
display:grid !important;
grid-template-columns:1fr 1fr !important;
gap:12px !important;
padding:14px !important;
}

#shopProducts .product-card{
min-width:100% !important;
max-width:100% !important;
width:100% !important;
}

#shopProducts .product-image-area{
height:auto !important;
}

#shopProducts .product-image,
#shopProducts .hover-image{
height:220px !important;
object-fit:cover !important;
}

#shopProducts .product-content{
padding:10px !important;
min-height:auto !important;
}

#shopProducts .product-info h3{
font-size:14px !important;
line-height:1.2 !important;
}

#shopProducts .product-desc{
font-size:12px !important;
line-height:1.4 !important;
min-height:auto !important;
}

#shopProducts .price{
font-size:18px !important;
}

#shopProducts .hover-cart{
position:relative !important;
opacity:1 !important;
transform:none !important;
left:auto !important;
right:auto !important;
bottom:auto !important;
margin-top:10px !important;
pointer-events:auto !important;
}

#shopProducts .qty-box{
height:38px !important;
margin-bottom:8px !important;
}

#shopProducts .mini-button.dark{
height:40px !important;
font-size:12px !important;
}

.lips-video-card,
.fragrance-banner-card,
.face-video-card,
.blush-video-card{
grid-column:1 / -1 !important;
height:420px !important;
}

.lips-video-card video,
.face-video-card video,
.blush-video-card video,
.fragrance-banner-card img{
width:100% !important;
height:100% !important;
object-fit:cover !important;
display:block !important;
}

}
/* =========================================
CLEAN KYLIE MOBILE PRODUCT UI
========================================= */

@media(max-width:768px){

#shopProducts{
display:grid !important;
grid-template-columns:1fr 1fr !important;
gap:10px !important;
padding:10px !important;
align-items:start !important;
}

#shopProducts .product-card{
width:100% !important;
min-width:100% !important;
max-width:100% !important;
border-radius:8px !important;
overflow:hidden !important;
background:#fff !important;
}

#shopProducts .product-image-area{
height:auto !important;
position:relative !important;
overflow:hidden !important;
}

#shopProducts .product-image,
#shopProducts .hover-image{
height:190px !important;
object-fit:cover !important;
display:block !important;
}

#shopProducts .product-content{
padding:10px !important;
min-height:auto !important;
}

#shopProducts .swatches{
margin-bottom:8px !important;
gap:5px !important;
}

#shopProducts .swatch{
width:16px !important;
height:16px !important;
}

#shopProducts .rating{
font-size:11px !important;
margin-bottom:4px !important;
}

#shopProducts .card-line{
display:block !important;
}

#shopProducts .product-info h3{
font-size:13px !important;
line-height:1.2 !important;
font-weight:700 !important;
margin-bottom:3px !important;
}

#shopProducts .product-desc{
font-size:12px !important;
line-height:1.35 !important;
color:#666 !important;
margin-top:0 !important;
min-height:auto !important;

display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
}

#shopProducts .price{
font-size:15px !important;
font-weight:700 !important;
margin-top:6px !important;
margin-bottom:8px !important;
}

#shopProducts .hover-cart{
position:relative !important;
opacity:1 !important;
transform:none !important;
left:auto !important;
right:auto !important;
bottom:auto !important;
margin-top:8px !important;
padding-top:0 !important;
pointer-events:auto !important;
background:none !important;
}

#shopProducts .qty-box{
height:34px !important;
margin-bottom:8px !important;
border-radius:4px !important;
}

#shopProducts .qty-btn{
width:34px !important;
font-size:16px !important;
}

#shopProducts .mini-button.dark{
height:38px !important;
font-size:12px !important;
border-radius:4px !important;
}

.badge-left,
.badge-right{
font-size:9px !important;
padding:4px 6px !important;
top:8px !important;
}

.badge-left{
left:8px !important;
}

.badge-right{
right:8px !important;
}

/* video/banner */

.lips-video-card,
.face-video-card,
.blush-video-card,
.fragrance-banner-card{
grid-column:1 / -1 !important;
height:360px !important;
border-radius:8px !important;
overflow:hidden !important;
}

.lips-video-card video,
.face-video-card video,
.blush-video-card video,
.fragrance-banner-card img{
width:100% !important;
height:100% !important;
object-fit:cover !important;
display:block !important;
}

}

/* =========================================
LIPCARE VIDEO CARD
========================================= */

.lipcare-video-card{
    grid-column:2;
    grid-row:1 / span 2;
    border-radius:8px;
    overflow:hidden;
    height:820px;
    background:#f5e6df;
}

.lipcare-video-card video{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
}

@media(max-width:991px){

    .lipcare-video-card{
        grid-column:1 / -1;
        grid-row:auto;
        height:600px;
    }

}

@media(max-width:768px){

    .lipcare-video-card{
        height:420px;
    }

}

/* =========================================
EYES BANNER
========================================= */

.eyes-banner-card{
    grid-column:2;
    grid-row:1 / span 2;
    border-radius:8px;
    overflow:hidden;
    height:820px;
    background:#dfe3ea;
}

.eyes-banner-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

@media(max-width:991px){

    .eyes-banner-card{
        grid-column:1 / -1;
        grid-row:auto;
        height:600px;
    }

}

@media(max-width:768px){

    .eyes-banner-card{
        height:420px;
    }

}