 * {
   box-sizing: border-box;
   margin-bottom: 7px;
 }

 body {
   background-color: #f7f7f5;
   font-family: sans-serif;
 }

 /*===================Top Header============================*/
 .top-bar {
   background-color: #071f46;
   color: white;
   padding: 10px 20px;
   font-size: 14px;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
 }

 .top-bar span {
   margin-right: 20px;
   cursor: pointer;
 }

 .free-shipping {
   font-weight: bold;
 }

 .main-header {
   background-color: wheat;
   padding: 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   margin-bottom: -33px;
   /* position: initial; */
 }


 /*============================*/
 .search-bar {
   display: flex;
   width: 50%;
   max-width: 600px;
   border-radius: 30px;
   overflow: hidden;
   margin: 0 auto;
   /* মাজখানে রাখে */
 }

 .search-bar-items {
   display: flex;
   width: 100%;
   max-height: 51px;
   align-items: center;
 }

 .search-bar input {
   flex: 2;
   border: none;
   padding: 15px 20px;
   font-size: 14px;
   outline: none;
   background: aliceblue;
 }

 .search-bar button {
   background-color: #f7a600;
   border: none;
   padding: 10px 20px;
   color: white;
   font-size: 16px;
   cursor: pointer;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
 }



 /* ---- Search Result Styling ---- */

 #search-results {
   width: 100%;
   max-width: 800px;
   margin: 20px auto;
   position: absolute;
   top: 20%;
   left: 11%;
   z-index: 999;
 }

 #search-results ul {
   padding: 0;
   margin: 0;
  max-height: 400px; 
  overflow-y: auto;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #ccc transparent; /* Firefox */
  margin-top: 43px;
  margin-left: 36px;
 }

 #search-results ul li {
   list-style: none;
   background: #fff;
   border: 1px solid #ddd;
   border-radius: 10px;
   padding: 10px;
   margin-bottom: 10px;
   display: flex;
   align-items: center;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
   margin-right: 24px;
   margin-left: 199px;
 }
 #search-results ul li:hover {
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
 }

 #search-results ul li img {
   width: 172px;
   height: 116px;
   object-fit: cover;
   border-radius: 5px;
   margin-right: 15px;
 }

 #search-results ul li .product-info {
   display: flex;
   flex-direction: column;
 }

 #search-results ul li .product-info a {
   text-decoration: none;
   color: #333;
   font-weight: bold;
   margin-bottom: 5px;
 }

 #search-results ul li .product-info span {
   color: #f7a600;
   font-weight: bold;
 }


/* Scrollbar Styling for WebKit Browsers */
#search-results ul::-webkit-scrollbar {
  width: 6px;
}

#search-results ul::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

