:root {
  --primary: #D97706;
  --secondary: #1E293B;
  --tertiary: #F59E0B;
  --neutral: #64748B;
  --surface: #F8FAFC;
  --surface-2: #EEF2F6;
  --ink: #0F172A;
  --white: #FFFFFF;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

/*
  Full-bleed when pasted into Elementor.
  Elementor wraps HTML widgets in a boxed column; this breaks out to the viewport.
*/
.mda-page {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: clip;
  background: var(--surface);
}

/* Announcement */
.announce {
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.7rem 1rem;
}
.announce span { color: var(--tertiary); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.25rem;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.brand__name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--secondary);
}
.brand__tag {
  font-size: 0.7rem;
  color: var(--neutral);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
}
.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}
.nav a:hover { color: var(--primary); }
.nav__cart {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(30, 41, 59, 0.15);
  border-radius: 999px;
}
.nav__cart i {
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 700;
}
.nav-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.55) 45%, rgba(15, 23, 42, 0.72) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(217, 119, 6, 0.22), transparent 55%);
}
.hero__content {
  text-align: center;
  padding: 4rem 1.25rem;
  max-width: 42rem;
  animation: rise 0.9s var(--ease) both;
}
.hero__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tertiary);
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.hero h1::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 3px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, var(--primary), var(--tertiary));
  border-radius: 999px;
}
.hero p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
  max-width: 28rem;
  margin-inline: auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 0.35rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.35);
}
.btn--primary:hover { background: #b45309; }
.btn--ghost {
  background: transparent;
  color: var(--secondary);
  border: 1px solid rgba(30, 41, 59, 0.2);
}
.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Categories */
.cats {
  background: var(--white);
  border-bottom: 1px solid rgba(30, 41, 59, 0.06);
  padding: 1.25rem 0;
}
.cats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.cat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
  border: 1px solid transparent;
  border-radius: 0.4rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.cat::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.18);
}
.cat:hover {
  background: rgba(217, 119, 6, 0.06);
  border-color: rgba(217, 119, 6, 0.25);
  color: var(--primary);
}

/* Trust */
.trust {
  padding: 1.75rem 0;
  background: var(--surface-2);
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.trust__item strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 0.2rem;
}
.trust__item span {
  font-size: 0.85rem;
  color: var(--neutral);
}

/* Sections shared */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section__head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--secondary);
  line-height: 1.1;
}
.section__head p {
  color: var(--neutral);
  max-width: 28rem;
  font-size: 0.98rem;
}
.section__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.section__link:hover { color: #b45309; }

/* Products */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.product {
  background: var(--white);
  border-radius: 0.35rem;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.product__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--surface-2);
  overflow: hidden;
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product:hover .product__media img { transform: scale(1.05); }
.product__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 0.25rem;
}
.product__badge--sale { background: var(--primary); }
.product__body { padding: 1rem 1rem 1.25rem; }
.product__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral);
  margin-bottom: 0.35rem;
}
.product__title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.35;
  margin-bottom: 0.55rem;
  min-height: 2.7em;
}
.product__price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-weight: 700;
}
.product__price .now { color: var(--primary); }
.product__price .was {
  color: var(--neutral);
  font-weight: 500;
  text-decoration: line-through;
  font-size: 0.85rem;
}

/* Collections */
.collections { background: var(--white); }
.collections__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.collection {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 0.35rem;
  color: var(--white);
  isolation: isolate;
}
.collection img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s var(--ease);
}
.collection:hover img { transform: scale(1.06); }
.collection::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.78));
}
.collection__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
}
.collection__body h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.collection__body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.85rem;
  max-width: 18rem;
}
.collection__body span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tertiary);
}

/* Newsletter */
body.mda-front .newsletter {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(245, 158, 11, 0.18), transparent 45%),
    #1E293B !important;
  color: #fff !important;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}
body.mda-front .newsletter__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}
body.mda-front .newsletter h2,
body.mda-front .newsletter #news-title {
  font-family: "Fraunces", Georgia, serif !important;
  font-size: clamp(1.8rem, 3vw, 2.4rem) !important;
  margin-bottom: 0.6rem !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
}
body.mda-front .newsletter p {
  color: rgba(255, 255, 255, 0.78) !important;
  max-width: 28rem;
}
body.mda-front .newsletter__form {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.4rem;
  padding: 0.4rem;
}
body.mda-front .newsletter__form input {
  flex: 1;
  min-width: 0;
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  padding: 0.75rem 0.9rem;
  outline: none;
  box-shadow: none !important;
}
body.mda-front .newsletter__form input::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

/* Footer — own class so Woostify .site-footer cannot override */
body.mda-front .mda-footer {
  background: #0F172A !important;
  color: rgba(255, 255, 255, 0.72) !important;
  padding: 3rem 0 1.75rem;
  font-size: 0.9rem;
}
body.mda-front .mda-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
body.mda-front .mda-footer .brand__name {
  color: #FFFFFF !important;
}
body.mda-front .mda-footer .brand__tag {
  color: rgba(255, 255, 255, 0.5) !important;
}
body.mda-front .mda-footer__about {
  margin-top: 1rem;
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.68) !important;
  line-height: 1.6;
}
body.mda-front .mda-footer h4 {
  color: #FFFFFF !important;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem !important;
  font-weight: 700 !important;
}
body.mda-front .mda-footer ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}
body.mda-front .mda-footer li,
body.mda-front .mda-footer p {
  color: rgba(255, 255, 255, 0.68) !important;
}
body.mda-front .mda-footer a {
  color: rgba(255, 255, 255, 0.72) !important;
  text-decoration: none !important;
}
body.mda-front .mda-footer a:hover {
  color: #F59E0B !important;
}
body.mda-front .mda-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}
body.mda-front .mda-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5) !important;
}
body.mda-front .mda-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}
body.mda-front .mda-footer__legal a {
  color: rgba(255, 255, 255, 0.55) !important;
  font-weight: 600;
}
body.mda-front .mda-footer__legal a:hover {
  color: #F59E0B !important;
}
body.mda-front .mda-footer__legal span {
  color: rgba(255, 255, 255, 0.25);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, -1%); }
}

@media (max-width: 960px) {
  .products { grid-template-columns: repeat(2, 1fr); }
  .mda-footer__grid { grid-template-columns: 1fr 1fr; }
  .newsletter__inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(30, 41, 59, 0.15);
    border-radius: 0.35rem;
  }
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    display: block;
    width: 1rem;
    height: 2px;
    background: var(--secondary);
    position: relative;
  }
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
  }
  .nav-toggle span::before { top: -5px; }
  .nav-toggle span::after { top: 5px; }
  .cats__row { grid-template-columns: 1fr 1fr; }
  .trust__row { grid-template-columns: 1fr; gap: 1.25rem; }
  .collections__grid { grid-template-columns: 1fr; }
  .section__head { flex-direction: column; align-items: start; }
  .newsletter__form { flex-direction: column; }
  .hero { min-height: 78vh; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Front-page WordPress tweaks */
body.mda-front .mda-page { width: 100%; max-width: none; left: auto; right: auto; margin: 0; }
body.mda-front .nav-toggle { display: none; }
@media (max-width: 720px) {
  body.mda-front .nav-toggle { display: grid; }
  body.mda-front .nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 1rem; border-bottom: 1px solid rgba(30,41,59,.08); }
}
