    body{
      color: #363636;
    background-color: #f6d2de;
    }
    button{
      background-color: #bbcffb;
    }
    /* Navbar height */
    .navbar {
        background-color: #363636;
        height: 120px;
        display: flex;
        align-items: center;
        z-index: 1001;
        position: relative;
    }

    .navbar-brand {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: #F8F8F8 !important;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .navbar-nav .nav-link {
        color: #F8F8F8 !important;
        font-weight: 600;
        font-size: 16px;
        margin: 0 15px;
        position: relative;
    }

    .navbar .nav-link {
        color: #f8f8f8;
        position: relative;
        padding: 10px 20px;
        font-weight: 500;
        text-transform: uppercase;
    }

    .navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: #f9f4f7;
        transition: width 0.3s ease;
    }

    .navbar .nav-link:hover::after {
        width: 100%;
    }

    .navbar-nav .nav-link:hover {
        color: #f9f4f7 !important;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 2px;
    }

   .nav-item.dropdown > .nav-link.dropdown-toggle::after {
    border: none;  /* removes the triangle */
    content: "";   /* ensures ::after exists for underline */
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #f9f4f7;
    transition: width 0.3s ease;
}
.nav-item.dropdown > .nav-link.dropdown-toggle:hover::after {
    width: 100%;
}

    /* Hide the default dropdown arrow for Products */
    /* .nav-item.dropdown>.nav-link.dropdown-toggle::after {
        display: none !important;
    } */

    /* Dropdown menu styles */
    .dropdown-menu {
        background: #fff;
        border-radius: 0;
        border: none;
        padding: 10px 0;
        animation: fadeSlide 0.3s ease;
        z-index: 1002;
    }

    .dropdown-item {
        color: #222;
        padding: 10px 20px;
        font-weight: 500;
    }

    .dropdown-item:hover {
        background: #f9f4f7;
        color: #363636;
    }

    /* Overlay (when dropdown open) */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: none;
    }

    @keyframes fadeSlide {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* Offcanvas sidebar */
.offcanvas {
  width: 300px;
}
.offcanvas .nav-link {
  color: #fff;
  font-weight: 500;
}
.offcanvas .nav-link:hover {
  background: #222;
  color: #d63384;
}
.product-submenu .nav-link:hover {
  background: #333;
  color: #fff;
}
/* Sidebar active link */
.offcanvas .nav-link.active {
  background: #D63384;
  color: #fff !important;
  border-radius: 5px;
}

    /* -------- Footer -------- */
    .footer {
        background: #2c2c2c;
        color: #ccc;
        padding: 60px 0 20px;
    }

    .footer h5 {
        color: #fff;
        margin-bottom: 20px;
        font-family: 'Playfair Display', serif;
    }

    .footer a {
        color: #ccc;
        text-decoration: none;
        display: block;
        margin-bottom: 8px;
        transition: color 0.3s ease;
    }

    .footer a:hover {
        color: #d63384;
    }

    .footer .social-icons a {
        display: inline-block;
        color: #fff;
        font-size: 20px;
        margin-right: 15px;
        transition: color 0.3s ease;
    }

    .footer .social-icons a:hover {
        color: #d63384;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        padding-top: 15px;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
    }
    /* Tablets and below */
@media (max-width: 991px) {
  .navbar {
    height: 100px; /* smaller height */
    padding: 0 15px;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
}

/* Mobile phones */
@media (max-width: 767px) {
  .navbar {
    height: 80px; /* smallest height */
  }
  .navbar-toggler {
    border: none;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
}
/* Medium devices (md: 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .navbar {
    height: 100px; /* your desired height for md devices */
    padding: 0 20px;
  }
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

p, span, a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
