
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Light Theme (Default) */
:root {
    /*--bg-color: #ffffff;*/
    /*--card-bg: #ffffff;*/
    /*--text-color: #000000;*/
    /*--header-bg: rgba(255, 255, 255, 1);*/
    /*--card-border: #32a87d40;*/
    /*--primary-color: rgba(0, 30, 107, 1);*/
    /*--primary-color-hover:rgb(0, 42, 150);*/
    /*--button-text: #ffffff;*/
    /*--search-bg: #f1f1f1;*/
    /*--category-overlay: rgba(0, 30, 107, .4);;*/
    --red-color:#F13065;
    --red-color-hover:#db1349;
    --border-radius-5:5px;
    --big-btn-padding:10px 30px;
    /*--body-bg-color: #ffffff;*/
    /*--product-icon-bg: rgba(255, 255, 255, 0.7);*/
    /*--category-title-bg:rgba(255, 255, 255, 0.5);*/
    /*--category-title-bg-hover:rgba(255, 255, 255, 0.8);*/
    /*--footer-bg:#eefff2;*/
    /*--footer-social-icon:#000000;*/
    /*--footer-social-icon-bg:rgb(255, 255, 255);*/
    /*--footer-social-icon-hover:#ffffff;*/
    /*--footer-social-icon-bg-hover:#119565;*/
    /* --gradient-bg: linear-gradient(90deg, #ff9d6e 0%, #ff4800 100%);*/
    /* --letter-spacing: 0px;*/
    /* --search-container-bg:#f0f0f0;*/
    /* --search-input-bg:#ffffff;*/
    /* --search-input-border:#32A87D;*/
    /* --search-btn-bg:rgba(255, 235, 153, 1);*/
    /* --search-btn-bg-hover:rgba(255, 197, 51, 1);*/
    /*--product-detail-bg:#ffffff;*/
    /*--product-icon-bg-hover:#ffffff;*/
    /*--cart-detail-bg:#ffffff;*/
    --normal-btn-font: clamp(1rem, 0.8214285714285714rem + 0.35714285714285715vw, 1.25rem);
     --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --header-bg: rgb(0, 0, 0);
   
    --button-text: white;
    --search-bg: #333333;
    --category-overlay: rgba(26, 26, 26, 0.71);;

    --primary-color: #fc8934;
    --primary-color-hover:rgba(255, 111, 0, 1);
    --body-bg-color: white;
    --card-bg: white; 
    --card-border: rgb(0 0 0 / 25%);
    --product-icon-bg:rgba(255, 185, 5, 0.7);
    --product-icon-bg-hover:rgb(236, 176, 25);
    --category-title-bg:rgba(0, 0, 0, 0.5);
    --category-title-bg-hover:rgba(255, 133, 39, .8);
    /*--gradient-bg: linear-gradient(270deg, #FFA000 0%, #EE8700 51.31%, #FFC961 102.62%);*/
    --gradient-bg:var(--primary-color);
    --footer-bg: black;
    --footer-social-icon-bg-hover:rgba(255, 197, 51, 1);
    --search-container-bg:var(--sky-bg);
    --search-input-bg:#000000;
    --search-btn-bg:rgba(255, 235, 153, 1);
    --search-btn-bg-hover:rgba(255, 197, 51, 1);
    --search-input-border:rgb(255, 172, 108);
      --product-detail-bg:rgba(255, 185, 5, 0.05);
      --cart-detail-border:rgba(255, 185, 5, 0.3);
      --cart-detail-icon:#ffffff;
      --cart-detail-bg:rgba(16, 13, 18, 1);
      
    --sky-bg:#f2f4f8;
  }

  /* Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
  }
  
  body {
    background: var(--body-bg-color);
    color: black;
    font-size: clamp(1rem, 0.9107142857142857rem + 0.17857142857142858vw, 1.125rem);
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1.5;
    font-family: "Open Sans", sans-serif;
  }
  
  section{
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
  }
  .watermark {
    position: relative;
  }
  .watermark::after {
    content: "© Hockari";
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 3px 5px;
    font-size: 12px;
  }
  
  .heading-title {
    font-size: clamp(1.8rem, 0.9692307692307691rem + 1.7307692307692313vw, 2.7rem);
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block !important;
    letter-spacing: var(--letter-spacing);
  }
  .heading-title-md{
    font-size: clamp(1.5rem, 0.8076923076923077rem + 1.4423076923076923vw, 2.25rem);
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block !important;
    letter-spacing: var(--letter-spacing);
  }
  a.whatsapp-link {
    position: fixed;
    right: 20px;
    bottom: 40px;
    color: var(--primary-color);
    font-size: 60px;
    z-index: 999999;
    background: white;
    display: inline-flex;
    padding: 0 5px;
    border-radius: 5px;
}
a{
  color: var(--text-color);
}
.highlight{
  font-size: 18px;
  font-weight: 600;
  color: var(--red-color-hover);
}
.heading-area{
  text-align: center;
  margin: 40px 0;
}
.heading-area i {
  font-size: 50px;
  margin: 5px;
}
.heading-area i.fa-heart{
  color: var(--red-color);
}
.heading-area i.fa-cart-shopping {
  color: #FF9D23;
}

.sub-heading-title{
  font-size: clamp(1.125rem, 0.675rem + 1vw, 1.875rem);
}

.maintenance{
  background: wheat;
  height: 90vh;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 2rem;
}
.maintenance h1 {
  margin-bottom: 20px;
    font-size: clamp(1.5rem, -1.666666666666667rem + 6.597222222222222vw, 6.25rem);
}
.maintenance p{
font-size: clamp(1.3rem, 0.16666666666666674rem + 2.361111111111111vw, 3rem);
}

.hidden{
  display: none !important;
}
.margin_tb10{
  margin: 10% 0;
}
.margin_tb5{
  margin: 5% 0;
}
.mg-b20{
  margin-bottom: 20px;
}
.mg-t40{
  margin-top: 40px;
}
.mt60{
  margin-top: 60px;
}
.mg-tb20{
  margin: 20px 0;
}
.text-white{
  color: white;
}
.text-justify{
  text-align: justify;
}
p#mamun-credit span a{
  display: inline-block !important;
  visibility: visible !important;
}
textarea{
  width: 100%;
  padding: 0.45rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-5);
}
button{
  font-size: clamp(0.875rem, 0.7086947094535994rem + 0.3469210754553339vw, 1.125rem);
  border: none;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.add-to-wishlist{
  width: 100%;
  padding: 0.75rem;
  background-color: #ff76aa;
  color: var(--button-text);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.primary-btn {
  width: 100%;
  padding: 0.75rem;
  background: var(--primary-color);
  color: var(--button-text);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.primary-btn:hover {
  background: var(--primary-color-hover);
}
.product-actions-buttons {
  display: flex;
  gap: 10px;
}
span.quantity-unit, .product-price .original-price {
    font-size: clamp(0.5625rem, 0.35416666666666663rem + 0.4340277777777778vw, 0.875rem);
}
.home-section .product-actions, .product-section .product-actions {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  gap: 10px;
}
.warning-btn{
  background-color: #f39c12;
  color: white;
  padding: 0.6rem;
  border: none;
  border-radius: var(--border-radius-5);
  cursor: pointer;
  width: 100%;
  white-space: nowrap;
}
.warning-btn:hover{
  background-color: #e78e00;
}
.pre-order {
  background-color: #f39c12;
  color: white;
  padding: 0.6rem;
  border: none;
  border-radius: var(--border-radius-5);
  cursor: pointer;
  width: 100%;
}

.pre-order:hover {
  background-color: #e67e22;
}

.wishlist.active i {
  color: var(--red-color-hover);
}

.remove-item {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  padding: 8px;
  background-color: var(--red-color);
  border-radius: var(--border-radius-5);
}

.remove-item:hover {
  background-color: var(--red-color-hover);
}
.pagination {
  color: var(--text-color);
  text-align:center;
}

/* user wrong alert start*/
.messages {
    margin-bottom: 15px;
}

