 /* Navbar */
 .login-captcha {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .navbar {
   display: flex;
   align-items: center;
   /* background: rgba(255, 255, 255, 0.1) !important; */
   /* backdrop-filter: blur(10px); */
 }

 .header_logo {
   width: 100px;
 }

 .navbar .nav-link {
   font-size: 18px;
   color: black !important;
   font-weight: 500;
 }

 .search_div {
   padding: 8px 8px;
   display: flex;
   align-items: center;
   gap: 4px;
   border-radius: 26px;
   background: #FDFDFD;
 }

 .search_div input {
   border: none;
   outline: none;
   background: transparent;
 }

 .search_div .search_img {
   width: 25px;
   height: 25px;
 }

 /* Overlay */
 .overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.8);
   display: none;
   z-index: 999;
 }

 /* Search Result Dropdown */
 .search-results {
   position: absolute;
   top: 80px;
   right: 230px;
   background: #fff;
   border-radius: 10px;
   padding: 10px;
   width: 280px;
   display: none;
   z-index: 999;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
 }

 .search-item {
   padding: 4px;
   border-bottom: 1px solid #eee;
   cursor: pointer;
   display: flex;
   gap: 6px;
   align-items: center;
 }

 .search-item .search-img {
   background: linear-gradient(to bottom, #EFEFEF, #FFFFFF);
   width: 26px;
   padding: 2px;
   border-radius: 4px;
 }

 .search-item p {
   margin-bottom: 0;
 }

 .search-item:last-child {
   border-bottom: none;
 }

 .search-item:hover {
   background: #f5f5f5;
 }

 .navbar-nav {
   display: flex;
   gap: 10px;
   align-items: center;
 }

 .bag-div {
   position: relative;
    padding: 0px 15px;
 }

 .bag-div .number {
   width: 20px;
   height: 20px;
   background: #AE0A09;
   border: 2px solid #FFFFFF;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   border-radius: 50%;
   font-size: 12px;
   position: absolute;
   top: 8px;
   right: 5px;
 }

 .login {
   text-decoration: none;
   color: #fff;
   font-size: 20px;
   font-weight: bold;
   background: #AE0A09;
   padding: 8px 30px;
   border-radius: 6px;
 }

 .login:hover {
   color: #fff;
 }

 /* Hero Section */
 .hero-section {
   height: 55vh;
   background: url('../img/hero_bg.jpg');
   background-repeat: no-repeat;
   background-size: cover;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   color: #fff;
 }

 .hero-section::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.4);
   /* black overlay */
 }

 .hero-content {
   position: relative;
   z-index: 2;
 }

 .hero-content h1 {
   font-size: 54px;
   font-weight: bold;
   margin-top: 50px;
 }

 @media (max-width: 768px) {
   .hero-content h1 {
     font-size: 2rem;
   }

   .hero-content p {
     font-size: 1rem;
   }
 }

 /* Overlay */
 .cart-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.3s ease-in-out;
   z-index: 1049;
 }

 .cart-overlay.active {
   opacity: 1;
   visibility: visible;
 }

 /* Cart Sidebar */
 .cart-sidebar {
   position: fixed;
   top: 0;
   right: -100%;
   width: 400px;
   height: 100%;
   background: #fff;
   box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
   transition: right 0.4s ease-in-out;
   z-index: 1050;
   display: flex;
   flex-direction: column;
 }

 .cart-sidebar.active {
   right: 0;
 }

 .cart-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 15px;
 }

 .cart-header h4 {
   font-size: 26px;
   color: #482817;
   font-weight: 600;
 }

 .cart-body {
   flex: 1;
   overflow-y: auto;
   padding: 15px;
 }

 .cart-item {
   display: flex;
   gap: 10px;
   margin-top: 15px;
   padding-bottom: 10px;
   border-bottom: 1.5px solid #E6E6E6;
 }

 .cart-item-img {
   background-color: #f9f8f8;
   padding: 6px 20px;
   border-radius: 6px;
 }

 .cart-item img {
   width: 60px;
   height: auto;
 }

 .checkout-flex {
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .checkout-flex img {
   width: 25px;
   cursor: pointer;
 }

 .cart-footer {
   padding: 15px;
   border-top: 1px solid #ddd;
 }

 .price-flex {
   display: flex;
   justify-content: space-between;
   padding: 0 6px;
 }

 .price-flex p,
 .price-flex span {
   font-size: 20px;
   font-weight: 600;
   color: #482817;
 }

 .cart-footer .checkout-btn {
   width: 100%;
   padding: 6px;
   font-size: 20px;
   background: #a00;
   color: #fff;
   font-weight: 600;
   border: none;
   margin-bottom: 15px;
   border-radius: 30px;
 }

 .cart-footer .viewcart-btn {
   width: 100%;
   padding: 6px;
   font-size: 20px;
   color: #AE0A09;
   font-weight: 600;
   background: #AE0A091A;
   border: none;
   border-radius: 30px;
 }

 @media(max-width: 768px) {
   .cart-sidebar {
     width: 100%;
   }
 }


 .login-section {
   width: 100%;
   background: #FFFBF4;
   padding: 40px 0;
 }

 .login-card {
   max-width: 400px;
   margin: auto;
   padding: 30px;
   background: #fff;
   border-radius: 12px;
   box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
 }

 .login-card h3 {
   text-align: center;
   margin-bottom: 25px;
   font-weight: bold;
   color: #482817;
 }

 .btn-login {
   width: 100%;
   display: block;
   text-align: center;
   background-color: #b22222;
   color: #fff;
   font-weight: bold;
   font-size: 20px;
   border-radius: 25px;
   padding: 6px;
   transition: 0.3s;
   width: 100%;
   border: none;
   text-decoration: none;
 }

 .btn-login:hover {
   background-color: #961c1c;
   color: #fff;
 }

 .form-check-label {
   font-size: 14px;
 }

 .forgot-link {
   font-size: 14px;
   text-decoration: none;
   color: #b22222;
 }

 .forgot-link:hover {
   text-decoration: underline;
 }

 .register-text {
   font-size: 14px;
   text-align: center;
   margin-top: 15px;
 }

 .register-text a {
   color: #b22222;
   font-weight: bold;
   text-decoration: none;
 }

 .register-text a:hover {
   text-decoration: underline;
 }

 .captcha-img {
   background: #f1f1f1;
   padding: 5px 10px;
   border-radius: 5px;
   text-align: center;
   font-weight: bold;
   color: #333;
 }

 @media (max-width:468px) {
   .hero-section {
     height: 40vh;
   }

   .login-captcha {
     flex-direction: column;
     gap: 20px;
   }
 }