:root {
  --accent: #df162a;
  --accent-soft: #ffe8eb;
  --accent-shadow: rgba(223, 22, 42, 0.18);
  --heading: #171513;
  --text: #4f4b47;
  --muted: #8d857d;
  --surface: #ffffff;
  --surface-soft: #f7f3ee;
  --surface-warm: #f6ede4;
  --border: #ebe2d9;
  --dark: #171717;
  --shadow: 0 24px 60px rgba(35, 22, 15, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  /* --container-max: 1440px; */
}

@media (min-width: 992px) {
  :root {
    --accent: #df162a;
    /* --accent: #dca45f; */
    /* --accent-soft: #fff1dc; */
    --accent-soft: #ffe8eb;
    /* --accent-shadow: rgba(220, 164, 95, 0.22); */
    --accent-shadow: rgba(223, 22, 42, 0.18);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #fff7ef 0, transparent 28%),
    linear-gradient(180deg, #fffcf8 0%, #f7f0e8 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.page-shell {
  max-width: var(--container-max);
  margin: 0 auto;
  background: var(--surface);
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 1px 0px 4px #ff000059;
}

.container-xxl {
  max-width: var(--container-max);
}

.site-logo {
  font-size: clamp(2rem, 2vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--heading);
  letter-spacing: -0.04em;
}

.navbar-nav .nav-link,
.dropdown-item {
  color: var(--heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.navbar-nav .nav-link {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.dropdown-menu {
  padding: 0.8rem;
}

.dropdown-item {
  border-radius: 999px;
  padding: 0.6rem 1rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--surface-soft);
}

.navbar-toggler {
  font-size: 2rem;
  color: var(--heading);
  box-shadow: none;
}

.section-space {
  padding: 2.5rem 0;
}

.hero-section {
  padding-bottom: 1.5rem;
}

.hero-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-slide {
  min-height: clamp(380px, 58vw, 610px);
  padding: clamp(2rem, 6vw, 4.5rem);
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  position: relative;
  isolation: isolate;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.12) 100%);
  z-index: -1;
}

.hero-slide-fashion,
.hero-slide-signature {
  background-image: url("./assets/banner1.png");
}

.hero-slide-time {
  background-image:
    linear-gradient(135deg, rgba(16, 16, 16, 0.3), rgba(220, 164, 95, 0.08)),
    url("./assets/banner2.jpg");
  background-position: right center;
}

.hero-slide-shades {
  background-image:
    linear-gradient(135deg, rgba(16, 16, 16, 0.36), rgba(220, 164, 95, 0.08)),
    url("./assets/banner3.jpg");
  background-position: right center;
}

.hero-content {
  max-width: 32rem;
  color: #fff;
}

.hero-kicker,
.section-kicker,
.card-kicker {
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-title,
.section-title {
  color: var(--heading);
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.hero-title,
.hero-title-sm {
  color: #fff;
  text-transform: none;
  font-size: clamp(2.45rem, 5vw, 4.9rem);
  line-height: 0.98;
  margin-bottom: 1rem;
}

.hero-title-sm {
  font-size: clamp(2rem, 4vw, 4rem);
}

.hero-title span,
.hero-title-sm span {
  color: var(--accent);
}

.hero-copy {
  max-width: 28rem;
  font-size: 1.16rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.86);
}

.btn-accent,
.btn-dark-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.55rem;
  border-radius: 12px;
  border: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px var(--accent-shadow);
}

.btn-dark-solid {
  background: #111111;
  color: #fff;
}

.btn-accent:hover,
.btn-dark-solid:hover {
  transform: translateY(-2px);
  color: #fff;
  background-color: var(--accent);
}

.hero-control {
  width: auto;
  opacity: 1;
}

.hero-control-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.15rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero-control:hover .hero-control-icon {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.04);
}

.hero-indicators {
  bottom: 1rem;
  margin-bottom: 0;
}

.hero-indicators [data-bs-target],
.compact-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  margin: 0 5px;
  background: rgb(203 200 200 / 52%);
  /* background: rgba(255, 255, 255, 0.52); */
  opacity: 1;
}

.hero-indicators .active,
.compact-indicators .active {
  background: var(--accent);
}

.media-card,
.content-card,
.category-card,
.store-card,
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.media-card {
  box-shadow: var(--shadow);
}

.content-card {
  border: 0;
  padding: 0.25rem 0 0;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-align: center;
}

.section-copy {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.95;
}

.feature-item {
  height: 100%;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ff0018;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: #ff0018;
  background: #fff;
}

.feature-item h3,
.store-body h3,
.testimonial-card strong,
.site-footer h3,
.mobile-footer-links a {
  margin: 0;
  color: var(--heading);
  font-size: 1.05rem;
  font-weight: 800;
}

.feature-item p,
.store-body p,
.reviewer span,
.footer-brand p,
.footer-contact li,
.footer-links a,
.mobile-copyright {
  margin: 0.35rem 0 0;
  line-height: 1.7;
  color: var(--muted);
}

.category-card {
  min-height: 360px;
  padding: 2rem 2rem 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 1fr);
  align-items: center;
  background: linear-gradient(135deg, #f4f7fb 0%, #eef2f7 100%);
  box-shadow: var(--shadow);
}

.category-card-warm {
  background: linear-gradient(135deg, #f9f1ea 0%, #f5e6d8 100%);
}

.category-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--heading);
  letter-spacing: -0.03em;
  text-transform: none;
}

