/* hero section start  */
.pwp-prod-hero-sec {
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  width: 100%;
  min-height: 480px;
  background-image:
    linear-gradient(rgba(11, 15, 25, 0.85), rgba(11, 15, 25, 0.88)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?q=80&w=1920&auto=format&fit=crop");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 20px;
  box-sizing: border-box;
}

.pwp-phero-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.pwp-phero-content {
  max-width: 720px;
}

/* Breadcrumb Styling */
.pwp-phero-breadcrumb {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pwp-phero-bc-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pwp-phero-bc-link:hover {
  color: #ffffff;
}

.pwp-phero-bc-sep {
  color: #64748b;
  font-weight: 400;
}

.pwp-phero-bc-active {
  color: #f7730e;
}

/* Main Hero Heading */
.pwp-phero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 24px 0;
  letter-spacing: -1.2px;
}

/* Description Text */
.pwp-phero-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.65;
  color: #cbd5e1;
  margin: 0;
  font-weight: 400;
  max-width: 620px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .pwp-prod-hero-sec {
    min-height: 380px;
    padding: 70px 16px;
  }

  .pwp-phero-breadcrumb {
    margin-bottom: 16px;
  }

  .pwp-phero-title {
    letter-spacing: -0.8px;
    margin-bottom: 18px;
  }
}

/* hero section end  */

/* products section start  */
.pwp-prodgrid-sec {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #f8fafc;
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.pwp-pgrid-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* 3-Column Card Grid */
.pwp-pgrid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card Container */
.pwp-pgrid-card {
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.pwp-pgrid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

/* Image Section & Tag Badge */
.pwp-pgrid-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  background-color: #f1f5f9;
  overflow: hidden;
}

.pwp-pgrid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pwp-pgrid-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* Card Content Area */
.pwp-pgrid-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Title & Description */
.pwp-pgrid-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 14px 0;
  letter-spacing: -0.4px;
}

.pwp-pgrid-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 24px 0;
  font-weight: 400;
  min-height: 68px;
}

/* Checkmarks List */
.pwp-pgrid-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pwp-pgrid-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #334155;
  font-weight: 500;
}

.pwp-pgrid-check {
  color: #e07228;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Action Buttons Group */
.pwp-pgrid-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.pwp-pgrid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
  box-sizing: border-box;
}

/* WhatsApp Button */
.pwp-pgrid-btn-wa {
  background-color: #25d366;
  color: #ffffff;
}

.pwp-pgrid-btn-wa:hover {
  background-color: #20bd5a;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

/* Enquire Button */
.pwp-pgrid-btn-enq {
  background-color: #1144a6;
  color: #ffffff;
}

.pwp-pgrid-btn-enq:hover {
  background-color: #0d388a;
  box-shadow: 0 6px 16px rgba(17, 68, 166, 0.3);
  transform: translateY(-2px);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .pwp-pgrid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pwp-prodgrid-sec {
    padding: 50px 16px;
  }

  .pwp-pgrid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pwp-pgrid-content {
    padding: 24px 18px;
  }

  .pwp-pgrid-desc {
    min-height: auto;
  }

  .pwp-pgrid-actions {
    grid-template-columns: 1fr;
  }
}

/* product section end  */

/* need custom css for product page */
.pwp-custom-sec {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: linear-gradient(180deg, #f5f7fb 0%, #ebf0f7 100%);
  padding: 60px 20px;
  box-sizing: border-box;
  width: 100%;
}

.pwp-cst-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* White Card Banner */
.pwp-cst-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 36px 48px;
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.05),
    0 4px 12px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

/* Content Area */
.pwp-cst-content {
  flex: 1;
}

/* Heading */
.pwp-cst-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

/* Description Text */
.pwp-cst-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

/* Action Button Wrapper */
.pwp-cst-action {
  flex-shrink: 0;
}

/* Orange Pill Button */
.pwp-cst-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f7730e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(247, 115, 14, 0.35);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  white-space: nowrap;
}

.pwp-cst-btn:hover {
  background-color: #e06505;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(247, 115, 14, 0.5);
}

/* Responsive Media Queries */
@media (max-width: 868px) {
  .pwp-cst-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 24px;
  }

  .pwp-cst-action {
    width: 100%;
  }

  .pwp-cst-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .pwp-custom-sec {
    padding: 40px 16px;
  }

  .pwp-cst-card {
    padding: 28px 20px;
    border-radius: 20px;
  }
}

/* category section start  */
.pw-cat-nav-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #eaeaea;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.pw-cat-nav-container {
  max-width: 1320px;
  margin: 0 auto;
}

/* Section Header Title */
.pw-cat-nav-header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.pw-cat-nav-title {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pw-cat-nav-title i {
  color: #ff6b00;
}

.pw-cat-count {
  font-size: 13px;
  color: #666666;
  font-weight: 500;
}

/* Category Links Wrapper */
.pw-cat-list-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* Scrollbar completely hidden for all browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE & Edge */
}

/* Chrome, Safari, Opera me scrollbar hide karne ke liye */
.pw-cat-list-wrapper::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* Flexible Grid / Wrap Container */
.pw-cat-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Anchor Tag Category Item */
.pw-cat-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: #f8f9fa;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* Category Item Icon */
.pw-cat-item i {
  font-size: 13px;
  color: #777777;
  transition: color 0.3s ease;
}

/* Hover State */
.pw-cat-item:hover {
  background-color: #fff3eb;
  color: #ff6b00;
  border-color: #ff6b00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.15);
}

.pw-cat-item:hover i {
  color: #ff6b00;
}

/* Active Category Item State */
.pw-cat-item.pw-active {
  background: linear-gradient(135deg, #ff6b00, #ff8800);
  color: #ffffff;
  border-color: #ff6b00;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.pw-cat-item.pw-active i {
  color: #ffffff;
}

/* Mobile Responsive Direct Grid/Wrap View Without Scrollbars */
@media (max-width: 768px) {
  .pw-cat-nav-section {
    padding: 20px 15px;
  }

  .pw-cat-list {
    display: flex;
    flex-wrap: wrap; /* Directly rows me saari categories dikhengi */
    justify-content: flex-start;
    gap: 8px;
  }

  .pw-cat-item {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* category section end  */
