   .furniture-section { padding: 60px 0; }
    .furniture-container { max-width: 100%; padding-left: 30px; padding-right: 30px; margin: 0 auto; }
    .furniture-heading {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      color: #222;
      margin-bottom: 20px;
    }
    .furniture-heading::after {
      content: "";
      display: block;
      width: 70px;
      height: 4px;
      background-color: #a60000;
      margin: 10px auto 0;
      border-radius: 2px;
    }
    .furniture-grid {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 25px;
      margin-top: 40px;
    }
    .furniture-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      width: 320px;
      padding: 20px;
      text-align: center;
      transition: all 0.3s ease;
      text-decoration: none;
      color: inherit;
    }
    .furniture-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    .furniture-image { max-width: 100%; height: 250px; object-fit: contain; }
    .furniture-title { font-size: 1.1rem; font-weight: 600; color: #333; margin-top: 20px; margin-bottom: 15px; }
    .furniture-price { font-weight: 700; color: #a60000; font-size: 1.1rem; }
    .furniture-oldprice { text-decoration: line-through; color: #999; font-size: 1rem; margin-left: 10px; }
    .furniture-price-box { margin-top: 5px; }
    @media (max-width: 768px) { .furniture-container { padding-left: 15px; padding-right: 15px; } }


     .btn:hover {
    background-color: rgb(180, 15, 65) !important;
    color: #fff;
  }

    .subscribe-card {
      background: #f8ede3;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
    }
    .subscribe-card::before,
    .subscribe-card::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(210, 180, 140, 0.2);
      z-index: 0;
    }
    .subscribe-card::before {
      width: 200px;
      height: 200px;
      bottom: -60px;
      left: -60px;
    }
    .subscribe-card::after {
      width: 250px;
      height: 250px;
      top: -80px;
      right: -80px;
    }
    .subscribe-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 60px 20px;
    }
    .subscribe-content h2 {
      font-weight: 700;
      color: #5a2d0c;
    }
    .subscribe-content p {
      color: #704b2b;
      margin-bottom: 30px;
    }
    .subscribe-input {
      border-radius: 50px;
      border: 1px solid #d1bfa7;
      padding: 12px 20px;
    }
    .subscribe-btn {
      border-radius: 50px;
      background-color: #a0461b;
      color: #fff;
      border: none;
      padding: 12px 30px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .subscribe-btn:hover {
      background-color: #863910;
    }


    /* nsv */
          
/* Navbar Styling */

 body {
        font-family: "Poppins", sans-serif;
        /* background-color: #f8fcff; */
      }


      
        /* Navbar base */
    .navbar {
      background-color: #fff;
    }

       .navbar-brand {
      font-weight: 700;
      color: #e63946 !important;
      font-size: 1.4rem;
    }
    .nav-link {
      font-weight: 600;
      color: #333 !important;
    }
    .nav-link:hover {
      color: #e63946 !important;
    }

    /* Dropdown arrow */
    .dropdown-toggle::after {
      content: "";
      border-top: 0.4em solid #e63946;
      border-right: 0.4em solid transparent;
      border-left: 0.4em solid transparent;
      margin-left: 6px;
      vertical-align: middle;
    }

    /* Dropdown menu base */
    .dropdown-menu {
      border: none;
      border-radius: 8px;
      box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
      display: none;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      position: absolute;
    }

    /* Show dropdown on hover (desktop) */
    @media (min-width: 992px) {
      .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
      }
    }

    .dropdown-item {
      font-weight: 500;
      transition: 0.3s;
    }
    .dropdown-item:hover {
      background-color: #e63946;
      color: #fff;
    }

    /* Mobile view fixes */
    @media (max-width: 991px) {
      .dropdown-menu {
        position: static;
        float: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
      }
      .dropdown-menu.show {
        display: block !important;
      }
    }

     .quantity-number {
        font-weight: 600;
        font-size: 1.2rem;
      }
      .quantity-box {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
      }
      .quantity-btn {
        color: #333;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 6px;
        font-weight: 700;
      }
      