.alert {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.alert.error {
    background-color: #ffcccc;
    color: #cc0000;
    border: 1px solid #cc0000;
}

.alert.success {
    background-color: #ccffcc;
    color: #008000;
    border: 1px solid #008000;
}
/* user wrong alert end */

/* Custom Notification start */
.custom-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: rgb(153, 255, 0);
  color: rgb(0, 0, 0);
  padding: .2rem 1rem;
  border-radius: var(--border-radius-5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: none;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
  animation: slideIn 0.5s ease-out, fadeOut 0.5s ease-in 1.5s;
}

.custom-notification.error {
  background: var(--red-color);
}

.notification-icon {
  font-size: 1.2rem;
}

.notification-text {
  font-size: 14px;
}

.quantity-selector {
  color: white;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  display: none;
  background: var(--primary-color);
  border-radius: 5px;
  padding: 3px;
}

.quantity-selector input {
  width: 60%;
  padding: 0.42rem;
  border: 1px solid pink;
  border-radius: var(--border-radius-5);
  text-align: center;
  background: var(primary-color);
}
button.quantity-btn {
  width: 30px;
  height: 30px;
  background: transparent;
  border: 1px solid white;
  border-radius: 4px;
  color: white;
}
.quantity-controls {
  display: flex;
  justify-content: space-between;
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Custom Notification end */

  /* header section start */
  .header {
font-family: "Montserrat", sans-serif; 
    background: var(--primary-color);
    backdrop-filter: blur(10px);
     position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 5px 0 0 0;
  }
  .header .top-bar {
    display: flex;
    justify-content: space-between;
    padding: 5px 2rem 0 2rem;
}
header .top-content {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: baseline;
}
  .nav-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 2rem 5px 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background:#f6faff;
  }

.mobile-view{
    display: none;
  }
.mobile-view .nav-links{
  display: none;
}
/* Show Nav Links when Menu is Active */
.mobile-view .nav-links.show {
  display: flex;
}
/* Sidebar Menu */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px; /* Initially hidden */
  width: 250px;
  height: 100vh;
  background: var(--primary-color);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  transition: left 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 20px;
  z-index: 2000;
}

