
/* ========================================
   CATEGORY HERO SECTION
======================================== */

.category-hero-section{
  position:relative;
  overflow:hidden;
  padding:70px 0 60px;
  background:linear-gradient(
    180deg,
    rgba(99,102,241,0.05),
    rgba(255,255,255,1)
  );
}

.category-hero-glow{
  position:absolute;
  width:500px;
  height:500px;
  border-radius:50%;
  background:radial-gradient(
    circle,
    rgba(99,102,241,0.10),
    transparent 70%
  );
  top:-180px;
  right:-120px;
  pointer-events:none;
}

.category-breadcrumb{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:28px;
  font-size:14px;
}

.category-breadcrumb a{
  color:#64748b;
  text-decoration:none;
  transition:all .3s ease;
}

.category-breadcrumb a:hover{
  color:#111827;
}

.category-breadcrumb span{
  color:#94a3b8;
}

.category-hero-content{
  max-width:900px;
  position:relative;
  z-index:2;
}

.category-hero-content h1{
  font-size:56px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-2px;
  color:#111827;
  margin-bottom:22px;
}

.category-hero-content p{
  font-size:18px;
  line-height:1.8;
  color:#64748b;
  max-width:850px;
  margin-bottom:38px;
}

.category-trust-stats{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.category-trust-card{
  background:#fff;
  border:1px solid #edf2f7;
  border-radius:20px;
  padding:20px 24px;
  min-width:170px;
  box-shadow:0 12px 30px rgba(0,0,0,0.04);
}

.category-trust-card h3{
  margin:0 0 6px;
  font-size:26px;
  font-weight:800;
  color:#111827;
}

.category-trust-card span{
  font-size:14px;
  color:#64748b;
}

@media(max-width:991px){

  .category-hero-content h1{
    font-size:42px;
  }

}

@media(max-width:576px){

  .category-hero-section{
    padding:50px 0;
  }

  .category-hero-content h1{
    font-size:32px;
    line-height:1.15;
    letter-spacing:-1px;
  }

  .category-hero-content p{
    font-size:16px;
  }

  .category-trust-card{
    width:100%;
  }

}



/* ========================================
   CATEGORY FILTER SECTION
======================================== */

.category-filter-section{
  position:relative;
  margin-top:-20px;
  z-index:20;
}

.category-filter-wrapper{
  background:#fff;
  border:1px solid #edf2f7;
  border-radius:28px;
  box-shadow:0 20px 60px rgba(0,0,0,0.06);
  padding:22px;
}

.category-filter-bar{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.filter-search-box{
  position:relative;
  flex:1;
  min-width:280px;
}

.filter-search-box i{
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  color:#94a3b8;
  font-size:15px;
}

.filter-search-box input{
  width:100%;
  height:56px;
  border:none;
  outline:none;
  border-radius:16px;
  background:#f8fafc;
  padding:0 18px 0 48px;
  font-size:15px;
  color:#334155;
  transition:all .3s ease;
}

.filter-search-box input:focus{
  background:#fff;
  border:1px solid #6366f1;
}

.filter-select-wrap{
  min-width:180px;
}

.filter-select{
  width:100%;
  height:56px;
  border:none;
  outline:none;
  border-radius:16px;
  background:#f8fafc;
  padding:0 18px;
  color:#334155;
  font-size:15px;
  cursor:pointer;
}

.category-filter-btn{
  height:56px;
  padding:0 28px;
  border-radius:16px;
  flex-shrink:0;
}

@media(max-width:991px){

  .filter-search-box{
    min-width:100%;
  }

  .filter-select-wrap{
    flex:1;
    min-width:calc(50% - 8px);
  }

}

@media(max-width:576px){

  .category-filter-section{
    margin-top:0;
    padding-top:20px;
  }

  .category-filter-wrapper{
    border-radius:22px;
    padding:18px;
  }

  .filter-select-wrap{
    min-width:100%;
  }

  .category-filter-btn{
    width:100%;
  }

}



/* ========================================
   CATEGORY PRODUCT GRID
======================================== */

.category-products-main{
  padding:60px 0 90px;
}

.products-grid-header{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:40px;
}

.products-grid-header h2{
  font-size:38px;
  font-weight:800;
  color:#111827;
  letter-spacing:-1px;
  margin-bottom:10px;
}

.products-grid-header p{
  margin:0;
  color:#64748b;
  font-size:15px;
}

.clear-filters-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  border-radius:14px;
  background:#f8fafc;
  color:#334155;
  font-weight:600;
  transition:all .3s ease;
}

.clear-filters-btn:hover{
  background:#e2e8f0;
  color:#111827;
}

.empty-products-state{
  text-align:center;
  padding:80px 20px;
  background:#fff;
  border:1px solid #edf2f7;
  border-radius:28px;
  box-shadow:0 12px 30px rgba(0,0,0,0.04);
}

.empty-products-state i{
  font-size:54px;
  color:#94a3b8;
  margin-bottom:20px;
}

.empty-products-state h3{
  font-size:28px;
  font-weight:800;
  color:#111827;
  margin-bottom:14px;
}

.empty-products-state p{
  color:#64748b;
  max-width:500px;
  margin:0 auto 28px;
  line-height:1.8;
}

.empty-reset-btn{
  height:54px;
  padding:0 28px;
  border-radius:16px;
}

@media(max-width:991px){

  .products-grid-header h2{
    font-size:32px;
  }

}

@media(max-width:576px){

  .category-products-main{
    padding:40px 0 70px;
  }

  .products-grid-header h2{
    font-size:28px;
  }

  .empty-products-state{
    padding:50px 20px;
  }

}

/* ========================================
   PAGINATION
======================================== */

.pagination-section{
  padding:10px 0 90px;
}

.custom-pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.custom-pagination a,
.custom-pagination span{

  min-width:48px;
  height:48px;

  padding:0 16px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  border-radius:14px;

  background:#fff;

  border:1px solid #edf2f7;

  color:#334155;

  font-weight:600;

  transition:all .3s ease;
}

.custom-pagination a:hover{
  background:#f8fafc;
  color:#111827;
  transform:translateY(-2px);
}

.custom-pagination .active,
.custom-pagination span.current{
  background:#111827;
  color:#fff;
  border-color:#111827;
}

.custom-pagination .dots{
  background:transparent;
  border:none;
  min-width:auto;
  padding:0 6px;
  color:#94a3b8;
  cursor:default;
}

.custom-pagination .pagination-nav{
  padding:0 20px;
}

@media(max-width:576px){

  .pagination-section{
    padding:0 0 60px;
  }

  .custom-pagination{
    gap:8px;
  }

  .custom-pagination a,
  .custom-pagination span{
    min-width:42px;
    height:42px;
    font-size:14px;
  }

  .custom-pagination .pagination-nav{
    padding:0 14px;
  }

}


/* ========================================
   CATEGORY FAQ
======================================== */

.category-faq-section{
  padding:90px 0;
  background:linear-gradient(
    180deg,
    rgba(99,102,241,0.03),
    rgba(255,255,255,1)
  );
}

.faq-section-header{
  max-width:760px;
  margin:0 auto 50px;
  text-align:center;
}

.faq-section-header h2{
  font-size:44px;
  font-weight:800;
  color:#111827;
  margin-bottom:16px;
  letter-spacing:-1px;
}

.faq-section-header p{
  font-size:17px;
  line-height:1.8;
  color:#64748b;
}

.faq-accordion{
  max-width:900px;
  margin:0 auto;
}

.faq-card{
  background:#fff;
  border:1px solid #edf2f7;
  border-radius:22px;
  overflow:hidden;
  margin-bottom:18px;
  box-shadow:0 12px 30px rgba(0,0,0,0.04);
}

.faq-toggle{
  width:100%;
  border:none;
  background:none;
  padding:24px 28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  text-align:left;
  font-weight:700;
  font-size:18px;
  color:#111827;
}

.faq-toggle i{
  color:#94a3b8;
  transition:all .3s ease;
}

.faq-toggle:not(.collapsed) i{
  transform:rotate(45deg);
  color:#111827;
}

.faq-body{
  padding:0 28px 24px;
  color:#64748b;
  line-height:1.8;
}

@media(max-width:576px){

  .category-faq-section{
    padding:60px 0;
  }

  .faq-section-header h2{
    font-size:30px;
  }

  .faq-toggle{
    font-size:16px;
    padding:20px;
  }

  .faq-body{
    padding:0 20px 20px;
  }

}

/* ========================================
   SEO CONTENT
======================================== */

.category-seo-section{
  padding:90px 0;
  background:#fff;
}

.category-seo-content{
  max-width:900px;
  margin:0 auto;
}

.category-seo-content h2{
  font-size:42px;
  font-weight:800;
  color:#111827;
  line-height:1.2;
  margin-bottom:24px;
  letter-spacing:-1px;
}

.category-seo-content p{
  font-size:17px;
  line-height:1.9;
  color:#64748b;
  margin-bottom:24px;
}

@media(max-width:576px){

  .category-seo-section{
    padding:60px 0;
  }

  .category-seo-content h2{
    font-size:28px;
  }

  .category-seo-content p{
    font-size:16px;
  }

}




#productsContainer{
  position:relative;
  transition:opacity .3s ease;
}

