    body {
      font-family: 'Inter', sans-serif !important;
      margin: 0;
      padding: 0;
      background: #fff;
      color: #333;
      overflow-x: hidden;
    }

    /* Top Bar - Hidden on mobile */
    .top-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0px 40px;
      font-size: 14px;
      background-color: #0a0808 ;
      color: #fff;
      flex-wrap: wrap;
    }

    .top-bar a {
      text-decoration: none;
      color: #fff;
      margin: 0 5px;
      white-space: nowrap;
    }

    .top-bar .left,
    .top-bar .center,
    .top-bar .right {
      display: flex;
      align-items: center;
      padding: 5px 0;
    }

    .top-bar .center {
      flex: 1;
      min-width: 250px;
      justify-content: center;
      margin: 4px 15px;
    }
    /* Main Navbar */
    .main-navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      border-bottom: 1px solid #eee;
      position: relative;
      background-color: #fff !important;
    }

    .brand {
      /* font-size: 24px;
      font-weight: bold; */
      /* color: #333; */
      text-align: start;
      /* flex-grow: 1; */
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .brand-logo {
      height: 49px;
      width: auto;
      max-width: 520px;/* Prevent logo from being too wide */
      margin-left: 104px;
    }

    .search-bar {
      /* flex: 1; */
      margin: 0 40px;
      display: flex;
      border: 2px solid #fff ;
      border-radius: 6px;
      overflow: hidden;
    }

    .search-bar select,
    .search-bar input {
      padding: 10px;
      border: 1px solid #eee;
      /* border: none;
      outline: none; */
    }

    .search-bar select {
      background-color: #fff;
    }

    .search-bar input {
      flex: 1;
    }

    .search-bar button {
      background-color: #fff;
      border: none;
      color: #333;
      font-size: 20px;
      padding: 10px;
      cursor: pointer;
    }

    .icon-links {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .icon-links div {
      text-align: center;
      font-size: 12px;
    }

    .icon-links span {
      /* display: block;
      font-size: 10px; */
      color: #333;
    }

    /* Bottom Nav */
    .bottom-nav {
      position: sticky;  
      top: 0;
      z-index: 1000;      
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 40px;
      background-color: #fff ;
      border-top: #eee;
      /* border-bottom: 2px solid #eee; */
    }

    .bottom-nav .btn-categories {
      font-size: 11px;
      background-color: #fff;
      color: #000000;
      /* border: none; */
      border: 1px solid;
      padding: 10px 20px;
      /* font-weight: bold; */
      border-radius: 5px;
      margin-right: 20px;
      cursor: pointer;
    }

    .bottom-nav nav a {
      margin: 0 15px;
      text-decoration: none;
      color: #333;
      font-weight: 300;
      font-size: 14px;
    }

    .bottom-nav nav a.active {
      color: #333;
    }
.bottom-nav .btn-categories:hover {
  background-color: #000000;
  color: #ffffff;
}
.bottom-nav nav a:hover {
  background-color: #000000;
  color: #ffffff;
  padding: 5px 10px; /* optional: add padding to highlight hover */
  border-radius: 3px;
}
    .support {
      margin-left: auto;
      text-align: right;
    }

    .support div {
      color: #333;
      font-size: 20px;
      font-weight: bold;
    }

    .support small {
      display: block;
      color: #555;
    }

    /* Mobile Styles */
    .mobile-header {
      display: none; /* Will be shown on mobile */
      justify-content: space-between;
      align-items: center;
      padding: 4px;
      border-bottom: 1px solid #eee;
      width: 100%;
      background: #fff; /* Ensure background is white */
      position: fixed;
      z-index: 10;
      
    }

    .mobile-logo {
      font-size: 20px;
      font-weight: bold;
      color: #333;
    }

    .mobile-brand {
      font-size: 18px;
      font-weight: bold;
      color: #333;
      flex-grow: 1;
      text-align: center;
    }
    
    .logo-image {
      height: 100%; /* Image will fill container height */
      width: auto; /* Maintain aspect ratio */
      max-width: 150px; /* Prevent logo from being too wide */
      object-fit: contain;
    }

    .mobile-icons {
      display: flex;
      gap: 15px;
      align-items: center;
      margin-right: 22px;
    }

    .mobile-icons i {
      font-size: 20px;
      color: #333;
    }

    .mobile-menu-btn {
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
    }

    /* Mobile Sidebar */
    .sidebar {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background: #fff ;
      z-index: 1000;
      box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
      padding: 32px 24px;
      box-sizing: border-box;
      overflow-y: auto;
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      border-top-right-radius: 16px;
      border-bottom-right-radius: 16px;
    }

    .sidebar.open {
      left: 0;
    }

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

    .sidebar-search {
      width: 100%;
      margin-bottom: 20px;
    }

    .sidebar-search input {
      width: 92%;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 4px;
    }

    .sidebar-nav {
      display: flex;
      flex-direction: column;
    }

    .sidebar-nav a {
      padding: 12px 0;
      text-decoration: none;
      color: #333;
      border-bottom: 1px solid #eee;
    }

    .sidebar-nav a.active {
      color: #333;
    }

    .sidebar-footer {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #eee;
    }

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

    .overlay.active {
      display: block;
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
      .top-bar {
        display: none;
      }
      
      .bottom-nav {
        display: none;
      }
      .footer-center{
        display: none !important;
      }
      .footer-right{
        display: none !important;
      }
      
      .main-navbar {
        display: none;
      }
      
      .mobile-header {
        display: flex;
      }
    }

    @media (min-width: 1025px) {
      .mobile-header {
        display: none;
      }
      
      .sidebar {
        display: none;
      }
      
      .overlay {
        display: none;
      }
    }

    /* Service Cards */
    main {
      /* display: flex; */
      flex-wrap: wrap;
      justify-content: center;
      padding: 60px;
    }

    .service-card {
      width: 300px;
      margin: 15px;
      padding: 20px;
      border: 1px solid #eee;
      border-radius: 8px;
      text-align: center;
    }

    .service-card h3 {
      color: #333;
    }

    .service-card a {
      display: inline-block;
      margin-top: 10px;
      color: #333;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      main {
        padding: 20px;
      }
      
      .service-card {
        width: 100%;
        margin: 10px 0;
      }
    }   
/* footer */
.site-footer {
  background: #e4ddcd;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif !important;
  color: #333;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  /* max-width: 1200px; */
  width: 100%; /* Ensure full width */
}
/* .footer-bottom {
  width: 100vw;  /* Viewport width */
  /* margin-left: calc(-50vw + 50%); /* Pull it to align with screen edges */
/*   
  text-align: center;
  padding: 20px; */
/* } */ 
.footer-main-columns {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 12px;
}

.footer-secondary-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  margin-top: 30px;
}
.footer-secondary-columns .footer-column {
  min-width: 0; /* Prevent overflow */
}
.mobile-header {
  padding: 4px 16px; /* smaller padding */
  height: 56px; /* fixed height for iPhones */
}

