*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream: #f9f1eb;
      --blush: #e8c4b0;
      --rose: #c98b6e;
      --dark: #2c1f1a;
      --muted: #8a7060;
      --light-bg: #f0ece8;
      --card-bg: #f5ede6;
      --white: #ffffff;
      --accent: #b07055;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 60px;
      background: var(--cream);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav-left { display: flex; align-items: center; gap: 28px; cursor: pointer; color: var(--muted); font-size: 14px; }
    .nav-left svg { width: 20px; height: 20px; }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      letter-spacing: 2px;
      color: var(--dark);
      text-align: center;
    }
    .nav-logo span { display: block; font-size: 9px; letter-spacing: 4px; font-family: 'DM Sans', sans-serif; color: var(--muted); text-transform: uppercase; }

    .nav-right { display: flex; align-items: center; gap: 20px; }
    .nav-right svg { width: 20px; height: 20px; color: var(--dark); cursor: pointer; }

    /* ── HERO ── */
    .hero {
      display: grid;
      grid-template-columns: 56.5% 43.5%;
      min-height: 560px;
      max-height: 820px;
      background: var(--cream);
      overflow: hidden;
    }

    .hero-text {
      padding: 100px 100px;
      max-height: 727px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      animation: fadeUp 1.5s ease both;
    }

    .hero-text .tagline {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 32px;
      max-width: 473px;
      color: #2C1F1A;
      margin-bottom: 26px;
    }

    .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: 96px;
      font-weight: 600;
      line-height: 1;
      color: var(--dark);
      margin-bottom: 40px;
    }

    .hero-text p {;
      font-size: 18px;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.7;
      max-width: 591px;
      margin-bottom: 73px;
    }

    .hero-btns { display: flex; gap: 34px; align-items: center; }

    .btn-outline {
      padding: 10px 20px;
      border: 1px solid #523930;
      border-radius: 6px;
      background: transparent;
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 300;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 12px;
      color: #523930;
      transition: all 0.3s;
    }
    .btn-outline:hover { background: #523930; color: var(--white); }
    .btn-outline .play { width: 22px; height: 22px; background: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .btn-outline:hover .play { background: var(--white); }
    .btn-outline .play svg { fill: var(--white); width: 8px; }
    .btn-outline:hover .play svg { fill: var(--dark); }

    .btn-fill {
      padding: 11px 47px;
      background: #523930;
      color: var(--white);
      border: none;
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 18px;
      font-weight: 300;
      cursor: pointer;
      transition: background 0.3s;
    }
    .btn-fill:hover { background: #77594e }

    .hero-stats {
      display: flex;
      width: 600px;
      padding-left: 120px;
      gap: 46px;
      margin-top: 50px;
      padding-top: 30px;
      border-top: 1px solid rgba(0,0,0,0.08);
    }

    .stat-item { text-align: center; }
    .stat-item .num { font-family: serif; font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 32px;}
    .stat-item .label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

    .stat-divider { width: 0.5px; background:#003B49;opacity: 50%; }

    .hero-review {
      margin-top: 52px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .avatars { display: flex;margin-right: 20px; }
    .avatars img, .avatar-placeholder {
      width: 30px; height: 30px; border-radius: 50%;
      margin-left: -8px;
      object-fit: cover;
    }
    .avatars .avatar-placeholder:first-child { margin-left: 0; }
    .review-text { font-size: 14px; color: var(--muted);margin-top: 10px; }
    .stars { color: #f0a500; font-size: 16px; margin-bottom: 10px; }

    .hero-image {
      background: var(--blush);
      position: relative;
      overflow: hidden;
      animation: fadeIn 1.1s ease both;
    }
    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center ;
      transform: translateY(-250px);
    }

    /* ── our story ── */

    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Playfair+Display:wght@400;500;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.story-section {
  width: 100%;
  height: 820px;
  display: flex;
  background: #f7f2ee;
}
.section-label{
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #A8734C;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.label-word{
    position: relative;
    display: inline-block;
}

.label-word::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 1px;
    background: #A8734C;
}

.section-title{
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    color: #2C1F1A;
    margin: 0;
}

.story-image {
  width: 56.5%;
  height: 100%;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-content {
  width: 43.5%;
  height: 100%;
  display: flex;
  align-items: center;
  background: #f7f2ee;
}

.story-inner {
  width: 100%;
  padding-left: 90px;
  padding-right: 70px;
}

.story-inner h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1.28;
  font-weight: 500;
  color: #000;
}

.story-inner h2 span {
  color: #b98f67;
}

.title-line {
  width: 144px;
  height: 2px;
  background: #a8734c;
  margin-top: 26px;
  margin-bottom: 54px;
}

.story-text {
  font-family: 'Inter', sans-serif;
  color: #4f4f4f;
  font-size: 16px;
  line-height: 22px;
  max-width: 420px;
}

.story-text p {
  margin: 0 0 26px;
}

.story-btn {
  margin-top: 80px;
  width: 340px;
  height: 56px;
  border: 1px solid #484848;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-decoration: none;
  color: #484848;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s ease;
}

.story-btn svg {
  transition: 0.3s ease;
}

.story-btn:hover {
  background: #BC9877;
  color: #F9F4EF;
  border: 1px solid #F9F4EF;
}

.story-btn:hover svg {
  transform: translateX(6px);
  color: #F9F4EF;
}

/* Responsive */
@media (max-width: 1100px) {
  .story-inner {
    padding-left: 50px;
    padding-right: 40px;
  }

  .story-inner h2 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .story-section {
    height: auto;
    flex-direction: column;
  }

  .story-image,
  .story-content {
    width: 100%;
  }

  .story-image {
    height: 520px;
  }

  .story-content {
    height: auto;
  }

  .story-inner {
    padding: 70px 24px;
  }

  .story-inner h2 {
    font-size: 42px;
  }

  .story-btn {
    width: 100%;
  }
}

    /* ── SECTION TITLES ── */
    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
      padding-right: 80px;
      padding-bottom: 17px;
      letter-spacing: 2px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      font-weight: 600;
      color: var(--dark);
    }
    .nav-arrows { display: flex; gap: 16px; }
    .arrow-btn {
      width: 38px; height: 38px;
      border: 1px solid var(--dark);
      border-radius: 8%;
      background: transparent;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.25s;
    }
    .arrow-btn:hover { background: #E5DCD7; }
    .arrow-btn:hover svg { stroke: #2C1F1A; }
    .arrow-btn svg { width: 14px; stroke: var(--dark); fill: none; stroke-width: 2; }

    /* ── MOST POPULAR ── */
    .most-popular {
      padding-top: 70px;
      padding-left: 80px;
      padding-bottom: 31px;
      background: var(--cream);
    }
    .products-scroll .product-card:nth-child(even){
      margin-top: 30px;
    }

    .products-scroll {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 60px;
      overflow: hidden;
      align-items: start;
    }

    .product-card {
      background: transparent;
      border-radius: 16px;
      padding: 0px;
      padding-bottom: 20px;
      cursor: pointer;
      width: 236px;
    }
    

    .product-img {
      width: 100%;
      aspect-ratio: 1;
      background: var(--blush);
      border-radius: 10px;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .product-img img { width: 70%; height: 70%; object-fit: contain;transition: transform 1.5s ease; }
    .product-card:hover .product-img img{transform: scale(1.1);}

    .product-name { font-size: 22px; font-weight: 500; color: #2C1F1A; margin-bottom: 16px; margin-left: 8px; }

    .color-dots { display: flex; gap: 4px; margin-bottom: 18px;margin-left: 8px; }
    .dot { width: 14px; height: 14px; border-radius: 50%; }

    .product-price { font-size: 24px; font-weight: 500; color: #2C1F1A; }
    .product-price sup { font-size: 16px; vertical-align: super;margin-left: 8px; }
    .product-price sub { font-size: 10px; font-weight: 400; color: #2C1F1A; }
    .btn-buy {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),background 0.5s;
      margin-left: 126px;
      border: 1px solid #F2B666;
      overflow: hidden;
      border-radius: 8px;
      background: #ebc896;
      color: #2C1F1A;
      padding: 12px 36px;
      transform: translateY(-20px);
    }
    .btn-buy:hover { background: #F6E2C7;}
    .product-card:hover .btn-buy{
      opacity: 1;
      transform: translateY(-40px);
      transition-delay: 0.1s;
    }

    /* ── SHOP BY CATEGORY ── */
    .shop-category {
      padding: 0px 0px;
      padding-top: 70px;
      padding-bottom: 100px;
      background: #F2F6FC;
    }

    .category-header {
      display: flex;
      align-items: center;
      text-align: center;
      justify-content: space-between;
      margin-bottom: 65px;
      padding-left: 80px;
      padding-right: 120px;
      gap: 40px;
    }
    .category-desc { font-size: 14px; font-weight: 300; color:#8A7060; line-height: 1.7; max-width: 657px; }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(3, 2fr);
      grid-template-rows: auto auto;
      gap: 0px;
    }
    .category-griddd {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0px;
    }
    .row {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
    }
    .rowone {
      display: flex;
      justify-content: center;
      gap: 16px;
    }

    .cat-card {
      border-radius: 18px;
      padding: 0px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      min-height: 270px;
      max-height: 270px;
      min-width: 416px;
      max-width: 416px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      transition: transform 2s ease;
    }
    .cat-card img {
  transition: transform 4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.cat-card:hover img {
  transform: translateY(-50%) scale(1.08) !important;
}

    .cat-card.beige { background: #e8d9c8;}
    .cat-card.grey { background: #d8d5d0; }
    .cat-card.light { background: #e0dbd5; }
    .cat-card.tan { background: #d4c4b0; margin-right: -100px; }
    .cat-card.silver { background: #cdd0d3; margin-left: -100px; }

    .cat-card img {
      position: absolute;
      right: -4%;
      top: 50%;
      transform: translateY(-50%);
      height: 290px;
      object-fit: contain;
    }
    .card-overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;             /* جای دقیق روی عکس */
  z-index: 2;           /* بالاتر از عکس */

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 16px;
  text-align: left;

  
}

    .cat-label { position: absolute; top: 70px; left: 30px; font-size: 24px; font-weight: 400; color: #2C1F1A; }
    .cat-sub { position: absolute; top: 116px; left: 30px; font-size: 16px; font-weight: 400; color: #8A7060;}

    .explore-btn {
      position: absolute;
      top: 183px;
      left: 30px;
      display: inline-block;
      padding: 10px 32px;
      background: transparent;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      color: #2C1F1A;
      border: 1px solid;
      border-color: #2C1F1A;
      cursor: pointer;
      transition: background 0.25s;
    }
    .explore-btn:hover { background: var(--dark); color: var(--white); }

    .cat-bottom { grid-column: span 1; }


    /* ── OUR PRODUCTS ── */
    .our-products {
      padding-top: 30px;
      padding-left: 80px;
      padding-right: 0px;
      padding-bottom: 23px;
      background: #F2F6FC;
    }

    .filter-tabs {
      display: flex;
      gap: 16px;
      margin-bottom: 44px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .tab {
      width: 142px;
      height: 44px;
      border-radius: 10px;
      font-size: 13px;
      cursor: pointer;
      border: 1px solid transparent;
      transition: all 0.25s;
      background: transparent;
      color: var(--muted);
      font-family: 'DM Sans', sans-serif;
    }
    .tab.active { background: #EAE5E1; color: #2C1F1A;border: 1px solid; width: 142px; height: 44px; }
    .tab:hover:not(.active) { border-color: var(--dark); color: var(--dark); }
    .btn-buyy {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),background 0.5s;
      margin-left: 126px;
      border: 1px solid #E0CCBC;
      overflow: hidden;
      border-radius: 8px;
      background: #D6CDC6;
      color: #2C1F1A;
      padding: 12px 36px;
      transform: translateY(-20px);
    }
    .btn-buyy:hover { background: #EAE5E1;}
    .product-card:hover .btn-buyy{
      opacity: 1;
      transform: translateY(-40px);
      transition-delay: 0.1s;
    }

    /* ── BEAUTY JOURNAL ── */
    .beauty-journal {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.bj-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 735;
  min-height: 300px;
  overflow: hidden;
}

.bj-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Overlay برای متن‌ها --- */
.bj-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* موقعیت دقیق متن‌ها */
.bj-title {
  position: absolute;
  top: 230px;
  right: 224px;
  color: #2C1F1A;
  font-family: serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.bj-desc {
  position: absolute;
  top: 351px;
  right: 71px;
  width: 628px;
  height: 57px;
  text-align: center;
  color: #2C1F1A;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.bj-btn {
  position: absolute;
  top: 500px;
  right: 317px;
  display: inline-block;
  width: 136px;
  height: 44px;
  align-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #F9F1EB;
  background-color: #2C1F1A;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* افکت هاور روی دکمه */
.bj-btn:hover {
  background-color: #684132;
  color: #F9F1EB;
}

/*our community*/

.our-community {
  width: auto;
  height: 707px;
  padding-top: 60px;
  padding-bottom: 70px;
  padding-left: 80px;
  padding-right: 0px;
  background-color: #F9F1EB;
}
.video-scroll .video-card:nth-child(even){
  margin-top: 30;
}

.video-scroll {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
  overflow: hidden;
  align-items: start;
  justify-content: left;
  position: relative;
}

.video-card1 {
  border-radius: 16px;
  padding: 0px;
  width: 264px;
  height: 426px;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.video-card2 {
  border-radius: 16px;
  padding: 0px;
  width: 264px;
  height: 426px;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 30px;
}
.card-overlay-top {
  width: 100%; /* مطابق عرض کارت */
    height: 61px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0));
    /* افکت بلر */
    backdrop-filter: blur(10px); /* مقدار بلر را می‌توانید تنظیم کنید */
    -webkit-backdrop-filter: blur(10px); /* برای سازگاری با سافاری */
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 8px 8px 0 0; /* گوشه‌های بالا گرد */
    display: flex;
    align-items: center;
    padding: 0 12px; /* padding برای دایره و متن */
    box-sizing: border-box;
}

.imgpo {
  position: absolute;
  align-items: center;
  align-content: center;
  top: 195px;
  left: 96px;
}
.user-badge {
  width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: transparent; /* توخالی */
    border: 1px solid transparent; /* برای نگه داشتن فضا */
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 12px;
    left: 20px;
    overflow: hidden;
    box-sizing: border-box;
    /* گرادینت بردر */
    background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), linear-gradient(to right, #F9CE34, #EE2A7B, #6228D7); /* دو گرادینت برای ایجاد حاشیه */
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent; /* این خط را لازم داریم */
}

.user-avatar {
  width: 38px;
  height: 38px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
}

.user-avatar img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  display: block;
}

.play-circle {
   width: 0;
    height: 0;
    border-left: 28px solid transparent; /* نصف عرض */
    border-right: 28px solid transparent; /* نصف عرض */
    border-bottom: 56px solid #fff; /* ارتفاع کامل */
    border-radius: 50%; /* گوشه‌های گرد برای مثلث */
    position: absolute;
    transform: scale(0.6); /* تنظیم ابعاد مثلث */
    background-color: transparent;
    top: 194px;
    right: 94px;
}
.user-name {
    font-size: 14px;
    color: #fff;
    position: absolute;
    top: 23px;
    left: 72px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
}

/* ── FAQ ── */
.faq-section{
  padding:0;display:grid;grid-template-columns:540px 1fr;min-height:604px;
}
.faq-left{
  background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="360"><rect width="300" height="360" fill="%233b1f0e"/></svg>') center/cover;
  display:flex;align-items:center;justify-content:center;padding:0px;
  overflow: hidden;
}
.faq-left img{ width: 100%; height: 100%;}
.faq-label{
  font-family:'Playfair Display',serif;font-size:48px;font-weight:700;
  color:#2C1F1A; text-orientation:mixed;letter-spacing:4px; text-align: center; margin-bottom: 50px;
}
.faq-right{background:#F2F6FC;padding-top: 54px; padding-bottom: 70px; padding-right: 60px; padding-left: 60px;}
.faq-item{
  border-bottom:1px solid #C4BBB7;padding:20px 0;
  cursor:pointer;
}
.faq-item:first-child{padding-top:0;}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  font-size:14px;font-weight:400;color:#2C1F1A;line-height:1.5;
}
.faq-icon{
  width:28px;height:28px;flex-shrink:0;background:transparent;
  display:flex;align-items:center;justify-content:center;
}
.faq-icon svg{width:12px;stroke:#2C1F1A;fill:none;stroke-width:2.5;}
.faq-answer{
  font-size:13px;color:var(--muted);line-height:1.7;margin-top:12px;
  max-height:0;overflow:hidden;transition:max-height 0.4s ease;
}
.faq-item.open .faq-answer{max-height:200px;}

/* ── ABOUT US ── */
.about-section{
  display:grid;grid-template-columns: 62% 38%;width: 100%; overflow: hidden;
}
.about-text{ background: #F9F1EB; align-content: center; align-items: center; display: flex; padding: clamp(40px, 5vw, 80px) 0; flex-direction: column; position: relative; overflow: hidden;}
.about-text .section-title{margin-bottom:8px; text-align: center;}
.about-divider{width:60px;height:3px;background:var(--brown);margin:16px 0 24px;}
.about-text p{font-size:16px;color:#8A7060;line-height:1.4;margin-bottom:36px; text-align: center; padding-left: clamp(30px, 8vw, 119px); padding-right:clamp(30px, 8vw, 119px);}
.about-img{
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  aspect-ratio: 536 / 674;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn-explore{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:14px 28px;
  border:1.5px solid var(--white);
  border-radius:6px;
  color:var(--white);
  background:transparent;
  font-size:14px;
  font-family:'Lato',sans-serif;
  cursor:pointer;
  transition:all 0.3s;
}
.btn-explore:hover{background:#E5DCD7;color:var(--brown-dark);}
.btn-explore svg{width:16px;height:16px;transition:transform 0.3s;}
.btn-explore:hover svg{transform:translateX(4px);}

.about-bg-text {
      position: absolute;
      bottom: -20px;
      left: -10px;
      pointer-events: none;
      opacity: 100%;
      width: 90%;
      left: 40px;
}

 /* ─── Section wrapper (white background page area) ─── */
    .newsletter-section {
      width: 100%;
      background: #F2F6FC;
      padding: 80px 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ─── The dark card with image overlay ─── */
    .newsletter-card {
      position: relative;
      width: 100%;
      max-width: 1096px;
      border-radius: 16px;
      overflow: hidden;
      background-color: #1a0f0d;
      min-height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Background image layer */
    .newsletter-card__bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?w=1200&q=80');
      background-size: cover;
      background-position: center;
      opacity: 0.45;
      transition: opacity 0.6s ease;
    }

    .newsletter-card:hover .newsletter-card__bg {
      opacity: 0.52;
    }

    /* Subtle dark vignette on top of image */
    .newsletter-card__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(80, 40, 35, 0.35) 0%,
        rgba(10, 5, 5, 0.45) 100%
      );
    }
    .backg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0.6;
    }

    /* Content */
    .newsletter-card__content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 52px 48px;
      width: 100%;
      max-width: 720px;
    }

    .newsletter-card__title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 500;
      font-size: 36px;
      color: #F9F1EB;
      letter-spacing: 0.01em;
      line-height: 1.25;
      margin-bottom: 14px;
    }

    .newsletter-card__subtitle {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: clamp(0.85rem, 1.5vw, 0.95rem);
      color: #F9F1EB;
      letter-spacing: 0.03em;
      margin-bottom: 32px;
    }

    /* Email row */
    .newsletter-card__form {
      display: flex;
      align-items: center;
      background: #F9F1EB;
      border-radius: 8px;
      padding: 6px 6px 6px 20px;
      gap: 8px;
      max-width: 600px;
      margin: 0 auto;
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    }

    .newsletter-card__input {
      flex: 1;
      border: none;
      outline: none;
      background: transparent;
      font-family: 'Jost', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: #3d1f1a;
      letter-spacing: 0.02em;
    }

    .newsletter-card__input::placeholder {
      color: #b08c84;
    }

    .newsletter-card__btn {
      background: #B8928E;
      color: #F9F1EB;
      border: none;
      border-radius: 6px;
      padding: 12px 36px;
      font-family: 'Jost', sans-serif;
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.25s ease, transform 0.15s ease;
    }

    .newsletter-card__btn:hover {
      background: #6e4540;
    }

    .newsletter-card__btn:active {
      transform: translateY(0);
    }

    /* ── FOOTER ── */
    footer {
      background-color: #3d3d3d;
      color: #ffffff;
      width: 100%;
      padding: 60px 80px 40px;
      text-align: center;
    }

    /* Logo */
    .footer__logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: #ffffff;
      margin-bottom: 40px;
      display: block;
    }

    /* Top nav with divider lines */
    .footer__top {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.3);
      padding: 20px 0;
      margin-bottom: 48px;
    }

    .footer__top a {
      font-family: 'Jost', sans-serif;
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .footer__top a:hover {
      color: #ffffff;
    }

    /* Secondary nav */
    .footer__main {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px 48px;
      margin-bottom: 48px;
    }

    .footer__main a {
      font-family: 'Jost', sans-serif;
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .footer__main a:hover {
      color: #ffffff;
    }

    /* Social icons */
    .footer__socials {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      margin-bottom: 48px;
    }

    .footer__socials a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      opacity: 0.85;
      transition: opacity 0.2s, transform 0.2s;
    }

    .footer__socials a:hover {
      opacity: 1;
      transform: translateY(-2px);
    }

    .footer__socials img {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }

    /* Bottom legal */
    .footer__legal {
      font-family: 'Jost', sans-serif;
      font-size: 0.78rem;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.03em;
      line-height: 1.8;
    }

    .footer__legal a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer__legal a:hover {
      color: rgba(255,255,255,0.9);
    }

    .mo30 {
      font-size: 22px;
      font-weight: 400;
      color: #F9F1EB;
      font-style: italic;
      font-family: serif;
      letter-spacing: 2px;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .hero { grid-template-columns: 1fr; }
      .hero-image { height: 280px; }
      .hero-text { padding: 40px 24px; }
      .hero-text h1 { font-size: 48px; }
      .brands-bar { padding: 16px 24px; flex-wrap: wrap; gap: 16px; }
      .most-popular, .shop-category, .features, .our-products { padding: 40px 24px; }
      .products-scroll { grid-template-columns: repeat(2, 1fr); }
      .category-grid { grid-template-columns: repeat(2, 1fr); }
      .features { grid-template-columns: 1fr; }
      .beauty-journal { grid-template-columns: 1fr; }
      .journal-text { padding: 40px 24px; }
      .faq-section{grid-template-columns:1fr;}
      .faq-left{display:none;}
      .faq-right{padding:40px 24px;}

      .newsletter-card__content {
        padding: 40px 24px;
      }

      .newsletter-card__form {
        flex-direction: column;
        padding: 12px 16px;
        gap: 12px;
        border-radius: 10px;
      }

      .newsletter-card__input {
        width: 100%;
        text-align: center;
      }

      .newsletter-card__btn {
        width: 100%;
        padding: 13px;
      }

      footer {
        padding: 48px 24px 32px;
      }

      .footer__top {
        gap: 28px;
      }

      .footer__main {
        gap: 10px 28px;
      }

      .footer__socials {
        gap: 24px;
      }
    }

    /* =========================================================
   MOBILE RESPONSIVE — LUXURA
   Add THIS at the END of your CSS
========================================================= */

@media (max-width: 768px) {

  /* ───────── GLOBAL ───────── */

  body {
    overflow-x: hidden;
  }

  section {
    overflow: hidden;
  }

  .section-title {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: 0;
  }

  h1 {
    font-size: 52px !important;
    line-height: 0.95 !important;
  }

  h2 {
    font-size: 34px !important;
  }

  h3 {
    font-size: 26px !important;
  }

  h4 {
    font-size: 20px !important;
  }

  p {
    font-size: 14px !important;
    line-height: 1.8 !important;
  }

  /* ───────── NAVBAR ───────── */

  nav {
    padding: 16px 18px;
  }

  .nav-left {
    gap: 12px;
    font-size: 13px;
  }

  .nav-logo {
    font-size: 18px;
  }

  .nav-right {
    gap: 14px;
  }

  .nav-right svg {
    width: 18px;
    height: 18px;
  }

  /* ───────── HERO ───────── */

  .hero {
    display: flex;
    flex-direction: column-reverse;
    min-height: auto;
  }

  .hero-image {
    height: 62vh;
    min-height: 420px;
  }

  .hero-image img {
    object-position: center top;
    transform: translateY(100px);
  }

  .hero-text {
    padding: 44px 22px 60px;
  }

  .hero-text .tagline {
    font-size: 22px;
    margin-bottom: 18px;
    max-width: 300px;
  }

  .hero-text p {
    max-width: 100%;
    margin-bottom: 34px;
  }

  .hero-btns {
    width: 100%;
    flex-direction: column;
    gap: 14px;
  }

  .btn-fill,
  .btn-outline {
    width: 100%;
    justify-content: center;
    border-radius: 10px;
  }

  /* stats */

  .hero-stats {
    width: 100%;
    padding-left: 0;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
  }
  .avatars{
    margin-right: 0px;
  }

  .stat-item .num {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .stat-item .label {
    font-size: 10px;
  }

  /* review */

  .hero-review {
    margin-top: 34px;
    flex-direction: column;
    gap: 14px;
  }

  .review-text {
    text-align: center;
  }

  /* ───────── BRANDS ───────── */

  .brands-bar {
    padding: 18px 14px;
    gap: 18px;
    overflow-x: auto;
    justify-content: center;
  }

  .brands-bar::-webkit-scrollbar {
    display: none;
  }

  .brand-name {
    flex-shrink: 0;
    font-size: 14px;
  }

  /* ───────── SECTION HEADERS ───────── */

  .section-header {
    padding-right: 0;
    margin-bottom: 26px;
  }

  .nav-arrows {
    display: none;
  }

  /* ───────── MOST POPULAR ───────── */

  .most-popular {
    padding: 60px 18px 30px;
  }

  .products-scroll {
    display: flex;
    overflow-x: auto;
    gap: 26px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .products-scroll::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    min-width: 72%;
    max-width: 72%;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .products-scroll .product-card:nth-child(even) {
    margin-top: 0;
  }

  .product-img {
    width: 90% !important;
    height: 260px !important;
  }

  .product-name {
    font-size: 20px;
  }

  .product-price {
    font-size: 22px;
  }

  .btn-buy,
  .btn-buyy {
    opacity: 1;
    transform: translateY(0);
    margin-left: 0;
    margin-top: 18px;
    width: 90%;
  }

  /* ───────── SHOP CATEGORY ───────── */

  .shop-category {
    padding: 60px 18px;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin-bottom: 40px;
    gap: 18px;
  }

  .category-desc {
    max-width: 100%;
  }

  .category-griddd {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .category-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 18px;
  }

  .row,
  .rowone {
    margin: 0;
  }

  .cat-card {
    min-width: 100%;
    max-width: 100%;
    height: 220px;
    min-height: 220px;
  }

  .cat-card.tan,
  .cat-card.silver {
    margin: 0;
  }

  .cat-label {
    top: 34px;
    left: 24px;
    font-size: 22px;
  }

  .cat-sub {
    top: 72px;
    left: 24px;
    font-size: 14px;
  }

  .explore-btn {
    top: 132px;
    left: 24px;
  }

  /* ───────── OUR PRODUCTS ───────── */

  .our-products {
    padding: 20px 18px 50px;
  }

  .filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    flex-shrink: 0;
    width: auto;
    padding: 0 20px;
  }

  /* ───────── BEAUTY JOURNAL ───────── */

  .bj-card {
    aspect-ratio: auto;
    height: 560px;
  }

  .bj-image {
    object-position: left;
  }

  .bj-overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.15)
    );
  }

  .bj-title {
    top: 100px;
    left: 24px;
    right: 24px;
    color: white;
    font-size: 36px;
    text-align: center;
  }

  .bj-desc {
    top: 190px;
    left: 24px;
    right: 24px;
    width: auto;
    color: white;
    font-size: 14px;
  }

  .bj-btn {
    top: auto;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }

  /* ───────── COMMUNITY ───────── */

  .our-community {
    padding: 60px 18px;
    height: auto;
  }

  .video-scroll {
    display: flex;
    overflow-x: auto;
    gap: 18px;
  }

  .video-scroll::-webkit-scrollbar {
    display: none;
  }

  .video-card1,
  .video-card2 {
    width: 240px;
    height: 390px;
    flex-shrink: 0;
    margin-top: 0 !important;
  }

  .imgpo {
    left: 84px;
    top: 170px;
  }

  /* ───────── FAQ ───────── */

  .faq-section {
    display: flex;
    flex-direction: column;
  }

  .faq-left {
    display: none;
  }

  .faq-right {
    padding: 60px 18px;
  }

  .faq-label {
    font-size: 38px;
  }

  /* ───────── ABOUT ───────── */

  .about-section {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-img {
    aspect-ratio: 1 / 1.1;
  }

  .about-text {
    padding: 60px 22px;
  }

  .about-text p {
    padding: 0;
  }

  .about-bg-text {
    width: 120%;
    left: -20px;
    bottom: -30px;
    opacity: 0.2;
  }

  /* ───────── NEWSLETTER ───────── */

  .newsletter-section {
    padding: 60px 18px;
  }

  .newsletter-card {
    border-radius: 18px;
  }

  .newsletter-card__content {
    padding: 42px 20px;
  }

  .newsletter-card__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .newsletter-card__form {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }

  .newsletter-card__btn {
    width: 100%;
  }

  /* ───────── FOOTER ───────── */

  footer {
    padding: 60px 20px 40px;
  }

  .footer__logo {
    font-size: 2.2rem;
  }

  .footer__top {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer__main {
    gap: 18px;
  }

  .footer__socials {
    gap: 18px;
  }

  .footer__socials img {
    width: 28px;
    height: 28px;
  }

  .footer__legal {
    line-height: 2;
  }

  .mo30 {
    font-size: 18px;
  }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 480px) {

  h1 {
    font-size: 44px !important;
  }

  .hero-image {
    height: 52vh;
    min-height: 360px;
  }

  .product-card {
    min-width: 84%;
    max-width: 84%;
  }

  .product-img {
    height: 240px !important;
  }

  .section-title {
    font-size: 30px;
  }

  .newsletter-card__title {
    font-size: 26px;
  }

  .faq-label {
    font-size: 32px;
  }

}