/* Auto-generated Custom Builder CSS File */

/* --- Styles for Page ID: 28844 --- */
.page-id-28844 {
/* ===== HERO SLIDER ===== */
.hero-slider{
  height:520px;
  position:relative;
  overflow:hidden;
}

.hero-slide{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  animation: slideShow 18s infinite;
}

.hero-slide:nth-child(1){
  animation-delay:0s;
}
.hero-slide:nth-child(2){
  animation-delay:6s;
}
.hero-slide:nth-child(3){
  animation-delay:12s;
}

@keyframes slideShow{
  0%{opacity:0}
  5%{opacity:1}
  30%{opacity:1}
  35%{opacity:0}
  100%{opacity:0}
}

/* ===== SECTION TITLE ===== */
.section-title{
  font-size:28px;
  font-weight:600;
  margin-bottom:25px;
}

/* ===== CATEGORY STYLE ===== */
.category-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
}

.category-card{
  background:white;
  padding:25px;
  border-radius:18px;
  text-align:center;
  transition:0.3s ease;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.category-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

/* ===== PRODUCT GRID ===== */
.product-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.product-card{
  background:white;
  border-radius:20px;
  overflow:hidden;
  transition:0.3s ease;
  box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.product-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.product-card img{
  width:100%;
  height:230px;
  object-fit:cover;
}

.product-info{
  padding:18px;
}

.price{
  color:#ff3c3c;
  font-weight:600;
  font-size:18px;
  margin-top:8px;
}

/* ===== CUSTOM BUTTON ===== */
.custom-btn{
  display:inline-block;
  margin-top:12px;
  padding:10px 18px;
  border-radius:30px;
  background:linear-gradient(45deg,#ff7a18,#ff3c3c);
  color:white;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.custom-btn:hover{
  transform:scale(1.05);
  box-shadow:0 10px 25px rgba(255,60,60,0.4);
}

/* ===== CONTAINER ===== */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
  padding:50px 0;
}
}

