@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;600&display=swap');

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: #f5f1ea;
    color: #1c1c2e;
    overflow-x: hidden
  }

  :root {
    --ink: #1c1c2e;
    --cream: #f5f1ea;
    --rust: #c94f2a;
    --mustard: #e8b84b;
    --pale: #fffdf8;
    --mid: #e8e3d8
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    background: var(--pale);
    border-bottom: 1.5px solid var(--mid);
    position: sticky;
    top: 0;
    z-index: 100
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    letter-spacing: 3px;
    color: var(--ink)
  }

  .nav-logo em {
    color: var(--rust);
    font-style: normal
  }

  .nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    align-items: center
  }

  .nav-links a {
    color: rgba(28, 28, 46, 0.6);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s
  }

  .nav-links a:hover {
    color: var(--ink)
  }

  .nav-cart {
    background: var(--ink);
    color: var(--cream);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background 0.2s
  }

  .nav-cart:hover {
    background: #333350
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    background: var(--ink)
  }

  .hero-left {
    padding: 5rem 3rem 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mustard);
    margin-bottom: 1.5rem
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 7rem;
    line-height: 0.88;
    letter-spacing: 3px;
    color: var(--cream);
    margin-bottom: 1.5rem
  }

  .hero h1 em {
    color: var(--mustard);
    font-style: normal;
    display: block
  }

  .hero-desc {
    font-size: 1rem;
    color: rgba(245, 241, 234, 0.6);
    line-height: 1.7;
    max-width: 360px;
    margin-bottom: 2.5rem
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center
  }

  .btn-fill {
    background: var(--rust);
    color: var(--cream);
    padding: 0.85rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s
  }

  .btn-fill:hover {
    background: #b8421f;
    transform: translateY(-2px)
  }

  .btn-line {
    background: transparent;
    color: var(--cream);
    padding: 0.85rem 1.8rem;
    border: 1.5px solid rgba(245, 241, 234, 0.3);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s
  }

  .btn-line:hover {
    border-color: var(--cream);
    transform: translateY(-2px)
  }

  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: #16162a
  }

  .product-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 380px
  }

  .preview-card {
    background: rgba(245, 241, 234, 0.05);
    border: 1px solid rgba(245, 241, 234, 0.1);
    border-radius: 10px;
    padding: 1.5rem 1.2rem;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer
  }

  .preview-card:hover {
    border-color: var(--mustard);
    transform: translateY(-3px)
  }

  .preview-card.featured {
    border-color: var(--rust);
    grid-column: span 2
  }

  .preview-icon {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    display: block
  }

  .preview-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 0.3rem
  }

  .preview-count {
    font-size: 0.75rem;
    color: rgba(245, 241, 234, 0.4);
    font-weight: 500
  }

  .preview-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mustard);
    margin-top: 0.6rem
  }

  .marquee-wrap {
    background: var(--mustard);
    padding: 0.65rem 0;
    overflow: hidden;
    white-space: nowrap
  }

  .marquee-inner {
    display: inline-block;
    animation: marquee 22s linear infinite
  }

  .marquee-inner span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--ink);
    padding: 0 2rem
  }

  .marquee-inner span.sep {
    color: rgba(28, 28, 46, 0.35)
  }

  @keyframes marquee {
    from {
      transform: translateX(0)
    }

    to {
      transform: translateX(-50%)
    }
  }

  .section {
    padding: 4.5rem 3.5rem;
    background: var(--cream)
  }

  .section-alt {
    padding: 4.5rem 3.5rem;
    background: var(--pale)
  }

  .section-dark {
    padding: 4.5rem 3.5rem;
    background: var(--ink)
  }

  .sec-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 0.6rem
  }

  .sec-dark .sec-label,
  .section-dark .sec-label {
    color: var(--mustard)
  }

  .sec-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 0.8rem;
    color: var(--ink)
  }

  .section-dark .sec-title {
    color: var(--cream)
  }

  .sec-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(28, 28, 46, 0.6);
    max-width: 500px;
    margin-bottom: 2.5rem
  }

  .section-dark .sec-body {
    color: rgba(245, 241, 234, 0.55)
  }

  .shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem
  }

  .shop-card {
    background: var(--pale);
    border: 1.5px solid var(--mid);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer
  }

  .shop-card:hover {
    border-color: var(--rust);
    transform: translateY(-4px)
  }

  .shop-card-img {
    height: 110px;
    background: var(--mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem
  }

  .shop-card-body {
    padding: 1rem
  }

  .shop-card-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
    margin-bottom: 0.25rem
  }

  .shop-card-sub {
    font-size: 0.78rem;
    color: rgba(28, 28, 46, 0.5);
    margin-bottom: 0.7rem
  }

  .shop-card-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rust)
  }

  .shop-card-btn {
    display: block;
    width: 100%;
    margin-top: 0.7rem;
    background: var(--ink);
    color: var(--cream);
    border: none;
    border-radius: 4px;
    padding: 0.55rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s
  }

  .shop-card-btn:hover {
    background: #333350
  }

  .perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem
  }

  .perk {
    border-top: 3px solid var(--mustard);
    padding-top: 1.2rem
  }

  .perk-icon {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    display: block
  }

  .perk-title {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink);
    margin-bottom: 0.3rem
  }

  .perk-text {
    font-size: 0.8rem;
    color: rgba(28, 28, 46, 0.55);
    line-height: 1.6
  }

  .newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
  }

  .email-form {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 1.5rem
  }

  .email-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.85rem 1rem;
    border: 1.5px solid rgba(245, 241, 234, 0.2);
    border-radius: 4px;
    background: rgba(245, 241, 234, 0.07);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem
  }

  .email-form input::placeholder {
    color: rgba(245, 241, 234, 0.35)
  }

  .email-form input:focus {
    outline: none;
    border-color: var(--mustard)
  }

  .coming-banner {
    background: rgba(232, 184, 75, 0.1);
    border: 1.5px solid rgba(232, 184, 75, 0.35);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem
  }

  .banner-dot {
    width: 10px;
    height: 10px;
    background: var(--mustard);
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite
  }

  @keyframes pulse {

    0%,
    100% {
      opacity: 1
    }

    50% {
      opacity: 0.4
    }
  }

  .banner-text {
    font-size: 0.85rem;
    color: rgba(245, 241, 234, 0.75);
    line-height: 1.65
  }

  .banner-text strong {
    color: var(--mustard);
    font-weight: 600
  }

  footer {
    background: #111122;
    padding: 2.5rem 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(245, 241, 234, 0.08)
  }

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 3px;
    color: var(--mustard)
  }

  .footer-links {
    display: flex;
    gap: 2rem
  }

  .footer-links a {
    font-size: 0.78rem;
    color: rgba(245, 241, 234, 0.4);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s
  }

  .footer-links a:hover {
    color: rgba(245, 241, 234, 0.8)
  }

  .footer-right {
    font-size: 0.78rem;
    color: rgba(245, 241, 234, 0.35);
    text-align: right;
    line-height: 1.8
  }
  