:root {
  --bg: #f7fafc;
  --surface: #ffffff;
  --surface-soft: #eef6f3;
  --ink: #101828;
  --muted: #667085;
  --line: #e6edf2;
  --accent: #138a5b;
  --accent-dark: #0f6f49;
  --accent-soft: #e9fbf2;
  --purple: #6a5cff;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.09);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, #ffffff 0%, transparent 30%),
    linear-gradient(180deg, #f9fcfb 0%, #f3f7fa 52%, #ffffff 100%);
  overflow-x: hidden;
}

body::selection {
  background: #d7f8e7;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 237, 242, 0.9);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 92px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(106, 92, 255, 0.16));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #344054;
  font-size: 15px;
  font-weight: 800;
}

.nav-links a:hover {
  background: #f1f5f9;
}

.nav-cta {
  background: var(--ink) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.16);
}

.hero {
  padding: 62px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
  align-items: center;
  gap: 56px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 660px;
  color: #111827;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: #475467;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.58;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #16b978);
  box-shadow: 0 16px 34px rgba(19, 138, 91, 0.24);
}

.secondary {
  color: #111827;
  background: #ffffff;
  border-color: var(--line);
}

.hero-visual {
  width: 100%;
  max-width: 500px;
  justify-self: end;
}

.hero-product-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1.02 / 1;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 12%, rgba(106, 92, 255, 0.14), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(19, 138, 91, 0.14), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #f3f7fb 100%);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
}

.hero-product-card img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: none;
  transform: none;
}

.hero-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(230, 237, 242, 0.95);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
}

.hero-badge span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-badge strong {
  color: var(--accent-dark);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.trust article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.045);
}

.trust strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.trust span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: 72px 0 10px;
}

.section-head {
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-head p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.price-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  align-items: end;
  gap: 24px;
}

.search-box {
  display: grid;
  gap: 8px;
  color: #475467;
  font-size: 13px;
  font-weight: 850;
}

.search-box input {
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  background: #ffffff;
  color: var(--ink);
  font-size: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.search-box input:focus {
  border-color: rgba(106, 92, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(106, 92, 255, 0.1);
}

.filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 18px;
  margin-bottom: 14px;
  scrollbar-width: none;
}

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

.filter {
  flex: 0 0 auto;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #344054;
  font-weight: 900;
  cursor: pointer;
}

.filter.active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.product-grid,
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07);
}

.media {
  height: 235px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  opacity: 1;
  filter: none;
}

.content {
  padding: 20px;
}

.tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(106, 92, 255, 0.18);
  background: #f4f2ff;
  color: #5d4bed;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card h3 {
  margin: 14px 0 6px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

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

.starting {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  margin-bottom: 12px;
  border-top: 1px solid var(--line);
}

.starting span {
  color: var(--muted);
  font-size: 13px;
}

