
    body {
      font-family: 'Quicksand', sans-serif;
      background-color: #f0ebe3;
      color: #2a1414;
    }

    .font-display {
      font-family: 'Cormorant Garamond', serif;
    }

    .font-heading {
      font-family: 'Nunito', sans-serif;
    }

    .hero-gradient {
      background: linear-gradient(160deg, #4a1010 0%, #6b1a1a 45%, #8c2323 75%, #b05050 100%);
    }

    .hero-pattern::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' opacity='0.06'%3E%3Ctext y='60' font-size='56'%3E%F0%9F%8E%80%3C/text%3E%3C/svg%3E");
      pointer-events: none;
    }

    .design-scroll::-webkit-scrollbar {
      height: 4px;
    }

    .design-scroll::-webkit-scrollbar-track {
      background: #ede0dc;
      border-radius: 4px;
    }

    .design-scroll::-webkit-scrollbar-thumb {
      background: #8c2323;
      border-radius: 4px;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-up {
      animation: fadeUp 0.5s ease both;
    }

    .nav-link {
      transition: color 0.2s;
    }

    .nav-link:hover {
      color: #8c2323;
    }

    /* SHARED NAVBAR */
    .mg-nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, .96);
      backdrop-filter: blur(8px);
      border-bottom: 1.5px solid #dfc9c4;
      box-shadow: 0 1px 8px rgba(140, 35, 35, .06);
    }

    .mg-nav-inner {
      max-width: 720px;
      margin: 0 auto;
      padding: 0 16px;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .mg-nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .mg-nav-logo-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: #8c2323;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mg-nav-logo-icon span {
      color: #fff;
      font-weight: 900;
      font-size: 13px;
      font-family: 'Nunito', sans-serif;
    }

    .mg-nav-logo-text .brand {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 19px;
      color: #2a1414;
      line-height: 1;
    }

    .mg-nav-logo-text .sub {
      font-size: 8px;
      font-family: 'Quicksand', sans-serif;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #9e8a8a;
    }

    .mg-nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .mg-nav-link {
      padding: 7px 13px;
      border-radius: 20px;
      font-family: 'Quicksand', sans-serif;
      font-weight: 700;
      font-size: 13px;
      text-decoration: none;
      color: #9e8a8a;
      transition: all .15s;
      white-space: nowrap;
    }

    .mg-nav-link:hover {
      color: #8c2323;
    }

    .mg-nav-link.active {
      color: #8c2323;
      background: rgba(140, 35, 35, .09);
      box-shadow: inset 0 0 0 1px rgba(140, 35, 35, .12);
    }

    .mg-nav-cta {
      padding: 8px 18px;
      border-radius: 20px;
      background: #8c2323;
      color: #fff;
      font-family: 'Quicksand', sans-serif;
      font-weight: 700;
      font-size: 13px;
      text-decoration: none;
      transition: background .15s;
      white-space: nowrap;
    }

    .mg-nav-cta:hover {
      background: #4a1010;
    }

    .mg-nav-actions {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .mg-nav-track-btn {
      display: none;
      padding: 7px 12px;
      border-radius: 20px;
      background: rgba(140, 35, 35, .08);
      color: #8c2323;
      font-family: 'Quicksand', sans-serif;
      font-weight: 700;
      font-size: 12px;
      text-decoration: none;
      transition: background .15s;
      white-space: nowrap;
    }

    .mg-nav-track-btn:hover {
      background: rgba(140, 35, 35, .15);
    }

    @media (max-width: 500px) {
      .mg-nav-links {
        display: none;
      }

      .mg-nav-track-btn {
        display: inline-flex;
        align-items: center;
        gap: 4px;
      }

      .mg-nav-cta {
        padding: 7px 12px;
        font-size: 12px;
      }
    }

    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-body.open {
      max-height: 200px;
    }

    /* ── Products dropdown ── */
    .mg-nav-dropdown { position:relative; }
    /* invisible bridge fills the gap so hover stays alive while mouse travels down */
    .mg-nav-dropdown::after {
      content:'';display:block;position:absolute;
      top:100%;left:0;right:0;height:10px;
    }
    .mg-nav-dropdown-menu {
      display:none;position:absolute;top:calc(100% + 10px);left:50%;
      transform:translateX(-50%);background:#fff;border:1.5px solid #dfc9c4;
      border-radius:14px;box-shadow:0 8px 24px rgba(140,35,35,.13);
      padding:6px;min-width:190px;z-index:200;
    }
    .mg-nav-dropdown:hover .mg-nav-dropdown-menu { display:block; }
    .mg-nav-dropdown-item {
      display:block;padding:8px 14px;border-radius:10px;
      font-family:'Quicksand',sans-serif;font-size:13px;font-weight:700;
      color:#2a1414;text-decoration:none;transition:background .12s;white-space:nowrap;
    }
    .mg-nav-dropdown-item:hover { background:#f9f4f0;color:#8c2323; }
    .mg-nav-dropdown-divider { height:1px;background:#f0e8e8;margin:4px 10px; }

    .mg-nav-dropdown-item.active {
      background: rgba(140, 35, 35, .09);
      color: #8c2323;
      border-color: rgba(140, 35, 35, .25);
    }

    .mg-nav-dropdown-item.active:hover {
      background: #8c2323;
      color: #fff;
    }

    .wave-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
    }

    /* Product Grid */
    .product-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:16px; }
    @media(min-width:480px) { .product-grid { grid-template-columns:repeat(3,1fr); } }
    @media(min-width:900px) { .product-grid { grid-template-columns:repeat(4,1fr); } }

    /* Product Card */
    .product-card { background:#fff;border-radius:18px;overflow:hidden;border:1.5px solid #f0e8e8;transition:transform .2s,box-shadow .2s;cursor:pointer;position:relative;display:flex;flex-direction:column; }
    .product-card:hover { transform:translateY(-4px);box-shadow:0 12px 32px rgba(140,35,35,.12); }
    .product-card-img { aspect-ratio:1/1;width:100%;object-fit:cover;display:block;background:#f5f0eb; }
    .product-card-img-placeholder { aspect-ratio:1/1;background:linear-gradient(135deg,#f5f0eb,#ede4dc);display:flex;align-items:center;justify-content:center;font-size:2.5rem; }
    .product-card-body { padding:10px 12px 12px;display:flex;flex-direction:column;flex:1; }
    .product-card-code { font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:#9e8a8a; }
    .product-card-name { font-size:13px;font-weight:700;color:#2a1414;margin-top:2px;line-height:1.3; }
    .product-card-type { display:flex;width:fit-content;margin-top:5px;padding:2px 8px;border-radius:10px;font-size:10px;font-weight:700;background:#8c2323/10;background:rgba(140,35,35,.08);color:#8c2323; }
    .product-card-cta { display:block;margin-top:auto;padding:6px 0;background:#8c2323;color:#fff;text-align:center;font-family:'Quicksand',sans-serif;font-weight:700;font-size:12px;border-radius:10px;text-decoration:none;transition:background .15s; }
    .product-card-cta:hover { background:#4a1010; }


    /* ── Design Cards ── */
    .design-carousel {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      padding: 4px 4px 16px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .design-carousel::-webkit-scrollbar {
      height: 4px;
    }

    .design-carousel::-webkit-scrollbar-track {
      background: #ede0dc;
      border-radius: 4px;
    }

    .design-carousel::-webkit-scrollbar-thumb {
      background: #8c2323;
      border-radius: 4px;
    }

    .design-card {
      background: #fff;
      border-radius: 18px;
      border: 1.5px solid #dfc9c4;
      overflow: hidden;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
      flex-shrink: 0;
      width: 160px;
      scroll-snap-align: start;
    }

    .design-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 28px rgba(140, 35, 35, .16);
      border-color: #8c2323;
    }

    .design-card:active {
      transform: translateY(-1px);
    }

    .design-card-img {
      aspect-ratio: 1/1;
      background: #f5f0eb;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .design-card-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform .3s ease;
      padding: 6px;
    }

    .design-card:hover .design-card-img img {
      transform: scale(1.04);
    }

    .design-card-body {
      padding: 10px 12px 13px;
    }

    .badge-bestseller {
      background: linear-gradient(135deg, #f5a623, #e08012);
      color: #fff;
      font-size: 9px;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      padding: 2px 8px;
      border-radius: 20px;
    }

    .badge-event {
      background: #fdf0ee;
      color: #8c2323;
      font-size: 9px;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 20px;
    }

    /* ── Event Filter Pills ── */
    .event-pill {
      border: 1.5px solid #dfc9c4;
      background: #fff;
      color: #9e8a8a;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 12px;
      padding: 7px 15px;
      border-radius: 30px;
      cursor: pointer;
      white-space: nowrap;
      transition: all .15s;
      flex-shrink: 0;
    }

    .event-pill:hover {
      border-color: #8c2323;
      color: #8c2323;
    }

    .event-pill.active {
      background: #8c2323;
      color: #fff;
      border-color: #8c2323;
    }

    #eventFilterWrap::-webkit-scrollbar {
      display: none;
    }

    /* ── Size Toggle ── */
    .size-btn {
      padding: 8px 20px;
      border-radius: 30px;
      font-family: 'Nunito', sans-serif;
      font-size: 13px;
      font-weight: 700;
      border: 1.5px solid #dfc9c4;
      cursor: pointer;
      transition: all .15s;
    }

    .size-btn.active {
      background: #8c2323;
      color: #fff;
      border-color: #8c2323;
    }

    .size-btn:not(.active) {
      background: #fff;
      color: #9e8a8a;
    }

    .size-btn:not(.active):hover {
      border-color: #8c2323;
      color: #8c2323;
    }

    /* ── Design Lightbox ── */
    #designLightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .82);
      z-index: 500;
      align-items: center;
      justify-content: center;
      padding: 16px;
      backdrop-filter: blur(6px);
    }

    #designLightbox.open {
      display: flex;
    }

    .lb-box {
      background: #fff;
      border-radius: 24px;
      width: 100%;
      max-width: 380px;
      overflow: hidden;
      animation: popIn .25s cubic-bezier(.34, 1.56, .64, 1);
    }

    @keyframes popIn {
      from {
        transform: scale(.85);
        opacity: 0
      }

      to {
        transform: scale(1);
        opacity: 1
      }
    }

    .lb-img-wrap {
      aspect-ratio: 3/4;
      background: #f5f0eb;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .lb-img-front,
    .lb-img-back {
      width: 100%;
      height: 100%;
      object-fit: contain;
      position: absolute;
      inset: 0;
      transition: opacity .3s;
      padding: 8px;
    }

    .lb-img-back {
      opacity: 0;
    }

    .lb-img-wrap.showing-back .lb-img-front {
      opacity: 0;
    }

    .lb-img-wrap.showing-back .lb-img-back {
      opacity: 1;
    }

    .lb-toggle-hint {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(0, 0, 0, .55);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      pointer-events: none;
    }

    /* ── Mobile Sidebar Nav ── */
.mg-sidebar-btn {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1.5px solid #dfc9c4;
  background: #fff;
  color: #2a1414;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
  transition: background .15s, color .15s;
}

.mg-sidebar-btn:hover {
  background: #f8f3ee;
  color: #8c2323;
}

.mg-sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.mg-sidebar-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mg-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 701;
  width: min(84vw, 340px);
  height: 100vh;
  background: #fdf9f7;
  border-right: 1.5px solid #dfc9c4;
  box-shadow: 12px 0 30px rgba(42, 20, 20, .16);
  transform: translateX(-100%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
}

.mg-sidebar.open {
  transform: translateX(0);
}

.mg-sidebar-head {
  padding: 18px;
  background: #fff;
  border-bottom: 1.5px solid #dfc9c4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mg-sidebar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  color: #2a1414;
}

.mg-sidebar-sub {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #9e8a8a;
}

.mg-sidebar-close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: #f0ebe3;
  color: #2a1414;
  font-weight: 900;
  cursor: pointer;
}

.mg-sidebar-links {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.mg-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #2a1414;
  background: #fff;
  border: 1.5px solid #dfc9c4;
  transition: background .15s, color .15s, border-color .15s;
}

.mg-sidebar-link:hover,
.mg-sidebar-link.active {
  color: #8c2323;
  background: rgba(140, 35, 35, .07);
  border-color: rgba(140, 35, 35, .25);
}

.mg-sidebar-footer {
  padding: 16px;
  border-top: 1.5px solid #dfc9c4;
  background: #fff;
}

.mg-sidebar-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: #8c2323;
  color: #fff;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  padding: 14px;
  border-radius: 18px;
}

@media (max-width: 640px) {
  .mg-nav-links {
    display: none;
  }

  .mg-sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.mg-sidebar-dropdown {
  display: flex;
  flex-direction: column;
}

.mg-sidebar-dropdown-btn {
  width: 100%;
  justify-content: space-between;
  cursor: pointer;
}

.mg-sidebar-arrow {
  margin-left: auto;
  transition: transform .2s ease;
}

.mg-sidebar-arrow.open {
  transform: rotate(180deg);
}

.mg-sidebar-submenu {
  display: none;
  margin-top: 6px;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 2px solid #dfc9c4;
  flex-direction: column;
  gap: 6px;
}

.mg-sidebar-submenu.open {
  display: flex;
}

.mg-sidebar-submenu-link {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #2a1414;
  transition: background .15s, color .15s;
}

.mg-sidebar-submenu-link:hover {
  background: rgba(140, 35, 35, .07);
  color: #8c2323;
}

.mg-sidebar-submenu-link.active {
  background: rgba(140, 35, 35, .09);
  color: #8c2323;
  border-color: rgba(140, 35, 35, .25);
}

.mg-sidebar-submenu-link.active:hover {
  background: #8c2323;
  color: #fff;
}

/* ── Minigift Home Body ── */
.mg-home-hero {
  background: linear-gradient(160deg, #4a1010 0%, #6b1a1a 45%, #8c2323 100%);
  padding: 70px 16px 60px;
  color: white;
  overflow: hidden;
}

.mg-home-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.mg-kicker {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: #8c2323;
}

.mg-kicker.light {
  color: rgba(255,255,255,.7);
}

.mg-hero-copy h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(34px, 6vw, 64px);
  line-height: .95;
  font-weight: 950;
  max-width: 620px;
  margin-top: 12px;
}

.mg-hero-copy p {
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.7;
  max-width: 500px;
  margin-top: 18px;
  font-weight: 600;
}

.mg-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.mg-btn-primary,
.mg-btn-secondary,
.mg-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  transition: transform .18s, background .18s;
}

.mg-btn-primary {
  background: white;
  color: #8c2323;
}

.mg-btn-secondary {
  background: rgba(255,255,255,.12);
  color: white;
  border: 1.5px solid rgba(255,255,255,.22);
}

.mg-btn-white {
  background: white;
  color: #8c2323;
}

.mg-btn-primary:hover,
.mg-btn-secondary:hover,
.mg-btn-white:hover {
  transform: translateY(-2px);
}

.mg-hero-points {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.mg-hero-points span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,.86);
}

.mg-hero-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mg-hero-card {
  background: #fdf9f7;
  border: 10px solid rgba(255,255,255,.18);
  border-radius: 36px;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
  overflow: hidden;
  transform: rotate(3deg);
}

.mg-card-main {
  width: min(340px, 78vw);
  aspect-ratio: 1 / 1;
}

.mg-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mg-floating-tag {
  position: absolute;
  background: white;
  color: #8c2323;
  border: 1.5px solid #dfc9c4;
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
}

.tag-one { top: 42px; left: 10px; }
.tag-two { right: 0; bottom: 72px; }
.tag-three { left: 45px; bottom: 35px; }

.mg-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 16px 0;
}

.mg-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.mg-section-head h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 950;
  color: #2a1414;
  font-size: clamp(24px, 4vw, 36px);
  margin-top: 4px;
}

.mg-view-all {
  color: #8c2323;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.mg-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mg-category-tile {
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: #fff;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.mg-category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 20, 20, .42);
  transition: background .2s ease;
}

.mg-category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(42, 20, 20, .18);
}

.mg-category-tile:hover::before {
  background: rgba(42, 20, 20, .28);
}

.mg-category-name {
  position: relative;
  z-index: 1;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 3px 0 rgba(42, 20, 20, .45);
  text-align: center;
}

.mg-category-icon {
  display: none;
}

@media (max-width: 640px) {
  .mg-category-name {
    font-size: 20px;
    letter-spacing: 0.3px;
  }

  .mg-category-tile {
    min-height: 170px;
  }
}

.mg-product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mg-home-product-card {
  background: #fff;
  border: 1.5px solid #f0e8e8;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #2a1414;
  transition: transform .18s, box-shadow .18s;
  display: flex;
  flex-direction: column;
}

.mg-home-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(140,35,35,.12);
}

.mg-home-product-img {
  aspect-ratio: 1 / 1;
  background: #f5f0eb;
  overflow: hidden;
}

.mg-home-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s;
}

.mg-home-product-card:hover img {
  transform: scale(1.05);
}

.mg-home-product-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mg-home-product-code {
  font-size: 10px;
  font-weight: 900;
  color: #9e8a8a;
  letter-spacing: 2px;
}

.mg-home-product-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 14px;
  margin-top: 3px;
  line-height: 1.25;
}

