*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --forest:       #2D4A2D;
      --forest-mid:   #3E6B3E;
      --forest-light: #5A8F5A;
      --forest-pale:  #C5D9C0;
      --beige:        #F5F0E8;
      --beige-warm:   #EDE5D5;
      --beige-deep:   #D4C4A8;
      --accent:       #8B6914;
      --accent-light: #C9A84C;
      --cream:        #FAF7F2;
      --text-dark:    #1A2A1A;
      --text-mid:     #3D5C3D;
      --text-muted:   #7A8C7A;
      --white:        #FFFFFF;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

  
  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 60fr 40fr;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
    background: var(--beige);
    gap: 3rem;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 70% at 75% 50%, rgba(197,217,192,0.32) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-text { position: relative; z-index: 2; max-width: 620px; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--forest-mid);
    margin-bottom: 1.5rem;
  }
  
  .hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  .hero-h1 em { color: var(--forest); font-style: italic; }
  .hero-p {
    font-size: 1.05rem; line-height: 1.75;
    color: var(--text-mid); margin-bottom: 2.5rem;
    font-weight: 300; max-width: 520px;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--forest); color: var(--cream);
    padding: 0.9rem 2rem; border-radius: 3rem; font-size: 0.95rem;
    font-weight: 500; text-decoration: none; transition: all 0.25s;
    cursor: pointer; border: none; font-family: 'DM Sans', sans-serif;
    min-height: 44px;
  }
  .btn-primary:hover { background: var(--forest-mid); transform: translateY(-1px); }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--forest);
    padding: 0.9rem 2rem; border-radius: 3rem; font-size: 0.95rem;
    font-weight: 500; text-decoration: none; transition: all 0.25s;
    border: 1.5px solid var(--forest); font-family: 'DM Sans', sans-serif;
    min-height: 44px;
  }
  .btn-outline:hover { background: var(--forest-pale); }
  .hero-stats {
    display: flex; gap: 0; margin-top: 3rem;
    padding-top: 2rem; border-top: 1px solid var(--beige-deep);
  }
  .hero-stat {
    padding-right: 2.5rem;
    position: relative;
  }
  .hero-stat:not(:last-child)::after {
    content: '';
    position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 1px; height: 2.5rem; background: var(--beige-deep);
  }
  .hero-stat:not(:first-child) { padding-left: 2.5rem; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 600; color: var(--forest);
    line-height: 1;
  }
  .stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.3rem; letter-spacing: 0.04em; }

  /* ================= HERO VISUAL ================= */

.hero-visual{
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-card-wrap{
  position:relative;
  width:380px;
  height:500px;
}

/* Soft luxury glow behind card */

.hero-card-bg{
  position:absolute;
  inset:50px;

  border-radius:40px;

  background:
    radial-gradient(
      circle,
      rgba(212,175,55,0.30) 0%,
      rgba(212,175,55,0.12) 35%,
      transparent 75%
    );

  filter:blur(40px);
}

/* Main card */

.hero-card-main{
  position:absolute;
  top:0;
  left:20px;

  width:320px;
  height:460px;

  border-radius:28px;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.45) 35%,
      rgba(0,0,0,0.05) 100%
    ),
    url('../img/amouageinterlude man.jpg');

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  overflow:hidden;

  display:flex;
  align-items:flex-end;

  box-shadow:
    0 30px 60px rgba(0,0,0,0.18),
    0 10px 25px rgba(0,0,0,0.10);
}

/* Content */

.hero-content{
  width:100%;
  padding:2rem;
}

.hero-card-label{
  font-size:0.75rem;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.75);
  margin-bottom:0.75rem;
}

.hero-card-name{
  font-family:'Playfair Display', serif;
  font-size:2.5rem;
  font-weight:600;
  line-height:1.05;
  color:#fff;
  margin-bottom:0.5rem;
}

.hero-card-brand{
  color:rgba(255,255,255,0.85);
  font-size:0.95rem;
}

.hero-card-price{
  margin-top:1.2rem;

  display:flex;
  align-items:flex-end;
  gap:0.5rem;
}

.price-amount{
  font-size:2.2rem;
  font-weight:700;
  color:#fff;
}

.price-unit{
  color:rgba(255,255,255,0.75);
  font-size:0.9rem;
  margin-bottom:4px;
}

