/* Hero Banner Section Style */
    .product-banner {
      background-color: #0d381e; /* Deep Ayurvedic Dark Green */
      padding: 60px 20px;
      text-align: center;
      position: relative;
      color: #ffffff;
    }

    .product-banner h1 {
      color: #d4a359; /* Gold Title Color */
      font-weight: 800;
      letter-spacing: 2px;
      font-size: 2.5rem;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .product-banner .breadcrumb-link {
      color: #ffffff;
      text-decoration: none;
      font-size: 0.95rem;
      opacity: 0.9;
    }

    .product-banner .breadcrumb-link:hover {
      color: #d4a359;
      text-decoration: underline;
    }

    /* PDF Card Section */
    .pdf-section-card {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid #e0e0e0;
      box-shadow: 0px 10px 30px rgba(0,0,0,0.08);
      margin-top: -30px; /* Slight Overlap Effect */
      position: relative;
      z-index: 10;
    }

    /* Button Custom Colors (Matching theme) */
    .btn-green {
      background-color: #0d381e;
      color: #ffffff;
      border: none;
    }
    .btn-green:hover {
      background-color: #15522e;
      color: #ffffff;
    }

    .btn-outline-gold {
      border: 2px solid #d4a359;
      color: #8c6321;
      font-weight: 600;
    }
        .btn-outline-gold:hover {
            background-color: #d4a359;
            color: #ffffff;
        }











/* Top Badge & Header */
    .top-pill-badge {
      background-color: #eaf5ee;
      color: var(--brand-green);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 6px 16px;
      border-radius: 50px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /*.section-title {
      font-weight: 800;
      font-size: 2.2rem;
      color: var(--brand-dark);
    }*/
    .section-title {
    font-weight: 400;
    font-size: 16px;
    color: var(--brand-dark);
}
    .section-title span {
      color: var(--brand-green);
    }

    .title-underline {
      width: 50px;
      height: 3px;
      background-color: var(--brand-green);
      border-radius: 2px;
      margin: 8px auto 16px auto;
    }

    /* Card Box */
    .product-card {
      border: 1px solid #eef2f0;
      border-radius: 20px;
      background: #ffffff;
      transition: all 0.3s ease;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
      border-color: transparent;
    }

    /* Zero-Gap Image Container */
    .card-img-wrapper {
      position: relative;
      width: 100%;
      height: 220px;
      margin: 0;
      padding: 0;
      background-color: #f4f6f5;
      overflow: hidden;
    }

    .card-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .product-card:hover .card-img-wrapper img {
      transform: scale(1.05);
    }

    /* Badges */
    .badge-yellow {
      position: absolute;
      top: 12px;
      left: 12px;
      background-color: var(--brand-yellow);
      color: #000000;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 50px;
      z-index: 2;
    }

    .category-badge {
      color: var(--brand-green);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      display: block;
    }

    /* Text & Description */
    .product-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #111;
      line-height: 1.3;
    }

    .product-desc {
      font-size: 0.85rem;
      color: #666;
      line-height: 1.5;
    }

    /* Price Section */
    .price-current {
      color: var(--brand-green);
      font-size: 1.25rem;
      font-weight: 800;
    }

    .price-old {
      color: #a0aec0;
      font-size: 0.85rem;
      text-decoration: line-through;
    }

    /* =======================================
       EXACT BUTTON MATCHING YOUR IMAGE 
    ======================================= */
    .btn-enquiry {
      background-color:#bd8a07;
      color: #ffffff;
      border: 2px solid #bd8a07;
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: 50px; /* Full Pill Shape */
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.2s ease-in-out;
      text-decoration: none;
    }

    .btn-enquiry:hover {
      background-color: var(--brand-green-hover);
      border-color: #bd8a0742;
      color: #000;
    }

    .btn-details {
      background-color: #ffffff;
      color: var(--brand-green);
      border: 2px solid #bd8a07;
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: 50px; /* Full Pill Shape */
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.2s ease-in-out;
      text-decoration: none;
    }

    .btn-details:hover {
      background-color: #bd8a0742;
      color: var(--brand-green);
      border-color: var(--brand-green);
    }