.mg-home-product-type {
  display: flex;
  width: fit-content;
  margin-top: 8px;
  color: #8c2323;
  background: rgba(140,35,35,.08);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.mg-home-product-price {
  margin-top: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: #8c2323;
}

.mg-home-product-cta {
  margin-top: auto;
  background: #8c2323;
  color: white;
  border-radius: 12px;
  padding: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
}

.mg-promo-strip {
  max-width: 980px;
  margin: 60px auto 0;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, #2a1414, #8c2323);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mg-promo-strip h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 950;
  font-size: clamp(24px, 4vw, 36px);
}

.mg-promo-strip p {
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin-top: 8px;
  line-height: 1.6;
  font-weight: 600;
}

.mg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.mg-gallery-item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1.5px solid #dfc9c4;
}

.mg-gallery-item:nth-child(1),
.mg-gallery-item:nth-child(4) {
  grid-column: span 2;
  grid-row: span 2;
}

.mg-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mg-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mg-why-card {
  background: #fff;
  border: 1.5px solid #dfc9c4;
  border-radius: 26px;
  padding: 24px;
}

.mg-why-card > div {
  font-size: 34px;
  margin-bottom: 12px;
}

.mg-why-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 950;
  color: #2a1414;
}

.mg-why-card p {
  color: #9e8a8a;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 7px;
  font-weight: 600;
}

.mg-final-cta {
  padding: 60px 16px;
}

.mg-final-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #4a1010, #8c2323);
  color: white;
  border-radius: 36px;
  padding: 42px 20px;
}

.mg-final-card h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 950;
}

.mg-final-card p {
  color: rgba(255,255,255,.75);
  margin: 8px 0 24px;
  font-weight: 600;
}

@media (max-width: 820px) {
  .mg-home-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mg-hero-copy p,
  .mg-hero-copy h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .mg-hero-actions,
  .mg-hero-points {
    justify-content: center;
  }

  .mg-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .mg-promo-strip {
    margin-left: 16px;
    margin-right: 16px;
    flex-direction: column;
    text-align: center;
  }

  .mg-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mg-gallery-item:nth-child(1),
  .mg-gallery-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .mg-why-grid {
    grid-template-columns: 1fr;
  }
}