:root {
  --purple: #24105f;
  --purple-2: #32137d;
  --pink: #ec168c;
  --orange: #f47a29;
  --cream: #f7f0e6;
  --white: #ffffff;
  --text: #25212d;
  --muted: #6c6675;
  --line: #e9e1ef;
  --gradient: linear-gradient(120deg, var(--pink), var(--orange));
  --shadow: 0 20px 50px rgba(36, 16, 95, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

.skip-link {
  position: absolute;
  top: 8px;
  left: -9999px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--purple);
  background: var(--white);
}

.skip-link:focus {
  left: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  padding: 9px 16px;
  color: var(--white);
  background: var(--gradient);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(36, 16, 95, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 100px;
}

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

.brand img {
  width: 220px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  transition: transform 0.3s ease;
}

.brand img:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--purple);
  font-size: 0.96rem;
  font-weight: 750;
}

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

.main-nav a::after {
  position: absolute;
  right: 100%;
  bottom: 2px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--gradient);
  border-radius: 999px;
  transition: right 0.22s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.header-call {
  display: grid;
  color: var(--purple);
  font-weight: 800;
  text-align: right;
}

.header-call span {
  color: var(--pink);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 3px;
  margin: 4px 0;
  background: var(--purple);
  border-radius: 4px;
}

.hero {
  padding: 72px 0 84px;
  background:
    radial-gradient(circle at 5% 15%, rgba(236, 22, 140, 0.12), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(244, 122, 41, 0.13), transparent 32%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ffd4ee;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--purple);
  line-height: 1.08;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.18rem;
}

.hero-text {
  max-width: 680px;
  color: #514a5c;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 850;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 12px 30px rgba(36, 16, 95, 0.24);
}

.btn-primary:hover {
  background: var(--purple-2);
}

.btn-secondary {
  color: var(--purple);
  background: rgba(255, 255, 255, 0.76);
  border: 2px solid rgba(36, 16, 95, 0.18);
}

.btn-light {
  color: var(--purple);
  white-space: nowrap;
  background: var(--white);
}

.service-area {
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  z-index: 0;
  inset: -16px 22px 18px -18px;
  content: "";
  background: var(--gradient);
  border-radius: 28px;
  transform: rotate(-2deg);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  right: -18px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  color: var(--white);
  background: var(--purple);
  border: 4px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-badge span {
  font-size: 0.82rem;
  opacity: 0.9;
}

.section {
  padding: 96px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Featured products */

.featured-products {
  background: #faf8fc;
}

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

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(36, 16, 95, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(36, 16, 95, 0.15);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-content {
  padding: 24px;
}

.product-content h3 {
  margin-bottom: 10px;
}

.product-content p {
  margin: 0;
  color: var(--muted);
}

/* Departments */

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

.department-card {
  position: relative;
  min-height: 240px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border-top: 5px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(36, 16, 95, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.department-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(36, 16, 95, 0.15);
}

.department-card:nth-child(2) {
  border-top-color: #4caf50;
}

.department-card:nth-child(3) {
  border-top-color: #f9a825;
}

.department-card:nth-child(4) {
  border-top-color: #8e24aa;
}

.department-card:nth-child(5) {
  border-top-color: #039be5;
}

.department-card:nth-child(6) {
  border-top-color: #ef5350;
}

.department-card::after {
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 90px;
  height: 90px;
  content: "";
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.13;
}

.department-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(36, 16, 95, 0.18);
  font-size: 2rem;
}

.department-card p {
  margin: 0;
  color: var(--muted);
}

/* Featured deals */

.deals-section {
  padding: 72px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(244, 122, 41, 0.55), transparent 38%),
    linear-gradient(115deg, #24105f, #4b157e 58%, #a31475);
}

.deals-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.deals-inner h2,
.deals-inner p {
  color: var(--white);
}

.deals-inner p {
  max-width: 690px;
  margin-bottom: 0;
}

/* About and feature boxes */

.about-section {
  background: #fcfaf6;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

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

.feature-box {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(36, 16, 95, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(36, 16, 95, 0.15);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 18px;
  font-size: 2rem;
}

.feature-box h3 {
  margin-bottom: 10px;
}

.feature-box p {
  margin: 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  content: "✓";
  background: var(--gradient);
  border-radius: 50%;
  font-size: 0.8rem;
}

/* Visit */

.visit-section {
  background: linear-gradient(180deg, var(--white), #f8f3fb);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.contact-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--pink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-card {
  overflow: hidden;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.store-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.store-card-caption {
  display: grid;
  padding: 22px 24px;
  color: var(--purple);
}

.store-card-caption span {
  color: var(--muted);
}

.map-card {
  margin-top: 48px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

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

.mobile-actions {
  display: none;
}

/* Footer */

.site-footer {
  padding: 64px 0 22px;
  color: rgba(255, 255, 255, 0.86);
  background: var(--purple);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 60px;
}

.footer-brand img {
  width: 180px;
  height: auto;
  padding: 0;
  background: transparent;
}

.footer-brand p {
  max-width: 360px;
}

.site-footer h3 {
  color: var(--white);
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: #ffc3e6;
}

.copyright {
  padding-top: 20px;
  margin-top: 42px;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 190px 1fr auto;
    gap: 20px;
  }

  .brand img {
    width: 190px;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 92px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 86px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-media {
    max-width: 620px;
  }

  .hero-media img {
    aspect-ratio: 1.25 / 1;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 74px;
  }

  .container {
    width: min(calc(100% - 28px), 1160px);
  }

  .brand img {
    width: 142px;
    height: auto;
  }

  .header-inner {
    min-height: 72px;
  }

  .main-nav {
    top: 68px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .hero,
  .section {
    padding: 64px 0;
  }

  .hero-media::before {
    inset: -10px 12px 12px -8px;
  }

  .hero-badge {
    right: 8px;
    bottom: 12px;
  }

  .products-grid,
  .department-grid,
  .features-grid,
  .contact-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 210px;
  }

  .map-card {
    margin-top: 32px;
    border-radius: 20px;
  }

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

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 9px max(14px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(36, 16, 95, 0.14);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    color: var(--white);
    background: var(--purple);
    font-weight: 850;
  }

  .mobile-actions a:first-child {
    border-radius: 999px 0 0 999px;
  }

  .mobile-actions a:last-child {
    background: var(--gradient);
    border-radius: 0 999px 999px 0;
  }

  .deals-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
