/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  /* Colors */
  --color-primary: #8e1f46;
  --color-primary-dark: #6b1838;
  --color-primary-banner: #972444;
  --color-gold: #d4a63c;
  --color-accent-peach: #cc8f67;
  --color-bg-cream: #fff9f4;
  --color-bg-pink: #ffeff5;
  --color-text-dark: #2b2b2b;
  --color-text-dark2: #2c2c2c;
  --color-text-gray: #666;
  --color-text-mid: #4f4f4f;
  --color-border: #dadada;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-footer-bg: #972444;
  --color-add-btn-bg: #f7f2ec;
  /* Font families */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
  /* Font sizes */
  --fs-10: 10px;
  --fs-11: 11px;
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-18: 18px;
  --fs-22: 22px;
  --fs-24: 24px;
  --fs-28: 28px;
  --fs-36: 36px;
  --fs-52: 52px;
  /* Spacing */
  --sp-4: 4px;
  --sp-5: 5px;
  --sp-6: 6px;
  --sp-8: 8px;
  --sp-10: 10px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-20: 20px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-56: 56px;
  --sp-58: 58px;
  --sp-80: 80px;
  /* Border radius */
  --br-4: 4px;
  --br-5: 5px;
  --br-8: 8px;
  --br-16: 16px;
  --br-20: 20px;
  --br-24: 24px;
  --br-full: 9999px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
.announcement-bar {
  background: var(--color-primary-banner);
  padding: 10px;
  text-align: center;
}

.announcement-bar__text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-12);
  color: var(--color-white);
  letter-spacing: 0.02em;
}

/* ============================================================
   HEADER / TOP NAV
============================================================ */
.header {
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 105px;
}

/* Top nav links (left) */
.header__top-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__top-nav a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-15);
  color: var(--color-black);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  white-space: nowrap;
}

.header__top-nav a:hover {
  opacity: 0.7;
}

/* Logo */
.header__logo {
  flex-shrink: 0;
  height: 100%;
}

.header__logo img {
  height: 100%;
  width: auto;
}

/* Right actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__search {
  display: flex;
  align-items: center;
  height: 42px;
  width: 290px;
}

.header__search-input-wrap {
  flex: 1;
  padding: 0 12px;
  overflow: hidden;
  height: 100%;
  border: none;
  outline: none;
  background: rgba(221, 221, 221, 0.4);
  border-radius: var(--br-5);
  overflow: hidden;
}
.header__search-input-wrap:focus-visible {
  border: 1px solid rgb(221, 221, 221);
  background-color: #fff;
  color: var(--color-primary-dark);
  letter-spacing: normal;
  font-weight: 700;
}

.header__search-placeholder {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-13);
  color: var(--color-text-mid);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: normal;
}

.header__search-btn {
  background: var(--color-black);
  width: 40px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 var(--br-4) var(--br-4) 0;
  flex-shrink: 0;
}

.header__search-btn img {
  width: 19px;
  height: 20px;
}

.header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 32px;
  position: relative;
  flex-shrink: 0;
}

.header__icon-btn img {
  width: 24px;
  height: 24px;
}

.header__wishlist-wrap {
  position: relative;
}

.header__wishlist-count {
  position: absolute;
  top: -4px;
  left: 17px;
  background: var(--color-accent-peach);
  color: var(--color-white);
  font-size: 9px;
  font-weight: 500;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger button */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header__hamburger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.header__hamburger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.header__mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 16px 24px;
  gap: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.header__mobile-nav.is-open {
  max-height: 600px;
  padding: 16px 24px 24px;
}

.header__mobile-nav a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-15);
  color: var(--color-black);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  display: block;
}

.header__mobile-nav a:last-child {
  border-bottom: none;
}

/* ============================================================
   CATEGORY NAV (bottom nav row)
============================================================ */
.category-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}

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

.category-nav__item {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.category-nav__item a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-15);
  color: var(--color-black);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
}

.category-nav__item a:hover {
  opacity: 0.7;
}

.category-nav__sep {
  width: 1px;
  height: 24px;
  background: var(--color-border);
  flex-shrink: 0;
  margin: 0 4px;
}

