/* Font Import and Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css?family=Poppins|Ubuntu&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  background: #eee;
  font-family: 'Ubuntu', sans-serif
}

.box {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px
}

.our-services {
  margin-top: 75px;
  padding-bottom: 30px;
  padding: 0 60px;
  min-height: 198px;
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
  transition: all .4s ease-in-out;
  box-shadow: 0 0 25px 0 rgba(20, 27, 202, .17)
}

.our-services .icon {
  margin-bottom: -21px;
  transform: translateY(-50%);
  text-align: center
}

.our-services:hover h4,
.our-services:hover p {
  color: #fff
}

.speedup:hover {
  box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
  cursor: pointer;
  background-image: linear-gradient(-45deg, #fb0054 0%, #f55b2a 100%)
}

.settings:hover {
  box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
  cursor: pointer;
  background-image: linear-gradient(-45deg, #34b5bf 0%, #210c59 100%)
}

.privacy:hover {
  box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
  cursor: pointer;
  background-image: linear-gradient(-45deg, #3615e7 0%, #44a2f6 100%)
}

.backups:hover {
  box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
  cursor: pointer;
  background-image: linear-gradient(-45deg, #fc6a0e 0%, #fdb642 100%)
}

.ssl:hover {
  box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
  cursor: pointer;
  background-image: linear-gradient(-45deg, #8d40fb 0%, #5a57fb 100%)
}

.database:hover {
  box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
  cursor: pointer;
  background-image: linear-gradient(-45deg, #27b88d 0%, #22dd73 100%)
}

/* Navbar Styles */
.top-nav {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  background: linear-gradient(to left, #333333, #555555, #cccccc, #fff, #fff);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 120px;
  max-height: none;
  width: 250px;
  object-fit: cover;
}


.top-nav .navbar-brand {
  position: static;
  left: auto;
  transform: none;
  top: auto;
  z-index: auto;
  padding: 0;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .navbar-brand img {
    height: 80px;
    width: 150px;
  }
}

/* Search Container */
.search-container {
  position: relative;
  flex-grow: 1;
  max-width: 500px;
  margin: 0 2rem;
}

.search-container input {
  border-radius: 20px 0 0 20px;
  border: none;
  height: 35px;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
}

.search-container button {
  border-radius: 0 20px 20px 0;
  border: none;
  width: 50px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-container button i {
  font-size: 1.1rem;
}

/* Mobile Search Styles */
@media (max-width: 991px) {
  .search-container {
    position: relative;
    margin: 0.5rem 1rem;
    width: 100%;
    max-width: none;
    order: 3;
    flex-basis: 100%;
  }

  .navbar>.container-fluid {
    flex-wrap: wrap;
  }

  .search-container input {
    height: 40px;
    font-size: 0.95rem;
  }

  .search-container button {
    height: 40px;
    width: 45px;
  }
}

/* Nav Items */
.nav-items {
  display: flex;
  gap: 1.5rem;
}

.nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-item:hover {
  color: #f2f2f2;
  text-decoration: none;
}

.nav-item i {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

/* Bottom Navbar */
.bottom-nav {
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.bottom-nav .nav-link {
  color: #333;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
  .search-container {
    display: none;
  }

  .nav-items {
    gap: 1rem;
  }

  .nav-item span {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  padding: 2rem 0;
  background-color: #fff;
  margin: 0 2rem;
}

.sales-section {
  padding: 2rem 0;

  margin: 0 2rem;
}

.promo-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
}

.promo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.banner-right {
  height: 320px;
  overflow: hidden;
  /* Ensure overflow is hidden */
}

.long-banner {
  height: auto;
  /* or your desired height */
}

.promo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
}

.main-banner {
  height: 421px;
}

.main-banner .promo-content {
  padding: 2rem;
}

.main-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.small-banner {
  height: 210px;
  overflow: hidden;
}

.small-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.long-banner {
  height: 230px;
  /* Adjust this to match the remaining space */
  margin-top: -0.5rem;
  /* Adjust if needed to reduce gap */
  overflow: hidden;
  /* Ensure overflow is hidden */
}

.long-banner img {
  width: 100%;
  height: 100%;
  /* Ensure the image takes full height */
  object-fit: cover;
  /* Cover to maintain aspect ratio */
}

.long-banner .promo-content {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  text-align: left;
  padding-left: 3rem;
}

#shopNowBtn:hover {
  background-color: #089908;
  color: white;
  border-color: #089908;
}

@media (max-width: 991px) {
  .long-banner {
    height: 150px;
  }
}

.promo-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.promo-content .btn {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .main-banner {
    height: 350px;
  }

  .small-banner {
    height: 175px;
  }

  .main-banner h2 {
    font-size: 2rem;
  }

  .small-banner h3 {
    font-size: 1.25rem;
  }

  /* Stack all banners on mobile */
  .row>[class*="col-"] {
    margin-bottom: 1rem;
  }
}

/* Carousel Styles */
.carousel-indicators {
  margin-bottom: 3rem;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
  opacity: 1;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 991px) {

  /* Hide side banners on mobile */
  .hidden-on-mobile {
    display: none;
  }

  .hero-section {
    margin: 0;
  }

  /* Make main banner full width on mobile */
  .col-lg-6 {
    width: 100%;
  }

  .main-banner {
    height: 350px;
  }

  .small-banner {
    height: 175px;
  }

  /* Stack all banners on mobile */
  .row>[class*="col-"] {
    margin-bottom: 1rem;
  }
}

/* Offcanvas Styles */
.offcanvas {
  max-width: 300px;
}

.offcanvas .dropdown-menu {
  position: static !important;
  border: none;
  padding-left: 1.5rem;
  margin-top: 0;
  background: transparent;
}

.offcanvas .nav-link {
  padding: 0.5rem 0;
}

.offcanvas .dropdown-toggle::after {
  float: right;
  margin-top: 0.5rem;
}

.offcanvas-body {
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

#categoriesSubmenu {
  margin-top: 0.5rem;
}

#categoriesSubmenu .nav-link {
  padding-left: 1rem;
  font-size: 0.95rem;
}

.filter-section {
  margin-bottom: 2rem;
  max-height: 60vh;
  overflow-y: auto;
}

.filter-section h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  background: white;
  padding: 0.5rem 0;
  z-index: 1;
}