/* Show sidebar when active */
.sidebar.active {
  left: 0;
}

/* Sidebar Close Button */
.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-color);
  align-self: flex-end;
  z-index:999;
}

/* Sidebar Navigation Links */
.sidebar .nav-links {
  display: flex;
  flex-direction: column;
  margin-top: -30px;
  align-items: start;
}

.sidebar .nav-links a {
  text-decoration: none;
  color: var(--text-color);
  padding: 10px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.sidebar .nav-links a:hover {
  color: var(--primary-color-hover);
}

/* Hamburger Menu */
.menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: black;
}
/* Search Icon */
.mobile-view .search-toggle {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: black;
  padding: 10px;
}

/* Search Bar (Initially Hidden) */
.mobile-view .search-container {
  display: none;
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  margin: 0;
}
.mobile-view .close-search {
    position: absolute;
    top: 13px;
    right: 5%;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: black;
}
/* Show Search Bar when Active */
.mobile-view .search-container.active {
  display: block;
}

.mobile-view .search-container form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mobile-view .search-container input[type="text"]{
  max-width: 70%;
}
.mobile-view .search-container .search-button {
  background: var(--primary-color);
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  color: white;
}

  .nav-links a,
  .icon-wrapper,
  .theme-toggle i,
  .search-bar input,
  .search-bar button {
    color: black;
  }
  
  /* Buttons */
  .cta-btn,
  .add-to-cart {
    background: var(--primary-color);
    color: var(--button-text);
  }
  
  .logo img{
    max-width: 280px;
    width: 100%;
  }
  
.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding: 10px;
    }
 .nav-container,.nav-links{
        justify-content: center;
}