.mini-line,
.title-line {
  width: 68px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.mini-line {
  margin: 1rem 0 1.2rem;
}

.category-copy p:last-of-type {
  max-width: 18rem;
  margin-bottom: 1.6rem;
  font-size: 1rem;
  line-height: 1.9;
}

.category-art {
  display: flex;
  justify-content: end;
}

.category-art img {
  width: 100%;
  max-width: 420px;
}

.section-heading {
  margin-bottom: 1.8rem;
  text-align: center;
}

.section-heading .title-line {
  margin: 0.8rem auto 0;
}

.store-card {
  height: 100%;
  box-shadow: 0 16px 32px rgba(35, 22, 15, 0.04);
}

.store-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.store-body {
  padding: 1.2rem 1.1rem 1.25rem;
}

.store-body p {
  font-size: 0.98rem;
}

.store-body span,
.store-body a,
.store-body a i,
.footer-contact i {
  color: var(--accent);
}

.store-body span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  font-size: 0.94rem;
  font-weight: 700;
}

.mobile-store-list {
  display: grid;
  gap: 0.95rem;
}

.store-card-mobile {
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: stretch;
}

.store-card-mobile .store-thumb {
  height: 100%;
  aspect-ratio: auto;
}

.store-card-mobile .store-body {
  padding: 1rem;
}

.store-card-mobile .store-body h3 {
  font-size: 1rem;
  text-transform: uppercase;
}

.store-card-mobile .store-body p {
  font-size: 0.95rem;
}

.mobile-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding-top: 0.25rem;
}

.mobile-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6d2cd;
}

.mobile-dots span.active {
  background: var(--accent);
}

.testimonial-card {
  padding: 1.55rem;
  box-shadow: 0 16px 32px rgba(35, 22, 15, 0.04);
}

.quote-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.quote-icon {
  color: var(--accent);
  font-size: 2.2rem;
  line-height: 1;
}

.stars {
  display: inline-flex;
  gap: 0.25rem;
  color: var(--accent);
  font-size: 0.88rem;
}

.testimonial-card p {
  min-height: 96px;
  margin-bottom: 1.1rem;
  line-height: 1.9;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e1e1e, #545454);
  color: #fff;
  font-weight: 800;
}

