/* =====================================================
   KUSUM FOODS - Product Listing Page Styles
   Version: 2.0 (Category Sections Layout)
   ===================================================== */

/* =====================================================
   1. PAGE HEADER SECTION
   ===================================================== */
.products-page-header {
  padding: 45px 0 40px;
  background: linear-gradient(135deg, #fefbf6 0%, #fff7e6 100%);
  border-bottom: 1px solid rgba(124, 24, 26, 0.08);
}

.products-header-content {
  text-align: center;
}

.page-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.page-main-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brand));
  border-radius: 2px;
}

.page-main-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 20px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* =====================================================
   2. CATEGORY PRODUCTS SECTION
   ===================================================== */
.category-products-section {
  padding: 50px 0;
}

.category-products-section.bg-light {
  background: #fafafa;
}

.category-products-section.bg-white {
  background: #fff;
}

/* Category Header */
.category-header {
  margin-bottom: 35px;
}

.category-header-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.category-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--brand) 0%, #5a1213 100%);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
}

.category-icon i {
  font-size: 28px;
  color: #fff;
}

.category-text {
  flex: 1;
}

.category-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
  line-height: 1.3;
}

.category-description {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 700px;
}

/* =====================================================
   3. PRODUCTS GRID
   ===================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* =====================================================
   4. PRODUCT CARD
   ===================================================== */
.product-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: none;
}

/* Product Badge */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-badge.featured {
  background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%);
  color: #fff;
  box-shadow: none;
}

.product-badge.featured i {
  font-size: 10px;
}

/* Product Image */