.nav-links a {
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 10px;
    font-size: 15px;
}
.nav-links a.active {
    color: #000000;
    border-bottom: 3px solid var(--primary-color);
    background: #ffffff;
    border-radius: 5px;
  }

  /* Search Bar */
  .search-bar {
    display: flex;
    align-items: center;
    background: var(--search-bg);
    border-radius: 5px;
    padding: 0.5rem 1rem;
    margin: 0 2rem;
    display: none;
  }
  
  .search-bar input {
    border: none;
    background: transparent;
    outline: none;
    width: 200px;
    color: var(--text-color);
  }
  
  .search-bar button {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #333;
  }
  
  /* Icons Section */
  .nav-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .icon-wrapper {
    position: relative;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
  }
  
  .icon-wrapper:hover {
    color: var(--primary-color-hover);
  }
  
  .icon-wrapper i {
    font-size: 1.2rem;
    color: var(--text-color);
  }
  
  .icon-wrapper .wishlist-count,
  .icon-wrapper .cart-count {
    position: absolute;
    top: -12px;
    right: 0;
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    padding: 0.14rem 0.4rem;
    border-radius: 50%;
  }
  
  /* User Authentication Dropdown */
  .auth-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-5);
    padding: 0.5rem;
    z-index: 1000;
    width: 120px;
  }
  
  .auth-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    transition: background 0.3s ease;
    color: black;
  }
  
  .auth-dropdown a:hover {
    background: var(--primary-color);
    color: var(--text-color);
  }
  
  #user-icon:hover .auth-dropdown {
    display: block;
  }
  
  /* Dark Mode Toggle */
  .theme-toggle {
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--button-text);
    font-size: 20px;
  }
  
  .dark-icon {
    display: none;
  }
  
  [data-theme="dark"] .dark-icon {
    display: block;
  }
  
  [data-theme="dark"] .light-icon {
    display: none;
  }
  @keyframes themeRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  .theme-change-animation {
    animation: themeRotate .6s ease-in-out;
  }
  /* header section end */


  /* cart detail css start */
.cart_details_page{
  margin: 0 auto;
}
.cart_details_page .cart-container, .checkout-page .checkout-container {
  display: flex;
  justify-content: center;
  gap: 5%;
  flex-wrap: wrap;
}
.cart_details_page .cart-container p
 {
    color: #000000;
}
.cart_details_page .heading-title{
  text-align: center;
}
.cart_details_page .cart-items {
  display: flex;
  flex-direction: column;
  max-height: 400px;
  overflow-y: auto;
  padding: 10px;
  max-width: 70%;
}
.cart_details_page .cart-item, .checkout-page .cart-item{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    box-shadow: rgb(190 190 255 / 20%) 0px 10px 29px 0px;
    border-radius: 10px;
    padding: 15px;
    color: #000000;
    border: 1px solid rgb(214 214 214 / 30%);
    background-color: #ffffff;
}

.cart_details_page .cart-item .item-details, .checkout-page .cart-items .item-details {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  max-width: 650px;
  width: 100%;
  flex-wrap: wrap;
}
.cart_details_page .cart-item .item-details .quantity-control{
  white-space: nowrap;
}
.cart_details_page .cart-item .item-details .quantity-control button {
  padding: 10px;
  border: none;
  border-radius: var(--border-radius-5);
  cursor: pointer;
  font-size: 20px;
}
.cart_details_page .cart-item .item-details .quantity-control button:hover{
  background-color: var(--primary-color);
}
.cart_details_page .cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.cart_details_page .cart-total {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 30%;
    border-radius: 15px;
    background-color: rgb(255 255 255);
    color: #000000;
}
.cart_details_page .cart-total a.btn {
  padding: var(--big-btn-padding);
  background: var(--primary-color);
  border-radius: var(--border-radius-5);
  color: var(--bg-color);
  transition: all 0.2s;
}
.cart_details_page .cart-total a.btn:hover{
  background-color: var(--primary-color-hover);
}
.cart_details_page .cart-total .cart-total-info {
    padding: 25px;
    border-radius: var(--border-radius-5);
    box-shadow: rgb(190 190 255 / 31%) 0px 10px 29px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.cart_details_page .cart-total .cart-total-info #delivery-charge {
  margin-top: 20px;
}
.cart_details_page .cart-total .cart-total-info select {
  border: 1px solid #0ada0a26;
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
}
  /* cart detail css end */
  

