  :root {
    --gold: #c9a24d;
    --beige: #f5f1ea;
    --dark: #222;
    --grey: #666;
    --white: #ffffff;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-family: 'Playfair Display', serif;
  }

  body {
    background: var(--white);
    color: var(--dark);
  }

  /* ===== NAVBAR ===== */
  header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 40px;
    position: relative;
  }

  nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .brand img {
    height: 90px;
  }

  nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    flex-wrap: nowrap;
  }

  nav ul li {
    white-space: nowrap;
  }

  nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    white-space: nowrap;
  }

  nav ul li a:hover {
    color: var(--gold);
  }

  .nav-icons i {
    margin-left: 18px;
    cursor: pointer;
  }

  /* ================= DROPDOWN ================= */

  .dropdown {
    position: relative;
  }

  .dropdown>a {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* BASE DROPDOWN */
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
  }

  /* SHOW ON HOVER */
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* ===== TWO COLUMN GOLD MENU ===== */
  .dropdown-menu.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 22px;
    min-width: 440px;
  }

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

  .dropdown-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .dropdown-column a {
    padding: 6px 0;
    font-size: 14px;
    color: #222;
    text-decoration: none;
  }

  .dropdown-column a:hover {
    color: var(--gold);
  }

  /* MOBILE */
  /* .menu-toggle {
    display: none;
  } */

  /* ================= DESKTOP DEFAULT toggle,arrow,and cross will hindi in desktop view ================= */
  .menu-toggle,
  .menu-close,
  .mobile-arrow {
    display: none;
  }

  /* ====== BANNER SLIDER ======= */

  .banner-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 800;
    overflow: hidden;
  }

  /* IMPORTANT FIX */
  .banner-slider .slides {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .banner-slider .slide {
    position: absolute;
    width: 100%;
    height: 80%;
    /* object-fit: cover; */
    display: none;
  }

  .banner-slider .slide.active {
    display: block;
  }

  /* CONTROLS */
  .slider-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
  }

  .slider-controls button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .slider-controls button:hover {
    background: rgba(0, 0, 0, 0.85);
  }

  /* ===== SECTION ===== */
  section {
    padding: 60px 0;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* ===== PROMISES ===== */
  .promises-section {
    padding: 40px 0;
    text-align: center;
    background: #ffffff;
  }

  .promises-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
  }

  .promises-subtitle {
    font-size: 15px;
    color: #666;
    max-width: 620px;
    margin: 0 auto 50px;
  }

  .scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
    padding-bottom: 10px;
  }

  .scroll-container:active {
    cursor: grabbing;
  }

  .scroll-container::-webkit-scrollbar {
    height: 6px;
  }

  .scroll-track {
    display: flex;
    gap: 28px;
    width: max-content;
    padding: 20px 40px;
  }

  .promise-box {
    min-width: 190px;
    background: #ffffff;
    border-radius: 14px;
    padding: 26px 18px;
    text-align: center;

    opacity: 1 !important;
    filter: none !important;

    border: 1px solid #eee;
    box-shadow:
      0 12px 24px rgba(0, 0, 0, 0.10),
      0 3px 8px rgba(0, 0, 0, 0.06);

    transition: all 0.3s ease;
  }

  .promise-box:hover {
    transform: translateY(-6px);
    box-shadow:
      0 18px 36px rgba(88, 48, 122, 0.18),
      0 6px 12px rgba(0, 0, 0, 0.08);
  }

  .promise-box img {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .promise-box p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
    opacity: 1;
  }

  /* ====== HR ===== */
  .section-divider {
    position: relative;
    width: 100%;
    margin: 20px auto;
    text-align: center;
  }

  .section-divider::before,
  .section-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 49%;
    height: 1px;
    background-color: #c9a24d;
  }

  .section-divider::before {
    left: 0;
  }

  .section-divider::after {
    right: 0;
  }

  /* HR CENTER ICON */
  .divider-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url("../assets/images/hr/diamond.png") center/contain no-repeat;
    background-color: #fff;
    padding: 6px;
  }

  /* ===== BEST COLLECTION ===== */
  .container {
    max-width: 1400px;
  }

  .best-collection-section {
    padding: 80px 0;
  }

  .best-collection-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 50px;
  }

  .best-collection-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
  }

  .best-collection-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
  }

  .best-collection-item img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
  }

  .best-collection-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    text-align: center;
  }

  .best-collection-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }


  /* ===== CATEGORY / BEST SELLER / NEW ARRIVAL ===== */
  .category-section {
    background-color: #f5f1ea;
    padding: 10px 20px;
    width: 100%;
  }

  .category-tittle {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 50px;
  }

  /* ===== DESKTOP GRID ===== */

  .categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .category {
    text-align: center;
  }

  .category img {
    width: 100%;
    /* REMOVE 300px */
    aspect-ratio: 1 / 1;
    /* Perfect square */
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 15px;
  }

  .category-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .category h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 6px;
  }


  .gross-weight {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
  }

  .category span {
    color: #c9a24d;
    font-weight: 600;
  }

  /* ===== Social Media - FOOTER ===== */
  .social-subscribe {
    background: linear-gradient(90deg, #d6b09c, #c99bb3);
    padding: 70px 8%;
  }

  .subscribe-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    color: #ffffff;
  }

  /* LEFT */
  .subscribe-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 10px;
  }

  .subscribe-left p {
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .subscribe-form {
    display: flex;
    max-width: 420px;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
  }

  .subscribe-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    outline: none;
    font-size: 15px;
  }

  .subscribe-form button {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 0 26px;
    cursor: pointer;
    font-weight: 600;
  }

  /* RIGHT */
  .subscribe-right h4 {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .social-icons {
    display: flex;
    gap: 12px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .social-icons a:hover {
    background: #000000;
    color: #ffffff;
  }


  /* ===== PREMIUM FOOTER ===== */
  .main-footer {
    background: #f5f1ea;
    color: #222;
    padding: 60px 20px 20px;
  }

  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }

  .footer-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .footer-box h4 {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .footer-box p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-box .number,
  .footer-box .number a {
    font-family: 'Poppins', sans-serif;
  }

  .footer-box a {
    display: block;
    color: #222;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: 0.3s;
  }

  .footer-box a:hover {
    color: #c9a24d;
  }

  .tagline {
    color: #666;
    font-style: italic;
    margin-bottom: 10px;
  }

  .business-hours {
    margin-top: 10px;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    font-size: 15px;
    color: var(--dark);
  }

  /* ===== FLOATING WHATSAPP BUTTON ===== */
  .floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .floating-whatsapp:hover {
    transform: scale(1.1);
  }

  .floating-whatsapp {
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
      box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }

  /* ********************************************************************************* */

  /* ================================================= */
  /* =============== RESPONSIVE SYSTEM =============== */
  /* ================================================= */

  /* ================= SMALL LAPTOP ================= */
  /* max-width: 1199px */
  @media (max-width: 1199px) {

    .navbar {
      padding: 0 20px;
    }

    .categories {
      grid-template-columns: repeat(3, 1fr);
    }

  }

  /* ================= TABLET ================= */
  /* max-width: 991px */
  @media (max-width: 991px) {

    /* ===== FORCE FIXED HEADER ON MOBILE ===== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 12000;
      background: #fff;
    }

    body {
      padding-top: 80px;
    }

    html,
    body {
      overflow-x: hidden;
    }

    /* NAVBAR */
    .navbar {
      padding: 40px 20px;
    }

    .brand {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .brand img {
      height: 60px;
    }

    .menu-toggle {
      display: block;
      position: absolute;
      right: 20px;
      font-size: 24px;
      cursor: pointer;
      z-index: 11000;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #ffffff;
      transform: translateX(-100%);
      transition: transform 0.35s ease;
      z-index: 10000;
      padding: 70px 20px 20px;
      overflow-y: auto;
    }

    nav.active {
      transform: translateX(0);
    }

    .menu-close {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 24px;
      cursor: pointer;
    }

    .menu-toggle,
    .menu-close,
    .mobile-arrow {
      display: block;
    }

    nav ul {
      display: block;
    }

    nav ul>li {
      border-bottom: 1px solid #eee;
      padding: 15px 0;
    }

    .dropdown-menu {
      display: none !important;
    }

    .dropdown.active>.dropdown-menu {
      display: grid !important;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 15px;
    }

    .dropdown:hover .dropdown-menu {
      display: none;
    }

    .dropdown-header {
      display: flex;
      align-items: center;
      width: 100%;
      cursor: pointer;
    }

    .dropdown-header a {
      flex: 1;
      text-decoration: none;
      color: #222;
      font-size: 16px;
      font-weight: 500;
    }

    /* FORCE ARROW TO RIGHT */
    .mobile-arrow {
      margin-left: auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* BANNER */
    .banner-slider {
      aspect-ratio: 1920 / 900;
    }

    /* HIDE BANNER BUTTONS ON MOBILE & TABLET */
    .slider-controls {
      display: none;
    }

    /* BEST COLLECTION */
    .best-collection-row {
      flex-wrap: wrap;
    }

    /* CATEGORY */
    .categories {
      grid-template-columns: repeat(2, 1fr);
    }

    /* SOCIAL */
    .subscribe-container {
      flex-direction: column;
      text-align: center;
      gap: 40px;
    }

  }

  /* ================= LARGE MOBILE ================= */
  /* max-width: 767px */
  @media (max-width: 767px) {

    .best-collection-section .container {
      padding: 0 16px;
    }

    /* Keep everything in ONE ROW */
    .best-collection-row {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      gap: 15px;
      justify-content: flex-start;
    }

    .best-collection-row::-webkit-scrollbar {
      display: none;
    }

    /* EXACTLY 2 items per row */
    .best-collection-item {
      flex: 0 0 calc((100% - 16px) / 2);
    }

    .best-collection-item img {
      width: 160px;
      height: 160px;
    }

    .best-collection-title {
      font-size: 26px;
    }

    /* CATEGORY SLIDER */
    .category-section .container {
      padding: 0 16px;
    }

    .categories {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      gap: 12px;
      padding: 0 12px;
    }

    .categories::-webkit-scrollbar {
      display: none;
    }

    .category {
      flex: 0 0 calc((100% - 12px) / 2);
    }

    .category img {
      width: 100%;
      height: auto;
    }

    .category h4 {
      font-size: 14px;
    }

    .category-tittle {
      font-size: 26px;
    }

  }

  /* ================= SMALL MOBILE ================= */
  /* max-width: 480px */
  @media (max-width: 480px) {

    .brand img {
      height: 85px;
    }

    .banner-slider {
      aspect-ratio: 1920 / 1100;
    }

    .subscribe-form {
      flex-direction: row;
      border-radius: 30px;
    }

    .subscribe-form input {
      text-align: left;
    }

    .subscribe-form button {
      width: auto;
      padding: 0 20px;
    }

    footer .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }

  }