/* =========================================
   PRODUCT LIST PAGE — Page-Specific Styles
   Depends on: assets/css/style.css (design tokens)
   ========================================= */

/* =========================================
   PAGE BANNER
   ========================================= */
/* .unified-bottom-bg.gray {
  background: #303030;
} */
.unified-bottom-bg.gray .pg-breadcrumb-bar {
  background: transparent;
}
.unified-bottom-bg.gray .pg-breadcrumb-bar {
  border-bottom: none;
}
.unified-bottom-bg.gray .faq-title {
  color: white;
}
.faq-section-desc {
  color: rgba(255, 255, 255, 0.7);
}
.unified-bottom-bg .pg-breadcrumb li a {
  color: white;
}
.page-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  /* margin-top: var(--nav-height); */
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.page-banner:hover .page-banner-img {
  transform: scale(1);
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 11, 20, 0.72) 0%,
    rgba(7, 11, 20, 0.45) 60%,
    rgba(255, 102, 0, 0.18) 100%
  );
}
.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
}
.page-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secend-color);
  background: rgba(255, 102, 0, 0.12);
  border: 1px solid rgba(255, 102, 0, 0.3);
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.25rem;
}
.page-banner-tag span {
  width: 6px;
  height: 6px;
  background: var(--secend-color);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.page-banner-title {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.75rem;
}
.page-banner-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 1);
  /* max-width: 520px; */
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================================
   BREADCRUMB
   ========================================= */
.pg-breadcrumb-bar {
  /* background: #f8fafc;
  border-bottom: 1px solid var(--gray-mid); */
  padding: 1rem 2vw;
}
.pg-breadcrumb-bar nav {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: var(--gray-text);
  list-style: none;
}
.breadcrumb li a {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb li::after{
  margin-left:0;
}
.breadcrumb li a:hover {
  color: var(--secend-color);
}
.breadcrumb li.active {
  color: var(--secend-color);
  font-weight: 600;
}
.breadcrumb-sep {
  color: #d1d5db;
  font-size: 0.75rem;
}

/* =========================================
   PRODUCT MAIN SECTION (sidebar + grid)
   ========================================= */
.product-list-section {
  padding: 4rem 2vw 5rem;
  /* background: var(--white); */
}
.product-list-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

/* =========================================
   SIDEBAR — Shared Component (.page-sidebar)
   ========================================= */
.page-sidebar {
  flex: 0 0 270px;
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Category widget */
.sidebar-widget {
  background: #fff;
  /* border: 1px solid var(--gray-mid); */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.sidebar-widget-head {
  padding: 1.1rem 1.4rem;
  background: linear-gradient(135deg, #e4b27e 0%, var(--secend-color) 100%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.sidebar-widget-head svg {
  stroke: #fff;
  flex-shrink: 0;
}
.sidebar-widget-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.sidebar-cat-list {
  list-style: none;
  padding: 0.75rem 0;
}
.sidebar-cat-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  transition:
    background 0.18s,
    color 0.18s;
  border-left: 3px solid transparent;
}
.sidebar-cat-list li a:hover,
.sidebar-cat-list li.active a {
  background: rgba(255, 102, 0, 0.05);
  color: var(--secend-color);
  border-left-color: var(--secend-color);
}
.sidebar-cat-count {
  font-size: 0.75rem;
  background: var(--gray-mid);
  color: #6b7280;
  border-radius: 9999px;
  padding: 0.1rem 0.55rem;
  font-weight: 600;
  transition:
    background 0.18s,
    color 0.18s;
}
.sidebar-cat-list li a:hover .sidebar-cat-count,
.sidebar-cat-list li.active a .sidebar-cat-count {
  background: var(--secend-color);
  color: #fff;
}

/* CTA Widget */
.sidebar-cta-widget {
  background: linear-gradient(135deg, #e4b27e 0%, var(--secend-color) 100%);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.sidebar-cta-widget::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(255, 102, 0, 0.35) 0%,
    transparent 75%
  );
  pointer-events: none;
}
.sidebar-cta-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 102, 0, 0.12);
  border: 1px solid rgba(255, 102, 0, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.sidebar-cta-icon svg {
  stroke: #fff;
}
.sidebar-cta-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.sidebar-cta-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.sidebar-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.75rem 1.25rem;
  background: white;
  color: var(--secend-color);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 12px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(255, 102, 0, 0.35);
}
.sidebar-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.5);
}