/* wishlist css start */
.wishlist-page .wishlist-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}
.wishlist-page .wishlist-item{
  max-width: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wishlist-page .wishlist-item .item-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.wishlist-page .wishlist-item .item-details h3{
  color: var(--text-color);
}
.wishlist-page .wishlist-item .item-details .price{
  color: var(--text-color);
}
.wishlist-page .wishlist-item .product-img {
  width: 100%;
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 1/1;
}
.wishlist-page .wishlist-actions {
  display: flex;
  gap: 10px;
}
.wishlist-page p{
  text-align: center;
}
.wishlist-page p.price{
  text-align: left;
}
/* wishlist css end */


/* checkout page css start */
.checkout-page {
  margin: 0 auto;
  color: var(--text-color);
}
.checkout-page .heading-title {
  text-align: center;
}

.checkout-page .checkout-summary {
  max-width: 65%;
  /*min-width: 330px;*/
  color: var(--text-color);
}
/*.checkout-page .cart-items .item-details {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(4, 1fr);*/
/*  gap: 15px;*/
/*}*/
.checkout-page .checkout-summary h2 {
  margin-bottom: 1rem;
}

.checkout-page .cart-items {
  display: flex;
  flex-direction: column;
  max-height: 400px;
  overflow-y: auto;
  padding: 10px;
}


/*.checkout-page .cart-item {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 1rem;*/
/*  margin-bottom: 1rem;*/
/*  box-shadow: rgba(100, 100, 111, 0.2) 0px 10px 29px 0px;*/
/*  border-radius: 10px;*/
/*  padding: 15px;*/
/*  justify-content: stretch;*/
/*}*/

.checkout-page .cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.checkout-page .cart-total {
  display: flex;
  font-size: 16px;
  max-width: 100%;
  width: 100%;
  margin: 5% 0;
  color: black;
}
.checkout-page .cart-total .cart-total-content{
  max-width: 350px;
  width: 100%;
  padding: 25px;
  border-radius: var(--border-radius-5);
  box-shadow: rgb(147 141 255 / 20%) 0px 0px 30px 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.checkout-page .checkout-form {
  max-width: 30%;
  color: black;
  width:100%;
}

.checkout-page .checkout-form h2 {
  margin-bottom: 1rem;
}

.checkout-page .form-group {
  margin-bottom: 1rem;
}

.checkout-page .form-group label {
  display: block;
  margin-bottom: 0.5rem;
}
.checkout-page .form-group label.address-content {
  display: flex;
  gap: 10px;
  align-items: center;
}
.checkout-page .form-group label.address-content input {
  width: 30px;
  height: 30px;
}
.checkout-page .form-group input,
.checkout-page .form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-5);
}

.checkout-page .btn {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-5);
  cursor: pointer;
  font-weight: 600;
}

.checkout-page .btn:hover {
  background: var(--primary-color-hover);
}
.checkout-page .address-card {
  border: 1px solid #ddd;
  padding: 15px;
  margin: 10px 0;
  border-radius: 8px;
  background: var(--card-bg);
}

.checkout-page .default-address {
  border-color: #4CAF50;
  background: #f8fff8;
}

.checkout-page .address-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.checkout-page .address-selection .address-option {
  display: block;
  margin: 10px 0;
}

.checkout-page .address-selection input[type="radio"] {
  margin-right: 10px;
}

.checkout-page .or-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.checkout-page .or-divider::before {
  content: "";
  display: block;
  height: 1px;
  background: #ddd;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}

.checkout-page .or-divider span {
  background: #fff;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}
/* checkout page css end */

/* order css start */
.order-confirmation .confirmation-message {
  color: var(--text-color);
  margin-bottom: 50px;
}
.order-confirmation .order-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  min-width: 280px;
  max-width: 49%;
  width: 100%;
  margin-bottom: 2%;
  background-color: var(--sky-bg);
  color: black;
}
.order-confirmation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin: 2% 0 4% 0;
}
.order-confirmation .product-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-right: 20px;
}

.order-confirmation .item-details {
  flex: 1;
}

