* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}

/* Login / Vendor buttons */
.auth-btn {
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background: #f1f3f5;
  transition: all 0.3s ease;
}

.auth-btn:hover {
  background: #56ab83;
  color: #fff;
  transform: translateY(-1px);
}

/* Vendor button */
.auth-btn.vendor {
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background: #f1f3f5;
  transition: all 0.3s ease;
}

.auth-btn.vendor:hover {
  color: #fff;
  background: #56ab83
}

/* Logged-in user display */
.auth-user {
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  background: #e9ecef;
  color: #212529;
}

.auth-user.vendor {
  background: #198754;
  color: #fff;
}

.hero {
  background: url('https://image.slidesdocs.com/responsive-images/background/celebrating-the-purchase-of-a-new-home-couple-poses-in-front-of-beautiful-house-real-estate-banner-3d-illustration-powerpoint-background_cd9008602d__960_540.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  padding: 50px 30px;
  text-align: center;
  position: relative;
}

.overlay {
  height: 100%;
  padding: 100px 2rem 0;
  text-align: center;
}

.overlay h1 {
  font-size: 2.5rem;
}

.overlay p {
  margin-top: 10px;
}

.search-bar {
  background-color: darkgrey;
  padding: 30px 50px;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  position: absolute;
  top: 70%;
  left: 20%;
  margin: 0 auto;
}

.search-bar select,
.search-bar button {
  padding: 10px;
  margin: 5px;
  border: none;
  border-radius: 5px;
}

.search-bar button {
  background: #28a745;
  color: white;
  cursor: pointer;
}

.properties {
  padding: 2rem;
  background: white;
  /* text-align: center; */
}

/* .property-card {
  background: #f0f0f0;
  padding: 1rem;
  border-radius: 10px;
  width: 223px;
} */
.property-card {
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  text-align: center;
  width: 290px;
  display: inline-block;
  vertical-align: top;
  padding: 1rem;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.property-card img {
  width: 100%;
  border-radius: 10px;
  height: 150px;
}

.testimonial {
  padding: 2rem;
  text-align: center;
  font-style: italic;
}

footer {
  background: #fff;
  padding: 1rem 2rem;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

footer .socials i {
  margin: 0 10px;
  font-size: 20px;
  color: #333;
}

.property-card a {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #28a745, #218838);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2);
  text-align: center;
}

.property-card a:hover {
  background: linear-gradient(135deg, #218838, #1e7e34);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 128, 0, 0.3);
}


/* ===== Contact Section Styles ===== */
.contact-section {
  background-color: #f5f7fa;
  padding: 60px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.contact-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #3498db;
  display: block;
  margin: 12px auto 0;
  border-radius: 3px;
}

.contact-section form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.contact-section .form-label {
  font-weight: 600;
  color: #34495e;
  margin-bottom: 6px;
}

.contact-section .form-control {
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-size: 15px;
  background-color: #fff;
}

.contact-section .form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  outline: none;
}

.contact-section textarea.form-control {
  resize: none;
  min-height: 120px;
}

.contact-section .btn-primary {
  background-color: #3498db;
  border: none;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-section .btn-primary:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 20px;
  }

  .contact-section h2 {
    font-size: 28px;
  }

  .contact-section form {
    padding: 20px;
  }
}

.container {
  max-width: 95%;
  margin: 0 auto;
  padding: 10px 20px;
}

/* Contact section */
.contact-section {
  background-color: #fff;
  padding: 60px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  text-align: center;
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.contact-section p {
  text-align: center;
  margin-bottom: 30px;
  color: #777;
}

/* Contact form */
.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

/* Submit button */
.btn-submit {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 18px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.sticky-video {
  position: relative;
  top: 0;
}

.btn-submit:hover {
  background-color: #0056b3;
}

/* footer css  */
.login-container {
  max-width: 560px;
  margin: 80px auto;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.login-container form {
  display: flex;
  flex-direction: column;
}

.login-container input {
  padding: 10px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-container button {
  padding: 10px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.login-container button:hover {
  background-color: #218838;
}

.login-container p {
  text-align: center;
  margin-top: 1rem;
}

.login-container a {
  color: #007bff;
  text-decoration: none;
}

.login-container a:hover {
  text-decoration: underline;
}

/* resister css  */

.register-container {
  max-width: 600px;
  margin: 80px auto;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.register-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.register-container form {
  display: flex;
  flex-direction: column;
}

.register-container input {
  padding: 10px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.register-container button {
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.register-container button:hover {
  background-color: #0056b3;
}

.register-container p {
  text-align: center;
  margin-top: 1rem;
}

.register-container a {
  color: #28a745;
  text-decoration: none;
}

.register-container a:hover {
  text-decoration: underline;
}

/* how to work page style */
header h1 {
  color: #6f2dbd;
  margin-bottom: 10px;
}

header p {
  color: #555;
  font-size: 18px;
}

.container-how {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.section {
  background: #fff;
  border-left: 6px solid #6f2dbd;
  margin-bottom: 30px;
  padding: 25px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.section h3 {
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
}

.section p {
  color: #333;
  font-size: 16px;
}

.section ul li {
  list-style-type: none;
}

.alert {
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
}


/* ===== Slider Section Style ===== */
.slider {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin-bottom: 15px;
}

.slider-track {
  display: flex;
  transition: transform 1s ease-in-out;
  width: 100%;
  height: 100%;
}

.slide {
  min-width: 90%;
  height: 400px;
  margin: 0 15px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s, opacity 0.5s;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text {
  position: absolute;
  bottom: 15px;
  left: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 15px;
  border-radius: 15px;
  /* text-align: center; */
  text-transform: capitalize;
}

/* Dots below the slider */
.dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 3px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Property details */
.container-property {
  max-width: 95%;
  margin: 0 auto;
}

.advertisement-img>img {
  max-width: 100%;
  margin: 20px 0;
  height: 400px;
}

.advertisement-bottom-img img {
  width: 90%;
  height: 200px;
  display: block;
  margin: 20px auto;
  object-fit: cover;
  /* ensures the image scales nicely */
}


.fixed-footer.show {
  bottom: 0;
  /* show footer */
}

/* /=================New Header Start=================/ */

.top-header {
  background: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.cart-icon {
  font-size: 28px;
  color: #28a745;
  margin-right: 8px;
}

.logo-text .brand {
  font-size: 24px;
  font-weight: bold;
  color: #e60023;
}

.logo-text .brand-green {
  font-size: 24px;
  font-weight: bold;
  color: #28a745;
}

.logo-text .dot {
  font-size: 14px;
  color: #000;
}

.tagline {
  font-size: 12px;
  color: #555;
}


/* Main container live search */
.main-search-box {
  width: 45%;
}

/* Search form */
.search-box {
  display: flex;
  width: 100%;
}

/* Input */
.search-box input {
  flex: 1;
  padding: 10px 12px;
  border: 2px solid #28a745;
  border-right: none;
  outline: none;
  border-radius: 6px 0 0 6px;
  font-size: 14px;
}

/* Button */
.search-box button {
  background: #28a745;
  border: 2px solid #28a745;
  border-left: none;
  padding: 0 18px;
  color: #fff;
  cursor: pointer;
  border-radius: 0 6px 6px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect */
.search-box button:hover {
  background: #218838;
}

/* Responsive */
@media (max-width: 992px) {
  .main-search-box {
    width: 60%;
  }
}

@media (max-width: 576px) {
  .main-search-box {
    width: 100%;
  }
}

/* Right Menu */
.menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.menu a i {
  margin-right: 5px;
}

/* Cart */
.cart {
  position: relative;
  font-size: 20px;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #28a745;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* /=================New Header End=================/ */
/* /=================New Nabvar Start=================/ */
.site-nav {
  background: #28a745;
  padding: 0 20px;
}

.menu {
  list-style: none;
  display: flex;
}

.menu>li {
  position: relative;
}

/* TOP MENU LINK */
.menu>li>a {
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  /* TEXT LEFT - ICON RIGHT */
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ICON STYLE */
.menu>li>a i {
  margin-left: 8px;
  font-size: 12px;
  transition: 0.3s;
}

/* ROTATE ICON ON HOVER */
.menu>li:hover>a i {
  transform: rotate(180deg);
}

/* ================= DROPDOWN ================= */

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  list-style: none;
  border: 1px solid #ddd;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 999;
}

/* SHOW FIRST DROPDOWN */
.menu>li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* SUBMENU LINKS */
.sub-menu li {
  position: relative;
  border-bottom: 1px solid darkgray;
}

.sub-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.sub-menu li:hover {
  background: #f2f2f2;
}

/* SECOND & THIRD LEVEL */
.sub-menu .sub-menu {
  top: 0;
  left: 100%;
}

/* SHOW NESTED */
.sub-menu li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* /=================New Navbar End=================/ */
/* /=================New top Category start=================/ */
.top-category-header {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  bottom: -2px;
  text-transform: capitalize;
  border-bottom: 1px solid darkgray;
}

.topcategory {
  width: 100%;
  margin-top: 20px;
  padding: 20px 10px;
}

/* CARD */
.cat_item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.35s all;
  text-align: center;
  cursor: pointer;
  border: 1px solid #ddd;
  margin: 0 5px;
  position: relative;
  display: block;
  height: 180px;
  text-decoration: none;
}

.top-next::after,
.top-prev::after {
  font-size: 14px;
  color: #333;
}

.top-next,
.top-prev {
  background: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* HOVER EFFECT */
.cat_item:hover {
  border-color: #00a600;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cat_item:hover img {
  transform: scale(1.1);
}

.cat_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

/* IMAGE SECTION */
.cat_img {
  height: 200px;
  overflow: hidden;
}

.cat_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.cat_item:hover .cat_img img {
  transform: scale(1.08);
}

/* CATEGORY NAME */
.cat_name {
  padding: 15px;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  z-index: 2;
}

.cat_name a {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.cat_name a:hover {
  color: #ff6600;
}

.old-price {
  color: blue;
}

.new-price {
  color: green;
  font-weight: bold;
}

/* /=================New Top Category end=================/ */
/* /=================New Top Hot Deal Start=================/ */
/* SLIDER SPACE */

/* PRODUCT CARD */
.product_item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  position: relative;
  height: 100%;
  border: 1px solid darkgray;
}

.product_item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.product_item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #198754;
}

/* SALE BADGE */
.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff3d3d;
  color: #fff;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 5px;
  z-index: 2;
}

/* View More */
.view-btn {
  background: #ff6600;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sale-badge-text p {
  margin: 0;
  font-weight: bold;
}

/* PRODUCT IMAGE */
.pro_img {
  height: 220px;
  overflow: hidden;
  background: #f8f8f8;
}

.pro_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.4s ease;
}

.product_item:hover .pro_img img {
  transform: scale(1.1);

}

/* PRODUCT DESCRIPTION */
.pro_des {
  padding: 10px;
  text-align: center;
}

.pro_name a {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.pro_name a:hover {
  color: #ff6600;
}

/* PRICE */
.pro_price p {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.pro_price del {
  font-size: 13px;
  color: #999;
  margin-right: 5px;
}

/* BUTTON SECTION */
.pro_btn {
  padding: 10px 15px 15px;
  text-align: center;
  margin-top: 5px;
}

.pro_btn a {
  display: block;
  background: green;
  color: #fff;
  padding: 6px;
  margin-top: 10px;
  border-radius: 4px;
  text-decoration: none;
}

.addcartbutton {
  display: inline-block;
  background: green;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.addcartbutton:hover {
  background: #e05500;
}

/* Swiper fix */
.swiper {
  padding-bottom: 30px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ff6600;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 22px;
  font-weight: bold;
}

.view-more {
  margin: 40px auto 20px auto;
  text-align: center;
}

.view-more a {
  text-align: center;
  background: #00a600;
  text-transform: capitalize;
  font-size: 20px;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
}

/* /=================New Top Hot Deal End=================/ */
/* /=================New Gadgets & Electronics End=================/ */
/* GRID GAP */
.product-grid {
  margin-top: 20px;
}

/* VIEW MORE BUTTON */
.view-more-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #198754;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.view-more-btn:hover {
  background: #145c32;
}

/* /=================New Gadgets & Electronics End=================/ */
/* /=================New Footer Start=================/ */
/* ===== FOOTER BASE ===== */
footer {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

footer a {
  text-decoration: none;
  transition: 0.3s ease;
}

footer a:hover {
  color: #ff6600;
}

/* ===== FOOTER TOP ===== */
.footer-top {
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top .footer-about img {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-top .footer-about p {
  margin: 0 0 10px;
}

.footer-top .footer-hotlint {
  display: inline-block;
  color: #ff6600;
  font-weight: 600;
}

/* ===== FOOTER MENU ===== */
.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu ul li.title a {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
}

.footer-menu ul li a {
  display: block;
  padding: 5px 0;
  color: #222;
}

.footer-menu ul li a:hover {
  color: #ff6600;
}

/* ===== SOCIAL LINKS ===== */
.social_link {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.social_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s ease;
}

.social_list a i {
  color: #fff;
}

/* Facebook */
.facebook a {
  background: #1877F2;
}

/* YouTube */
.youtube a {
  background: #FF0000;
}

/* Hover (slightly darker, not green) */
.facebook a:hover {
  background: #145dbf;
}

.youtube a:hover {
  background: #cc0000;
}

/* ===== DOWNLOAD APP ===== */
.d_app h2 {
  font-size: 16px;
  margin: 15px 0 10px;
}

.d_app img {
  max-width: 140px;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  background: #00a600;
  /* padding: 10px 0; */
  text-align: center;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.footer-bottom a {
  color: #ff6600;
  text-decoration: none;
}

/* ===== SCROLL TO TOP ===== */
.scrolltop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ff6600;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 999;
  transition: 0.3s ease;
}

.scrolltop:hover {
  background: #e05500;
}

.scrolltop i {
  color: #fff;
  font-size: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer-top .row>div {
    margin-bottom: 30px;
  }

  .social_link {
    justify-content: flex-start;
  }

  .d_app img {
    max-width: 120px;
  }
}

/* /=================New Footer end=================/ */
/* /=================New Product Details end=================/ */
.breadcrumb {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  padding: 20px 20px 0 20px;
}

.breadcrumb a {
  color: #555;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.product-card-details {
  background: #fff;
  border-radius: 10px;
  padding: 0 20px 20px 20px;
  max-width: 100%;
  margin: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.price {
  font-size: 20px;
  color: #e60000;
  margin-bottom: 10px;
}

.price del {
  color: #999;
  margin-right: 10px;
  font-size: 16px;
}

.rating {
  margin-bottom: 15px;
}

.rating a {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
}

.product-code {
  display: inline-block;
  background: #28a745;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
  margin-bottom: 15px;
}

.brand {
  margin-bottom: 15px;
  font-size: 14px;
}

.quantity {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.quantity button {
  width: 30px;
  height: 30px;
  background: #ddd;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.quantity input {
  width: 50px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 5px;
  height: 30px;
  border-radius: 3px;
}

.buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.buttons button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
}

.order-now {
  background: #e91e63;
}

.contact {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #006644;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 15px;
}

.contact i {
  font-size: 18px;
}

.shipping-info {
  background: #d0ebff;
  color: #0056b3;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.zoom-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.zoom-left {
  position: relative;
}

.zoom-left img {
  /* width: 100%; */
  max-width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.thumb-img {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: border 0.3s;
}

.thumb-img.active {
  border: 2px solid #28a745;
}

.product-details {
  width: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.product-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.price {
  font-size: 20px;
  margin-bottom: 10px;
}

.price del {
  color: #888;
  margin-right: 10px;
}

.rating {
  margin-bottom: 10px;
}

.product-code,
.brand {
  margin-bottom: 10px;
}

.quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.quantity input {
  width: 60px;
  text-align: center;
}

.buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.add-to-cart {
  background: #28a745;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  display: block;
  text-align: center;
  text-decoration: none;
}

.order-now {
  background: #ff007f;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  display: block;
  text-align: center;
  text-decoration: none;
  width: 49%;
}

.contact {
  background: #146c43;
  color: #fff;
  padding: 10px 15px;
  gap: 5px;
  border-radius: 5px;
  margin-bottom: 15px;
  cursor: pointer;
  border: 1px solid #13653f;
  width: 100%;

  display: flex;
  /* make flex container */
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  text-align: center;
  /* center text inside flex items */
}

.contact i {
  margin-right: 8px;
  /* space between icon and text */
}

.shipping-info div {
  background: #e0f7fa;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 5px;
}

/* Responsive */
@media(max-width: 480px) {
  .product-card {
    padding: 15px;
  }

  .product-title {
    font-size: 18px;
  }

  .price {
    font-size: 18px;
  }

  .buttons button {
    font-size: 14px;
    padding: 8px;
  }

  .contact {
    font-size: 14px;
  }
}

/* /=================New Product Details end=================/ */
/* /=================New product details section end=================/ */
/* Container */
.pro_details_area {
  padding: 40px 15px;
  font-family: "Trebuchet MS", sans-serif;
  color: #010f2d;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.product-details-section {
  background-color: #fff;
  padding: 60px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.related-product-section {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  background-color: #fff;
}

/* Headings */
.pro_details_area h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #010f2d;
}

/* Paragraphs */
.pro_details_area p {
  font-size: 15px;
  line-height: 26px;
  color: #010f2d;
  margin-bottom: 15px;
}

/* Lists */
.pro_details_area ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.pro_details_area ul li {
  margin-bottom: 10px;
  line-height: 20px;
}

/* Key Feature Two-column on desktop */
@media(min-width: 992px) {
  .pro_details_area ul.key-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .pro_details_area ul.key-features li {
    width: 45%;
  }
}

/* Details box (description / reviews) */
.details-action-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}

/* Review section */
.section-head .title h2 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #010f2d;
}

.section-head .title p {
  font-size: 14px;
  color: #555;
}

.details-action-btn {
  background-color: #146c43;
  color: #fff;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.details-action-btn:hover {
  background-color: #0f5a36;
}

/* Empty review content */
.empty-content {
  text-align: center;
  padding: 40px 0;
  color: #777;
}

.empty-content i {
  font-size: 50px;
  margin-bottom: 15px;
  display: block;
  color: #ccc;
}

.empty-content .empty-text {
  font-size: 16px;
}

/* Video box */
.pro_vide {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.pro_vide h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.sticky-video {
  position: sticky;
  top: 100px;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .pro_details_area .row {
    flex-direction: column;
  }

  .col-sm-8,
  .col-sm-4 {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .pro_details_area h2 {
    font-size: 20px;
  }

  .pro_details_area p,
  .pro_details_area ul li {
    font-size: 14px;
    line-height: 22px;
  }

  .details-action-btn {
    padding: 6px 12px;
    font-size: 14px;
  }
}

/* /=================New product details section end=================/ */
/* /=================Order Page Start=================/ */
/* Checkout Section */
.chheckout-section {
  padding: 40px 0;
  background: #f5f6fa;
}

/* Card Design */
.checkout-shipping .card,
.cart_details .card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Card Header */
.card-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.card-header h5,
.card-header h6 {
  margin: 0;
  font-weight: 600;
}

/* Form Label */
.checkout-shipping label {
  font-weight: 500;
  margin-bottom: 5px;
}

/* Input Fields */
.checkout-shipping .form-control {
  height: 45px;
  border-radius: 5px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.checkout-shipping .form-control:focus {
  border-color: #fe5200;
  box-shadow: none;
}

/* Order Button */
.order_place {
  width: 100%;
  background: #00a600;
  border: none;
  padding: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s;
}

.order_place:hover {
  background: #e04800;
}

/* Payment Method */
.payment-methods {
  margin-top: 10px;
}

.form-check {
  padding-left: 25px;
}

.form-check-input {
  margin-top: 4px;
}

/* Cart Table */
.cart_table {
  background: #fff;
}

.cart_table th {
  font-weight: 600;
}

.cart_table img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 10px;
}

.cart_table td {
  vertical-align: middle;
}

/* Product Link */
.cart_table a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Quantity Box */
.quantity {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quantity button {
  width: 30px;
  height: 30px;
  border: none;
  background: #eee;
  font-size: 18px;
  cursor: pointer;
}

.quantity input {
  width: 40px;
  text-align: center;
  border: 1px solid #ddd;
  height: 30px;
}

/* Remove Button */
.cart_remove {
  cursor: pointer;
}

/* Footer Total */
tfoot th {
  font-weight: 600;
}

tfoot td {
  font-weight: 600;
}

.order-number {
  text-decoration: none;
  color: #006644;
  font-weight: 700;
}

/* Responsive */
@media (max-width:768px) {

  .cust-order-1 {
    order: 1;
  }

  .cus-order-2 {
    order: 2;
  }

  .cart_table img {
    width: 45px;
    height: 45px;
  }
  .menu-login{
    display: none;
  }

}

/* /=================Order Page End=================/ */
/* /=================all product view Page Start=================/ */
.filter_btn {
  display: none;
}

.sale-badge-inner-view {
  width: 40px;
  height: 40px;
  line-height: 2%;
}

@media (max-width: 992px) {
  .filter_btn {
    display: block;
    cursor: pointer;
  }
}

/* ====== SECTION ====== */
.product-section {
  background: #fff;
  padding: 10px 0;
  margin: 10px auto;
}

/* ====== HEADER ====== */
.sorting-section {
  margin-bottom: 20px;
}

.category-breadcrumb {
  font-size: 14px;
  gap: 8px;
}

.category-breadcrumb a {
  color: #555;
  text-decoration: none;
}

.category-breadcrumb strong {
  color: #000;
}

/* ====== SIDEBAR ====== */
.filter_sidebar {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
}

.sidebar_item {
  margin-bottom: 15px;
}

.accordion-button {
  font-weight: 600;
  background: #f1f1f1;
}

.cust_according_body ul li {
  /* margin-bottom: 8px; */
}

.cust_according_body ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* ====== PRODUCT GRID ====== */
.main_product_inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

/* ====== PRODUCT CARD ====== */
.product_item {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  transition: 0.3s ease;
  position: relative;
  border: 1px solid #eee;
}

.product_item:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); */
}

/* ====== IMAGE ====== */
.pro_img {
  text-align: center;
}

.pro_img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* ====== BADGE ====== */
.sale-badge-view {
  position: absolute;
  top: 15px;
  right: 4px;
  z-index: 1;
}

.sale-badge-box-view {
  background-color: #ed145b;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sale-badge-text-view p {
  font-size: 11px;
  color: #fff;
}

.sale-badge-text-view {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  font-family: "Lato", sans-serif;
}

/* ====== TEXT ====== */
.pro_name {
  /* margin-top: 10px; */
  height: 40px;
  overflow: hidden;
  font-size: 14px;
  margin: 8px 0;
}

.pro_name a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* ====== PRICE ====== */
.pro_price {
  margin-top: 5px;
}

.pro_price del {
  color: #999;
  font-size: 13px;
}

.pro_price span {
  color: #16a34a;
  font-weight: bold;
  margin-left: 5px;
}


.addcartbutton {
  display: block;
  background: #16a34a;
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.cust_according_body ul {
  padding-left: 0 !important;
}

.cust_according_body ul li {
  list-style-type: none;
  display: block;
}

.cust_according_body ul li a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.addcartbutton:hover {
  background: #12803a;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
  background-color: #00a600;
  color: white;
}

.sidebar_item .accordion-header .accordion-button::after {
  content: "\f078";
  font-family: "FontAwesome";
  background: none;
  font-size: 17px;
}

/* ====== PAGINATION ====== */
.pagination {
  justify-content: center;
}

.page-link {
  color: #16a34a;
}

/* ====== RESPONSIVE ====== */

/* Tablet */
@media (max-width: 992px) {
  .main_product_inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .filter_sidebar {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .main_product_inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .sorting-section .row {
    flex-direction: column;
    gap: 10px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .main_product_inner {
    grid-template-columns: 1fr;
  }
}

.subcategory-filter-name {
  display: inline-block;
  padding-left: 8px;
}

/* /=================all product view Page End=================/ */

/* Card */
.price-card {
  max-width: 280px;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Header */
.price-header {
  background: #0a9e0a;
  color: #fff;
  padding: 10px 15px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

/* Body */
.price-body {
  padding: 15px;
}

.price-values {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

/* Slider */
.slider {
  position: relative;
  height: 6px;
}

/* Base track */
.track {
  position: absolute;
  height: 6px;
  width: 100%;
  background: #ddd;
  border-radius: 5px;
}

/* Active range */
.range {
  position: absolute;
  height: 6px;
  background: #0a9e0a;
  border-radius: 5px;
}

/* Inputs */
.slider input {
  position: absolute;
  width: 100%;
  top: -5px;
  pointer-events: none;
  appearance: none;
  background: none;
}

/* Thumb */
.slider input::-webkit-slider-thumb {
  pointer-events: auto;
  appearance: none;
  height: 16px;
  width: 16px;
  background: #0a9e0a;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #0a9e0a;
}

.slider input::-moz-range-thumb {
  pointer-events: auto;
  height: 16px;
  width: 16px;
  background: #0a9e0a;
  border-radius: 50%;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 576px) {
  .price-card {
    max-width: 100%;
  }
}

.slider-box {
  width: 100%;
}

/* Price inputs */
.filter-price-inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.filter-price-inputs p {
  background: #f1f1f1;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
}

.filter-price-inputs input {
  border: none;
  background: transparent;
  width: 60px;
  font-weight: 600;
}

/* Slider */
.price-slider {
  position: relative;
  height: 6px;
}

/* Gray track */
.price-slider .track {
  position: absolute;
  width: 100%;
  height: 6px;
  background: #ddd;
  border-radius: 5px;
}

/* Green selected range */
.price-slider .range {
  position: absolute;
  height: 6px;
  background: #0a9e0a;
  border-radius: 5px;
}

/* Range inputs */
.price-slider input {
  position: absolute;
  width: 100%;
  top: -5px;
  pointer-events: auto;
  appearance: none;
  background: none;
}

/* Thumb */
.price-slider input::-webkit-slider-thumb {
  pointer-events: auto;
  appearance: none;
  height: 16px;
  width: 16px;
  background: #0a9e0a;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #0a9e0a;
}

.price-slider input::-moz-range-thumb {
  pointer-events: none;
  height: 16px;
  width: 16px;
  background: #0a9e0a;
  border-radius: 50%;
  cursor: pointer;
}

/* =================main slider========= */
/* ===== MAIN SLIDER ===== */
.main-slider {
  position: relative;
  overflow: hidden;
}

.main-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* IMPORTANT */
.main-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
}

.main-slide a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
}

.main-slide img {
  /* width: 100%;
    display: block; */
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
}

/* FIX CLICK ISSUE */
.main-slider-track {
  pointer-events: none;
}

.main-slide,
.main-slide a,
.main-slide img {
  pointer-events: auto;
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #ff6600;
  transform: scale(1.3);
}

.main-slider-track {
  pointer-events: none;
}

.main-slide,
.main-slide a,
.main-slide img {
  pointer-events: auto;
}

.main-slide a {
  position: relative;
  z-index: 5;
  display: block;
}

/* ===== ARROW BUTTON ===== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.slider-btn:hover {
  background: #ff6600;
  color: #fff;
}

/* Left */
.prev {
  left: 15px;
}

/* Right */
.next {
  right: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .main-slide img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .main-slide img {
    height: 200px;
  }

  .slider-btn {
    width: 30px;
    height: 30px;
  }
}

/* =================main slider========= */
/* =================Responsive css start========= */

/* =================Responsive css End========= */