.logo-image {
  height: 36px; /* smaller logo for mobile */
  max-width: 120px;
}

/* Fix input/select/button heights in mobile navbar */
@media (max-width: 1024px) {
  .search-bar input,
  .search-bar select,
  .search-bar button {
    height: 36px; /* consistent height for mobile */
    line-height: normal;
    -webkit-appearance: none;
  }

  .brand-logo {
    height: 36px; /* smaller logo on mobile */
  }
}
/* Contact Column Specific Styles */
.footer-contact-column {
  grid-column: span 1;
}

/* Install App Column Specific Styles */
.footer-install-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Payment Column Specific Styles */
.footer-payment-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
  .footer-secondary-columns {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* @media (max-width: 850px) {
  .footer-secondary-columns {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-payment-column {
    grid-column: span 2;
    align-items: center;
    text-align: center;
  }
} */

@media (max-width: 600px) {
  .footer-secondary-columns {
    grid-template-columns: 1fr;
  }
  
  .footer-payment-column {
    grid-column: span 1;
    align-items: flex-start;
    text-align: left;
  }
  
  .app-links {
    justify-content: flex-start;
  }
}

/* Ensure images scale properly */
.app-links, .payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-links img, .payment-logos img {
  max-width: 100%;
  height: auto;
}
/* Modify the existing .footer-container */
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.footer-column {
  flex: 1 1 180px;
  min-width: 180px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2d2d2d;
}

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

.footer-column ul li {
  margin-bottom: 6px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

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

.footer-logo {
  width: 227px;
  margin-bottom: 15px;
}

.footer-contact li {
  font-size: 14px;
  margin-bottom: 8px;
}

.app-links img,
.payment-logos img {
  height: 32px;
  margin-right: 10px;
  margin-top: 8px;
}

.logo-column {
  flex: 1 1 100%;
  max-width: 250px;
}

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

  .footer-column {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .logo-column {
    max-width: 100%;
  }
}
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  width: 100%;
}

.footer-left,
.footer-center,
.footer-right {
  /* flex: 1 1 70px; */
  display: flex;
}

.brand-name {
  color: #333;
  font-weight: bold;
}

.footer-center {
  display: flex;
  gap: 20px;
}

.phone-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-box img {
  width: 38px;
  height: 38px;
  border-radius: 20px;
}

.highlight {
  color: #333;
  font-weight: bold;
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin: 5px 0;
}

.social-icons img {
  width: 38px;
  height: 38px;
  /* background: #333; */
  padding: 6px;
}

.back-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  background: #fff;
  border: 2px solid #333;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  line-height: 28px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease; /* Add smooth transition for hover effects */
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-center {
    flex-direction: column;
  }

  .back-to-top {
    position: static;
    margin-top: 20px;
  }
}
/* Main Layout */
.main-wrapper {
    padding: 48px 20px;
    background-color: #fff ;
  }
  
  .content-area {
    display: block; /* or flex with just one child */
  }
  
  /* Left Content */
  .main-left {
    flex: none;
    width: 100%;
  }
  
  
  
  /* Popular Heading */
  .popular-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  
  
  .product-card h4 {
    margin: 10px 0 5px;
    font-size: 18px;
  }
  
  .product-card p {
    color: #333;
    font-weight: bold;
    margin: 0;
  }
  
  /* Sticky Category Sidebar */
  .category-sidebar {
    flex: 1;
    position: sticky;
    top: 120px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    height: fit-content;
  }
  
  .category-sidebar h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .category-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .category-sidebar li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
  }
  
  
  /* Product Cards */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
    gap: 20px; /* space between cards */
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Medium screens: 2 per row */
  @media (max-width: 1200px) {
    .product-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Small screens: 2 per row */
  @media (max-width: 900px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Mobile: 1 per row */
  @media (max-width: 600px) {
    .product-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .product-card {
    width: 100%;
    padding: 0;
    /* border: 1px solid #ddd; */
    position: relative;
    box-sizing: border-box;
  }
  
  /* .product-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 11px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    flex: 0 0 calc(33.333% - 20px);
    box-sizing: border-box;
  } */
  
  
  
  .product-card img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    /* border-radius: 10px; */
    margin-bottom: 15px;
    background-color: #aca8a3;
  }
  
  /* Discount Badge */
  .discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #333;
    color: #fff;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 1;
  }
  
  /* Product Title */
  .product-card h4 {
    margin: 10px 0 5px;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    text-align: center;
  }
  
  /* Pricing */
  .price {
    margin-bottom: 15px;
  }
  
  .original-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
    font-size: 15px;
  }
  
  .discounted-price {
    color: #333;
    font-size: 17px;
    font-weight: bold;
  }
  
  /* Add to Cart Button */
  .add-to-cart {
    margin-top: auto;
    align-self: flex-end;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .add-to-cart:hover {
    background-color: #121212; /* smooth dark black */
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* soft black glow */
    transform: translateY(-3px) scale(1.03);
    z-index: 2;
  }
  .add-to-cart-description {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .add-to-cart-description:hover {
    background-color: #121212; /* smooth dark black */
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* soft black glow */
    transform: translateY(-3px) scale(1.03);
    z-index: 2;
  }
  
  
  /* Responsive */
  @media (max-width: 991px) {
    .product-card {
      flex: 1 1 calc(50% - 20px);
    }
  }
  
  @media (max-width: 576px) {
    .product-card {
      flex: 1 1 100%;
    }
  
    .product-card img {
      height: 260px;
    }
  
    /* .add-to-cart {
      width: 100%;
      align-self: stretch;
      text-align: center;
    } */
  }
  
  
  
  /* Responsive Design */
  @media (max-width: 991px) {
    .product-card {
      flex: 1 1 calc(50% - 20px); /* 2 cards per row */
    }
  }
  
  @media (max-width: 768px) {
    .content-area {
      flex-direction: column;
    }
  
    .category-sidebar {
      display: none;
    }
  
    .product-card {
      flex: 1 1 calc(50% - 20px); /* Still 2 cards per row */
    }
  
    .popular-title {
      text-align: center;
    }
  }
  
  @media (max-width: 576px) {
    .product-card {
      flex: 1 1 100%; /* 1 card per row */
    }
  
    .popular-title {
      font-size: 20px;
    }
  }
  

/* deals of the day section style    */

.daily-deals-section {
  padding: 30px 20px;
  background-color: #fff ;
  position: relative;
}

.daily-deals-title {
  font-size: 28px;
  color: #222;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.deals-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.deals-slider {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.deal-card {
  flex: 0 0 300px;
  margin: 0 12px;
  flex: 0 0 calc(100% / 3 - 24px);
  position: relative;
  border-radius: 12px;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-image {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 12px;
}

.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.deal-card:hover .deal-image img {
  transform: scale(1.05);
}

.deal-info {
  position: relative;
  top: -40px;
  left: 0;
  transform: none;
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  padding: 16px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
  z-index: 2;
}

.deal-price {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.current-price {
  color: #000000;
  margin-right: 8px;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
  font-size: 16px;
}

.deal-cart-btn {
  background-color: #8a2be2;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background 0.3s ease;
}

.deal-cart-btn:hover {
  background-color: #6a1bbd;
}

.deal-rating {
  font-size: 16px;
  color: #f7b500;
  letter-spacing: 2px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #222;
  border: 1px solid #ccc;
  border-radius: 50%;
  padding: 10px 12px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.carousel-button:hover {
  background-color: #f0f0f0;
}

.carousel-button.left {
  left: 0;
}

.carousel-button.right {
  right: 0;
}

/* Responsive styles */
@media (max-width: 991px) {
  .carousel-container {
    max-width: 680px;
  }

  .deal-card {
    flex: 0 0 45%;
  }
}

@media (max-width: 767px) {
  .carousel-container {
    max-width: 100%;
  }

  .deal-card {
    flex: 0 0 100%;
    margin: 0 8px;
  }

  .carousel-button {
    display: block;
    top: auto;
    bottom: 50%;
    transform: translateY(50%);
    background-color: #fff;
    padding: 8px 10px;
    font-size: 16px;
  }

  .carousel-button.left {
    left: 10px;
  }

  .carousel-button.right {
    right: 10px;
  }

  .deal-info {
    bottom: -60px;
  }
}

.banner-section {
  position: relative;
}

.banner-section img {
  width: 100%;
  /* border-radius: 8px; */
  margin-bottom: 30px;
  display: block;
}
.mobile-only-img {
  display: none;
  width: 100%;
  border-radius: 8px;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .mobile-only-img {
    display: block;
  }
}
.subscribe-box {
  position: absolute;
  bottom: 13px;
  left: 13px;
  display: flex;
  gap: 10px;
  background: rgb(255 255 255);
  padding: 24px 47px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease; /* Smooth transition for the entire box */
}

/* Hover effect for the entire box */
.subscribe-box:hover {
  transform: translateY(-5px); /* Lift the box slightly */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Deeper shadow */
  background: rgba(255, 255, 255, 0.95); /* Slight transparency */
}

/* Input field animation */
.subscribe-box input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  width: 180px;
  font-size: 14px;
  flex-shrink: 1;
  transition: all 0.3s ease;
}

.subscribe-box:hover input {
  border-color: #666; /* Darker border on hover */
}

/* Button animation */
.subscribe-box button {
  padding: 8px 12px;
  background-color: #343434d9;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.subscribe-box:hover button {
  background-color: #000; /* Darker background */
  transform: scale(1.05); /* Slight zoom effect */
}

/* Optional: Add a subtle pulse animation to the button */
.subscribe-box button:hover {
  animation: pulse 0.5s ease infinite alternate;
}

@keyframes pulse {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
  .subscribe-box {
    /* left: 50%;
    transform: translateX(-50%); */
    width: 80%;
    justify-content: space-between;
    gap: 8px;
    padding: 4px 12px;
  }

  .subscribe-box input {
    width: 60%;
    font-size: 13px;
    padding: 6px;
  }

  .subscribe-box button {
    width: 35%;
    font-size: 13px;
    padding: 6px;
  }
}

/* Increase input box size on larger screens */
@media (min-width: 1024px) {
  .subscribe-box input {
    width: 300px; /* Increased from 180px */
  }
}
.rotating-messages {
  position: relative;
  height: 20px;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.message {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  padding: 0 10px; /* Add some padding */
  box-sizing: border-box;
}

.message.active {
  opacity: 1;
}

.bold-line {
  font-weight: 900;
  margin: 0 4px;
}

.product-card {
  position: relative;
}

/* Show icon only on hover by default (desktop) */
.product-card:hover .wishlist-wrapper {
  display: flex;
}

/* Hide wishlist icon by default */
.wishlist-wrapper {
  position: absolute;
  top: 15px;
  right: 15px;
  display: none;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

/* Tooltip styling */
.wishlist-tooltip {
  display: none;
  background-color: #000;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  position: absolute;
  right: 45px;
  top: 5px;
  opacity: 0;
  transition: 0.3s;
}

/* Heart icon style */
.wishlist-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid black;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
}

.wishlist-icon i {
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}

/* Hover effect for heart */
.wishlist-icon:hover {
  background-color: black;
}

.wishlist-icon:hover i {
  color: white;
}

/* Show tooltip on hover */
.wishlist-icon:hover + .wishlist-tooltip {
  display: block;
  opacity: 1;
}

/* Show heart icon always on devices that do not support hover (mobile) */
@media (hover: none) {
  .wishlist-wrapper {
    display: flex;
  }

  .wishlist-tooltip {
    display: none !important;
    opacity: 0 !important;
  }
}

/* Account Dropdown Styles */
.account-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1001;
  border-radius: 4px;
  padding: 10px 0;
}

.dropdown-content a {
  color: #333;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown-username {
  padding: 8px 16px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  margin-bottom: 5px;
}

.account-dropdown.active .dropdown-content {
  display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .account-dropdown {
    position: static;
  }
  
  .dropdown-content {
    right: auto;
    left: 0;
    width: 100%;
  }
}

.user-status {
  /* padding: 15px; */
  border-bottom: 1px solid #eee;
}

.sidebar-username {
  font-weight: bold;
  margin-bottom: 10px;
}

.sidebar-logout,
.sidebar-login,
.sidebar-signup {
  display: block;
  padding: 8px 0;
  color: #333;
  text-decoration: none;
}

.wishlist-icon i.added {
  color: red;
}
.quantity-controller {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 4px 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.quantity-controller:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.qty-btn {
  padding: 4px 10px;
  background-color: #000;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.qty-btn:hover {
  background-color: #333;
  transform: scale(1.05);
}

.qty-value {
  min-width: 24px;
  text-align: center;
  font-size: 16px;
  color: #000;
  font-weight: 500;
}