.order-confirmation .item-details p {
  margin: 5px 0;
}
.order-confirmation .confirmation-message .total-price {
  color: var(--red-color);
}
.order-confirmation .order-details-content {
  margin: 2% 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  color: black;
}
.order-confirmation .order-details-content > * {
  padding: 7px;
  background-color: #9effdc33;
  border-radius: 6px;
  margin-bottom: 2%;
}
.order-confirmation .order-details-content .order-detail-title{
  background-color: var(--cart-detail-icon);
  color: #000000;
}
.order-confirmation .delivery-img {
  width: 100%;
  text-align: center;
}
.order-confirmation .delivery-img img {
  max-width: 40%;
  width: 100%;
}
.confirmation-message .redirect-message {
  font-size: 1rem;
  display: inline;
  background: #000000;
  padding: 10px;
}
.confirmation-message .your-order-title {
  padding: 20px 0;
}
/* order css end */

/* footer css start */
.footer {
  background: #fc893414;
  color: black;
  padding: 4rem 0 1rem;
  margin-top: 4rem;
  /*border-top: 45px solid var(--primary-color);*/
  font-size:15px;
}

.footer-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-text {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--footer-social-icon-bg);
  color: var(--footer-social-icon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #ffffff45;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  color: white;
}
.social-links a i{
    font-size:30px;
}
.footer-title {
  font-size: 26px;
  margin-bottom: 1.5rem;
  color:var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  transition: color 0.3s ease;
  color:black;
}

.footer-links a:hover {
  color: var(--primary-color);
}
.footer-main .contact-info p {
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.footer-main .contact-info .contact-item .info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size:16px;
}
.footer-main .contact-info .contact-item .info h3{
    font-weight:500;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: var(--border-radius-5);
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: var(--button-text);
  border: none;
  border-radius: var(--border-radius-5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--primary-color-hover);
}
.payment-methods {
  padding: 1rem 0;
}
.payment-title {
  margin-bottom: 1rem;
}
.payment-icons img {
  max-width: 270px;
  width: 100%;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}
.legal-links {
  margin-bottom: 1rem;
}
.legal-links a {
  color: #b2bec3;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.9rem;
}
.legal-links a:hover {
  color: var(--primary-color-hover);
}
.copyright {
  color: #b2bec3;
  font-size: 0.9rem;
}
section.sm-footer-section {
  position: fixed;
  bottom: 0;
  z-index: 999;
  background: white;
  padding: 10px 20px;
  display: none;
}
.sticky-footer ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.sticky-footer ul li a {
    color: black;
}
.sticky-footer .icon-wrapper i {
    font-size: 1.2rem;
    color: #000000;
}

/* Sidebar Styling */
.category-sidebar-footer {
  position: fixed;
  top: 75px;
  right: -250px;
  max-width: 250px;
  width: 100%;
  height: 100%;
  background:var(--sky-bg);
  box-shadow: -3px 0 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  overflow-y: auto;
}

.sidebar-header-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  color:black;
}

#close-sidebar-footer {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color:black;
}

.category-sidebar-footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.category-sidebar-footer ul li {
  padding: 10px 0;
  width: 100%;
}

.category-sidebar-footer ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  display: block;
  flex-direction: row-reverse !important;
  justify-content: space-between !important;
  

}
.category-sidebar-footer ul li a:hover {
  color: #007bff;
}
#sidebar-overlay-footer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}
.category-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
}

.category-link-footer {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  flex-grow: 1;
}

.category-icon-footer {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-left: 10px;
}

/* contact page css start */

.contact-section .contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}

.contact-section .contact-info {
  background: var(--card-bg);
  border-radius: var(--border-radius-5);
  padding: 20px;
  border: 1px solid var(--card-border);
  max-width: 48%;
  width: 100%;
}

.contact-section .map-container {
  margin-bottom: 30px;
  border-radius: var(--border-radius-5);
  overflow: hidden;
}

.contact-section .contact-details {
  display: grid;
  gap: 20px;
}

.contact-section .contact-card {
  padding: 20px;
  background: var(--card-bg);
  border-radius: var(--border-radius-5);
  border: 1px solid var(--card-border);
}
.contact-section .contact-card h3{
  color: black;
}
.contact-card i {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 10px;
  background-color: var(--sky-bg);

}
.contact-section .contact-form {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius-5);
  border: 1px solid var(--card-border);
  max-width: 48%;
  width: 100%;
}