#productsContainer.loading{
  opacity:0.45;
  pointer-events:none;
}

/* ========================================
   TRUST CONTACT CTA
======================================== */

/* DESKTOP */
.desktop-trust-cta{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:9999;

  display:flex;
  align-items:center;
  gap:16px;

  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:22px;
  padding:16px 18px;

  box-shadow:0 18px 50px rgba(0,0,0,0.12);

  transition:all .3s ease;
}

.desktop-trust-cta:hover{
  transform:translateY(-4px);
}

.desktop-trust-content{
  display:flex;
  flex-direction:column;
}

.desktop-trust-content small{
  color:#64748b;
  font-size:12px;
  margin-bottom:4px;
}

.desktop-trust-content strong{
  font-size:15px;
  font-weight:700;
  color:#111827;
}

.desktop-whatsapp-btn{
  width:54px;
  height:54px;

  border-radius:18px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#25D366;
  color:#fff;
  font-size:24px;

  transition:all .3s ease;
}

.desktop-whatsapp-btn:hover{
  color:#fff;
  transform:scale(1.06);
}

/* MOBILE WHATSAPP FLOAT */
.mobile-whatsapp-float{
  display:none;
}

@media(max-width:991px){

  .desktop-trust-cta{
    display:none;
  }

  .mobile-whatsapp-float{
    position:fixed;
    right:18px;
    bottom:88px;
    z-index:9999;

    width:58px;
    height:58px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#25D366;
    color:#fff;

    font-size:28px;

    box-shadow:0 16px 40px rgba(0,0,0,0.18);

    transition:all .3s ease;
  }

  .mobile-whatsapp-float:hover{
    color:#fff;
    transform:scale(1.08);
  }

}