/* Badge */

.hero-badge{
  position:absolute;
  top:20px;
  left:20px;

  padding:0.55rem 1rem;

  border-radius:999px;

  background:rgba(255,255,255,0.15);

  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,0.25);

  color:white;

  font-size:0.7rem;
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
}

/* Floating card */

.floating-tag{
  position:absolute;
  bottom:35px;
  right:-15px;

  background:rgba(255,255,255,0.96);

  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);

  border-radius:18px;

  padding:1rem 1.2rem;

  min-width:190px;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.12);
}

.floating-tag-label{
  color:#888;
  font-size:0.75rem;
}

.floating-tag-val{
  margin-top:0.3rem;

  color:var(--forest);

  font-weight:600;
  font-size:0.95rem;
}

/* Mobile */

@media (max-width:768px){

  .hero-card-wrap{
    width:320px;
    height:440px;
  }

  .hero-card-main{
    width:280px;
    height:400px;
    left:15px;
  }

  .hero-card-name{
    font-size:2rem;
  }

  .floating-tag{
    right:0;
    bottom:20px;
    min-width:160px;
  }
}
  /* ─── MARQUEE ─── */
  .marquee-wrap {
    background: var(--forest);
    padding: 1rem 0; overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .marquee-track {
    display: flex; gap: 3rem; width: max-content;
    animation: marquee 22s linear infinite;
  }
  .marquee-item {
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.8rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--forest-pale);
    white-space: nowrap;
  }
  .marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent-light); flex-shrink: 0; }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ─── SECTION SHARED ─── */
  .section-eyebrow {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--forest-mid);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
 
  .section-eyebrow.light { color: var(--forest-pale); }
  .section-eyebrow.light::before { background: var(--forest-pale); }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.2; color: var(--text-dark);
    margin-bottom: 1rem; font-weight: 400;
  }
  .section-title.light { color: white; }
  .section-body {
    font-size: 1rem; line-height: 1.8; color: var(--text-mid);
    max-width: 520px; font-weight: 300;
  }
  .section-body.light { color: var(--forest-pale); }

  /* ─── ABOUT TEASER ─── */
  .about-teaser {
    background: var(--beige);
    padding: 6rem 4rem;
  }
  .about-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    max-width: 1200px; margin: 0 auto;
  }
  .about-img-wrap { position: relative; }
  .about-img-placeholder {
    width: 100%; aspect-ratio: 3/4; max-width: 420px;
    background: var(--forest-pale);
    border-radius: 2rem;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--forest-mid); font-size: 0.85rem; text-align: center;
    padding: 2rem; overflow: hidden;
    position: relative;
  }
  .about-img-placeholder img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0; border-radius: 2rem;
  }
  .about-img-placeholder svg { width: 48px; height: 48px; margin-bottom: 1rem; opacity: 0.4; }
  .about-accent-card {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: var(--forest); color: white;
    border-radius: 1.25rem; padding: 1.25rem 1.5rem;
    box-shadow: 0 12px 40px rgba(45,74,45,0.25);
  }
  .about-accent-num {
    font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 600; line-height: 1;
  }
  .about-accent-label { font-size: 0.75rem; color: var(--forest-pale); margin-top: 0.25rem; line-height: 1.4; max-width: 110px; }
  .about-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
  .about-badge {
    font-size: 0.78rem; padding: 0.45rem 1rem;
    border-radius: 2rem; border: 1px solid var(--forest);
    color: var(--forest); background: transparent;
    font-family: 'DM Sans', sans-serif;
  }
  .about-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 1.75rem; color: var(--forest); font-size: 0.95rem;
    font-weight: 500; text-decoration: none;
    border-bottom: 1px solid var(--forest-pale);
    padding-bottom: 0.1rem; transition: border-color 0.2s, gap 0.2s;
  }
  .about-link:hover { border-color: var(--forest); gap: 0.7rem; }

  /* ─── FEATURED PRODUCTS ─── */
  .featured-products {
    background: var(--white);
    padding: 6rem 4rem;
  }
  .featured-products-inner { max-width: 1200px; margin: 0 auto; }
  .shop-header-row {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 3rem; gap: 1rem; flex-wrap: wrap;
  }
  .shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .product-card {
    background: white; border-radius: 1.5rem;
    border: 1px solid var(--beige-deep);
    overflow: hidden; transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
  }
  .product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(45,74,45,0.12); }
  .product-image {
    aspect-ratio: 1; background: var(--beige-warm);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .product-image img { width: 100%; height: 100%; object-fit: cover; }
  .product-img-inner {
    width: 80px; height: 120px; border-radius: 1rem;
    background: var(--forest-pale); position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .product-img-inner::after {
    content: '';
    position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 14px;
    background: var(--beige-deep); border-radius: 4px 4px 0 0;
  }

  
  .product-badge {
    position: absolute; top: 1rem; left: 1rem;
    font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 0.3rem 0.85rem;
    border-radius: 2rem; font-family: 'DM Sans', sans-serif;
  }
  .badge-new { background: var(--forest); color: white; }
  .badge-decant { background: var(--accent-light); color: white; }
  .badge-preloved { background: var(--beige-deep); color: var(--text-dark); }
  .product-info { padding: 1.25rem 1.5rem 1.5rem; }
  .product-brand { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
  .product-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--text-dark); margin-bottom: 0.4rem; }
  .product-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; font-weight: 300; }
  .product-footer { display: flex; justify-content: space-between; align-items: center; }
  .product-meta { display: flex; flex-direction: column; gap: 0.1rem; }
  .product-size { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.04em; }
  .product-price { font-size: 1.1rem; font-weight: 500; color: var(--forest); font-family: 'Playfair Display', serif; }
  .add-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--forest); color: white; border: none;
    cursor: pointer; font-size: 1.25rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, transform 0.15s;
    font-family: 'DM Sans', sans-serif; flex-shrink: 0;
  }
  .add-btn:hover { background: var(--forest-mid); transform: scale(1.08); }
  .featured-cta {
    text-align: center; margin-top: 3rem;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
  }
  .text-link {
    font-size: 0.875rem; color: var(--text-mid);
    text-decoration: none; border-bottom: 1px solid var(--beige-deep);
    padding-bottom: 0.1rem; transition: color 0.2s, border-color 0.2s;
  }
  .text-link:hover { color: var(--forest); border-color: var(--forest); }

  /* ─── SERVICES PREVIEW ─── */
  .services-preview {
    background: var(--forest);
    padding: 6rem 4rem;
  }
  .services-preview-inner { max-width: 1200px; margin: 0 auto; }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3rem;
  }
  .service-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.5rem; padding: 2rem;
    transition: background 0.2s;
  }
  .service-card:hover { background: rgba(255,255,255,0.12); }
  .service-icon {
    width: 52px; height: 52px; border-radius: 1rem;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; font-size: 1.5rem;
  }
  .service-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: white; margin-bottom: 0.75rem; }
  .service-desc { font-size: 0.9rem; line-height: 1.7; color: var(--forest-pale); font-weight: 300; }
  .service-detail { font-size: 0.78rem; color: var(--accent-light); margin-top: 1rem; letter-spacing: 0.04em; }
  .services-cta { margin-top: 3rem; }

  /* ─── WHY CHOOSE US ─── */
  .why-us {
    background: var(--beige);
    padding: 6rem 4rem;
  }
  .why-us-inner { max-width: 1200px; margin: 0 auto; }
  .why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; margin-top: 3rem;
  }
  .why-card {
    background: white; border-radius: 1.5rem;
    padding: 2.25rem; box-shadow: 0 4px 24px rgba(45,74,45,0.06);
    border: 1px solid rgba(45,74,45,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .why-card:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(45,74,45,0.1); }
  .why-card-icon { font-size: 1.75rem; margin-bottom: 1.1rem; }
  .why-card-title {
    font-family: 'Playfair Display', serif; font-size: 1.2rem;
    color: var(--text-dark); margin-bottom: 0.75rem; font-weight: 600;
  }
  .why-card-body { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }

  /* ─── HOW TO ORDER TIMELINE ─── */
  .how-to-order {
    background: white;
    padding: 6rem 4rem;
  }
  .how-to-order-inner { max-width: 1200px; margin: 0 auto; }
  .timeline {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 3.5rem;
    position: relative;
  }
  .timeline::before {
    content: '';
    position: absolute; top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
    height: 2px; background: var(--beige-deep); z-index: 0;
  }
  .timeline-step {
    position: relative; z-index: 1; padding: 0 1.5rem; text-align: center;
  }
  .timeline-step:first-child { padding-left: 0; }
  .timeline-step:last-child { padding-right: 0; }
  .timeline-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--forest); color: white;
    font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; border: 3px solid white;
    box-shadow: 0 0 0 2px var(--forest-pale);
  }
  .timeline-step-title {
    font-family: 'Playfair Display', serif; font-size: 1.05rem;
    color: var(--text-dark); margin-bottom: 0.75rem; font-weight: 600;
  }
  .timeline-step-body {
    font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; font-weight: 300;
  }

  /* ─── FRAGRANCE MATCH TEASER ─── */
  .match-teaser {
    background: var(--forest);
    padding: 6rem 4rem;
    text-align: center;
  }
  .match-teaser-inner { max-width: 680px; margin: 0 auto; }
  .match-teaser .section-eyebrow { justify-content: center; }
  .match-teaser .section-eyebrow::before { display: none; }
  .match-teaser-sub {
    font-size: 0.82rem; color: var(--forest-pale);
    margin-top: 1.25rem; letter-spacing: 0.04em;
  }
  .btn-white {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: white; color: var(--forest);
    padding: 0.9rem 2.25rem; border-radius: 3rem; font-size: 0.95rem;
    font-weight: 500; text-decoration: none; transition: all 0.25s;
    border: none; font-family: 'DM Sans', sans-serif;
    margin-top: 2rem; min-height: 44px;
  }
  .btn-white:hover { background: var(--beige); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

  /* ─── FAQ PREVIEW ─── */
  .faq-preview {
    background: var(--beige);
    padding: 6rem 4rem;
  }
  .faq-preview-inner { max-width: 780px; margin: 0 auto; }
  .faq-preview .section-title { margin-bottom: 2.5rem; }
  .faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--beige-deep); border-radius: 1.25rem; overflow: hidden; background: white; }
  .faq-item { border-bottom: 1px solid var(--beige-deep); }
  .faq-item:last-child { border-bottom: none; }
  .faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.35rem 1.75rem; background: none; border: none; cursor: pointer;
    text-align: left; transition: background 0.2s;
    min-height: 44px; font-family: 'DM Sans', sans-serif;
  }
  .faq-question:hover { background: var(--beige); }
  .faq-question.open { background: var(--beige); }
  .faq-question-text {
    font-size: 1rem; font-weight: 500; color: var(--text-dark);
    font-family: 'Playfair Display', serif;
  }
  .faq-icon {
    font-size: 1.2rem; color: var(--forest); flex-shrink: 0;
    transition: transform 0.3s; display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%; background: var(--forest-pale);
    font-style: normal;
  }
  .faq-question.open .faq-icon { transform: rotate(45deg); background: var(--forest); color: white; }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .faq-answer.open { max-height: 400px; }
  .faq-answer-inner {
    padding: 0 1.75rem 1.5rem; font-size: 0.9rem;
    color: var(--text-mid); line-height: 1.75; font-weight: 300;
  }
  .faq-footer { text-align: center; margin-top: 2rem; }

  /* ─── NEWSLETTER ─── */
  .newsletter {
    background: white;
    padding: 6rem 4rem;
    text-align: center;
  }
  .newsletter-inner { max-width: 560px; margin: 0 auto; }
  .newsletter .section-title { margin-bottom: 0.75rem; }
  .newsletter-sub { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; font-weight: 300; }
  .newsletter-form { display: flex; gap: 0.75rem; }
  .newsletter-input {
    flex: 1; padding: 0.85rem 1.25rem;
    border: 1.5px solid var(--beige-deep); border-radius: 3rem;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
    color: var(--text-dark); background: var(--cream); outline: none;
    transition: border-color 0.2s;
  }
  .newsletter-input:focus { border-color: var(--forest); }
  .newsletter-consent { font-size: 0.78rem; color: var(--text-muted); margin-top: 1rem; line-height: 1.6; }

 

  
  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-text > * { animation: fadeUp 0.7s ease both; }
  .hero-text > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-text > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-text > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-text > *:nth-child(4) { animation-delay: 0.45s; }
  .hero-text > *:nth-child(5) { animation-delay: 0.55s; }
  .hero-visual { animation: fadeUp 0.9s 0.3s ease both; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    
  
  }

  @media (max-width: 900px) {
    
    .hero { grid-template-columns: 1fr; padding: 6rem 1.5rem 3rem; gap: 0; }
    .hero-visual { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .hero-stat::after { display: none; }
    .hero-stat { padding: 0; }
    .about-teaser { padding: 4rem 1.5rem; }
    .about-inner { grid-template-columns: 1fr; gap: 0; }
    .about-img-wrap { display: none; }
    .featured-products { padding: 4rem 1.5rem; }
    
    .services-preview { padding: 4rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .why-us { padding: 4rem 1.5rem; }
    .why-grid { grid-template-columns: 1fr; }
    .how-to-order { padding: 4rem 1.5rem; }
   .timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.timeline::before { display: none; }
.timeline-step { text-align: center; display: flex; flex-direction: column; align-items: center; padding: 0; gap: 0.75rem; }
.timeline-num { margin: 0 auto; flex-shrink: 0; }
    .match-teaser { padding: 4rem 1.5rem; }
    .faq-preview { padding: 4rem 1.5rem; }
    .newsletter { padding: 4rem 1.5rem; }
    .newsletter-form { flex-direction: column; }
    
    .hero-actions { flex-direction: column; }
    .hero-actions a { width: 100%; justify-content: center; }
  }

  @media (min-width: 901px) and (max-width: 1199px) {
    
    .hero { padding: 8rem 2.5rem 4rem; }
    .about-teaser, .featured-products, .services-preview, .why-us, .how-to-order, .faq-preview, .newsletter { padding: 6rem 2.5rem; }
   
   
  }

  @media (max-width: 768px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-card {
    border-radius: 1.25rem;
  }

  .product-image {
    aspect-ratio: 1;
  }

  .product-info {
    padding: 1rem;
  }

  .product-name {
    font-size: 1rem;
  }

  .product-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
  }

  .product-price {
    font-size: 0.95rem;
  }

  .product-size {
    font-size: 0.68rem;
  }

  .add-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}

/* ================= TABLET ================= */

@media (max-width: 992px){

  .hero-card-wrap{
    width:340px;
    height:450px;
  }

  .hero-card-main{
    width:300px;
    height:420px;
    left:20px;
  }

  .hero-card-name{
    font-size:2.2rem;
  }

  .floating-tag{
    right:-10px;
  }
}


/* ================= MOBILE ================= */

@media (max-width: 768px){

  .hero-visual{
    width:100%;
    display:flex;
    justify-content:center;
  }

  .hero-card-wrap{
    width:100%;
    max-width:320px;
    height:430px;
  }

  .hero-card-main{
    width:100%;
    max-width:280px;
    height:390px;
    left:50%;
    transform:translateX(-50%);
  }

  .hero-card-bg{
    inset:40px;
  }

  .hero-card-name{
    font-size:2rem;
  }

  .hero-content{
    padding:1.5rem;
  }

  .price-amount{
    font-size:1.8rem;
  }

  .floating-tag{
    position:absolute;
    right:10px;
    bottom:10px;
    min-width:150px;
    padding:0.8rem 1rem;
  }
}


/* ================= SMALL PHONES ================= */

@media (max-width: 480px){

  .hero-card-wrap{
    max-width:280px;
    height:380px;
  }

  .hero-card-main{
    max-width:250px;
    height:350px;
    border-radius:24px;
  }

  .hero-card-name{
    font-size:1.7rem;
  }

  .hero-card-brand{
    font-size:0.8rem;
  }

  .hero-card-label{
    font-size:0.65rem;
  }

  .price-amount{
    font-size:1.5rem;
  }

  .price-unit{
    font-size:0.75rem;
  }

  .hero-badge{
    top:12px;
    left:12px;
    padding:0.4rem 0.8rem;
    font-size:0.6rem;
  }

  .floating-tag{
    right:5px;
    bottom:5px;
    min-width:130px;
    padding:0.7rem 0.9rem;
  }

  .floating-tag-label{
    font-size:0.65rem;
  }

  .floating-tag-val{
    font-size:0.8rem;
  }
}