.contact-section .form-group {
  margin-bottom: 20px;
}

.contact-section .form-group label {
  display: block;
  margin-bottom: 8px;
  color: black;
}

.contact-section .form-group input,
.contact-section .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-5);
  background: white;
  color: black;
}
section.contact-success
 {
    color: black;
}
.contact-section .btn {
  background: var(--primary-color);
  color: var(--button-text);
  padding: var(--big-btn-padding);
  border: none;
  border-radius: var(--border-radius-5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-section .btn:hover {
  background: var(--primary-color-hover);
}

.contact-section p, .contact-section a {
  margin-top: 8px;
  color: var(--primary-color);
  font-weight: 400;
}
.contact-section .whatsapp-info i {
  margin-right: 5px;
}
.contact-card .small-i {
  font-size: 16px;
  margin-bottom: 5px;
  background-color: transparent;
  padding: 5px;

}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
.contact-section .error-list {
  color: white;
  margin-top: 5px;
  font-size: 0.7em;
  padding: 5px;
  background: var(--red-color);
  max-width: 100%;
}

.contact-section .form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-5);
  background: var(--bg-color);
  color: var(--text-color);
}

.contact-section .form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(50, 168, 125, 0.2);
}
/* contact page css end */

a.btn.download-invoice.btn-primary {
  margin-left: 40%;
  background: aliceblue;
  padding: 10px;
  color: #000000;
  border-radius: 5px;
}
p#mamun-credit span a {
  color: #006c03;
}
p.sku {
  font-size: 12px;
  background: #ffffd2;
  padding: 6px;
  color: black;
  border-radius: 5px;
  font-weight: 600;
}

/* banner css */
.page-banner {
  position: relative;
  overflow: hidden;
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%; /* Adjust height as needed */
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  z-index: 1;
}
.banner-content {
    position: absolute;
    top: 75%;
    left: 53%;
    transform: translate(-50%, -50%);
    color: white;
    width: 100%;
    z-index: 2;
}

.banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1.2rem;
  max-width: 800px;
  color:white;
}


/* brands css start */
.brands-dropdown {
    position: relative;
}
.brands-dropdown-menu {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    min-width: 500px;
    max-width: 90vw;
    width: auto;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.6s ease;
    max-height: 70vh;
    overflow-y: auto;
}
.brands-dropdown:hover .brands-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.brands-dropdown-menu .brands-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.brands-dropdown-menu .brand-name {
    font-size: 14px;
}
.brands-dropdown-menu .brand-item:hover{
  background-color: var(--primary-color);
}
/* .brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
}
.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 1px solid #c5c5c5;
    background-color: white;
}
.brand-item:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.brand-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 8px;
    border-radius: 4px;
}
.brand-placeholder {
    width: 50px;
    height: 50px;
    background: #f1f3f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: #6c757d;
    font-size: 20px;
}
.brand-name {
    font-size: 13px;
    color: #343a40;
    font-weight: 500;
    line-height: 1.3;
} */
/* brands css end */




/* header category dropdown css start  */
.categories-dropdown {
    position: relative;
}

.categories-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* padding: 10px; */
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    max-height: 90vh;
    min-width: 400px;
    max-width: 800px;
    width:100%;
    padding: 10px;
}

.categories-dropdown:hover .categories-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.categories-dropdown .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
}

.categories-dropdown .category-item {
    position: relative;
    border-bottom: 1px solid #f1f1f1;
}

.categories-dropdown .category-item:last-child {
    border-bottom: none;
}
.categories-dropdown .category-item a.active{
    background-color: #c3edff;

}
.categories-dropdown .category-link {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.categories-dropdown .category-link:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.categories-dropdown .category-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 10px;
    border-radius: 3px;
}

.categories-dropdown .category-name {
    flex-grow: 1;
    font-size: 12px;
    color: black;
}

.categories-dropdown .subcategory-list {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* padding: 15px; */
    min-width: 250px;
    opacity: 0;
    display: none;
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 10px;
}