.starting strong {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.options {
  display: grid;
  gap: 9px;
}

.option {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid #edf2f7;
  background: #f8fafc;
}

.option b {
  font-size: 14px;
}

.option strong {
  font-size: 17px;
}

.order-small {
  display: inline-flex;
  min-width: 70px;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.small-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.empty {
  grid-column: 1 / -1;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 20px;
  align-items: stretch;
  padding-bottom: 72px;
}

.contact-card,
.map-card {
  overflow: hidden;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 32px;
}

.contact-card h2 {
  margin: 0 0 20px;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-card p {
  color: #475467;
  font-size: 17px;
  line-height: 1.55;
}

.contact-card a:not(.btn) {
  color: #0b6bcb;
  font-weight: 850;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  display: block;
}

footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner img {
  width: 72px;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-visual {
    justify-self: center;
    max-width: 560px;
  }

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

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

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    min-height: 66px;
    gap: 8px;
  }

  .brand img {
    width: 60px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 8px 7px;
    font-size: 12.5px;
  }

  .nav-links a:nth-child(2) {
    display: none;
  }

  .hero {
    padding: 30px 0 20px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
    max-width: 100%;
  }

  .hero-product-card {
    aspect-ratio: 1.12 / 1;
    border-radius: 26px;
    padding: 18px;
  }

  .hero-product-card img {
    max-height: 300px;
  }

  .hero-badge {
    left: 14px;
    bottom: 14px;
    padding: 9px 12px;
    border-radius: 14px;
  }

  .hero-badge strong {
    font-size: 22px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .lead {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.52;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .btn {
    width: 100%;
  }

  .trust {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section {
    padding-top: 54px;
  }

  .section-head h2 {
    font-size: 38px;
  }

  .section-head p {
    font-size: 15px;
  }

  .price-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filters {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .product-grid,
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .media {
    height: 220px;
  }

  .card {
    border-radius: 24px;
  }

  .content {
    padding: 18px;
  }

  .card h3 {
    font-size: 22px;
  }

  .option {
    grid-template-columns: 1fr auto auto;
    padding: 9px 10px;
  }

  .order-small {
    min-width: 64px;
    padding: 7px 9px;
  }

  .split {
    padding-bottom: 54px;
  }

  .contact-card,
  .map-card {
    border-radius: 26px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-card h2 {
    font-size: 36px;
  }

  .map-card iframe {
    min-height: 330px;
  }

  .footer-inner {
    display: grid;
    justify-items: center;
    text-align: center;
  }
}

/* SHANE PERSON HERO UPDATE */
.hero {
  padding: 70px 0 46px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 510px);
  gap: clamp(34px, 6vw, 72px);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(46px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 510px;
  min-height: 590px;
  justify-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 54px 22px 18px;
  z-index: -3;
  border-radius: 46px;
  background:
    radial-gradient(circle at 20% 16%, rgba(106, 92, 255, 0.16), transparent 35%),
    radial-gradient(circle at 84% 20%, rgba(19, 138, 91, 0.13), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #eef8f3 100%);
  border: 1px solid rgba(17, 24, 39, 0.07);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  z-index: -2;
  filter: blur(2px);
}

.hero-orb-one {
  width: 230px;
  height: 230px;
  right: 4px;
  top: 24px;
  background: rgba(106, 92, 255, 0.12);
}

.hero-orb-two {
  width: 260px;
  height: 260px;
  left: -12px;
  bottom: 18px;
  background: rgba(19, 138, 91, 0.10);
}

.hero-person-card {
  width: min(88%, 430px);
  height: 548px;
  overflow: hidden;
  border-radius: 38px;
  border: 10px solid #ffffff;
  background: #ffffff;
  box-shadow: 0 30px 76px rgba(15, 23, 42, 0.18);
  transform: rotate(-1.2deg);
}

.hero-person-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(1.05) contrast(1.03);
}

.hero-mini-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 13px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.13);
  backdrop-filter: blur(14px);
}

.hero-mini-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-mini-card strong {
  color: #101828;
  font-size: 16px;
  font-weight: 950;
}

.hero-mini-top {
  right: 0;
  top: 92px;
}

.hero-mini-bottom {
  left: 0;
  bottom: 78px;
}

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

  .hero-visual {
    justify-self: center;
    order: 1;
    min-height: 560px;
  }

  .hero-copy {
    order: 2;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 24px 0 24px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-visual {
    width: 100%;
    min-height: 430px;
    max-width: 100%;
  }

  .hero-visual::before {
    inset: 34px 8px 10px;
    border-radius: 32px;
  }

  .hero-orb-one {
    width: 170px;
    height: 170px;
    right: 4px;
    top: 14px;
  }

  .hero-orb-two {
    width: 170px;
    height: 170px;
    left: 0;
    bottom: 18px;
  }

  .hero-person-card {
    width: min(82vw, 330px);
    height: 398px;
    border-radius: 30px;
    border-width: 8px;
    transform: rotate(-0.7deg);
  }

  .hero-person-card img {
    object-position: 50% 20%;
  }

  .hero-mini-card {
    min-width: 128px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .hero-mini-card span {
    font-size: 9px;
  }

  .hero-mini-card strong {
    font-size: 13px;
  }

  .hero-mini-top {
    right: 4px;
    top: 50px;
  }

  .hero-mini-bottom {
    left: 4px;
    bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1;
  }
}

/* GIRL HERO IMAGE UPDATE */
.hero-visual {
  max-width: 560px !important;
  min-height: 460px !important;
  align-items: center !important;
}

.hero-visual::before {
  inset: 28px 0 28px !important;
  border-radius: 42px !important;
  background:
    radial-gradient(circle at 24% 18%, rgba(106, 92, 255, 0.12), transparent 36%),
    radial-gradient(circle at 88% 72%, rgba(19, 138, 91, 0.10), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f5f8ff 100%) !important;
}

.hero-person-card {
  width: 100% !important;
  max-width: 560px !important;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  border-radius: 34px !important;
  border: 8px solid #ffffff !important;
  transform: none !important;
  background: #ffffff !important;
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.14) !important;
}

.hero-person-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: saturate(1.04) contrast(1.02) !important;
}

.hero-mini-card {
  display: none !important;
}

@media (max-width: 1040px) {
  .hero-visual {
    max-width: 680px !important;
    min-height: auto !important;
  }

  .hero-person-card {
    max-width: 680px !important;
  }
}

@media (max-width: 640px) {
  .hero-visual {
    min-height: auto !important;
    padding: 0 4px !important;
  }

  .hero-visual::before {
    inset: 18px 4px 18px !important;
    border-radius: 30px !important;
  }

  .hero-person-card {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    border-radius: 26px !important;
    border-width: 6px !important;
  }
}