.form-check {
  margin-bottom: 0.5rem;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.price-inputs input {
  width: 100px;
}

.price-inputs span {
  color: #666;
}

/* Mobile Navigation Button */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Filter Button */
.btn-outline-primary {
  border-color: #0aad0a;
  color: #0aad0a;
}

.btn-outline-primary:hover {
  background-color: #0aad0a;
  border-color: #0aad0a;
}

/* Main Menu Styles */
.main-menu-section {
  margin-bottom: 1rem;
}

.main-menu-section .nav-item {
  margin-bottom: 0.5rem;
}

.main-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  padding: 0.75rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.main-link:hover {
  background-color: #f8f9fa;
  color: #0aad0a;
}

.main-link i {
  margin-right: 0.75rem;
  width: 20px;
  text-align: center;
}

.divider {
  height: 1px;
  background-color: #e9ecef;
  margin: 1rem 0;
}

/* Main Navbar Dropdown */
.navbar .dropdown-menu:not(.position-static) {
  position: absolute !important;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background: white;
  margin-top: 0;
  z-index: 1000;
}

/* Only apply position-static to offcanvas dropdowns */
.offcanvas .dropdown-menu.position-static {
  position: static !important;
  border: none;
  box-shadow: none;
  background: transparent;
}

/* Product Section Styles */
.products-section {
  padding: 3rem 0;
  background-color: #fff;
  margin: 0 2rem;
}

.section-title {
  margin-bottom: 2rem;
  text-align: start;
  color: #333;
}

.section-header {
  display: flex;
  justify-content: space-between;
  /* Space between title and link */
  align-items: center;
  /* Vertically align items */
}

.section-title {
  margin: 0;
  /* Remove default margin */
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  z-index: 2;
  position: relative;
}

.view-all a {
  text-decoration: none;
  color: #089908;
  /* Add your preferred link color */
}

/* Product Card Styles */
.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0.5rem;
  height: auto;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 0.5rem;
  background-color: #f8f9fa;
  display: block;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 4px;
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
  .product-card {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }

  .product-image {
    margin-bottom: 0.75rem;
  }

  /* Ensure grid columns work on mobile */
  .col-6 {
    width: 50%;
    float: left;
    padding: 0.5rem;
  }

  /* Clear the float every 2 items */
  .col-6:nth-child(2n + 1) {
    clear: left;
  }
}

