

.product-card:hover {
  transform: scale(1.09); /* Enlarges the image by 10% */
  object-fit: cover;
  
  /* 1. Increase duration (0.8s - 1.2s is very elegant) */
  /* 2. Use a cubic-bezier for a custom 'flow' */
  transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
  /* transition: transform 1.5s ease-in-out; */
  
  /* 3. Hint to the browser to use the GPU for a flicker-free animation */
  will-change: transform;
}

.badge-custom {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.btn-custom {
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border: none;
    transition: all 0.3s ease;
    color:#ffffff;
}

.btn-custom:hover {
    transform: translateX(5px);
    box-shadow: -5px 5px 15px rgba(46, 204, 113, 0.3);
}

.hero-section {
    /* background-image: url('https://images.unsplash.com/photo-1594640705123-4009f76b1afd?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w0NzEyNjZ8MHwxfHNlYXJjaHw0fHxkZnxlbnwwfDB8fHwxNzEwNzQ0MDMzfDA&ixlib=rb-4.0.3&q=80&w=1080'); */
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.2rem;
}

.hero-ads {
  /* Semi-transparent background is required to see the effect */
  background-color: rgba(255, 255, 255, 0.2); 
  
  /* The magic line */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* For Safari support */
  
  /* Styling for your white text */
  color: #043941;
  padding: 20px;
  border-radius: 10px;
}

.scrollarea .active {
    background-color: #2db6b6 !important;
    
}

.scrollarea {
    height: 500px;       /* Required: Define a height */
    overflow-y: auto;    /* Enables vertical scrolling */
    /* border: 1px solid #ccc; */
    /* padding: 15px; */
}

.search-container {
    position: relative;
}

.search-input {
    height: 35px;
    border-radius: 30px;
    padding-left: 35px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #888;
}

/* Container for positioning */
.search-container {
  position: relative;
  width: 300px;
}

#search-input {
  width: 100%;
  /* padding: 10px; */
  box-sizing: border-box;
}

/* The Dropdown List */
#suggestions-list {
  position: absolute;
  width: inherit;
  background-color: white; /* White background */
  /* border: 1px solid #ddd; */
  margin-top: 3px;
  border-top: none;
  /* margin: 0; */
  padding: 0;
  list-style-type: none; /* Removes bullet icons */
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Individual items */
#suggestions-list li {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}

#suggestions-list li:last-child {
  border-bottom: none;
}

/* Hover effect */
#suggestions-list li:hover {
  background-color: #f5f5f5;
}

.buy-button {
  background-color: #2db6b6;
}

.product-image {
      max-height: 400px;
      object-fit: cover;
  }
  .thumbnail {
      width: 80px;
      height: 80px;
      object-fit: cover;
      cursor: pointer;
      opacity: 0.6;
      transition: opacity 0.3s ease;
  }
  .thumbnail:hover, .thumbnail.active {
      opacity: 1;
  }

  .vertical-line {
  width: 1px;
  background-color: #000;
}