/* =========================================
   PRODUCT GRID (right panel)
   ========================================= */
.product-list-main {
  flex: 1;
  min-width: 0;
}
/* ── Toolbar deleted ── */

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Product Card */
.pl-card {
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 102, 0, 0.25);
}
.pl-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.pl-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.pl-card:hover .pl-card-img-wrap img {
  transform: scale(1.06);
}
.pl-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  z-index: 2;
}
.pl-card-badge.badge-new {
  background: linear-gradient(135deg, var(--cyan-start), var(--blue-primary));
  color: #fff;
}
.pl-card-badge.badge-hot {
  background: linear-gradient(135deg, #ff9800, var(--secend-color));
  color: #fff;
}
.pl-card-badge.badge-cert {
  background: rgba(255, 255, 255, 0.9);
  color: #374151;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.pl-card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pl-card:hover .pl-card-img-overlay {
  opacity: 1;
}
.pl-card-quick-btn {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.95);
  color: var(--secend-color);
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.pl-card-quick-btn:hover {
  background: var(--secend-color);
  color: #fff;
  transform: translateX(-50%) translateY(5px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}
.pl-card:hover .pl-card-quick-btn {
  opacity: 1;
  /* transform: translateX(-50%) translateY(0); */
}
.pl-card-body {
  padding: 1.25rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.pl-card-cat,
.pl-card-cat:link,
.pl-card-cat:visited,
.pl-card-cat:hover,
.pl-card-cat:active,
.pl-card-cat a,
.pl-card-cat a:link,
.pl-card-cat a:visited,
.pl-card-cat a:hover,
.pl-card-cat a:active,
.pl-card-title a,
.pl-card-title a:link,
.pl-card-title a:visited,
.pl-card-title a:hover,
.pl-card-title a:active {
  text-decoration: none; 
  color: inherit;        
  outline: none;         
}
.pl-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secend-color) !important;
}
.pl-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
}
.pl-card-desc {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.55;
  flex: 1;
}
.pl-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.pl-card-spec-tag {
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(255, 102, 0, 0.07);
  color: #c84b00;
  border: 1px solid rgba(255, 102, 0, 0.15);
  border-radius: 5px;
  padding: 0.18rem 0.55rem;
}
.pl-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.4rem;
  border-top: 1px solid var(--gray-mid);
  background: #fafafa;
  position: relative;
  overflow: hidden;
}
.pl-card-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 102, 0, 0.3),
    transparent
  );
  z-index: 1;
  pointer-events: none;
  transition: left 0.7s ease-in-out;
}
.pl-card:hover .pl-card-footer::before {
  left: 100%;
}
.pl-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secend-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
.pl-card-link:hover {
  gap: 0.6rem;
  transform: translateX(10px);
  color: var(--secend-color);
}
.pl-card-quote-btn {
  font-size: 0.78rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff9800, var(--secend-color));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.45rem 1rem;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 3px 10px rgba(255, 102, 0, 0.25);
}
.pl-card-quote-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.4);
}

/* =========================================
   PAGINATION — Shared Component (.pg-pagination)
   ========================================= */