.product-card:hover .product-image {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(124, 24, 26, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.view-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.product-card:hover .view-details {
  transform: translateY(0);
}

/* Product Info */
.product-info {
  padding: 20px;
}

.product-name {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-name a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-name a:hover {
  color: var(--brand);
}

.product-description {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Product Variants */
.product-variants {
  margin-bottom: 15px;
}

.variants-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.variants-label i {
  color: var(--brand);
}

.variant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.variant-tag {
  padding: 4px 10px;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
}

.variant-tag.more {
  background: var(--cream);
  border-color: var(--gold);
  color: var(--brand);
}

/* Product Actions */
.product-actions {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.btn-product-details {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-product-details:hover {
  background: #5a1213;
  color: #fff;
}

.btn-product-details i {
  transition: transform 0.3s ease;
}

.btn-product-details:hover i {
  transform: translateX(3px);
}

/* =====================================================
   5. NO PRODUCTS STATE
   ===================================================== */
.no-products-section {
  padding: 80px 0;
  background: #fafafa;
}

.no-products {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  max-width: 500px;
  margin: 0 auto;
}

.no-products-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-products-icon i {
  font-size: 45px;
  color: var(--brand);
}

.no-products h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.no-products p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 25px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #5a1213;
  color: #fff;
}

/* =====================================================
   6. CTA SECTION
   ===================================================== */
.products-cta {
  padding: 50px 0;
  background: linear-gradient(135deg, var(--brand) 0%, #5a1213 100%);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--gold);
  color: var(--dark);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background: #fff;
  color: var(--brand);
  transform: translateY(-3px);
  box-shadow: none;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}

.btn-cta-secondary i {
  font-size: 18px;
}

/* =====================================================
   7. RESPONSIVE STYLES
   ===================================================== */

/* Large Desktop - 1200px and below */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet - 991px and below */
@media (max-width: 991px) {
  .products-page-header {
    padding: 35px 0 30px;
  }
  
  .page-main-title {
    font-size: 2rem;
  }
  
  .category-products-section {
    padding: 40px 0;
  }
  
  .category-header-content {
    gap: 15px;
  }
  
  .category-icon {
    width: 55px;
    height: 55px;
    border-radius: 0;
  }
  
  .category-icon i {
    font-size: 24px;
  }
  
  .category-title {
    font-size: 24px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-text {
    text-align: center;
  }
  
  .cta-text p {
    margin: 0 auto;
  }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
  .products-page-header {
    padding: 30px 0 25px;
  }
  
  .page-main-title {
    font-size: 1.75rem;
  }
  
  .page-main-subtitle {
    font-size: 14px;
  }
  
  .category-products-section {
    padding: 35px 0;
  }
  
  .category-header {
    margin-bottom: 25px;
  }
  
  .category-header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .category-icon {
    width: 50px;
    height: 50px;
  }
  
  .category-icon i {
    font-size: 22px;
  }
  
  .category-title {
    font-size: 22px;
  }
  
  .category-description {
    font-size: 14px;
  }
  
  .product-image-wrapper {
    height: 180px;
  }
  
  .products-cta {
    padding: 40px 0;
  }
  
  .cta-text h2 {
    font-size: 22px;
  }
  
  .cta-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile - 576px and below */
@media (max-width: 576px) {
  .products-page-header {
    padding: 25px 0 20px;
  }
  
  .page-main-title {
    font-size: 1.5rem;
  }
  
  .page-main-title::after {
    width: 40px;
    height: 2px;
  }
  
  .category-products-section {
    padding: 30px 0;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .product-card {
    border-radius: 0;
  }
  
  .product-image-wrapper {
    height: 200px;
  }
  
  .no-products {
    padding: 40px 15px;
  }
  
  .no-products-icon {
    width: 80px;
    height: 80px;
  }
  
  .no-products-icon i {
    font-size: 35px;
  }
  
  .no-products h3 {
    font-size: 20px;
  }
}

/* =====================================================
   8. ANIMATION ENHANCEMENTS
   ===================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.5s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }

/* =====================================================
   END OF PRODUCT LISTING STYLES
   ===================================================== */
   .pd-hero-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #fefbf6 0%, #fff 100%);
}

.pd-hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Product Gallery */
.pd-gallery {
  position: sticky;
  top: 100px;
}

.pd-main-image {
  position: relative;
  background: linear-gradient(135deg, #fff7e6 0%, #fefbf6 100%);
  border-radius: 0;
  padding: 30px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: none;
}

.pd-main-image img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.pd-main-image:hover img {
  transform: scale(1.05);
}

.pd-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: none;
  z-index: 10;
}

.pd-badge i {
  font-size: 11px;
}

.pd-thumbnails {
  display: flex;
  gap: 12px;
}

.pd-thumb {
  width: 80px;
  height: 80px;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: #fff;
  padding: 8px;
  transition: all 0.3s ease;
  box-shadow: none;
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd-thumb:hover {
  border-color: var(--gold);
}

.pd-thumb.active {
  border-color: var(--brand);
  box-shadow: none;
}

/* Product Info */
.pd-info {
  padding-top: 10px;
}

.pd-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 24, 26, 0.08);
  color: var(--brand);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pd-category-tag i {
  font-size: 14px;
}

.pd-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.3;
  margin-bottom: 8px;
}

.pd-subtitle {
  font-size: 16px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.pd-description {
  margin-bottom: 25px;
}

.pd-description p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

/* Quick Highlights */
.pd-quick-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

.pd-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #fff;
  border-radius: 0;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.pd-highlight-item:hover {
  border-color: var(--brand);
  box-shadow: none;
}

.pd-highlight-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--cream) 0%, #fff7e6 100%);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pd-highlight-icon i {
  font-size: 16px;
  color: var(--brand);
}

.pd-highlight-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

/* Packaging Options */
.pd-packaging {
  margin-bottom: 25px;
}

.pd-section-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-section-label i {
  color: var(--brand);
}

.pd-pack-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pd-pack-item {
  padding: 12px 20px;
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 90px;
}

.pd-pack-item:hover {
  border-color: var(--brand);
}

.pd-pack-item.active {
  border-color: var(--brand);
  background: rgba(124, 24, 26, 0.04);
}

.pd-pack-size {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 2px;
}

.pd-pack-type {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

/* CTA Buttons */
.pd-cta-buttons {
  display: flex;
  gap: 12px;
}

.pd-btn-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--brand);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pd-btn-primary:hover {
  background: #5a1213;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: none;
}

.pd-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: #25d366;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pd-btn-secondary:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: none;
}

/* =====================================================
   2. FEATURES SECTION
   ===================================================== */
.pd-features-section {
  padding: 60px 0;
  background: #fff;
}

.pd-section-header {
  text-align: center;
  margin-bottom: 45px;
}

.pd-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 12px;
}

.pd-section-title span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.pd-section-subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.pd-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.pd-feature-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: #fafafa;
  border-radius: 0;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.pd-feature-card:hover {
  background: #fff;
  border-color: rgba(124, 24, 26, 0.1);
  box-shadow: none;
  transform: translateY(-3px);
}

.pd-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand) 0%, #5a1213 100%);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
}

.pd-feature-icon i {
  font-size: 26px;
  color: #fff;
}

.pd-feature-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.pd-feature-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* =====================================================
   3. USE CASES SECTION
   ===================================================== */
.pd-usecases-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #fefbf6 0%, #fff7e6 100%);
}

.pd-usecases-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pd-usecases-content .pd-section-title {
  text-align: left;
  margin-bottom: 15px;
}

.pd-usecases-intro {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.pd-usecases-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pd-usecase-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
}

.pd-usecase-item:hover {
  transform: translateX(8px);
  box-shadow: none;
}

.pd-usecase-icon {
  width: 50px;
  height: 50px;
  background: var(--cream);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pd-usecase-icon i {
  font-size: 22px;
  color: var(--brand);
}

.pd-usecase-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.pd-usecase-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Image Stack */
.pd-usecases-image {
  position: relative;
}

.pd-image-stack {
  position: relative;
  height: 450px;
}

.pd-stack-img {
  position: absolute;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

.pd-stack-1 {
  width: 70%;
  height: 320px;
  top: 0;
  left: 0;
  z-index: 1;
}

.pd-stack-2 {
  width: 60%;
  height: 280px;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 5px solid #fff;
}

.pd-image-badge {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  padding: 20px 30px;
  border-radius: 0;
  text-align: center;
  z-index: 3;
  box-shadow: none;
}

.pd-badge-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.pd-badge-text {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-top: 5px;
  opacity: 0.9;
}

/* =====================================================
   4. SPECIFICATIONS SECTION
   ===================================================== */
.pd-specs-section {
  padding: 60px 0;
  background: #fff;
}

.pd-specs-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.pd-specs-table {
  background: #fafafa;
  border-radius: 0;
  padding: 10px;
  overflow: hidden;
}

.pd-spec-row {
  display: flex;
  padding: 16px 20px;
  background: #fff;
  margin-bottom: 2px;
  border-radius: 0;
}

.pd-spec-row:last-child {
  margin-bottom: 0;
}

.pd-spec-label {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-spec-label i {
  color: var(--brand);
  font-size: 16px;
}

.pd-spec-value {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-align: right;
}

/* =====================================================
   5. TRUST SECTION
   ===================================================== */
.pd-trust-section {
  padding: 50px 0;
  background: linear-gradient(135deg, var(--brand) 0%, #5a1213 100%);
}

.pd-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.pd-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.pd-trust-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.pd-trust-icon {
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pd-trust-icon i {
  font-size: 22px;
  color: var(--dark);
}

.pd-trust-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.pd-trust-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* =====================================================
   6. RELATED PRODUCTS SECTION
   ===================================================== */
.pd-related-section {
  padding: 60px 0;
  background: #fafafa;
}

.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.pd-related-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.4s ease;
}

.pd-related-card:hover {
  transform: translateY(-8px);
  box-shadow: none;
}

.pd-related-image {
  display: block;
  height: 200px;
  background: linear-gradient(135deg, #fff7e6 0%, #fefbf6 100%);
  padding: 20px;
  overflow: hidden;
}

.pd-related-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.pd-related-card:hover .pd-related-image img {
  transform: scale(1.08);
}

.pd-related-info {
  padding: 20px;
}

.pd-related-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.pd-related-info h4 a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.pd-related-info h4 a:hover {
  color: var(--brand);
}

.pd-related-info p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.pd-related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  transition: all 0.3s ease;
}

.pd-related-link:hover {
  gap: 10px;
}

.pd-related-link i {
  transition: transform 0.3s ease;
}

.pd-related-link:hover i {
  transform: translateX(3px);
}

/* =====================================================
   7. CTA SECTION
   ===================================================== */
.pd-cta-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #fefbf6 0%, #fff7e6 100%);
  border-top: 1px solid rgba(124, 24, 26, 0.08);
}

.pd-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.pd-cta-text h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}

.pd-cta-text p {
  font-size: 15px;
  color: var(--muted);
}

.pd-cta-actions {
  display: flex;
  gap: 15px;
}

.pd-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--brand);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pd-cta-btn-primary:hover {
  background: #5a1213;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: none;
}

.pd-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--brand);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--brand);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pd-cta-btn-secondary:hover {
  background: var(--brand);
  color: #fff;
}