.categories-dropdown .category-item.has-children:hover > .subcategory-list {
    opacity: 1;
    display: inline-block;
}
.category-sidebar-footer ul li a {
    color: black;
    font-weight: 500;
    font-size:14px;
}
@media (max-width: 1200px) {
    .categories-dropdown-menu {
        min-width: 400px;
    }

}
@media (max-width: 768px) {
    .categories-dropdown-menu {
        max-width: 90vw;
    }

    .categories-dropdown .category-item.has-children:hover > .subcategory-list {
        opacity: 1;
        visibility: visible;
        position: relative;
    }
}
/* header category dropdown css end */



    /* FAQ Section */

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .faq-item {
        margin-bottom: 20px;
        border: var(--inactive-border);
        border-radius: var(--card-radius);
        overflow: hidden;
        background: rgb(77 77 77)
    }
    
    .faq-question {
        padding: 25px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .faq-question:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
        font-weight: var(--font-semibold);
        margin: 0;
    }
    
    .faq-toggle {
        font-size: 1.5rem;
        color: var(--primary-text-color);
        transition: transform 0.3s ease;
    }
    
    .faq-answer {
        padding: 0 30px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 30px 25px;
        max-height: 500px;
    }
    
    .faq-item.active .faq-toggle {
        transform: rotate(45deg);
    }
.service-container{
    background: var(--sky-bg);
    padding: 20px;
    border-radius: 10px;
    color: black;
}
    
.call-for-price-btn {
  width: 100%;
  padding: 0.2rem;
background: #25D366;
  color: var(--button-text);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  white-space: nowrap;
  z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.call-for-price-btn:hover {
    background: #1ebe5d;
}
figure.table
 {
    width: 100% !important;
}


div#user-icon, #wishlist-icon, #cart-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
}
div#user-icon:hover, #wishlist-icon:hover, #cart-icon:hover span{
  color: rgb(255, 255, 255);
}

/* Desktop search */
.desktop-search {
    position: relative;
}

.desktop-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 8px;
    color: #333;
}

.desktop-search-toggle:hover {
    color: #007bff;
}

/* Hidden search box */
.desktop-search-box {
    position: absolute;
    top: 120%;
    right: 0;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none;
    z-index: 9999;
}

.desktop-search-box input {
    width: 220px;
    padding: 8px 10px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    outline: none;
    background: #fffedb;
}

/* Show when active */
.desktop-search.active .desktop-search-box {
    display: block;
}

/* 🚫 Completely disable on mobile */
@media (max-width: 992px) {
    .desktop-search {
        display: none;
    }
}


/* ===============================
   FILTER SIDEBAR – RIGHT SIDE SUBMENU
   =============================== */

.filter-sidebar {
    position: relative;
}

/* Main category list */
.filter-sidebar .category-sidebar {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

/* Category item */
.filter-sidebar .category-item {
    position: relative;
}

/* Category link */
.filter-sidebar .category-sidebar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.filter-sidebar .category-sidebar a:hover {
    background-color: #f5f5f5;
    color: #007bff;
}

/* ▶ Arrow indicator */
.filter-sidebar .category-item:has(.subcategory) > a::after {
    content: "›";
    font-size: 16px;
    opacity: 0.6;
}

/* 🔒 Hide subcategories */
.filter-sidebar .subcategory {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 8px;
    z-index: 100;
}

/* ✅ Show on hover */
.filter-sidebar .category-item:hover > .subcategory {
    display: block;
}

/* Nested subcategory items */
.filter-sidebar .subcategory li {
    position: relative;
}

.filter-sidebar .subcategory li a {
    padding: 6px 10px;
    font-size: 13px;
}

/* Third level (grandchildren) */
.filter-sidebar .subcategory li:hover > .subcategory {
    display: block;
    top: 0;
    left: 100%;
}

.filter-sidebar .category-sidebar a
 {
    color: black;
    font-size: 14px;
}
.product-listing {
    z-index: 5;
    position: relative;
}
.filter-sidebar{
  z-index: 100;
}
.category-sidebar h2.category-title {
    padding: 10px;
    background: #ff6a0033;
}