/* ============================================================
   HERO BANNER
============================================================ */
.hero {
  padding: 32px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  background: var(--color-white);
}

.hero__image-wrap {
  width: 100%;
  max-width: 1458px;
  border-radius: var(--br-20);
  overflow: hidden;
}

.hero__image-wrap img {
  width: 100%;
  height: 584px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--br-20);
  display: block;
}

/* ============================================================
   SECTION HEADERS (shared)
============================================================ */
.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.section-header__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-14);
  color: var(--color-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.section-header__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-52);
  color: var(--color-text-dark);
  line-height: 1.1;
}

.section-header__title--semibold {
  font-weight: 600;
}

/* ============================================================
   SHOP BY CATEGORY
============================================================ */
.shop-category {
  background: var(--color-white);
  padding: 29px 225px 58px;
}

.shop-category__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.shop-category__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  justify-content: center;
  align-items: flex-start;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 276px;
}

.category-card__img-wrap {
  width: 276px;
  height: 268px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.category-card__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.category-card__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-18);
  color: var(--color-black);
  text-align: center;
  text-transform: capitalize;
  margin-top: -16px;
  background: var(--color-white);
  padding: 5px 24px 16px;
  width: 100%;
  position: relative;
  margin-bottom: 0;
}

/* ============================================================
   NEW ARRIVALS
============================================================ */
.new-arrivals {
  background: var(--color-bg-cream);
  padding: var(--sp-58) var(--sp-80);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-56);
}

.new-arrivals__grid {
  display: flex;
  gap: 32px;
  width: 100%;
  max-width: 1443px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--br-16);
  overflow: hidden;
  box-shadow: 0 8px 24px 0 rgba(142, 31, 70, 0.04);
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.product-card__image-wrap {
  position: relative;
  height: 400px;
  flex-shrink: 0;
  overflow: hidden;
}

.product-card__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-card__badges {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 2;
}

.product-card__badge {
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-11);
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--br-20);
  letter-spacing: 0.04em;
}

.product-card__wishlist {
  background: var(--color-white);
  border-radius: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  margin-left: auto;
}

.product-card__wishlist img {
  width: 18px;
  height: 18px;
}

.product-card__quick-view {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: var(--br-8);
  padding: 12px;
  text-align: center;
  z-index: 2;
}

.product-card__quick-view span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-13);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card__info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__category {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-13);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.product-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-22);
  color: var(--color-text-dark2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}

.product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-card__prices {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card__price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-18);
  color: var(--color-primary);
}

.product-card__price-old {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-14);
  color: var(--color-text-gray);
  text-decoration: line-through;
}

.product-card__stars {
  display: flex;
  gap: 2px;
  align-items: center;
}

.product-card__stars img {
  width: 12px;
  height: 12px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
}

.product-card__swatches {
  display: flex;
  gap: 6px;
  align-items: center;
}

.product-card__add-btn {
  background: var(--color-add-btn-bg);
  border-radius: var(--br-20);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.product-card__add-btn img {
  width: 14px;
  height: 14px;
}

.product-card__add-btn span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-12);
  color: var(--color-primary);
}

.section-cta-btn {
  border: 1px solid var(--color-primary);
  border-radius: 32px;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-18);
  color: var(--color-primary);
  letter-spacing: 0.01em;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}

.section-cta-btn:hover {
  background: rgba(142, 31, 70, 0.04);
  color: #fff;
}