/* Price Styles */
.regular-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 0.5rem;
}

.sale-price {
  color: #0aad0a;
  font-weight: 300;
}

/* Category Badge */
.product-category {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}

/* Product Badge (Sale) */
.product-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 1;
}

.product-actions {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.product-actions button {
  background: #fff;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.btn-quick-view,
.btn-add-cart {
  background: #fff;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-quick-view:hover,
.btn-add-cart:hover {
  background: #0aad0a;
  color: #fff;
}

.product-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
}

.product-info {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #f7f7f7;
}

.mainNewPromoBanner {
  padding: 3rem 0;
  background-color: #f7f7f7;
  margin: 0 2rem;
}

.product-title {
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  line-height: 1.4;
  overflow: hidden;
  position: relative;
  font-size: 14px;

  height: 2.8em;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
}

.product-title a {
  color: #333;
  text-decoration: none;
  display: -webkit-box;

  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-title a:hover {
  color: #0aad0a;
}

.product-price {
  margin-top: 0;
  /* Reduce space above the price */
  margin-bottom: 0.6rem;
  /* Reduce space below the price */
  font-size: 0.9rem;
  font-size: 14px;
}

.product-cart-controls {
  margin-top: 0.5rem;
}

.btn.btn-warning {
  padding: 0.4rem 0.75rem;
  /* Adjust button padding for better alignment */
  font-size: 0.9rem;
}

.regular-price {
  color: #d31818;
  text-decoration: line-through;
  margin-right: 0.5rem;
  font-size: 0.9rem;
  font-size: 14px;
}

.sale-price {
  color: #0aad0a;
  font-weight: 300;
  font-size: 1.1rem;
}

.product-meta {
  font-size: 0.85rem;
  color: #666;
  display: flex;
  justify-content: space-between;
}

.product-rating i {
  color: #ffcc00;
  margin-right: 2px;
}

.product-rating {
  margin: 0.6rem;
}

.total-reviews {
  margin-left: 0.3rem;
  /* Slight space between stars and review count */
  color: #999;
  font-size: 15px;
}

/* Skeleton Styles */
.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

.skeleton-box {
  height: 20px;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  background: #f0f0f0;
}

.skeleton .product-image {
  background: #f0f0f0;
}

@keyframes skeleton-loading {
  0% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

/* Add to Cart Button Styles */
.btn-primary {
  background-color: #0aad0a;
  border-color: #0aad0a;
}

.btn-primary:hover {
  background-color: #089908;
  border-color: #089908;
}

.btn-primary:active,
.btn-primary:focus {
  background-color: #078807 !important;
  border-color: #078807 !important;
  box-shadow: 0 0 0 0.25rem rgba(10, 173, 10, 0.25) !important;
}

/* Optional: Add title tooltip using data attribute */
.product-title[data-title]:hover:after {
  content: attr(data-title);
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  z-index: 10;
  width: max-content;
  max-width: 200px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

body {
  font-family: "Inter", sans-serif;
}

.sale-price {
  font-weight: 300;
  font-size: 1.1rem;
}

.regular-price {
  font-size: 0.9rem;
  font-weight: 400;
}

.section-title {
  font-weight: 600;
  letter-spacing: -0.5px;
}

/* Add these styles */
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card-link:hover {
  color: inherit;
}

/* Update existing styles */

/* Enhanced Product Details Page Styles */
.product-details-page {
  background-color: #f8f9fa;
  padding-top: 2rem;
}

.main-image-container {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
}

.main-image-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 400px;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.main-image-container img.zoomed {
  transform: scale(2);
  cursor: zoom-out;
}

/* Ensure zoom container stays above other elements */
.main-image-container.zooming {
  z-index: 1000;
}

/* Remove conflicting styles */
.zoom-image {
  /* Remove this class as we're applying styles directly to img */
  transition: none;
}

.zoom-image.zoomed {
  /* Remove this class as we're applying styles directly to img */
  transform: none;
}

.thumbnail-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.thumbnail {
  width: 100px;
  height: 100px;
  border: 2px solid #eee;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.thumbnail.active {
  border-color: #0aad0a;
}

.product-info-container {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
}

.product-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #666;
  font-size: 0.9rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.pricing {
  margin: 1.5rem 0;
}

.current-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.sale-price {
  font-size: 2rem;
  font-weight: 700;
  color: #e40303;
}

.regular-price {
  font-size: 0.8rem !important;
  color: #666;
}

.short-description {
  color: #444;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.quantity-selector {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.quantity-selector label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.quantity-selector .input-group {
  width: 140px;
  background: white;
  border-radius: 6px;
  overflow: hidden;
}

.quantity-selector .btn {
  background: white;
  border: none;
  color: #0aad0a;
  font-weight: bold;
  width: 32px;
  padding: 0;
}

.quantity-selector .form-control {
  border: none;
  text-align: center;
  font-weight: 500;
}

.add-to-cart-btn {
  font-size: 1.1rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.additional-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.additional-info p {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
}

.additional-info strong {
  color: #666;
}

/* Product Tabs */
.nav-tabs {
  border: none;
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: none;
  color: #666;
  font-weight: 500;
  padding: 1rem 1.5rem;
}

.nav-tabs .nav-link.active {
  background: white;
  color: #0aad0a;
  border-radius: 8px 8px 0 0;
  border: 1px solid #dee2e6;
  border-bottom: none;
}

.tab-content {
  background: white;
  border-radius: 0 8px 8px 8px;
  padding: 2rem !important;
}

/* Stock Status Badge */
.stock-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.in-stock {
  background: #e8f5e9;
  color: #2e7d32;
}

.out-of-stock {
  background: #ffebee;
  color: #c62828;
}

/* Delivery Info */
.delivery-info {
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.delivery-info i {
  color: #0aad0a;
  margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .thumbnail {
    width: 80px;
    height: 80px;
  }
}

/* Image Zoom Styles */
.main-image-container {
  position: relative;
  overflow: hidden;
}

.zoom-image {
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.zoom-image.zoomed {
  transform: scale(1.5);
  cursor: zoom-out;
}

/* Quantity Selector Styles */
.quantity-wrapper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.quantity-btn {
  border: none;
  background: white;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  color: #0aad0a;
  cursor: pointer;
  transition: all 0.2s;
}

.quantity-btn:hover {
  background: #f8f9fa;
}

.quantity-input {
  width: 60px;
  border: none;
  text-align: center;
  font-size: 1rem;
  padding: 0.5rem;
  -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Product Card Title (in listing) */
.product-card .product-title {
  font-size: 0.8rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  line-height: 1;
  height: 2.8em;
}

.ratingsHolder {
  background-color: #089908 !important;
}

.heart-icon {
  font-size: 1.5rem;
  transition: color 0.3s ease;
  /* Smooth transition for color */
}

.heart-icon:hover {
  color: red;
  /* Change the color on hover */
  cursor: pointer;
}

.heart-icon::before {
  content: "\f004";
  /* Unicode for the outlined heart */
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  /* Regular weight for outlined heart */
}

.heart-icon:hover::before {
  content: "\f004";
  /* Unicode for the filled heart */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  /* Solid weight for filled heart */
}

/* Product Details Title (single product page) */
.product-info-container .product-title {
  font-size: 1.2rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 1rem;
  height: auto;
  text-align: start;
}

/* Product Card Price (in listing) */
.product-card .sale-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0aad0a;
}

/* Product Details Price (single product page) */
.product-info-container .sale-price {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
}

/* Add to Cart Button Styles */
.card-add-to-cart {
  font-size: 0.9rem;
  padding: 0.5rem;
}

.product-details-add-to-cart {
  font-size: 1.1rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

/* Product Details Specific Styles */
.product-details-page .product-info-container {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
}

.product-details-page .short-description {
  color: #444;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.product-details-page .product-details-add-to-cart {
  background-color: #0aad0a;
  border-color: #0aad0a;
  color: white;
  font-weight: 500;
  margin-top: 1rem;
  padding: 1rem 2rem;
}

.product-details-page .product-details-add-to-cart:hover {
  background-color: #089908;
  border-color: #089908;
}

.product-details-page .product-details-add-to-cart:disabled {
  background-color: #6c757d;
  border-color: #6c757d;
  cursor: not-allowed;
}

/* Quill Content Styles */
.short-description,
#description {

  /* Remove Quill editor styles */
  .ql-editor {
    padding: 0;
  }

  /* Style the content */
  p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  ul,
  ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Remove any editing-related classes */
  [contenteditable],
  [contenteditable="true"] {
    outline: none !important;
    cursor: text;
  }
}

/* Fix layout structure */
.product-info-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-actions {
  order: 4;
  /* Adjust this value to control positioning */
}

.short-description {
  order: 5;
}

.delivery-info {
  order: 6;
}

.additional-info {
  order: 7;
}

/* Product Actions Styles */
.product-actions {
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.product-details-add-to-cart {
  background-color: #0aad0a !important;
  border-color: #0aad0a !important;
  margin-top: 1rem;
}

.product-details-add-to-cart:hover {
  background-color: #089908 !important;
  border-color: #089908 !important;
}

/* Product Info Container Styles */
.product-info-container {
  background: white;
  border-radius: 12px;
  padding: 1rem;
}

/* Short Description Styles */
.short-description {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  color: #444;
  line-height: 1.6;
}

/* Add to Cart Button Styles */
.product-details-add-to-cart {
  background-color: #0aad0a !important;
  border-color: #0aad0a !important;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.product-details-add-to-cart:hover {
  background-color: #089908 !important;
  border-color: #089908 !important;
}

/* Quantity Selector Styles */
.quantity-selector {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
}

/* Related Products Section */
.related-products-section {
  background-color: #f8f9fa;
  padding: 3rem 0;
  margin-top: 3rem;
}

.related-products-section .section-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #333;
}

.related-products-section .product-card {
  height: 100%;
  margin-bottom: 0;
}

.related-products-section .product-title {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.related-products-section .product-price {
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .related-products-section {
    padding: 2rem 0;
  }


  .related-products-section .col-6 {
    padding: 0.5rem;
  }
}

@media (max-width: 500px) {
  .products-section {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Cart Badge Styles */
.cart-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #ad0a0a;
  color: white;
  border-radius: 50%;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  display: none;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Quantity Controls Styles */
.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.quantity-controls .quantity {
  font-weight: 500;
  min-width: 2rem;
  text-align: center;
}

/* Toast Container Styles */
#toastContainer {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1050;
}

.toast {
  margin-bottom: 0.5rem;
}

/* Cart Offcanvas Styles */
.cart-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 1rem;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #333;
}

.cart-item-price {
  color: #0aad0a;
  font-weight: 600;
}

.cart-item-quantity {
  color: #666;
  font-size: 0.9rem;
}

.cart-summary {
  position: sticky;
  bottom: 0;
  background: white;
  padding: 1rem 0;
  margin-top: auto;
  border-top: 1px solid #eee;
}

#cartItems {
  max-height: calc(100vh - 250px);
  overflow-y: auto;
}

.empty-cart {
  text-align: center;
  padding: 2rem;
  color: #666;
}

.empty-cart i {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 1rem;
}

/* Cart Page Styles */
.cart-page {
  background-color: #f8f9fa;
  min-height: 100vh;
}

.cart-item-image {
  width: 100px;
  height: 100px;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-input {
  text-align: center;
}

.cart-summary {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.recommended-products .card {
  transition: transform 0.2s;
}

.recommended-products .card:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .cart-item {
    flex-wrap: wrap;
  }

  .cart-item-price {
    width: 100%;
    text-align: right;
    margin-top: 1rem;
  }
}

/* Cart Items Container Styles */
.cart-items-container,
.cart-summary {
  border-top: 3px solid #0aad0a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Search Styles */
.search-wrapper {
  width: 100%;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  display: none;
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #0aad0a #f8f9fa;
}

/* Webkit scrollbar styles (Chrome, Safari, etc.) */
.search-suggestions::-webkit-scrollbar {
  width: 6px;
}

.search-suggestions::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 3px;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background-color: #0aad0a;
  border-radius: 3px;
}

.suggestion-item {
  padding: 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-content {
  gap: 1rem;
}

.suggestion-image {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 4px;
  overflow: hidden;
}

.suggestion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suggestion-details {
  flex: 1;
}

.suggestion-title {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: #333;
}

.suggestion-price {
  font-size: 0.85rem;
}

.suggestion-price .text-muted {
  margin-right: 0.5rem;
}

/* Shop Page Styles */
.shop-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.shop-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-float {
  position: fixed;
  bottom: 150px;
  right: 20px;
  z-index: 1000;
  background-color: #25d366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  */ display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.shop-header {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.total-products {
  font-size: 1.1rem;
  color: #666;
}

.total-products span {
  font-weight: 600;
  color: #333;
}

@media (max-width: 768px) {
  .shop-banner {
    height: 200px;
  }

  .long-banner {
    height: 200px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .shop-header .d-flex {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .shop-header select {
    width: 100% !important;
  }
}

/* Category Slider Styles */
.category-slider-section {
  background-color: #fff;

  margin: 0 2rem;
}

@media (max-width: 600px) {
  .category-slider-section {
    margin: 10px 0;
  }
}

.app-banner-section {
  margin-top: 2rem;
  margin: 0 2rem;
}

.category-slider {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.category-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.category-card {
  flex: 0 0 200px;
  margin: 0 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-image {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  font-weight: 500;
  text-align: center;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-nav-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slider-nav-btn.prev {
  left: -20px;
}

.slider-nav-btn.next {
  right: -20px;
}

@media (max-width: 768px) {
  .category-card {
    flex: 0 0 160px;
  }

  .category-image {
    height: 120px;
  }
}

/* Bottom Navbar Right Side Styles */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-right: 1.5rem;
  padding-right: 1.5rem;
  border-right: 1px solid #dee2e6;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #0aad0a;
  transform: translateY(-2px);
}

.right-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.upload-btn {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.upload-btn:hover {
  background-color: #0aad0a;
  color: white;
  border-color: #0aad0a;
}

@media (max-width: 991px) {
  .right-nav {
    display: none;
  }
}

.app-banner {
  font-size: 14px;
}

/* App Banner Styles */
.app-banner {
  border-radius: 16px;

  overflow: hidden;
  position: relative;
  background: url("/assets/images/banners/app-banner.webp") no-repeat center;
  background-size: cover;
  height: 400px;
  /* Fixed height for better control */
}

.app-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.4) 100%);
}

.app-banner .text-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  max-width: 600px;
  padding: 3rem;
}

.app-banner h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.app-banner .text-primary {
  color: #0aad0a !important;
}

.app-banner .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.app-banner .store-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-banner .store-buttons img {
  transition: transform 0.3s ease;
}

.app-banner .store-buttons img:hover {
  transform: translateY(-5px);
}

.app-banner h3 {
  color: #0aad0a;
  margin-right: 1rem;
  font-size: 1.5rem;
  align-self: center;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .app-banner {
    margin: 2rem auto;
    height: auto !important;
    min-height: 400px;
  }

  .app-banner .text-container {
    position: relative !important;
    transform: none !important;
    top: 0 !important;
    left: 0 !important;
    padding: 2rem;
    text-align: center;
  }

  .app-banner h2 {
    font-size: 2rem;
    text-align: center;
  }

  .app-banner .lead {
    font-size: 1rem;
    text-align: center;
  }

  .app-banner .store-buttons {
    justify-content: center;
  }

  .app-banner::before {
    background: linear-gradient(0deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 100%);
  }
}

/* Footer Styles */
.footer {
  background-color: #f8f9fa;
}

.footer-logo {
  height: 150px;
  max-height: none;
  width: auto;
  object-fit: contain;
}

#callBtn {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

#callBtn:hover {
  background-color: #0aad0a;
  color: white;
  border-color: #0aad0a;
}

.footer-heading {
  color: #089908;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: #089908;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #089908;
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: start;
  gap: 10px;
  color: #6c757d;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: #089908;
  margin-top: 4px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: #089908;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #089908;
  color: white;
  transform: translateY(-3px);
}

.bottom-footer {
  background-color: #089908;
}

.bottom-footer a:hover {
  text-decoration: underline !important;
}

@media (max-width: 768px) {
  .footer-heading {
    margin-top: 1.5rem;
  }

  .footer-contact li {
    justify-content: center;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .app-banner .text-dark {
    color: #fff !important;
  }
}

.review {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.review .rating {
  color: #ffcc00;
  /* Gold color for stars */
}

.star {
  cursor: pointer;
  font-size: 1.5rem;
  color: #ccc;
}

.star.selected {
  color: #ffcc00;
  /* Gold color for selected stars */
}

.new-promo-cards {
  height: 350px;
  border-radius: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.new-promo-cards:hover {
  transform: scale(1.05);
}

.new-promo-cards .shop-now-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.new-promo-cards:hover .shop-now-btn {
  opacity: 1;
  transform: translate(-50%, -10px);
}

/* Product Slider Styles */
.product-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0 20px;
}

.product-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 20px;
}

.product-track .product-card {
  flex: 0 0 300px;
  /* Fixed width for each product card */
  margin: 0;
}

#prevProduct,
#nextProduct {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#prevProduct {
  left: 0;
}

#nextProduct {
  right: 0;
}

#prevProduct:hover,
#nextProduct:hover {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Featured Products Swiper Styles */
.featured-products-swiper {
  padding: 20px 0;
  position: relative;
}

.featured-products-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.featured-products-swiper .product-card {
  width: 100%;
  margin: 0;
}

/* Navigation Buttons */
.featured-products-swiper .swiper-button-next,
.featured-products-swiper .swiper-button-prev {
  color: var(--primary-color);
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.featured-products-swiper .swiper-button-next:after,
.featured-products-swiper .swiper-button-prev:after {
  font-size: 18px;
}

.featured-products-swiper .swiper-button-next {
  right: 10px;
}

.featured-products-swiper .swiper-button-prev {
  left: 10px;
}

/* Pagination */
.featured-products-swiper .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.featured-products-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
}

.featured-products-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {

  .featured-products-swiper .swiper-button-next,
  .featured-products-swiper .swiper-button-prev {
    display: none;
  }
}

/* Consolidated with .product-image above */

.product-card .product-info {
  padding: 0.5rem;
}

.product-card .product-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card .product-price {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
  /* Slightly increase on hover */
}

.top-nav .search-container {
  display: flex;
  flex-grow: 1;
  margin: 0 1rem;
}

@media (max-width: 991.98px) {
  .top-nav .search-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;

    z-index: 1000;
  }

  .top-nav .search-container.show {
    display: flex;
  }
}

.top-nav .nav-items {
  display: flex;
  align-items: center;
}