#search-results ul::-webkit-scrollbar-track {
  background-color: transparent;
}
 /*------------=============================--------------------*/


 .j-title {
   color: #1f8c38;
   margin-left: 50px;
 }

 .old-jprice {
   color: #999;
   text-decoration: line-through;
   margin-top: 15px;
   margin-left: 93px;
 }

 .new-jprice {
   color: #000;
   font-size: 20px;
   font-weight: bold;
   margin-left: 71px;
 }

 .user-icons {
   display: flex;
   align-items: center;
   color: #071f46;
   font-size: 14px;
   justify-content: flex-end;
   /* margin-right: 59px; */

 }

 .user-icons i {
   margin: 0 10px;
   position: relative;
   cursor: pointer;
 }

 .user-icons span {
   margin-left: 10px;
 }

 .badge {
   background-color: #f7a600;
   color: white;
   font-size: 10px;
   padding: 2px 6px;
   border-radius: 50%;
   position: absolute;
   top: -6px;
   right: -8px;
 }


 /*====================Login Sideber=====================*/
 /* Button */
 #openLogin {
   background: none;
   border: none;
   color: #071f46;
   font-size: 14px;
   font-weight: bold;
   cursor: pointer;
 }

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

 /* Sidebar */
 .login-sidebar {
   position: fixed;
   right: -400px;
   top: 0;
   width: 360px;
   height: 100%;
   background: white;
   z-index: 999;
   padding: 20px;
   box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
   transition: right 0.3s ease;
   overflow-y: auto;
 }

 /* When Active */
 .login-sidebar.active {
   right: 0;
 }

 .overlay.active {
   display: block;
 }

 .login-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-bottom: 1px solid #ddd;
   padding-bottom: 10px;
   margin-top: 31px;
 }

 #closeLogin {
   font-size: 24px;
   cursor: pointer;
 }

 form {
   margin-top: 20px;
 }

 form label {
   display: block;
   margin-top: 10px;
   font-weight: bold;
 }

 form input {
   width: 100%;
   padding: 10px;
   margin-top: 5px;
   border-radius: 30px;
   border: 1px solid #ccc;
   font-size: 14px;
 }

 .password-wrapper {
   position: relative;
 }

 .password-wrapper .eye {
   position: absolute;
   right: 15px;
   top: 12px;
   cursor: pointer;
   font-size: 14px;
 }

 .login-btn {
   width: 100%;
   background: #f7a600;
   color: white;
   border: none;
   padding: 12px;
   margin-top: 15px;
   border-radius: 30px;
   cursor: pointer;
   font-weight: bold;
 }

 .remember {
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-size: 13px;
   margin-top: 10px;
 }

 .social-login {
   text-align: center;
 }

 .social-login p {
   margin: 15px 0 10px;
   font-weight: bold;
   color: #777;
 }

 .fb,
 .google {
   width: 100%;
   margin: 5px 0;
   padding: 10px;
   border: none;
   color: white;
   font-weight: bold;
   border-radius: 30px;
   cursor: pointer;
 }

 .fb {
   background: #3b5998;
 }

 .google {
   background: #db4437;
 }

 .fb i,
 .google i {
   margin-right: 8px;
 }


 /*======================Menu Section=====================*/
 /* =======================
   HEADER BASE STYLES
========================== */
 .main-header {
   background-color: #f9f1ee;
   border-bottom: 1px solid #e3d1c7;
   margin: 0;
   padding: 0;
   position: relative;
   margin-bottom: -22px;
   margin-top: -5px;
 }

 .header-container {
   max-width: 1100px;
   margin: 0 auto;
   padding: 10px 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   position: relative;
 }

 /* =======================
   MENU TOGGLE (Mobile)
========================== */
 .menu-toggle {
   display: none;
   font-size: 24px;
   cursor: pointer;
   color: #333;
 }

 /* =======================
   MAIN NAVIGATION
========================== */
 .main-nav {
   flex: 1;
 }

 .main-nav ul {
   list-style: none;
   display: flex;
   align-items: center;
   justify-content: flex-end;
   padding: 0;
   margin: 0;
 }

 .main-nav ul li {
   position: relative;
 }

 .main-nav ul li a {
   text-decoration: none;
   color: black;
   font-weight: 700;
   font-size: 18px;
   margin-right: 40px;
   transition: color 0.3s ease;
   display: block;
   padding: 8px 0;
 }

 .main-nav ul li a:hover {
   color: #bf5c3e;
 }

 /* =======================
   DROPDOWN MENU
========================== */
 .has-dropdown .dropdown {
   display: none;
   position: absolute;
   top: 100%;
   left: 0;
   background: wheat;
   border: 1px solid #e3d1c7;
   min-width: 160px;
   z-index: 999;
   padding: 8px 0;
 }

 .has-dropdown .dropdown li a {
   font-size: 15px;
   color: #333;
   padding: 8px 15px;
   display: block;
 }

 .has-dropdown .dropdown li a:hover {
   background: #f1e0d6;
   color: #bf5c3e;
 }

 /* Show dropdown on hover (desktop) */
 .has-dropdown:hover .dropdown,
 .has-dropdown .dropdown:hover {
   display: block;
 }

 /* =======================
   RESPONSIVE STYLES
========================== */
 @media (max-width: 768px) {
   .menu-toggle {
     display: block;
   }

   .main-nav {
     display: none;
     width: 100%;
     background: #fff3ed;
     position: absolute;
     top: 100%;
     left: 0;
     border-top: 1px solid #e3d1c7;
   }

   .main-nav ul {
     flex-direction: column;
     align-items: flex-start;
     padding: 10px 0;
   }

   .main-nav ul li {
     width: 100%;
   }

   .main-nav ul li a {
     width: 100%;
     padding: 12px 20px;
     border-bottom: 1px solid #eee;
     margin-right: 0;
   }

   .has-dropdown .dropdown {
     position: static;
     display: none;
     background: #fff0e4;
     border: none;
     padding-left: 20px;
   }

   .has-dropdown.active .dropdown {
     display: block;
   }
 }

 /*-----------Category Section Start------------------------*/
 #category_section {
   background: #f2f2f2;
   margin-top: 10px;
   width: 100%;
 }

 #category_section h1 {
   font-size: 42px;
   font-weight: 600;
   text-align: center;
   color: black;
   margin-top: 40px;
 }

 .category-row {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   margin-top: 5px;
   line-height: 0px;
 }

 .category-card {
   background-color: #fff;
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   text-align: center;
   display: flex;
   flex-direction: column;
   height: 100%;
 }

 .category-card img {
   width: 100%;
   height: 170px;
   object-fit: cover;
   display: block;
   transition: transform 0.4s ease;
 }

 .category-card:hover img {
   transform: scale(1.09);
 }

 .category-title {
   padding: 5px 5px;
   font-weight: 600;
   font-size: 13px;
   color: #1a1a1a;
   min-height: 67px;
   min-width: 169px;
 }

 .category-title a {
   color: #110909;
   text-decoration: none;
   line-height: 27px;
   font-size: 14px;

 }

 .btn-jin {
   background-color: #2ecc71;
   color: white;
   padding: 23px 80px;
   border: none;
   border-radius: 20px;
   font-size: 16px;
   cursor: pointer;
   transition: background-color 0.3s ease, transform 0.2s ease;
   margin-top: 30px;
 }

 .btn-jin:hover {
   background-color: #27ae60;
   /* একটু ডার্ক সবুজ */
   transform: translateY(-4px);
   /* হালকা উপরে উঠবে */
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
 }


 /*-----------------------Category Section End----------------------*/

 /*-----------------------Product Section Start------------------------*/
 #category_section h2 {
   font-size: 42px;
   font-weight: 600;
   text-align: center;
   color: black;
 }

 .product-row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: center;
 }

 .product-card {
   background: #f7f7f7;
   width: 100%;
   border-radius: 10px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   overflow: hidden;
   height: 485px;
 }

 /* .product-card:hover {
  transform: translateY(-5px);
} */

 .product-card img {
   width: 100%;
   height: 221px;
   display: block;
   transition: transform 0.4s ease;
 }

 .product-card img:hover {
   transform: scale(1.14);
 }

 .product-info {
   padding: 15px;
   text-align: center;
   line-height: 1px;
   min-height: 135;
   height: 103px;
 }

 .product-info h3 {
   font-size: 15px;
   font-weight: bold;
   margin-bottom: 0px;
 }

 .product-info h3 span {
   font-size: 18px;
   font-weight: normal;
 }

 .old-price {
   color: #999;
   text-decoration: line-through;
   margin: 5px 0;
   margin-top: 25px;
 }

 .new-price {
   color: #000;
   font-size: 20px;
   font-weight: bold;
   margin-top: 34px;
 }

 /*-----------Product Section End------------------------*/

 /*------------------view details Sectoin Start------------------------*/

 #view_section h2 {
   font-size: 43px;
   font-weight: 700;
   text-align: center;
   color: black;
   margin-top: 52px;
   margin-bottom: 5px;
 }