/* ============================================================
   FEATURED COLLECTIONS
============================================================ */
.featured-collections {
  background: var(--color-white);
  padding: var(--sp-58) var(--sp-80);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.featured-collections__inner {
  width: 100%;
  max-width: 1447px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.featured-row {
  display: flex;
  gap: 32px;
}

.collection-card {
  flex: 1;
  min-width: 0;
  border-radius: var(--br-16);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.collection-card--tall {
  height: 380px;
}

.collection-card--short {
  height: 260px;
}

.collection-card__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.collection-card__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
}

.collection-card__content {
  position: relative;
  z-index: 2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.collection-card--short .collection-card__content {
  padding: 24px;
  gap: 8px;
}

.collection-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-36);
  color: var(--color-white);
  line-height: 1.1;
}

.collection-card--short .collection-card__title {
  font-size: var(--fs-24);
}

.collection-card__cta {
  border: 1px solid var(--color-white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  cursor: pointer;
}

.collection-card__cta span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-14);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.collection-card--short .collection-card__cta span {
  font-size: var(--fs-12);
}

.collection-card__cta img {
  width: 14px;
  height: 14px;
}

/* ============================================================
   TRENDING THIS WEEK
============================================================ */
.trending {
  background: var(--color-bg-pink);
  padding: var(--sp-58) var(--sp-80);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-56);
  position: relative;
  overflow: hidden;
}

.trending__decor {
  position: absolute;
  bottom: 3%;
  right: 3%;
  width: 320px;
  height: auto;
  pointer-events: none;
}

.trending__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
  max-width: 1457px;
  position: relative;
}

.trending__grid {
  display: flex;
  gap: 32px;
  width: 100%;
}

/* Trending product card (no quick view, no add btn) */
.product-card--trending .product-card__image-wrap {
  height: 400px;
}

.product-card--trending .product-card__info {
  padding-bottom: 20px;
}

/* ============================================================
   SHOP BY OCCASION
============================================================ */
.shop-occasion {
  background: var(--color-bg-cream);
  padding: var(--sp-58) var(--sp-80);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.shop-occasion__grid {
  display: flex;
  gap: 32px;
  width: 100%;
  max-width: 1441px;
}

.occasion-card {
  flex: 1;
  min-width: 0;
  height: 320px;
  border-radius: var(--br-16);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
}

.occasion-card__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.occasion-card__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.occasion-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(107, 24, 56, 0.45);
}

.occasion-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.occasion-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-28);
  color: var(--color-white);
  line-height: 1.1;
}

.occasion-card__link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-12);
  color: var(--color-white);
  text-transform: uppercase;
  text-decoration: underline;
  letter-spacing: 0.05em;
}

/* ============================================================
   BESTSELLERS
============================================================ */
.bestsellers {
  background: var(--color-white);
  padding: var(--sp-58) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.bestsellers__scroll {
  width: 100%;
  max-width: 1461px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.bestsellers__track {
  display: flex;
  gap: 0;
}

.bestseller-item {
  flex-shrink: 0;
  width: 271px;
  height: 378px;
  overflow: hidden;
}

.bestseller-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  padding-right: 16px;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--color-footer-bg);
  padding: 96px 230px 48px;
  position: relative;
  overflow: hidden;
}

.footer__decor {
  position: absolute;
  right: 4%;
  bottom: -5%;
  width: 320px;
  height: auto;
  pointer-events: none;
  opacity: 0.3;
}

.footer__logo-watermark {
  position: absolute;
  left: -36px;
  top: -76px;
  width: 269px;
  pointer-events: none;
}

.footer__logo-watermark img {
  width: 100%;
  height: auto;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.footer__brand {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__brand-logo {
  width: 170px;
  height: auto;
}

.footer__brand-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-14);
  color: var(--color-white);
  opacity: 0.7;
  line-height: 1.6;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 160px;
  flex-shrink: 0;
}

.footer__col-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-13);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__col a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-15);
  color: var(--color-white);
  opacity: 0.8;
  white-space: nowrap;
}

.footer__col a:hover {
  opacity: 1;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 50px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__legal {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer__legal span,
.footer__legal a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-14);
  color: var(--color-white);
  opacity: 0.6;
  white-space: nowrap;
}

.footer__legal a:hover {
  opacity: 1;
}

.footer__socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__social-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--br-16);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__social-icon img {
  width: 16px;
  height: 16px;
}

.footer__payments {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer__payment-badge {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--br-4);
  padding: 6px 10px;
}

.footer__payment-badge span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-10);
  color: var(--color-white);
  text-transform: uppercase;
  opacity: 0.8;
  white-space: nowrap;
}/*# sourceMappingURL=meraki.css.map */