.elementor-46 .elementor-element.elementor-element-75f09a9{--display:flex;}.elementor-46 .elementor-element.elementor-element-ada79a3{--display:flex;--min-height:30px;}.elementor-46 .elementor-element.elementor-element-e6b3bdb{margin:0px 5px calc(var(--kit-widget-spacing, 0px) + 45px) 5px;padding:3px 0px 36px 0px;}/* Start custom CSS for html, class: .elementor-element-e6b3bdb */.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
   // padding-top: 5px;
  padding-bottom: 40px;
  margin-bottom: 50px;
 
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4757;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.img-wrap {
  position: relative;
  overflow: hidden;
  
}

.img-wrap img {
  width: 100%;
 height: auto;
  transition: transform 0.4s ease;
}

.product-card:hover .img-wrap img {
  transform: scale(1.05);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .img-overlay {
  opacity: 1;
}

.quick-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  background-color: transparent;
  color: #ff6600; /* text changes to border color */
}

.product-card:hover .quick-cta {
  opacity: 1;
 
}

.quick-cta a {
 background: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  
}



.product-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 160px;
}

.product-title {
  font-weight: 700;
  font-size: 16px;
  color: #222;
  margin-bottom: 4px;
}

.product-desc {
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
}

.price {
  font-size: 15px;
  font-weight: 600;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 6px;
}

.new-price {
  color: #007bff;
}

.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.view-btn {
  background: #007bff;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.meta {
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 4px;
}



/* Hero Image Section */


.hero-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #f7faff, #ffffff);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 50px;
  margin: 40px 0;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-content {
  flex: 1;
  min-width: 320px;
}

.hero-content h1 {
  font-size: 2rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-price {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero-price .old {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}

.hero-price .new {
  color: #007bff;
  font-weight: 700;
  margin-right: 10px;
}

.hero-price .discount {
  background: #ff4757;
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-buttons .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-btn {
  background: #007bff;
  color: #fff;
}

.view-btn:hover {
  background: #0056b3;
}

.buy-btn {
  background: #0bbf4b;
  color: #fff;
}

.buy-btn:hover {
  background: #099c3c;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
  .hero-product {
    flex-direction: column-reverse;
    padding: 30px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-buttons {
    justify-content: center;
  }
}/* End custom CSS */