.reviewer-avatar-alt {
  background: linear-gradient(135deg, #df162a, #ff8f96);
}

.reviewer-avatar-dark {
  background: linear-gradient(135deg, #202124, #353f52);
}

.reviewer-avatar-gold {
  background: linear-gradient(135deg, #8f641b, #e0bf7e);
}

.reviewer span {
  display: block;
  margin-top: 0.15rem;
}

.testimonial-card-mobile {
  margin-top: 0.6rem;
}

.compact-indicators {
  position: static;
  margin: 0 0 0.4rem;
}

.compact-indicators-top {
  margin-bottom: 1rem;
}

.brand-block {
  padding: 0.75rem 0 1.35rem;
  border-bottom: 1px solid var(--border);
}

.brand-row {
  display: flex;
  /* justify-content: space-evenly; */
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 0.7rem 0 0;
}

.brand-row-bottom {
  padding-bottom: 0.3rem;
}

.brand-logo {
  display: inline-block;
  color: #111;
  font-size: clamp(1.35rem, 2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.brand-script {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2rem, 2.5vw, 3rem);
  text-transform: none;
  letter-spacing: -0.04em;
}

.brand-serif {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.2vw, 2.8rem);
  letter-spacing: 0.02em;
}

.brand-logo small {
  display: block;
  font-size: 0.5em;
  letter-spacing: 0.28em;
}

.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: var(--surface-soft);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  min-height: 120px;
}

.brand-logo-card:hover {
  background: var(--accent-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.brand-logo-img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.brand-row-mobile {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  min-height: 74px;
}

.site-footer {
  background: #171717;
  color: #fff;
  margin-top: 1.5rem;
  padding: 2.3rem 0 1.2rem;
}

.footer-logo {
  color: #fff;
}

.footer-brand p,
.footer-brand .social-heading,
.footer-links a,
.footer-contact li,
.mobile-copyright,
.footer-contact li a{
  color: rgba(255, 255, 255, 0.7);
}

.footer-links,
.footer-contact,
.mobile-footer-links {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.footer-links li,
.footer-contact li,
.mobile-footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a,
.mobile-footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.mobile-footer-links a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: #fff;
}

.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p,
.mobile-copyright {
  margin: 0;
}

.mobile-footer {
  text-align: left;
}

.mobile-footer .footer-contact {
  margin-top: 1.2rem;
}

.mobile-footer-links {
  display: grid;
  gap: 0.55rem;
}

.mobile-footer-links a {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.mobile-copyright {
  margin-top: 1.1rem;
}

.mobile-product-section {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-product-section h4 {
  margin: 0 0 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.mobile-product-heading {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .page-shell {
    max-width: 520px;
    margin: 0.75rem auto;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .site-header {
    position: relative;
    background: #fff;
    backdrop-filter: none;
  }

  .navbar-collapse {
    padding-bottom: 0.6rem;
  }

  .navbar-nav {
    padding-top: 0.25rem;
  }

  .navbar-nav .nav-link {
    font-size: 0.96rem;
  }

  .hero-section {
    padding-bottom: 0.8rem;
  }

  .hero-slide {
    min-height: 540px;
    padding: 2rem 1.2rem 3.25rem;
    align-items: flex-start;
  }

  .hero-slide::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.55) 48%, rgba(0, 0, 0, 0.06) 100%);
  }

  .hero-title,
  .hero-title-sm {
    font-size: clamp(2.25rem, 8vw, 3.3rem);
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 15rem;
  }

  .hero-control {
    display: none;
  }

  .hero-content {
    max-width: 16rem;
  }

  .section-space {
    padding: 1.6rem 0;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .section-heading {
    margin-bottom: 1.2rem;
  }

  .testimonial-card p {
    min-height: auto;
  }

  .brand-logo {
    font-size: 1.65rem;
  }

  .brand-script {
    font-size: 2rem;
  }

  .brand-serif {
    font-size: 2rem;
  }

  .site-footer {
    margin-top: 0.4rem;
    padding: 1.6rem 0;
  }

  .brand-row-mobile {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
    min-height: 74px;
  }
}

@media (max-width: 767.98px) {
  body {
    background: #f7f2eb;
  }

  .site-logo {
    font-size: 2.25rem;
  }

  .hero-slide {
    min-height: 460px;
  }

  .hero-kicker,
  .section-kicker,
  .card-kicker {
    font-size: 0.82rem;
  }

  .btn-accent,
  .btn-dark-solid {
    min-height: 50px;
    padding-inline: 1.2rem;
    font-size: 0.92rem;
  }

  .store-card-mobile .store-body h3 {
    font-size: 0.95rem;
  }

  .store-card-mobile .store-body p,
  .store-card-mobile .store-body span {
    font-size: 0.86rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .brand-row-mobile {
    gap: 0.6rem;
  }


  .brand-logo {
    font-size: 1.3rem;
  }

  .brand-script,
  .brand-serif {
    font-size: 1.5rem;
  }

  .mobile-footer-links a {
    font-size: 1.08rem;
  }
}