.product-sidebar {
  background: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.product-sidebar ul {
  list-style: none;
  padding: 0;
}
.product-sidebar li {
  margin-bottom: 10px;
}
.product-sidebar a {
  color: #333;
  text-decoration: none;
}



 /*----------------sidebar start----------------------*/
 .sidebar {
   position: fixed;
   top: 0;
   right: -500px;
   width: 500px;
   height: 100%;
   background-color: #f9f6ef;
   box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
   transition: right 0.3s ease;
   z-index: 9999;
   overflow-y: auto;
   padding: 38px;
 }

 .sidebar.active {
   right: 0;
 }

 .close-btn {
   font-size: 67px;
   float: right;
   color: #4b2c47;
   margin-top: -43px;
   margin-right: -6px;
 }

 .cart-item {
   display: flex;
   align-items: center;
   margin-bottom: 10px;
   margin-top: 30px;
   border-bottom: 1px solid #ddd;
   padding-bottom: 10px;
 }

 .cart-item img {
   width: 100px;
   height: 100px;
   margin-bottom: 25px;
   object-fit: cover;
   margin-right: 10px;
   border-radius: 5px;

 }

 .item-info h4 {
   font-size: 17px;
   margin: 0px;
   font-weight: 500;
 }

 .item-info p {
   margin: 4px 0;
 }

 .quantity {
   display: flex;
   align-items: center;
   gap: 15px;
   font-size: 20px;
   border-color: #f9f6ef;
   background: #fff;
   color: #6fcbea;
   border: #f9f6ef;
   border-radius: 5px;
 }

 .quantity button {
   background: #ccc;
   border: none;
   padding: 4px 8px;
   cursor: pointer;
   border-radius: 3px;
 }

 .delete-btn {
   background: none;
   /* border: none; */
   /* color: red;
  font-size: 25px;
  cursor: pointer;
  margin-left: auto; */
   font-size: 23px;
   margin-top: -114px;
   margin-right: -50px;
 }

 .checkout-section {
   border-top: 1px solid #ccc;
   padding-top: 15px;
   text-align: center;
 }

 .total-price {
   font-size: 20px;
   font-weight: bold;
 }

 .checkout-btn {
   margin-top: 10px;
   width: 100%;
   padding: 10px;
   background-color: #4b2c47;
   color: white;
   border: none;
   border-radius: 5px;
   cursor: pointer;
 }

 /*------sidebar End--------------*/

 /*--------------------view details Sectoin End------------------------*/




 /*---------------------------details page start-------------------------------*/
 /* body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fdfdf9;
} */
 .product-container {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   background-color: #856280;
   padding: 20px;
   font-family: Arial, sans-serif;
   margin-top: 43px;
 }

 .product-gallery {
   flex: 1;
   min-width: 320px;
 }



 .main-image img {
   width: 90%;
   margin-left: 30px;
   border-radius: 10px;
   height: 760px;
   transition: transform 0.4s ease, transform-origin 0.4s ease;
 }

 .main-image img:hover {
   transform: scale(1.0);
   /* Zoom level */
 }


 .thumbnails {
   margin-top: 15px;
   display: flex;
   gap: 10px;

   flex-wrap: wrap;
 }

 .thumbnails img {
   width: 120px;
   height: 120px;
   border-radius: 8px;
   cursor: pointer;
   border: 2px solid #eee;
 }

 .thumbnails img:hover {
   border-color: #00bfa6;
 }


 /*------------rightsite  start-------------------*/
 .product-details {
   max-width: 522px;
   padding: 78px;
   border-radius: 10px;
   margin-right: 30px;
   background-color: #fff;
   font-family: Arial, sans-serif;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
   height: 760px;
 }

 .product-details h1 {
   font-size: 24px;
   font-weight: bold;
 }

 .product-details .price {
   color: #00bfa6;
   font-weight: bold;
 }

 .product-details .status.in-stock {
   color: green;
 }

 .quantity-selector {
   margin: 20px 0;
   margin-top: 10px;
 }

 .quantity-controls {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-top: 10px;
 }

 .quantity-controls button {
   width: 30px;
   height: 30px;
   font-size: 20px;
   cursor: pointer;
 }

 .quantity-controls input {
   width: 50px;
   text-align: center;
   font-size: 16px;
 }

 .total-price {
   font-size: 20px;
   font-weight: bold;
   margin-bottom: 15px;
 }

 .product-buttons .btn {
   width: 100%;
   padding: 12px;
   margin-bottom: 10px;
   font-size: 16px;
   border: none;
   border-radius: 5px;
   cursor: pointer;
 }


 .buy-now {
   background-color: #2ecc71;
   color: white;
   padding: 11px 97px;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   transition: background-color 0.3s ease, transform 0.2s ease;
 }
 .buy-now:hover{
       background-color: #27ae60;
      transform: translateY(-4px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
 }

 .call-now {
   background-color: #00695c;
   color: white;
      border: none;
   border-radius: 5px;
   cursor: pointer;
   transition: background-color 0.3s ease, transform 0.2s ease;
 }
 .call-now:hover{
         background-color: #00695c;
      transform: translateY(-4px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
 }

 .messenger {
   background-color: #0084ff;
   color: white;
       border: none;
   border-radius: 5px;
   cursor: pointer;
   transition: background-color 0.3s ease, transform 0.2s ease;
 }
.messenger:hover{
  background-color: #0084ff;
      transform: translateY(-4px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
 .share-icons {
   display: flex;
   font-size: 31px;
   gap: 50px;
   color: #0084ff;
   margin-left: 99px;
   margin-top: 40px;
 }

 /*------------rightsite  end-------------------*/




 /*-------------------------slider-------------------------------*/
 .swiper {
   width: 100%;
   padding: 20px 0;
 }

 .swiper-slide {
   background: #fff;
   border: 1px solid #ddd;
   border-radius: 10px;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   margin-top: 53px;
 }

 .swiper-slide img {
   width: 100%;
   height: 250px;
   object-fit: cover;
 }

 /*-------------------------slider End-------------------------------*/
 .jin-slider {
   width: 100%;
   height: 90vh;
   margin-top: -17px;
 }


 .swiper-slide {
   height: 90vh;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
 }

 /*==================Footer Section Start======================*/
 .footer-area {
   background-color: #0d233e;
   color: #fff;
   padding: 50px 20px;
   font-family: Arial, sans-serif;
   margin-top: 30px;
 }

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

 .footer-column h4 {
   margin-bottom: 15px;
   font-size: 18px;
   font-weight: 600;
   color: #ffffff;
 }

 .footer-column ul {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .footer-column ul li {
   margin-bottom: 10px;
   color: #ccc;
 }

 .footer-column ul li a {
   color: #ccc;
   text-decoration: none;
 }

 .footer-column ul li a:hover {
   text-decoration: underline;
 }

 .app-badges img {
   width: 140px;
   margin: 10px 0;
   display: block;
 }

 .newsletter-form {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
   margin-top: 10px;
 }

 .newsletter-form input[type="email"] {
   flex: 1;
   padding: 10px;
   border: none;
   border-radius: 5px;
 }

 .newsletter-form button {
   background-color: #f7a600;
   border: none;
   color: #fff;
   padding: 10px 20px;
   border-radius: 5px;
   cursor: pointer;
   font-weight: bold;
 }

 .newsletter-form button:hover {
   background-color: #e09100;
 }

 .footer-bottom {
   text-align: center;
   font-size: 5px;
 }

 .footer-bottom h5 {
   color: white;
   text-align: center;
   font-size: 17px;
   margin-top: 150px;
   /* এটি শুধু লেখাটিকে নিচে নামাবে */
   margin-bottom: 0;
 }

 .footer-bottom h5 a {
   text-decoration: none;
   color: #0084ff;
 }

 .footer-bottom h5 a:hover {
   text-decoration: none;
 }

 /*-------------Footer section End-----------------------*/





 /*=====================Cart Section=======================*/
 .container-2 {
   max-width: 1000px;
   margin: 0 auto;
   padding: 20px;
   font-family: Arial, sans-serif;
   color: #333;
   margin-top: 80px;
 }

 .cart-title {
   font-size: 28px;
   margin-bottom: 25px;
   text-align: center;
   color: #222;
   border-bottom: 2px solid #eee;
   padding-bottom: 10px;
 }

 .cart-table {
   width: 100%;
   border-collapse: collapse;
   margin-bottom: 30px;
 }

 .cart-table th,
 .cart-table td {
   padding: 15px;
   border-bottom: 1px solid #eee;
   text-align: center;
 }

 .cart-table th {
   background-color: #f9f9f9;
   font-weight: 600;
   color: #444;
 }

 .cart-table td img {
   width: 80px;
   height: auto;
   border-radius: 8px;
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
 }

 input[type="number"] {
   width: 60px;
   padding: 6px;
   text-align: center;
   border: 1px solid #ccc;
   border-radius: 5px;
 }

 .btn-nm {
   background-color: #0084ff;
   color: #fff;
   border: none;
   padding: 8px 14px;
   border-radius: 5px;
   cursor: pointer;
   font-weight: 600;
   transition: background-color 0.3s ease;
 }

 .btn-nm:hover {
   background-color: #005fcc;
 }

 .btn-nm.remove {
   background-color: #ff4d4f;
 }

 .btn-nm.remove:hover {
   background-color: #cc0000;
 }

 .cart-footer {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   flex-wrap: wrap;
   gap: 20px;
 }

 .total-box {
   text-align: right;
   font-size: 18px;
   background-color: #f5f7fa;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
 }

 .total-box p {
   margin: 8px 0;
 }

 .btn-nm.checkout {
   display: inline-block;
   margin-top: 15px;
   background-color: #28a745;
 }

 .btn-nm.checkout:hover {
   background-color: #1f8c38;
 }

 /* Responsive Design */
 @media (max-width: 768px) {

   .cart-table th,
   .cart-table td {
     font-size: 14px;
     padding: 10px;
   }

   .cart-footer {
     flex-direction: column;
     align-items: stretch;
   }

   .total-box {
     text-align: left;
   }

   .cart-title {
     font-size: 22px;
   }
 }

 /*------------------cart End----------------*/

 /*===================checout page===================*/

 .container-1 {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
   max-width: 1200px;
   margin: 0 auto;
   margin-top: 100px;
 }

 .left,
 .right {
   flex: 1 1 500px;
   background: #fff;
   padding: 30px;
   border: 1px solid #ddd;
   border-radius: 10px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
 }

 .jin h2 {
   margin-bottom: 20px;
   font-size: 24px;
   color: #333;
   border-bottom: 2px solid #eee;
   padding-bottom: 10px;
 }

 label {
   display: block;
   margin-bottom: 6px;
   font-weight: bold;
   color: #333;
 }

 .order-summary table {
   width: 100%;
   border-collapse: collapse;
   margin-bottom: 20px;
 }

 .order-summary td {
   padding: 10px 0;
   border-bottom: 1px solid #eee;
   font-size: 16px;
 }

 .order-summary .total {
   font-weight: bold;
   font-size: 18px;
   color: #222;
 }

 .jeme {
   display: inline-block;
   background-color: #4CAF50;
   color: #fff;
   padding: 13px 63px;
   border: none;
   border-radius: 5px;
   font-size: 16px;
   cursor: pointer;
   margin-left: 158px;
   margin-top: 151px;
   transition: background-color 0.3s;
 }

 .jeme:hover {
   background-color: #45a049;
 }

 @media (max-width: 768px) {
   .container {
     flex-direction: column;
   }
 }


 .main-header .logo a {
  text-decoration: none;
  font-size: 55px;
  margin-left: 5px;
  color: black;
 }



.tv_product_btns {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}


.tv_product_jbtns{
  	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}
.tv_product_jbtns .jbtn-jin {
     background-color: #2ecc71;
   color: white;
   padding: 13px 70px;
   border: none;
   border-radius: 20px;
   font-size: 16px;
   cursor: pointer;
   transition: background-color 0.3s ease, transform 0.2s ease;
}
.tv_product_jbtns .jbtn-jin:hover{
    background-color: #27ae60;
   /* একটু ডার্ক সবুজ */
   transform: translateY(-4px);
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);

}
 
 
.tv_product_jbtns .jbtn {
    background-color: #2ecc71;
   color: white;
   padding: 13px 93px;
   border: none;
   border-radius: 20px;
   font-size: 16px;
   cursor: pointer;
   transition: background-color 0.3s ease, transform 0.2s ease;
}
.tv_product_jbtns .jbtn:hover{
    background-color: #27ae60;
   transform: translateY(-4px);
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}


/* ditails page ar add to card */
 .btn-ab {
   background-color: #2ecc71;
   width: 100%;
   padding: 12px;
   margin-bottom: 10px;
   font-size: 16px;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   transition: background-color 0.3s ease, transform 0.2s ease;
 }

 .btn-ab:hover {
     background-color: #27ae60;
   transform: translateY(-4px);
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
 }


.zee_product_jbtns{
  display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}
.zbtn-zin{
   background-color: #2ecc71;
   width: 100%;
   padding: 12px;
   margin-bottom: 10px;
   font-size: 16px;
   border: none;
   border-radius: 20px;
   cursor: pointer;
   transition: background-color 0.3s ease, transform 0.2s ease;
}
.zbtn-zin:hover{
    background-color: #27ae60;
   transform: translateY(-4px);
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.zeebtn{
   background-color: #2ecc71;
   width: 100%;
   padding: 12px;
   margin-bottom: 10px;
   font-size: 16px;
   border: none;
   border-radius: 20px;
   cursor: pointer;
   transition: background-color 0.3s ease, transform 0.2s ease;
}
.zeebtn:hover{
    background-color: #27ae60;
   transform: translateY(-4px);
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
 /* ditails page ar add to card */
 .ztv_product_btns {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}
.ztv_product_jbtns{
  	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.ztv_product_btns .btn_vot {
     background-color: #2ecc71;
   color: white;
  padding: 23px 87px;
  border: none;
  border-radius: 20px;
   font-size: 16px;
   cursor: pointer;
   transition: background-color 0.3s ease, transform 0.2s ease;
 }
  .ztv_product_btns .btn_vot:hover{
    background-color: #27ae60;
   transform: translateY(-4px);
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }



  /* shop page sideber */
  .sidebar-box {
  margin-top: 113px;
  background: beige;
  margin-left: -53px;
  text-align: center;
}
  .sidebar-title {
  font-weight: 700;
  color: #3452ff;
  margin-bottom: 1rem;
  font-size: 33px;
}

.sidebar-list li a {
  display: block;
  color: #555;
  padding: 9px 0;
  text-decoration: none;
  font-weight: 600;
}

.sidebar-list li a:hover {
  color: #000;
}

.sidebar-articles li {
  margin-bottom: 15px;
  color: #555;
  font-weight: 500;
  line-height: 1.6;
}

.promo-box p {
  font-size: 16px;
  line-height: 1.6;
}

.promo-box img {
  display: block;
  margin: 0 auto;
}


/* Sidebar Wrapper */
.col-md-3 {
  background-color: #f9f9f9;
  padding: 20px;
  border-right: 1px solid #ddd;
}

/* Widget Wrapper */
.widget {
  margin-bottom: 30px;
}

/* Widget Title */
.widget-title {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
  margin-bottom: 15px;
  color: #333;
}

/* Product Categories List */
.product-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-categories li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: #444;
}

.product-categories li span {
  color: #999;
}

/* Price Filter */
.price-range {
  width: 100%;
  margin-top: 10px;
}

#priceValue {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
  display: inline-block;
}

button.btn.btn-light {
  background-color: #ddd;
  color: #333;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s;
}

button.btn.btn-light:hover {
  background-color: #bbb;
}

/* Product Widget Section */
.product-widget,
.zproduct-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.zproduct-info p {
  font-size: 14px;
  margin: 0;
  color: #333;
}

.zproduct-info .price {
  font-size: 13px;
  color: #888;
}

/* sideber right  */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: block;
  z-index: 999;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 360px;
  height: 100%;
  background: #fff;
  box-shadow: -3px 0 10px rgba(0,0,0,0.2);
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.cart-header h2 {
  font-size: 25px;
  font-weight: bold;
  margin-top: -16px;
}

.cart-header .close-btn {
  font-size: 50px;
  cursor: pointer;
  color: #444;
  margin-top: -14px;
  margin-right: 10px;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  position: relative;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.item-details p {
  margin: 0;
  font-weight: 500;
}

.item-details small {
  color: #6aaa74;
}

.item-remove {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  color: #888;
}

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

.subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  margin-bottom: 15px;
  margin-left: 67px;
}

.view-cart-jbtn {
  width: 100%;
  padding: 12px;
  background: burlywood;
  border: none;
  margin-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  color: white;
}

.checkout-jbtn {
  width: 100%;
  padding: 12px;
  background: #6aaa74;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  max-height: 320px; /* Approx. 4 items-?? ???? ?????? */
  margin-top: 10px;
  padding-right: 6px; /* scrollbar-?? ???? */
}

/* Optional: Custom scrollbar style */
.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}



/*----palanigison---*/


/* Pagination container */
.pagination {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-family: sans-serif;
}

/* All pagination links */
.pagination a,
.pagination span {
  display: inline-block;
  padding: 10px 16px;
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Hover effect for links */
.pagination a:hover {
  background-color: #6aaa74;
  color: #fff;
  border-color: #6aaa74;
}

/* Current page number */
.pagination .current {
  background-color: #6aaa74;
  color: #fff;
  border-color: #6aaa74;
  font-weight: bold;
  cursor: default;
}

/* Dots (...) between page numbers */
.pagination .dots {
  padding: 10px 16px;
  background: transparent;
  border: none;
  color: #999;
  pointer-events: none;
}

/* Responsive on mobile */
@media (max-width: 480px) {
  .pagination a,
  .pagination span {
    padding: 8px 12px;
    font-size: 14px;
  }
}



.product-categories li a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.product-categories li a:hover {
  color: #e74c3c;
  text-decoration: none;
}
