.elementor-7 .elementor-element.elementor-element-e793823{--display:flex;--min-height:0px;--align-items:stretch;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7 .elementor-element.elementor-element-e793823.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-7 .elementor-element.elementor-element-cdc0a84{margin:0px 5px calc(var(--kit-widget-spacing, 0px) + 0px) 5px;padding:3px 0px 50px 0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-7 .elementor-element.elementor-element-e793823{--width:95.341%;}}/* Start custom CSS for html, class: .elementor-element-cdc0a84 */.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: 60px;
  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 PRODUCT SECTION CSS */
/* --------------------------- */

/* Titles and Subtitles */
.hero-content h1,
.hero-title {
  margin-bottom: 5px;
}

.hero-content h2,
.hero-title {
  margin-bottom: 5px;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #F54927;
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.2;
}

/* --------------------------- */
/* 🧱 Layout and Styling */
/* --------------------------- */
.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 1 50%;
  padding: 20px;
}

.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;
}

/* --------------------------- */
/* 💰 Price Section */
/* --------------------------- */
.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;
}

/* --------------------------- */
/* 🔘 Buttons */
/* --------------------------- */
.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 SLIDESHOW */
/* --------------------------- */
.hero-image {
  flex: 1 1 47%;
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: 20px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;     /* ⭐ prevents cropping */
  object-position: center; /* ⭐ keep image centered */
   transform: translate(-50%, -50%);
  opacity: 0;
  animation: fadeSlider 14s infinite;
  border-radius: 20px;
}

.hero-slider img:nth-child(1) {
  animation-delay: 0s;
}

.hero-slider img:nth-child(2) {
  animation-delay: 7s;
}

/* --------------------------- */
/* 🎞️ Keyframes */
/* --------------------------- */
@keyframes fadeSlider {
  0% { opacity: 0; }
  5% { opacity: 1; }
  50% { opacity: 1; }
  55% { opacity: 0; }
  100% { opacity: 0; }
}

/* --------------------------- */
/* 📱 Responsive Design */
/* --------------------------- */




/* 📱 MOBILE FIXES ONLY (max 768px) */
@media (max-width: 768px) {

  /* Stack content & image properly */
  .hero-product {
    flex-direction: column-reverse;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    gap: 20px;
  }

  /* Reduce heading sizes */
  .hero-content h1,
  .hero-title {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  /* Price text smaller */
  .hero-price {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  .hero-price .discount {
    font-size: 0.8rem;
  }

  /* Buttons auto-fit and center */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 90%;
    padding: 12px;
    font-size: 1rem;
  }

  /* 🔥 IMAGE FIXES */
  .hero-image {
    width: 100%;
    height: auto;
    max-height: 280px;       /* perfect height for mobile */
    border-radius: 16px;
  }

  .hero-slider {
   width: 100%;
    aspect-ratio: 1 / 1; /* square auto-fitting visible container */
    position: relative;
    overflow: visible;
  }

  .hero-slider img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain;     /* show full image without cropping */
    object-position: center;
   
    border-radius: 16px;
  }
}/* End custom CSS */