  :root {
      --brown: #846937;
      --brown-light: #a08448;
      --brown-dark: #5e4a26;
      --beige: #FBEFDF;
      --beige-dark: #f0dfc4;
      --green: #3A6E42;
      --green-light: #4d8c57;
      --green-dark: #2a5030;
      --white: #fff;
      --text-dark: #1a1208;
      --text-mid: #4a3a1e;
      --shadow: 0 8px 32px rgba(132, 105, 55, 0.13);
      --shadow-lg: 0 16px 48px rgba(132, 105, 55, 0.18);
      --radius: 18px;
      --radius-sm: 10px;
  }

  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Tajawal', sans-serif;
      background: var(--beige);
      color: var(--text-dark);
      overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      z-index: 100;
      background: rgba(251, 239, 223, 0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1.5px solid rgba(132, 105, 55, 0.13);
      padding: 0 5vw;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      animation: slideDown .7s ease;
  }

  @keyframes slideDown {
      from {
          transform: translateY(-100%);
          opacity: 0;
      }

      to {
          transform: translateY(0);
          opacity: 1;
      }
  }

  .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--brown);
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      z-index: 101;
  }

  .nav-logo span {
      color: var(--green);
  }

  .logo-img {
      width: 35px;
      height: auto;
      object-fit: contain;
  }

  .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
  }

  .nav-links a {
      text-decoration: none;
      font-size: .97rem;
      font-weight: 500;
      color: var(--text-mid);
      transition: color .25s;
      position: relative;
  }

  .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      right: 0;
      left: 0;
      height: 2px;
      background: var(--brown);
      transform: scaleX(0);
      transition: transform .3s;
      transform-origin: right;
  }

  .nav-links a:hover {
      color: var(--brown);
  }

  .nav-links a:hover::after {
      transform: scaleX(1);
  }

  .nav-cta {
      background: var(--brown);
      color: var(--white) !important;
      padding: 9px 22px;
      border-radius: 50px;
      font-weight: 700 !important;
      transition: background .25s, transform .2s !important;
  }

  .nav-cta::after {
      display: none !important;
  }

  .nav-cta:hover {
      background: var(--brown-dark) !important;
      transform: translateY(-2px);
  }

  /* ─── HAMBURGER ─── */
  .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 42px;
      height: 42px;
      background: none;
      border: none;
      cursor: pointer;
      gap: 5px;
      z-index: 101;
      border-radius: 10px;
      transition: background .2s;
  }

  .hamburger:hover {
      background: rgba(132, 105, 55, 0.1);
  }

  .hamburger span {
      display: block;
      width: 24px;
      height: 2.5px;
      background: var(--brown);
      border-radius: 4px;
      transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .25s, width .3s;
      transform-origin: center;
  }

  .hamburger span:nth-child(1) {
      width: 12px;
      right: 7px;
      position: relative;
  }

  .hamburger span:nth-child(3) {
      width: 12px;
      left: 7px;
      position: relative;

  }

  .hamburger.open span:nth-child(1) {
      width: 20px;
      left: 0;
      right: 0;
      transform: translateY(7.5px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {

      opacity: 0;
      width: 0;
  }

  .hamburger.open span:nth-child(3) {
      width: 20px;
      left: 0;
      right: 0;
      transform: translateY(-7.5px) rotate(-45deg);
  }

  /* ─── MOBILE DRAWER ─── */
  @media (max-width: 900px) {
      .hamburger {
          display: flex;
      }

      .nav-links {
          position: fixed;
          top: 0;
          right: 0;
          left: 0;
          bottom: 0;
          background: rgba(251, 239, 223, 0.98);
          backdrop-filter: blur(20px);
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 0;
          padding: 80px 0 40px;
          transform: translateX(100%);
          transition: transform .4s cubic-bezier(.4, 0, .2, 1);
          z-index: 99;
          height: 500px;
      }

      .nav-links.open {
          transform: translateX(0);
      }

      .nav-links li {
          width: 100%;
          text-align: center;
          border-bottom: 1px solid rgba(132, 105, 55, 0.08);
      }

      .nav-links li:last-child {
          border-bottom: none;
          margin-top: 24px;
      }

      .nav-links a {
          display: block;
          padding: 18px 40px;
          font-size: 1.2rem;
          font-weight: 600;
          color: var(--text-dark);
      }

      .nav-links a::after {
          display: none;
      }

      .nav-links a:hover {
          color: var(--brown);
          background: rgba(132, 105, 55, 0.06);
      }

      .nav-cta {
          display: inline-block !important;
          margin-top: 8px;
          padding: 14px 40px !important;
          font-size: 1.1rem !important;
          border-radius: 50px;
      }

      /* stagger animation for links */
      .nav-links.open li:nth-child(1) {
          animation: slideInLink .35s .05s both;
      }

      .nav-links.open li:nth-child(2) {
          animation: slideInLink .35s .12s both;
      }

      .nav-links.open li:nth-child(3) {
          animation: slideInLink .35s .19s both;
      }

      .nav-links.open li:nth-child(4) {
          animation: slideInLink .35s .26s both;
      }
  }

  @keyframes slideInLink {
      from {
          opacity: 0;
          transform: translateY(16px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* ─── HERO ─── */
  .hero {
      min-height: 100vh;
      padding: 120px 5vw 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
      position: relative;
      overflow: hidden;
  }

  .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: radial-gradient(ellipse 70% 80% at 80% 40%, rgba(58, 110, 66, 0.08) 0%, transparent 70%),
          radial-gradient(ellipse 60% 60% at 10% 80%, rgba(132, 105, 55, 0.10) 0%, transparent 60%);
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green);
      color: var(--white);
      font-size: .82rem;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 22px;
      animation: fadeUp .8s .2s both;
      letter-spacing: .5px;
  }

  .hero-badge::before {
      content: '✦';
      font-size: .75rem;
  }

  .hero-content {
      position: relative;
      z-index: 1;
  }

  .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--text-dark);
      margin-bottom: 22px;
      animation: fadeUp .8s .35s both;
  }

  .hero-title .accent {
      color: var(--brown);
  }

  .hero-title .accent-green {
      color: var(--green);
  }

  .hero-sub {
      font-size: 1.1rem;
      color: var(--text-mid);
      font-weight: 400;
      line-height: 1.7;
      max-width: 440px;
      margin-bottom: 38px;
      animation: fadeUp .8s .5s both;
  }

  .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeUp .8s .65s both;
  }

  .btn-primary {
      background: var(--brown);
      color: var(--white);
      padding: 15px 36px;
      border-radius: 50px;
      font-family: 'Tajawal', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: background .25s, transform .2s, box-shadow .25s;
      box-shadow: 0 4px 18px rgba(132, 105, 55, 0.30);
      text-decoration: none;
      display: inline-block;
  }

  .btn-primary:hover {
      background: var(--brown-dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(132, 105, 55, 0.40);
  }

  .btn-outline {
      background: transparent;
      color: var(--green);
      padding: 14px 36px;
      border-radius: 50px;
      font-family: 'Tajawal', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      border: 2px solid var(--green);
      cursor: pointer;
      transition: background .25s, color .25s, transform .2s;
      text-decoration: none;
      display: inline-block;
  }

  .btn-outline:hover {
      background: var(--green);
      color: var(--white);
      transform: translateY(-3px);
  }

  .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 44px;
      animation: fadeUp .8s .8s both;
  }

  .stat-item {
      text-align: center;
  }

  .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--brown);
  }

  .stat-label {
      font-size: .8rem;
      color: var(--text-mid);
      font-weight: 500;
  }

  /* Hero image side */
  .hero-visual {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: fadeUp .9s .3s both;
  }

  .hero-img-wrap {
      width: 420px;
      height: 520px;
      border-radius: 200px 200px 160px 160px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      position: relative;
      background: linear-gradient(160deg, #d4b896 0%, #9e7c50 100%);
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .hero-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.85);
      font-size: 6rem;
      position: relative;
  }


  .hero-img-placeholder::after {
      content: 'JEANS 2025';
      position: absolute;
      bottom: 40px;
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 800;
      letter-spacing: 3px;
      color: rgba(255, 255, 255, 0.9);
  }

  .hero-img-placeholder img {
      width: 100%;
      border-radius: 50%;
      top: -5px;
      position: absolute;
      object-fit: contain;
  }

  .hero-float-tag {
      position: absolute;
      background: var(--white);
      border-radius: 14px;
      padding: 10px 18px;
      box-shadow: var(--shadow);
      font-weight: 700;
      font-size: .85rem;
      color: var(--text-dark);
      animation: float 3s ease-in-out infinite;
  }

  .hero-float-tag.tag1 {
      top: 60px;
      left: -20px;
      animation-delay: 0s;
  }

  .hero-float-tag.tag2 {
      bottom: 80px;
      left: -30px;
      animation-delay: 1s;
  }

  .hero-float-tag .tag-green {
      color: var(--green);
      font-size: 1rem;
  }

  .hero-float-tag .tag-brown {
      color: var(--brown);
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-10px);
      }
  }

  /* ─── SECTION COMMON ─── */
  section {
      padding: 90px 5vw;
  }

  .section-tag {
      display: inline-block;
      background: rgba(132, 105, 55, 0.12);
      color: var(--brown);
      font-size: .8rem;
      font-weight: 700;
      padding: 5px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
      letter-spacing: .5px;
      text-transform: uppercase;
  }

  .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 12px;
      line-height: 1.2;
  }

  .section-sub {
      color: var(--text-mid);
      font-size: 1rem;
      font-weight: 400;
      max-width: 500px;
      line-height: 1.6;
      margin-bottom: 50px;
  }

  .section-header {
      margin-bottom: 0;
  }

  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(28px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }


  /* ─── PRODUCTS ─── */
  .products {
      background: var(--white);
  }

  .products-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 50px;
  }

  .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 28px;
  }

  .product-card {
      background: var(--beige);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform .3s, box-shadow .3s;
      cursor: pointer;
      position: relative;
  }

  .product-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
  }

  .product-img {
      width: 100%;
      height: 260px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      position: relative;
      overflow: hidden;
  }

  .product-img img {
      width: 100%;
      object-fit: contain;
  }

  .product-img.color1 {
      background: linear-gradient(145deg, #c2a87a, #8c6840);
  }

  .product-img.color2 {
      background: linear-gradient(145deg, #6b8f73, #3a6e42);
  }

  .product-img.color3 {
      background: linear-gradient(145deg, #b0936e, #7a5a35);
  }

  .product-img.color4 {
      background: linear-gradient(145deg, #4a7a52, #2a5030);
  }

  .product-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      background: var(--brown);
      color: var(--white);
      font-size: .72rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 50px;
  }

  .product-badge.new {
      background: var(--green);
  }

  .product-info {
      padding: 18px 20px 20px;
  }

  .product-name {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 4px;
      color: var(--text-dark);
  }

  .product-type {
      font-size: .82rem;
      color: var(--text-mid);
      margin-bottom: 12px;
  }

  .product-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .product-price {
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--brown);
  }

  .product-price .old {
      font-size: .8rem;
      color: #aaa;
      text-decoration: line-through;
      font-weight: 400;
      margin-right: 6px;
  }

  .add-btn {
      background: var(--green);
      color: var(--white);
      border: none;
      border-radius: 50px;
      padding: 8px 18px;
      font-family: 'Tajawal', sans-serif;
      font-size: .85rem;
      font-weight: 700;
      cursor: pointer;
      transition: background .25s, transform .2s;
  }

  .add-btn:hover {
      background: var(--green-dark);
      transform: scale(1.05);
  }

  /* ─── OFFERS ─── */
  .offers {
      background: var(--green-dark);
      position: relative;
      overflow: hidden;
  }

  .offers-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(58, 110, 66, 0.5) 0%, transparent 70%),
          radial-gradient(ellipse 40% 80% at 10% 30%, rgba(132, 105, 55, 0.3) 0%, transparent 60%);
  }

  .offers .section-tag {
      background: rgba(251, 239, 223, 0.15);
      color: var(--beige);
  }

  .offers .section-title {
      color: var(--white);
  }

  .offers .section-sub {
      color: rgba(251, 239, 223, 0.75);
  }

  .offers-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      position: relative;
      z-index: 1;
  }

  .offer-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1.5px solid rgba(255, 255, 255, 0.13);
      border-radius: var(--radius);
      padding: 34px 30px;
      backdrop-filter: blur(8px);
      transition: background .3s, transform .3s;
      position: relative;
      overflow: hidden;
  }

  .offer-card:hover {
      background: rgba(255, 255, 255, 0.14);
      transform: translateY(-5px);
  }

  .offer-card::before {
      content: '';
      position: absolute;
      top: -30px;
      left: -30px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(132, 105, 55, 0.15);
  }

  .offer-discount {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 800;
      color: var(--beige);
      line-height: 1;
      margin-bottom: 8px;
  }

  .offer-discount span {
      font-size: 1.8rem;
      vertical-align: top;
      margin-top: 8px;
      display: inline-block;
  }

  .offer-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
  }

  .offer-desc {
      font-size: .88rem;
      color: rgba(251, 239, 223, 0.7);
      line-height: 1.6;
      margin-bottom: 22px;
  }

  .offer-code {
      display: inline-block;
      background: rgba(132, 105, 55, 0.35);
      border: 1px dashed rgba(132, 105, 55, 0.6);
      color: var(--beige);
      padding: 7px 18px;
      border-radius: 8px;
      font-size: .85rem;
      font-weight: 700;
      letter-spacing: 1px;
  }

  .offer-card.big {
      grid-column: span 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
  }

  .offer-card.big .offer-discount {
      font-size: 5rem;
  }

  /* ─── REVIEWS ─── */
  .reviews {
      background: var(--white);
  }

  .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 28px;
  }

  .review-card {
      background: var(--beige);
      border-radius: var(--radius);
      padding: 28px 24px;
      box-shadow: var(--shadow);
      transition: transform .3s;
      position: relative;
  }

  .review-card:hover {
      transform: translateY(-5px);
  }

  .review-card::before {
      content: '"';
      font-family: 'Playfair Display', serif;
      font-size: 5rem;
      color: rgba(132, 105, 55, 0.15);
      position: absolute;
      top: 8px;
      right: 20px;
      line-height: 1;
  }

  .stars {
      color: #f5a623;
      font-size: 1rem;
      margin-bottom: 12px;
      letter-spacing: 2px;
  }

  .review-text {
      font-size: .95rem;
      line-height: 1.7;
      color: var(--text-mid);
      margin-bottom: 20px;
      font-style: italic;
  }

  .reviewer {
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .reviewer-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--white);
      flex-shrink: 0;
  }

  .av1 {
      background: linear-gradient(135deg, var(--brown), var(--brown-dark));
  }

  .av2 {
      background: linear-gradient(135deg, var(--green), var(--green-dark));
  }

  .av3 {
      background: linear-gradient(135deg, #c07a40, #8c4e1c);
  }

  .av4 {
      background: linear-gradient(135deg, var(--green-light), var(--green));
  }

  .av5 {
      background: linear-gradient(135deg, var(--brown-light), var(--brown));
  }

  .av6 {
      background: linear-gradient(135deg, #5a7a60, var(--green-dark));
  }

  .reviewer-name {
      font-weight: 700;
      font-size: .95rem;
  }

  .reviewer-handle {
      font-size: .78rem;
      color: var(--text-mid);
  }

  /* ─── FOOTER ─── */
  footer {
      background: var(--text-dark);
      color: rgba(251, 239, 223, 0.8);
      padding: 60px 5vw 30px;
  }

  .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-brand .nav-logo {
      margin-bottom: 16px;
      font-size: 1.4rem;
  }

  .footer-brand p {
      font-size: .88rem;
      line-height: 1.7;
      color: rgba(251, 239, 223, 0.6);
      max-width: 240px;
  }

  .footer-socials {
      display: flex;
      gap: 12px;
      margin-top: 20px;
  }

  .social-btn {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      cursor: pointer;
      transition: background .25s;
      text-decoration: none;
  }

  .social-btn:hover {
      background: var(--brown);
      transform: scale(1.5);
  }

  .social-btn i {
      color: var(--beige);
      transition: 0.2s all ease-in-out;
  }

  .social-btn:hover i {
      transform: rotate(-360deg);
  }

  .footer-col h4 {
      font-size: .95rem;
      font-weight: 700;
      color: var(--beige);
      margin-bottom: 18px;
  }

  .footer-col ul {
      list-style: none;
  }

  .footer-col ul li {
      margin-bottom: 10px;
  }

  .footer-col ul li a {
      text-decoration: none;
      color: rgba(251, 239, 223, 0.6);
      font-size: .88rem;
      transition: color .25s;
  }

  .footer-col ul li a:hover {
      color: var(--brown-light);
  }

  .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: .82rem;
      color: rgba(251, 239, 223, 0.4);
  }

  .footer-bottom a {
      color: var(--brown-light);
      text-decoration: none;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar {
      width: 6px;
  }

  ::-webkit-scrollbar-track {
      background: var(--beige);
  }

  ::-webkit-scrollbar-thumb {
      background: var(--brown);
      border-radius: 10px;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
      .hero {
          grid-template-columns: 1fr;
          text-align: center;
      }

      .hero-sub,
      .section-sub {
          max-width: 100%;
      }

      .hero-btns {
          justify-content: center;
      }

      .hero-stats {
          justify-content: center;
      }

      .hero-img-wrap {
          width: 200px;
          height: 300px;
      }

      .hero-float-tag {
          padding: 8px;
          font-size: 12px;
      }

      .hero-float-tag.tag2 {
          bottom: 40px;
          left: -10px;
          animation-delay: 1s;
      }

      .hero-float-tag.tag1 {
          top: 30px;
          left: -10px;
          animation-delay: 0s;
      }

      .offers-grid {
          grid-template-columns: 1fr;
      }

      .offer-card.big {
          grid-column: span 1;
          flex-direction: column;
      }

      .footer-top {
          grid-template-columns: 1fr 1fr;
      }
  }

  @media (max-width: 600px) {
      .footer-top {
          grid-template-columns: 1fr;
      }
  }