/* ========================================
   HOW IT WORKS
======================================== */

.how-it-works-section{
  padding:90px 0;
  background:linear-gradient(
    180deg,
    rgba(99,102,241,0.03),
    rgba(255,255,255,1)
  );
}

.how-it-works-header{
  text-align:center;
  max-width:760px;
  margin:0 auto 60px;
}

.how-it-works-header h2{
  font-size:46px;
  font-weight:800;
  color:#111827;
  letter-spacing:-1px;
  margin-bottom:16px;
}

.how-it-works-header p{
  font-size:17px;
  line-height:1.8;
  color:#64748b;
}

.process-card{
  position:relative;
  height:100%;

  background:#fff;
  border:1px solid #edf2f7;
  border-radius:26px;

  padding:32px 26px;

  box-shadow:0 14px 35px rgba(0,0,0,0.04);

  transition:all .35s ease;
}

.process-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.process-number{
  position:absolute;
  top:20px;
  right:20px;

  font-size:14px;
  font-weight:800;
  color:#cbd5e1;
}

.process-icon{
  width:72px;
  height:72px;

  border-radius:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(99,102,241,0.08);
  color:#6366f1;

  font-size:28px;

  margin-bottom:24px;
}

.process-card h3{
  font-size:22px;
  font-weight:700;
  color:#111827;
  margin-bottom:14px;
}

.process-card p{
  font-size:15px;
  line-height:1.8;
  color:#64748b;
  margin:0;
}

@media(max-width:576px){

  .how-it-works-section{
    padding:60px 0;
  }

  .how-it-works-header h2{
    font-size:30px;
  }

  .process-card{
    padding:24px 20px;
  }

}