/* HERO */
.inner-hero{
  
  color:#fff;
  padding:120px 0 140px;
}
.product-hero-content{
padding: 10px;
}
.inner-hero h2{
  font-size:clamp(38px,5vw,64px);
  font-weight:800;
  line-height:1.1;
  margin-bottom:14px;
}

.inner-hero p{
  max-width:620px;
  font-size:14px;
  color:rgba(255,255,255,.85);
}


/* BREADCRUMB */
.breadcrumb{
  display:flex;
  gap:10px;
  font-size:14px;
  margin-bottom:20px;
}

.breadcrumb a{
  color:rgba(255,255,255,.7);
  text-decoration:none;
}

.breadcrumb strong{
  color:#fff;
}
.hero-product-banner-line{
  width: 100px;
  height: 3px;
  background-color: #9D2763;
  margin-bottom: 8px;
}
.hero-product-banner-text-clr{
  color: #9D2763;
}

/* JOURNEY SECTION */
.journey-section{
  margin-top:-80px;
  position:relative;
  z-index:5;
  padding: 0 60px;
}


/* CARD */
.journey-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 15px 50px rgba(0,0,0,.08);
  padding:22px 26px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;

  flex-wrap:wrap;
}


/* ITEM */
.journey-item{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  transition:.3s;
  min-width:180px;
}

.journey-item:hover{
  background:#f8f9fb;
}


/* ICON */
.journey-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  background:#f1f2f4;
  border:1px solid #e5e7eb;
  /* border: 1px solid #9D2763; */
  display:grid;
  place-items:center;
  font-size:20px;
  color:#374151;
  transition:.3s;
}


/* TEXT */
.journey-item strong{
  font-size:14px;
  color:#111827;
  display:block;
}

.journey-item span{
  font-size:12px;
  color:#6b7280;
}


/* ACTIVE */
.journey-item.active .journey-icon{
  background:#9D2763;
  color:#fff;
  border-color:var(--primary);
  box-shadow:0 8px 20px rgba(220, 20, 80, .3);
}

.journey-item.active strong{
  color:#9D2763;
}


/* DIVIDER */
.journey-divider{
  flex:1;
  height:2px;
  /* background:linear-gradient(to right, #e5e7eb, #f3f4f6); */
  background: #9d2763ba;
  min-width:10px;
  max-width:80px;
}

/*-------------------------------------------------------------- Product Cat */
/* SECTION */
.product-category{
  padding:80px 0;
  background:#f9fafb;
}

.section-header{
  text-align:center;
  margin-bottom:50px;
}
.product-head-line{
    width: 90px;
    margin: 0 auto 8px auto;
    height: 2px;
    background-color: #9D2763;
}
.section-header h2{
  font-size:32px;
  font-weight:800;
  font-family: "Playfair Display", serif;

  /* margin-bottom:10px; */
}

.section-header p{
  color:#6b7280;
  font-size:16px;
 
}


/* GRID */
.category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}


/* CARD */
.category-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:.4s;
  position:relative;
}

.category-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}


/* IMAGE */
.card-image img{
  width:100%;
  height:180px;
  object-fit:cover;
}


/* ICON */
/* .card-icon{
  position:absolute;
  top:140px;
  left:50%;
  transform:translateX(-50%);
  width:60px;
  height:60px;
  border-radius:50%;
  background:var(--primary);
  display:grid;
  place-items:center;
  color:#fff;
  font-size:22px;
  border:4px solid #fff;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
} */


/* BODY */
.card-body{
  padding:20px;
  text-align:center;
}

.card-body h3{
  font-size:18px;
  font-weight:700;
  margin-bottom:8px;
}

.card-body p{
  font-size:14px;
  color:#6b7280;
  margin-bottom:16px;
   padding-bottom: 6px;
  border-bottom: 2px solid #6b728038;
}


