/* ============ PRODUCT LISTING PAGE ============ */
.pl-hero {
    /* background: linear-gradient(135deg, #003178 0%, #0d47a1 100%); */
    background-image: url(../new-image/product-listing/listing-page-new-banner.png);
    color: #fff;
    padding: 64px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
}
.pl-hero::before{

  position: absolute;
  content: "";
  inset: 0;
  width:100%;
  height:100%;

  background: linear-gradient(to right, rgb(0 49 120 / 32%), rgb(3 34 78 / 41%));
    background: linear-gradient(to right, rgb(0 49 120 / 58%), rgb(3 34 78 / 44%));
}
.pl-hero >*
{
  position: relative;
  z-index: 1;
}

/* .pl-hero::before {
  width: 340px;
  height: 340px;
  top: -120px;
  left: -100px;
}
.pl-hero::after {
  width: 240px;
  height: 240px;
  bottom: -80px;
  right: -60px;
} */
.pl-hero .breadcrumb-light {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}
.pl-hero .breadcrumb-light a {
  color: rgba(255, 255, 255, 0.85);
}
.pl-hero h1 {
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.pl-hero p {
  
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Toolbar */
.pl-toolbar {
  background: #fff;
  border-bottom: 1px solid var(--outline);
  padding: 18px 0;
  position: sticky;
  top: 78px;
  z-index: 50;
}
.pl-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.pl-count {
  font-size: 14px;
  color: var(--muted);
}
.pl-count strong {
  color: var(--ink);
}
.pl-toolbar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}
.pl-select,
.pl-filter-btn {
  border: 1px solid var(--outline);
  border-radius: 999px;
  padding: 10px 18px;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pl-select:hover,
.pl-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.view-toggle {
  display: flex;
  border: 1px solid var(--outline);
  border-radius: 999px;
  overflow: hidden;
}
.view-toggle button {
  border: 0;
  background: #fff;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--muted);
}
.view-toggle button.active {
  background: var(--primary);
  color: #fff;
}

/* Main grid */
.pl-main {
  /* max-width: 1280px;
  margin: 48px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px; */
  padding:60px 0px;
}
.product-listing-image-wrap
{
    border:1px solid #ddd;
}
/* Sidebar */
.pl-sidebar {
    position: sticky;
    top: 160px;
    align-self: start;
}


/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f5b400;
  font-size: 14px;
  margin-bottom: 12px;
}
.product-title-name {
   
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-title-tag {
    background: linear-gradient(92deg, #f6d8f9, transparent);
    width: max-content;
    padding: 4px;
    color: white;
    color: #000000 !important;
}
/* Pagination */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 56px 0 0;
}
.pagination a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--outline);
  color: var(--ink);
  font-weight: 600;
}
.pagination a.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.pagination a:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
}
/* --- SEO Dynamic Content Section --- */
.seo-dynamic-content {
    background-color: var(--surface-container-lowest);
    border-top: 1px solid var(--outline-variant);
    padding-top: 5rem;
    padding-bottom: 5rem;
    /* margin-top: 3rem; */
}

/* Headings */
.seo-dynamic-content h1,
.seo-dynamic-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.seo-dynamic-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Paragraphs */
.seo-dynamic-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink);
    margin-bottom: 1.2rem;
}

/* Bold Text */
.seo-dynamic-content b,
.seo-dynamic-content strong {
    color: var(--on-surface);
    font-weight: 600;
}
    .seo-dynamic-content a{
        color:black !important;
    }
    /* Lists */
    .seo-dynamic-content ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 2rem;
    }

.seo-dynamic-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 1.5;
    color: var(--ink);
}

/* Custom Bullet Icon */
.seo-dynamic-content li::before {
    content: 'check_circle';
    font-family: 'Material Symbols Outlined';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 22px;
}

/* Blockquote / Highlight */
.seo-dynamic-content blockquote {
    background-color: var(--surface-container-low);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.seo-dynamic-content blockquote p {
    margin-bottom: 0;
    /* font-style: italic; */
}
@media (max-width: 992px) {
  .pl-main {
    grid-template-columns: 1fr;
  }
  .pl-sidebar {
    position: static;
    display: none;
  }
  .pl-sidebar.open {
    display: block;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
    .seo-dynamic-content h1,
    .seo-dynamic-content h2 {
        font-size: 24px;
        font-weight: 600;

    }
    .seo-dynamic-content h3
    {
        font-size:20px;
    }
    .seo-dynamic-content {
        padding: 2rem 0;
    }
}
@media (max-width: 567px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .pl-hero p {
        opacity: 1;
        font-size: 14px;
        color: white !important;
    }
    .seo-dynamic-content h1, .seo-dynamic-content h2 {
        font-size: 22px;
        font-weight: 600;
    }
    .seo-dynamic-content h3,
    .seo-dynamic-content h3 strong {
        font-size: 17px;
        color: var(--primary) !important;
    }
}