/* =====================================================
   8. RESPONSIVE STYLES
   ===================================================== */

/* Large Desktop - 1200px and below */
@media (max-width: 1200px) {
  .pd-hero-wrapper {
    gap: 40px;
  }
  
  .pd-title {
    font-size: 28px;
  }
  
  .pd-features-grid {
    gap: 20px;
  }
  
  .pd-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet - 991px and below */
@media (max-width: 991px) {
  .pd-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .pd-gallery {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .pd-main-image img {
    height: 350px;
  }
  
  .pd-usecases-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pd-usecases-content .pd-section-title {
    text-align: center;
  }
  
  .pd-usecases-intro {
    text-align: center;
  }
  
  .pd-image-stack {
    height: 350px;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .pd-features-grid {
    grid-template-columns: 1fr;
  }
  
  .pd-specs-wrapper {
    grid-template-columns: 1fr;
  }
  
  .pd-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pd-cta-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
  .pd-hero-section {
    padding: 35px 0;
  }
  
  .pd-main-image {
    padding: 20px;
  }
  
  .pd-main-image img {
    height: 280px;
  }
  
  .pd-thumbnails {
    justify-content: center;
  }
  
  .pd-thumb {
    width: 65px;
    height: 65px;
  }
  
  .pd-title {
    font-size: 24px;
  }
  
  .pd-quick-highlights {
    grid-template-columns: 1fr;
  }
  
  .pd-cta-buttons {
    flex-direction: column;
  }
  
  .pd-btn-primary,
  .pd-btn-secondary {
    width: 100%;
  }
  
  .pd-section-title {
    font-size: 26px;
  }
  
  .pd-feature-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
  
  .pd-feature-icon {
    margin: 0 auto;
  }
  
  .pd-trust-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .pd-trust-item {
    padding: 20px;
  }
  
  .pd-related-grid {
    grid-template-columns: 1fr;
  }
  
  .pd-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .pd-cta-btn-primary,
  .pd-cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile Small - 576px and below */
@media (max-width: 576px) {
  .pd-hero-section {
    padding: 25px 0;
  }
  
  .pd-main-image img {
    height: 240px;
  }
  
  .pd-title {
    font-size: 22px;
  }
  
  .pd-subtitle {
    font-size: 14px;
  }
  
  .pd-pack-options {
    justify-content: center;
  }
  
  .pd-pack-item {
    min-width: 75px;
    padding: 10px 15px;
  }
  
  .pd-pack-size {
    font-size: 14px;
  }
  
  .pd-features-section,
  .pd-usecases-section,
  .pd-specs-section,
  .pd-related-section {
    padding: 45px 0;
  }
  
  .pd-section-title {
    font-size: 22px;
  }
  
  .pd-section-title span {
    font-size: 11px;
    letter-spacing: 2px;
  }
  
  .pd-usecase-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .pd-usecase-icon {
    margin: 0 auto;
  }
  
  .pd-image-stack {
    height: 280px;
  }
  
  .pd-stack-1 {
    width: 75%;
    height: 220px;
  }
  
  .pd-stack-2 {
    width: 65%;
    height: 200px;
  }
  
  .pd-image-badge {
    padding: 15px 20px;
    bottom: 50px;
  }
  
  .pd-badge-number {
    font-size: 26px;
  }
  
  .pd-spec-row {
    flex-direction: column;
    gap: 5px;
    padding: 14px 16px;
  }
  
  .pd-spec-value {
    text-align: left;
  }
  
  .pd-cta-text h2 {
    font-size: 22px;
  }
}

/* =====================================================
   9. ANIMATIONS
   ===================================================== */
@keyframes pdFadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pd-feature-card,
.pd-usecase-item,
.pd-related-card,
.pd-trust-item {
  animation: pdFadeInUp 0.6s ease forwards;
}

.pd-feature-card:nth-child(1) { animation-delay: 0.1s; }
.pd-feature-card:nth-child(2) { animation-delay: 0.2s; }
.pd-feature-card:nth-child(3) { animation-delay: 0.3s; }
.pd-feature-card:nth-child(4) { animation-delay: 0.4s; }

.pd-usecase-item:nth-child(1) { animation-delay: 0.1s; }
.pd-usecase-item:nth-child(2) { animation-delay: 0.2s; }
.pd-usecase-item:nth-child(3) { animation-delay: 0.3s; }

/* =====================================================
   END OF PRODUCT DETAILS STYLES
   ===================================================== */