.pg-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.pg-pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-mid);
  background: #fff;
  color: #374151;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  user-select: none;
}
.pg-pagination-btn:hover {
  border-color: var(--secend-color);
  color: var(--secend-color);
  background: rgba(255, 102, 0, 0.04);
}
.pg-pagination-btn.active {
  background: linear-gradient(135deg, #ff9800, var(--secend-color));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 102, 0, 0.35);
}
.pg-pagination-btn.pg-prev,
.pg-pagination-btn.pg-next {
  /* width: auto; */
  /* padding: 0 1rem; */
  gap: 0.3rem;
}
.pg-pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.pg-pagination-ellipsis {
  color: var(--gray-text);
  font-size: 0.875rem;
  padding: 0 0.25rem;
  line-height: 40px;
}

/* =========================================
   SERVICE PROCESS SECTION
   ========================================= */
.service-process-section {
  padding: 6rem 2vw;
  position: relative;
  overflow: hidden;
}
.service-process-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(255, 102, 0, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.service-process-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.service-process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.service-process-header {
  text-align: center;
  margin-bottom: 4rem;
}
.service-process-header .section-tag {
  color: var(--secend-color);
}
.service-process-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.service-process-title span {
  background: linear-gradient(135deg, #ff9800, var(--secend-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-process-desc {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Steps Grid */
.service-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connector line */
.service-steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: calc(12.5%);
  width: 75%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--secend-color) 0%,
    rgba(255, 152, 0, 0.3) 100%
  );
  z-index: 0;
}

.service-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.step-icon-wrap {
  width: 104px;
  height: 104px;
  border-radius: 28px;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.service-step:hover .step-icon-wrap {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
  border-color: rgba(255, 102, 0, 0.35);
}
.step-icon-wrap svg {
  stroke: var(--secend-color);
  transition: transform 0.3s ease;
}
.service-step:hover .step-icon-wrap svg {
  transform: scale(1.1);
}
.step-num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #ff9800, var(--secend-color));
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
}
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  max-width: 200px;
}

/* =========================================
   FAQ ACCORDION — Shared Component (.faq-accordion)
   ========================================= */
.faq-section {
  /* background: #fdfdfe; */
  padding: 30px 2vw 8rem;
  position: relative;
}
/* .faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-mid), transparent);
} */
.faq-inner {
  max-width: 1600px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-header .section-tag {
  color: var(--secend-color);
}
.faq-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: white;
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
}

/* Accordion list */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.faq-item:hover {
  border-color: rgba(255, 102, 0, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}
.faq-item.faq-open {
  border-color: var(--secend-color);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.1);
  background: #fff;
  /* border-left: 4px solid var(--secend-color); */
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(255, 102, 0, 0.02);
}
.faq-q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(255, 102, 0, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-q-icon svg {
  stroke: var(--secend-color);
}
.faq-q-text {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
}
.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--gray-text);
  transition:
    transform 0.3s ease,
    color 0.25s;
}
.faq-item.faq-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--secend-color);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0 2rem;
  opacity: 0;
}
.faq-item.faq-open .faq-answer {
  max-height: 500px;
  padding: 0.5rem 2rem 1.8rem;
  opacity: 1;
}
.faq-answer-inner {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.75;
  border-top: 1px solid var(--gray-mid);
  padding-top: 1rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .service-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .service-steps::before {
    display: none;
  }
  .service-step {
    padding: 1rem;
  }
}

@media (max-width: 900px) {
  .product-list-inner {
    flex-direction: column;
  }
  .page-sidebar {
    flex: none;
    width: 100%;
    position: static;
    order:2;
  }
  .product-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* .page-banner {
    height: 300px;
  } */
   .page-banner {
    padding: 100px 2vw 50px;
  height: auto;
}
   .pg-breadcrumb-bar{
    padding: 1rem;
   }
  .page-banner-content{
    padding: 0;
  }
  .product-list-grid {
    grid-template-columns: 1fr;
  }
  /* .service-steps {
    grid-template-columns: 1fr;
  } */
  .pg-pagination {
    gap: 0.3rem;
  }
  .product-list-section,#solutions,.faq-section{
    padding: 2rem 1rem;
  }
}
