.hero-section {
  background: #fff5f0;
  padding: 80px 0 !important;
 
}

.section-title {
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block; 
  
}

.section-title::after {
  content: ' I';
  color: #065f46;
  font-size: 2rem;
}

a {
  text-decoration: none !important;
  color: inherit;
}

.product-extra:hover a.prod-link {
  color: #065f46 !important;
  transition: all 0.7s;
}

.category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease;
  cursor: pointer;
  height:  150px;
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.60),
    rgba(0, 0, 0, 0.25),
    transparent
  );
  z-index: 0;
}

.category-card a{
  color:red;
}




.category-card span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff !important;
  font-weight: bold;
  z-index: 1;
}

/* Product Cards */
.product-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s, box-shadow 0.4s;
  height: 100%;
  background-color: white;
  cursor: pointer;
  
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  
}

.product-card:hover img{
  transform: scale(1.03);
}



.product-card img {
  border-radius: 12px;
  aspect-ratio: 3 / 3;
  
  transition: transform 0.4s ease;

}

.product-card h6 {
  margin-top: 10px !important;
  font-size: 14px;
}

.category-box {
  padding: 20px !important;
  border-radius: 12px;
}

.benefits {
  background: #eaf6f6;
}

body {
  font-family: "Inter", sans-serif;
  color: #1f2937;
}

/* HERO */
.hero-section {
  background: linear-gradient(180deg, #d7f1f0, #ffffff);
  padding: 80px 0;
}

.hero-section h1 {
  font-size: 2.4rem;
  font-weight: 700;
}

.hero-section p {
  color: #6b7280;
  margin-top: 10px;
}

/* FEATURE CARDS */
.feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #065f46;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  margin: auto;
  margin-bottom: 30px;

}

.icon-circle .check {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: #ff5722;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h5 {
  font-weight: 600;
  font-size: 1rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: #6b7280;
}

/* SELL SECTION */
.sell-section {
  padding: 80px 0;
}

.sell-section h3 {
  font-weight: 700;
  color: #1a5f54;
}

.sell-card {
  padding: 20px;
  border-radius:  0 0 15px  15px;
  height: 100%;
}

.sell-section img {
  border-radius: 15px  15px 0 0 ;
}

.sell-card p{
  font-size: 10px;
}


.bg-light-yellow {
  background: #fff8e1;
}

.bg-light-blue {
  background: #e0f2fe;
}

.bg-light-green {
  background: #e6f9f0;
}  

    .image-chat-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 3;
  border-radius: 16px;
  cursor: pointer;
  z-index: 0;
  
  transition: transform 0.4s ease;
}


/* Overlay */
.chat-overlay {
  position: absolute;
  z-index: 1;
  transform: translateY(-70px);
  transition: transform 0.4s ease;
}

/* Chat bubble */
.chat-bubble {
  background: #ffffff;
  color: #333;
  border-radius: 14px 14px 14px 4px;
  font-size: 0.95rem;
  line-height: 1.4;
  max-width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Hover / Focus effects */
.cartegories-card:has(.image-chat-card:hover) .chat-bubble{
  opacity: 1;
  
}

.cartegories-card:has(.image-chat-card:hover) .chat-overlay {
  transform: translateY(-90px);
}

.image-chat-card:hover  {
  transform: scale(1.1);
  
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Mobile-friendly touch support */
@media (hover: none) {
  .chat-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-categories:hover span{
  background-color: #eaf6f6 !important;
  color: #1a5f54 !important;
}