/* META */
.card-meta{
  font-size:13px;
  color:#6b7280;
  margin-bottom:16px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:6px;
}


/* BUTTON */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--primary);
  color:#fff;
  padding:10px 18px;
  border-radius:8px;
  text-decoration:none;
  font-size:14px;
  transition:.3s;
}

.btn-primary:hover{
  background:#a50f3d;
}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width:1024px){
  .category-grid{
    grid-template-columns:repeat(2,1fr);
  }
}



/* MOBILE */
@media (max-width:1200px) {
    .journey-card{
        gap: 0;
    }
    .journey-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .journey-item strong {
    font-size: 13px;
    }
    .journey-item span {
        font-size: 11px;
    }

}

@media (max-width:965px) {
    .journey-item{
        min-width: 0;
    }
    .journey-card {
        padding: 22px 10px;
    }
    .journey-section {
    padding: 0 ;  
    }

}
@media (max-width:768px){

  .inner-hero{
    padding:145px 0 65px 16px;
  }
  .breadcrumb{
    font-size: 9px;
  }
  .inner-hero h2{
    font-size:32px;
  }

  .inner-hero p{
    font-size:10px;
    max-width: 260px;
  }

  .journey-card{
    flex-wrap:nowrap;
    overflow-x:auto;
    padding:0px;
    gap:0px;
  }

  .journey-card::-webkit-scrollbar{
    display:none;
  }

  .journey-item{
    min-width:150px;
  }

  .journey-divider{
    display:none;
  }

  .journey-icon{
    width:46px;
    height:46px;
    font-size:16px;
  }

  .journey-item span{
    display:none;
  }
  .journey-section{
    margin-top: -40px;
  }
}


/* Journey */
/* =========================
   MOBILE VERSION
========================= */

@media (max-width:768px){

  .journey-section{
    margin-top:-35px;
    /* padding:0 12px; */
  }

  .journey-card{
    background:#fff;
    border-radius:20px;
    padding:10px;
    display:flex;
    align-items:start;
    justify-content:space-between;
    gap:8px;
    overflow-x:auto;
    flex-wrap:nowrap;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
  }

  .journey-card::-webkit-scrollbar{
    display:none;
  }

  .journey-item{
    min-width:auto;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    gap:8px;
    padding:10px 14px;
    border-radius:16px;
    flex:1;
  }

  .journey-item strong{
    font-size:11px;
    line-height:1.2;
  }

  .journey-item span{
    display:none;
  }

  .journey-icon{
    width:42px;
    height:42px;
    font-size:15px;
    flex-shrink:0;
  }

  .journey-divider{
    display:none;
  }

  /* ACTIVE */
  .journey-item.active{
    background:#f8f1f5;
  }

  .journey-item.active .journey-icon{
    background:#9D2763;
    color:#fff;
    box-shadow:0 8px 18px rgba(157,39,99,0.25);
  }

  .journey-item.active strong{
    color:#9D2763;
  }

}
/* Mobile */
@media (max-width:640px){
  .category-grid{
    grid-template-columns:1fr;
  }

  .card-image img{
    height:200px;
  }

  .section-header h2{
    font-size:24px;
  }
}
@media (max-width:576px) {
    .product-category{
        padding: 40px 12px;
    }
    .journey-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
.product-list-tab-btn {
  font-size: 10px;
  padding: 10px !important;
}
.product-list-tabs{
  gap: 8px;
}
.product-list-sort-box select{
  font-size: 10px;
  padding: 10px;
}
.section-header p {
font-size: 12px;
}
.section-header h1{
  font-size: 25px;
}
}
/* EXTRA SMALL */
@media (max-width:480px){

  .journey-card{
    gap:4px;
    padding:8px;
  }

  .journey-item{
    padding:8px 0px;
  }

  .journey-icon{
    width:38px;
    height:38px;
    font-size:14px;
  }

  .journey-item strong{
    font-size:10px;
  }

}