/**
 * Rajshree Infinity - Dynamic Single Product & Product Archive CSS (v1.7.0)
 * Scoped Flexbox Grid & Component System with Advanced Dynamic Variables
 */

:root {
  --navy: #142B45;
  --navy-dark: #0B1726;
  --navy-light: #1F5F8B;
  --primary-brand: #3475A8;
  --secondary-brand: #1F5F8B;
  --gold: #3475A8;
  --gold-hover: #285F8A;
  --cream: #E8F2F8;
  --cream-light: #F7FAFC;
  --text-dark: #142B45;
  --text-muted: #4A5D6E;
  --border-color: #D8E5ED;
  --shadow-soft: 0 4px 20px rgba(20, 43, 69, 0.06);
  --shadow-lift: 0 10px 30px rgba(20, 43, 69, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

/* Base Wrapper */
.rajshree-product-wrapper,
.rajshree-archive-wrapper {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

.rajshree-product-wrapper *,
.rajshree-archive-wrapper * {
  box-sizing: border-box;
}

/* Scoped Responsive Grid System */
.rajshree-product-wrapper .container,
.rajshree-archive-wrapper .container {
  width: 100%;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.rajshree-product-wrapper .row,
.rajshree-archive-wrapper .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.rajshree-product-wrapper .row > *,
.rajshree-archive-wrapper .row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

/* Grid Columns */
.rajshree-product-wrapper .col-12, .rajshree-archive-wrapper .col-12 { width: 100%; }
.rajshree-product-wrapper .col-md-6, .rajshree-archive-wrapper .col-md-6 { width: 100%; }
.rajshree-product-wrapper .col-md-4, .rajshree-archive-wrapper .col-md-4 { width: 100%; }
.rajshree-product-wrapper .col-lg-6, .rajshree-archive-wrapper .col-lg-6 { width: 100%; }
.rajshree-product-wrapper .col-lg-4, .rajshree-archive-wrapper .col-lg-4 { width: 100%; }
.rajshree-product-wrapper .col-lg-3, .rajshree-archive-wrapper .col-lg-3 { width: 100%; }
.rajshree-product-wrapper .col-lg-8, .rajshree-archive-wrapper .col-lg-8 { width: 100%; }
.rajshree-product-wrapper .col-lg-9, .rajshree-archive-wrapper .col-lg-9 { width: 100%; }
.rajshree-product-wrapper .col-lg-10, .rajshree-archive-wrapper .col-lg-10 { width: 100%; }
.rajshree-product-wrapper .col-lg-12, .rajshree-archive-wrapper .col-lg-12 { width: 100%; }

@media (min-width: 576px) {
  .rajshree-product-wrapper .col-sm-6, .rajshree-archive-wrapper .col-sm-6 { width: 50%; }
}

@media (min-width: 768px) {
  .rajshree-product-wrapper .col-md-6, .rajshree-archive-wrapper .col-md-6 { width: 50%; }
  .rajshree-product-wrapper .col-md-4, .rajshree-archive-wrapper .col-md-4 { width: 33.333333%; }
  .rajshree-product-wrapper .col-md-12, .rajshree-archive-wrapper .col-md-12 { width: 100%; }
}

@media (min-width: 992px) {
  .rajshree-product-wrapper .col-lg-6, .rajshree-archive-wrapper .col-lg-6 { width: 50%; }
  .rajshree-product-wrapper .col-lg-4, .rajshree-archive-wrapper .col-lg-4 { width: 33.333333%; }
  .rajshree-product-wrapper .col-lg-3, .rajshree-archive-wrapper .col-lg-3 { width: 25%; }
  .rajshree-product-wrapper .col-lg-8, .rajshree-archive-wrapper .col-lg-8 { width: 66.666667%; }
  .rajshree-product-wrapper .col-lg-9, .rajshree-archive-wrapper .col-lg-9 { width: 75%; }
  .rajshree-product-wrapper .col-lg-10, .rajshree-archive-wrapper .col-lg-10 { width: 83.333333%; }
}

/* Gaps */
.rajshree-product-wrapper .g-3, .rajshree-archive-wrapper .g-3 { margin-right: -8px; margin-left: -8px; margin-top: -16px; }
.rajshree-product-wrapper .g-3 > *, .rajshree-archive-wrapper .g-3 > * { padding-right: 8px; padding-left: 8px; margin-top: 16px; }

.rajshree-product-wrapper .g-4, .rajshree-archive-wrapper .g-4 { margin-right: -12px; margin-left: -12px; margin-top: -24px; }
.rajshree-product-wrapper .g-4 > *, .rajshree-archive-wrapper .g-4 > * { padding-right: 12px; padding-left: 12px; margin-top: 24px; }

@media (min-width: 992px) {
  .rajshree-product-wrapper .g-lg-5, .rajshree-archive-wrapper .g-lg-5 { margin-right: -20px; margin-left: -20px; margin-top: -40px; }
  .rajshree-product-wrapper .g-lg-5 > *, .rajshree-archive-wrapper .g-lg-5 > * { padding-right: 20px; padding-left: 20px; margin-top: 40px; }
}

/* Flexbox Utilities */
.rajshree-product-wrapper .d-flex, .rajshree-archive-wrapper .d-flex { display: flex !important; }
.rajshree-product-wrapper .d-block, .rajshree-archive-wrapper .d-block { display: block !important; }
.rajshree-product-wrapper .d-none, .rajshree-archive-wrapper .d-none { display: none !important; }
.rajshree-product-wrapper .flex-column, .rajshree-archive-wrapper .flex-column { flex-direction: column !important; }
.rajshree-product-wrapper .flex-wrap, .rajshree-archive-wrapper .flex-wrap { flex-wrap: wrap !important; }
.rajshree-product-wrapper .flex-grow-1, .rajshree-archive-wrapper .flex-grow-1 { flex-grow: 1 !important; }
.rajshree-product-wrapper .align-items-center, .rajshree-archive-wrapper .align-items-center { align-items: center !important; }
.rajshree-product-wrapper .align-items-baseline, .rajshree-archive-wrapper .align-items-baseline { align-items: baseline !important; }
.rajshree-product-wrapper .align-items-start, .rajshree-archive-wrapper .align-items-start { align-items: flex-start !important; }
.rajshree-product-wrapper .justify-content-center, .rajshree-archive-wrapper .justify-content-center { justify-content: center !important; }
.rajshree-product-wrapper .justify-content-between, .rajshree-archive-wrapper .justify-content-between { justify-content: space-between !important; }
.rajshree-product-wrapper .gap-1\.5, .rajshree-archive-wrapper .gap-1\.5 { gap: 6px !important; }
.rajshree-product-wrapper .gap-2, .rajshree-archive-wrapper .gap-2 { gap: 8px !important; }
.rajshree-product-wrapper .gap-3, .rajshree-archive-wrapper .gap-3 { gap: 16px !important; }

/* Responsive Display Utilities */
@media (min-width: 768px) {
  .rajshree-product-wrapper .d-md-flex { display: flex !important; }
  .rajshree-product-wrapper .d-md-none { display: none !important; }
}
@media (max-width: 767px) {
  .rajshree-product-wrapper .d-md-flex { display: none !important; }
  .rajshree-product-wrapper .d-md-none { display: block !important; }
}

/* Spacing & Typography */
.rajshree-product-wrapper .section-pad, .rajshree-archive-wrapper .section-pad { padding: 70px 0; }
@media (max-width: 767px) {
  .rajshree-product-wrapper .section-pad, .rajshree-archive-wrapper .section-pad { padding: 35px 0; }
}

.rajshree-product-wrapper .text-center, .rajshree-archive-wrapper .text-center { text-align: center !important; }
.rajshree-product-wrapper .text-end, .rajshree-archive-wrapper .text-end { text-align: right !important; }
.rajshree-product-wrapper .mx-auto, .rajshree-archive-wrapper .mx-auto { margin-right: auto !important; margin-left: auto !important; }
.rajshree-product-wrapper .ms-auto, .rajshree-archive-wrapper .ms-auto { margin-left: auto !important; }
.rajshree-product-wrapper .mb-0, .rajshree-archive-wrapper .mb-0 { margin-bottom: 0 !important; }
.rajshree-product-wrapper .mb-1, .rajshree-archive-wrapper .mb-1 { margin-bottom: 4px !important; }
.rajshree-product-wrapper .mb-2, .rajshree-archive-wrapper .mb-2 { margin-bottom: 8px !important; }
.rajshree-product-wrapper .mb-2\.5, .rajshree-archive-wrapper .mb-2\.5 { margin-bottom: 10px !important; }
.rajshree-product-wrapper .mb-3, .rajshree-archive-wrapper .mb-3 { margin-bottom: 16px !important; }
.rajshree-product-wrapper .mb-4, .rajshree-archive-wrapper .mb-4 { margin-bottom: 24px !important; }
.rajshree-product-wrapper .mb-5, .rajshree-archive-wrapper .mb-5 { margin-bottom: 36px !important; }
.rajshree-product-wrapper .mt-2, .rajshree-archive-wrapper .mt-2 { margin-top: 8px !important; }
.rajshree-product-wrapper .mt-3, .rajshree-archive-wrapper .mt-3 { margin-top: 16px !important; }
.rajshree-product-wrapper .mt-4, .rajshree-archive-wrapper .mt-4 { margin-top: 24px !important; }
.rajshree-product-wrapper .mt-5, .rajshree-archive-wrapper .mt-5 { margin-top: 36px !important; }
.rajshree-product-wrapper .p-2, .rajshree-archive-wrapper .p-2 { padding: 8px !important; }
.rajshree-product-wrapper .p-3, .rajshree-archive-wrapper .p-3 { padding: 16px !important; }
.rajshree-product-wrapper .p-4, .rajshree-archive-wrapper .p-4 { padding: 24px !important; }
.rajshree-product-wrapper .py-1\.5, .rajshree-archive-wrapper .py-1\.5 { padding-top: 6px !important; padding-bottom: 6px !important; }
.rajshree-product-wrapper .py-2, .rajshree-archive-wrapper .py-2 { padding-top: 8px !important; padding-bottom: 8px !important; }
.rajshree-product-wrapper .py-2\.5, .rajshree-archive-wrapper .py-2\.5 { padding-top: 10px !important; padding-bottom: 10px !important; }
.rajshree-product-wrapper .py-3, .rajshree-archive-wrapper .py-3 { padding-top: 14px !important; padding-bottom: 14px !important; }
.rajshree-product-wrapper .py-3\.5, .rajshree-archive-wrapper .py-3\.5 { padding-top: 16px !important; padding-bottom: 16px !important; }
.rajshree-product-wrapper .px-2\.5, .rajshree-archive-wrapper .px-2\.5 { padding-left: 10px !important; padding-right: 10px !important; }
.rajshree-product-wrapper .px-3, .rajshree-archive-wrapper .px-3 { padding-left: 14px !important; padding-right: 14px !important; }
.rajshree-product-wrapper .px-4, .rajshree-archive-wrapper .px-4 { padding-left: 20px !important; padding-right: 20px !important; }
.rajshree-product-wrapper .px-5, .rajshree-archive-wrapper .px-5 { padding-left: 30px !important; padding-right: 30px !important; }
.rajshree-product-wrapper .w-100, .rajshree-archive-wrapper .w-100 { width: 100% !important; }
.rajshree-product-wrapper .h-100, .rajshree-archive-wrapper .h-100 { height: 100% !important; }

/* Colors */
.rajshree-product-wrapper .text-navy, .rajshree-archive-wrapper .text-navy { color: var(--navy) !important; }
.rajshree-product-wrapper .text-gold, .rajshree-archive-wrapper .text-gold { color: var(--gold) !important; }
.rajshree-product-wrapper .text-white, .rajshree-archive-wrapper .text-white { color: #ffffff !important; }
.rajshree-product-wrapper .text-white-50, .rajshree-archive-wrapper .text-white-50 { color: rgba(255, 255, 255, 0.65) !important; }
.rajshree-product-wrapper .text-secondary, .rajshree-archive-wrapper .text-secondary { color: #475569 !important; }
.rajshree-product-wrapper .text-muted, .rajshree-archive-wrapper .text-muted { color: var(--text-muted) !important; }
.rajshree-product-wrapper .bg-navy, .rajshree-archive-wrapper .bg-navy { background-color: var(--navy) !important; }
.rajshree-product-wrapper .bg-white, .rajshree-archive-wrapper .bg-white { background-color: #ffffff !important; }
.rajshree-product-wrapper .bg-cream, .rajshree-archive-wrapper .bg-cream { background-color: #F8FAFC !important; }
.rajshree-product-wrapper .bg-gold-subtle, .rajshree-archive-wrapper .bg-gold-subtle { background-color: rgba(52, 117, 168, 0.12) !important; }
.rajshree-product-wrapper .bg-success-subtle, .rajshree-archive-wrapper .bg-success-subtle { background-color: rgba(37, 211, 102, 0.12) !important; }

/* Section Titles */
.rajshree-product-wrapper .section-eyebrow, .rajshree-archive-wrapper .section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.rajshree-product-wrapper .section-title, .rajshree-archive-wrapper .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.rajshree-product-wrapper .fw-bold, .rajshree-archive-wrapper .fw-bold { font-weight: 700 !important; }
.rajshree-product-wrapper .fw-semibold, .rajshree-archive-wrapper .fw-semibold { font-weight: 600 !important; }
.rajshree-product-wrapper .fw-medium, .rajshree-archive-wrapper .fw-medium { font-weight: 500 !important; }
.rajshree-product-wrapper .fw-normal, .rajshree-archive-wrapper .fw-normal { font-weight: 400 !important; }
.rajshree-product-wrapper .fs-5, .rajshree-archive-wrapper .fs-5 { font-size: 1.15rem !important; }
.rajshree-product-wrapper .fs-6, .rajshree-archive-wrapper .fs-6 { font-size: 1rem !important; }
.rajshree-product-wrapper .small, .rajshree-archive-wrapper .small { font-size: 0.85rem !important; }

/* Badges */
.rajshree-product-wrapper .badge, .rajshree-archive-wrapper .badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}
.rajshree-product-wrapper .badge.rounded-pill, .rajshree-archive-wrapper .badge.rounded-pill {
  border-radius: 50px !important;
}

/* Cards & Borders */
.rajshree-product-wrapper .card, .rajshree-archive-wrapper .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}
.rajshree-product-wrapper .rounded-3, .rajshree-archive-wrapper .rounded-3 { border-radius: var(--radius-sm) !important; }
.rajshree-product-wrapper .rounded-4, .rajshree-archive-wrapper .rounded-4 { border-radius: var(--radius-md) !important; }
.rajshree-product-wrapper .border, .rajshree-archive-wrapper .border { border: 1px solid var(--border-color) !important; }
.rajshree-product-wrapper .border-0, .rajshree-archive-wrapper .border-0 { border: none !important; }
.rajshree-product-wrapper .border-top, .rajshree-archive-wrapper .border-top { border-top: 1px solid var(--border-color) !important; }
.rajshree-product-wrapper .border-bottom, .rajshree-archive-wrapper .border-bottom { border-bottom: 1px solid var(--border-color) !important; }
.rajshree-product-wrapper .border-start, .rajshree-archive-wrapper .border-start { border-left: 1px solid var(--border-color) !important; }
.rajshree-product-wrapper .border-gold, .rajshree-archive-wrapper .border-gold { border-color: var(--gold) !important; }
.rajshree-product-wrapper .border-4, .rajshree-archive-wrapper .border-4 { border-left-width: 4px !important; }
.rajshree-product-wrapper .bg-opacity-10 { background-color: rgba(255, 255, 255, 0.08) !important; }
.rajshree-product-wrapper .border-opacity-10 { border-color: rgba(255, 255, 255, 0.12) !important; }
.rajshree-product-wrapper .shadow-sm, .rajshree-archive-wrapper .shadow-sm { box-shadow: var(--shadow-soft) !important; }
.rajshree-product-wrapper .shadow-md, .rajshree-archive-wrapper .shadow-md { box-shadow: 0 6px 18px rgba(20, 43, 69, 0.08) !important; }
.rajshree-product-wrapper .shadow-lg, .rajshree-archive-wrapper .shadow-lg { box-shadow: 0 10px 30px rgba(20, 43, 69, 0.15) !important; }

/* ================= STICKY PRODUCT GALLERY (DESKTOP) ================= */
.rajshree-product-wrapper .product-single-gallery {
  position: relative;
}

@media (min-width: 992px) {
  .rajshree-product-wrapper .hero-showcase-row {
    display: flex !important;
    align-items: stretch !important;
  }
  .rajshree-product-wrapper .gallery-sticky-col {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
  }
  .rajshree-product-wrapper .product-single-gallery-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 100px !important;
    align-self: flex-start !important;
    width: 100% !important;
    z-index: 15 !important;
  }
}
@media (max-width: 991px) {
  .rajshree-product-wrapper .product-single-gallery-sticky {
    position: static !important;
    top: auto !important;
  }
}

.rajshree-product-wrapper .product-single-main-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 480px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--border-color) !important;
  background: #ffffff !important;
  display: block !important;
  margin: 0 auto !important;
  box-shadow: 0 4px 16px rgba(20, 43, 69, 0.04) !important;
}
@media (max-width: 767px) {
  .rajshree-product-wrapper .product-single-main-img { max-height: 340px !important; }
}
.rajshree-product-wrapper .thumb-img {
  width: 76px !important;
  height: 76px !important;
  object-fit: contain !important;
  border-radius: 10px !important;
  border: 1.5px solid var(--border-color) !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  background: #ffffff !important;
  padding: 4px !important;
}
.rajshree-product-wrapper .thumb-img:hover, 
.rajshree-product-wrapper .thumb-img.active {
  border-color: #3475A8 !important;
  box-shadow: 0 2px 8px rgba(52, 117, 168, 0.25) !important;
  transform: translateY(-2px) !important;
}

/* ================= ULTRA-LUXURIOUS BUTTONS ================= */
.rajshree-product-wrapper .btn,
.rajshree-archive-wrapper .btn {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.rajshree-product-wrapper .btn-sm,
.rajshree-archive-wrapper .btn-sm {
  padding: 6px 14px;
  font-size: 0.88rem;
}

/* Primary Brand Blue Quote Button (Clean Modern Gradient) */
.rajshree-product-wrapper .btn-gold,
.rajshree-archive-wrapper .btn-gold,
.rajshree-product-wrapper .btn-primary,
.rajshree-archive-wrapper .btn-primary {
  background: linear-gradient(135deg, #3475A8 0%, #1F5F8B 100%) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 14px rgba(52, 117, 168, 0.3) !important;
  letter-spacing: 0.3px;
  text-shadow: none !important;
}
.rajshree-product-wrapper .btn-gold:hover,
.rajshree-archive-wrapper .btn-gold:hover,
.rajshree-product-wrapper .btn-primary:hover,
.rajshree-archive-wrapper .btn-primary:hover {
  background: linear-gradient(135deg, #285F8A 0%, #142B45 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(40, 95, 138, 0.4) !important;
}

/* WhatsApp Button with Rich Green Gradient */
.rajshree-product-wrapper .btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28) !important;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.12);
}
.rajshree-product-wrapper .btn-whatsapp:hover {
  background: linear-gradient(135deg, #2EE06E 0%, #19A750 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.38) !important;
}

.rajshree-product-wrapper .btn-navy,
.rajshree-archive-wrapper .btn-navy {
  background-color: var(--navy) !important;
  color: #ffffff !important;
  border: none !important;
}
.rajshree-product-wrapper .btn-navy:hover,
.rajshree-archive-wrapper .btn-navy:hover {
  background-color: var(--navy-dark) !important;
  color: #ffffff !important;
}
.rajshree-product-wrapper .btn-outline-navy,
.rajshree-archive-wrapper .btn-outline-navy {
  background-color: transparent !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--navy) !important;
}
.rajshree-product-wrapper .btn-outline-navy:hover,
.rajshree-archive-wrapper .btn-outline-navy:hover {
  background-color: var(--navy) !important;
  color: #ffffff !important;
}

/* Variation Chips */
.rajshree-product-wrapper .variation-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}
.rajshree-product-wrapper .variation-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(52, 117, 168, 0.05);
}
.rajshree-product-wrapper .variation-chip.active {
  border-color: var(--gold);
  background: var(--navy);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(20, 43, 69, 0.15);
}

/* ================= KEY BRAND HIGHLIGHTS (WIREFRAME EXACT) ================= */
.rajshree-product-wrapper .highlight-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rajshree-product-wrapper .highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(52, 117, 168, 0.4);
}
.rajshree-product-wrapper .highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  transition: background 0.25s ease, color 0.25s ease;
}
.rajshree-product-wrapper .highlight-card:hover .highlight-icon {
  background: var(--navy);
  color: var(--gold);
}

/* Application Chips */
.rajshree-product-wrapper .app-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--navy);
  font-size: 0.92rem;
  box-shadow: 0 2px 8px rgba(20, 43, 69, 0.03);
  transition: all 0.25s ease;
}
.rajshree-product-wrapper .app-chip:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* Mobile Swiper Pagination */
.rajshree-mobile-pagination {
  text-align: center;
}
.rajshree-mobile-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.25s ease;
  margin: 0 4px;
}
.rajshree-mobile-pagination .swiper-pagination-bullet-active {
  background: var(--gold) !important;
  width: 22px !important;
  border-radius: 50px !important;
}

/* Sourcing Quote Banner */
.rajshree-product-wrapper .quote-highlight-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  color: #FFFFFF;
}

/* Contrast Safe Tables */
.rajshree-product-wrapper .table-responsive {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.rajshree-product-wrapper .spec-table, 
.rajshree-product-wrapper .table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background-color: #ffffff !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden !important;
  border: 1px solid var(--border-color) !important;
  margin-bottom: 0;
}
.rajshree-product-wrapper .table thead {
  background-color: var(--navy) !important;
}
.rajshree-product-wrapper .table thead th {
  background-color: #142B45 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-align: center !important;
  padding: 16px !important;
  border-bottom: 3px solid var(--gold) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}
.rajshree-product-wrapper .table tbody tr:nth-of-type(odd) td {
  background-color: #F7FAFC !important;
}
.rajshree-product-wrapper .table tbody tr:nth-of-type(even) td {
  background-color: #ffffff !important;
}
.rajshree-product-wrapper .table tbody td {
  color: var(--navy) !important;
  font-size: 0.95rem !important;
  padding: 14px 16px !important;
  border-color: #D8E5ED !important;
  border-bottom: 1px solid #D8E5ED !important;
}

/* Accordion */
.rajshree-product-wrapper .rajshree-custom-accordion .accordion-item {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md) !important;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
}
.rajshree-product-wrapper .rajshree-custom-accordion .accordion-item.is-open {
  box-shadow: var(--shadow-soft) !important;
  border-color: var(--gold) !important;
}
.rajshree-product-wrapper .rajshree-custom-accordion .accordion-button {
  width: 100%;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.25s ease;
}
.rajshree-product-wrapper .rajshree-custom-accordion .accordion-item.is-open .accordion-button {
  color: var(--gold);
  background-color: rgba(52, 117, 168, 0.06);
}
.rajshree-product-wrapper .rajshree-custom-accordion .faq-chevron {
  font-size: 1.15rem;
  color: var(--gold);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.rajshree-product-wrapper .rajshree-custom-accordion .accordion-item.is-open .faq-chevron {
  transform: rotate(180deg);
}
.rajshree-product-wrapper .rajshree-custom-accordion .accordion-body {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border-color);
  color: var(--text-dark);
  line-height: 1.7;
}

/* ================= ULTRA-PREMIUM REDESIGNED SIDEBAR UI ================= */
.product-sidebar-card {
  border: 1px solid var(--border-color) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 30px rgba(20, 43, 69, 0.05) !important;
}

.sidebar-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.filter-main-title {
  font-size: 1.15rem;
}

.sidebar-section-title {
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
}

.sidebar-cat-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.92rem;
  background: transparent;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.sidebar-cat-item:hover {
  background: #f8fafc;
  color: var(--gold);
  border-color: #f1f5f9;
  transform: translateX(3px);
}

.sidebar-cat-item .cat-icon {
  font-size: 0.85rem;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.sidebar-cat-item .cat-count-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 50px;
  background: #f1f5f9;
  color: #64748b;
  transition: all 0.25s ease;
}

.sidebar-cat-item.is-active {
  background: var(--navy) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  border-color: var(--navy) !important;
  box-shadow: 0 4px 14px rgba(20, 43, 69, 0.15) !important;
}

.sidebar-cat-item.is-active .cat-icon {
  color: var(--gold) !important;
}

.sidebar-cat-item.is-active .cat-count-badge {
  background: var(--gold) !important;
  color: #ffffff !important;
}

.sidebar-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.86rem;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.sidebar-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(52, 117, 168, 0.06);
  transform: translateY(-2px);
}

.sidebar-chip.active {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(20, 43, 69, 0.2) !important;
}

.active-pill-badge {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.active-pill-badge:hover {
  background: #dc3545;
  color: #ffffff;
}

.sidebar-cta-box {
  background: linear-gradient(145deg, #0B1726 0%, #1F5F8B 100%) !important;
  border-top: 3px solid var(--gold) !important;
  box-shadow: 0 10px 25px rgba(11, 21, 48, 0.22) !important;
}

.sidebar-cta-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================
   PRODUCT CARDS & EQUAL HEIGHT CAROUSEL SYSTEM
   ========================================================== */
.rajshree-product-wrapper .rajshree-swiper-container-wrapper {
  position: relative !important;
  padding: 10px 24px 30px !important;
  margin: 0 auto !important;
}

.rajshree-product-wrapper .relatedProductSwiper {
  overflow: hidden !important;
  padding: 10px 4px 15px !important;
  width: 100% !important;
}

.rajshree-product-wrapper .relatedProductSwiper .swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
}

.rajshree-product-wrapper .relatedProductSwiper .swiper-slide {
  height: auto !important;
  display: flex !important;
  box-sizing: border-box !important;
}

.rajshree-product-wrapper .relatedProductSwiper .product-card,
.rajshree-archive-wrapper .product-card {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  background: #FFFFFF !important;
  border-radius: 12px !important;
  border: 1px solid #D8E5ED !important;
  overflow: hidden !important;
  box-shadow: 0 4px 16px rgba(20, 43, 69, 0.05) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative !important;
}

.rajshree-product-wrapper .relatedProductSwiper .product-card:hover,
.rajshree-archive-wrapper .product-card:hover,
.rajshree-showcase-wrapper .rajshree-showcase-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 35px rgba(20, 43, 69, 0.14) !important;
  border-color: #3475A8 !important;
}

.rajshree-product-wrapper .product-card-img-wrapper,
.rajshree-archive-wrapper .product-card-img-wrapper,
.rajshree-showcase-wrapper .rajshree-showcase-img-wrap {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  background: #F8FAFC !important;
  position: relative !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  border-top-left-radius: 14px !important;
  border-top-right-radius: 14px !important;
  border-bottom: 1px solid #EBF2F7 !important;
  box-sizing: border-box !important;
}

.rajshree-product-wrapper .product-card-img-wrapper a,
.rajshree-archive-wrapper .product-card-img-wrapper a,
.rajshree-showcase-wrapper .rajshree-showcase-img-wrap a {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
}

.rajshree-product-wrapper .product-card-img-wrapper .product-img,
.rajshree-archive-wrapper .product-card-img-wrapper .product-img,
.rajshree-product-wrapper .product-card-img-wrapper img,
.rajshree-archive-wrapper .product-card-img-wrapper img,
.rajshree-showcase-wrapper .rajshree-showcase-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 0 !important;
  transition: transform 0.4s ease !important;
}

.rajshree-product-wrapper .product-card:hover .product-img,
.rajshree-archive-wrapper .product-card:hover .product-img {
  transform: scale(1.04) !important;
}

.product-card-category-wrapper {
  margin-top: 4px !important;
  margin-bottom: 10px !important;
  display: block !important;
}

.product-card-category-tag,
.rajshree-product-wrapper .product-card-category-tag,
.rajshree-archive-wrapper .product-card-category-tag,
.rajshree-showcase-wrapper .product-card-category-tag,
.rajshree-product-wrapper .product-card .tag,
.rajshree-archive-wrapper .product-card .tag {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  color: #1F5F8B !important;
  background-color: #E8F2F8 !important;
  border: 1px solid #D0E4F2 !important;
  padding: 3px 10px !important;
  border-radius: 6px !important;
  letter-spacing: 0.3px !important;
  line-height: 1.3 !important;
  width: fit-content !important;
  text-transform: capitalize !important;
  transition: all 0.2s ease !important;
  position: static !important;
  box-shadow: none !important;
}

.product-card:hover .product-card-category-tag,
.rajshree-showcase-card:hover .product-card-category-tag,
.rajshree-product-wrapper .product-card:hover .tag,
.rajshree-archive-wrapper .product-card:hover .tag {
  background-color: #D8EBF7 !important;
  border-color: #B9DDF2 !important;
  color: #14496D !important;
}

.rajshree-product-wrapper .product-card-body,
.rajshree-archive-wrapper .product-card-body {
  padding: 22px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  justify-content: space-between !important;
  background: #FFFFFF !important;
}

.rajshree-product-wrapper .product-card-body h5,
.rajshree-archive-wrapper .product-card-body h5 {
  color: #142B45 !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.35 !important;
  min-height: 2.8em !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.rajshree-product-wrapper .product-card-body p,
.rajshree-archive-wrapper .product-card-body p {
  color: #64748B !important;
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
  margin: 0 0 16px 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  height: 4.2em !important;
  min-height: 4.2em !important;
  flex-grow: 1 !important;
}

.rajshree-product-wrapper .product-card-footer,
.rajshree-archive-wrapper .product-card-footer {
  margin-top: auto !important;
  padding-top: 8px !important;
  width: 100% !important;
}

.rajshree-product-wrapper .product-price-badge,
.rajshree-archive-wrapper .product-price-badge,
.rajshree-showcase-wrapper .product-price-badge {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #142B45 !important;
  line-height: 1.25 !important;
  margin-top: 4px !important;
  margin-bottom: 18px !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}
.rajshree-product-wrapper .product-price-badge ins,
.rajshree-archive-wrapper .product-price-badge ins,
.rajshree-showcase-wrapper .product-price-badge ins {
  text-decoration: none !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #142B45 !important;
}
.rajshree-product-wrapper .product-price-badge del,
.rajshree-archive-wrapper .product-price-badge del,
.rajshree-showcase-wrapper .product-price-badge del {
  color: #94A3B8 !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  text-decoration: line-through !important;
}
.rajshree-product-wrapper .product-price-badge .amount,
.rajshree-archive-wrapper .product-price-badge .amount,
.rajshree-showcase-wrapper .product-price-badge .amount {
  color: inherit !important;
  font-weight: inherit !important;
}

.rajshree-product-wrapper .product-card .btn-navy,
.rajshree-archive-wrapper .product-card .btn-navy {
  background: #142B45 !important;
  color: #FFFFFF !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  padding: 11px 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: none !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
  width: 100% !important;
  box-shadow: 0 2px 8px rgba(20, 43, 69, 0.15) !important;
}

.rajshree-product-wrapper .product-card .btn-navy:hover,
.rajshree-archive-wrapper .product-card .btn-navy:hover {
  background: #3475A8 !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(52, 117, 168, 0.3) !important;
}

/* ==========================================================
   BULLETPROOF MODERN ARCHIVE PAGINATION
   ========================================================== */
.rajshree-archive-wrapper .rajshree-pagination-wrapper,
.rajshree-archive-wrapper ul.page-numbers,
.rajshree-archive-wrapper .page-numbers {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-wrap: wrap !important;
}

.rajshree-archive-wrapper ul.page-numbers li {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
}

.rajshree-archive-wrapper ul.page-numbers li::marker,
.rajshree-archive-wrapper ul.page-numbers li::before {
  display: none !important;
  content: "" !important;
}

.rajshree-archive-wrapper .page-numbers li a,
.rajshree-archive-wrapper .page-numbers li span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 44px !important;
  height: 44px !important;
  padding: 0 16px !important;
  border-radius: 10px !important;
  border: 1.5px solid #D8E5ED !important;
  background: #FFFFFF !important;
  color: #142B45 !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 6px rgba(20, 43, 69, 0.04) !important;
}

.rajshree-archive-wrapper .page-numbers li a:hover {
  border-color: #3475A8 !important;
  color: #3475A8 !important;
  background: #E8F2F8 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(52, 117, 168, 0.2) !important;
}

.rajshree-archive-wrapper .page-numbers li span.current {
  background: #142B45 !important;
  color: #FFFFFF !important;
  border-color: #142B45 !important;
  box-shadow: 0 4px 14px rgba(20, 43, 69, 0.22) !important;
}

.rajshree-archive-wrapper .page-numbers li span.dots {
  background: transparent !important;
  border-color: transparent !important;
  color: #64748B !important;
  font-weight: 700 !important;
}

/* Related Product Cards Swiper Pagination & Navigation */
.rajshree-product-wrapper .related-swiper-pagination,
.rajshree-product-wrapper .swiper-pagination.related-swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  margin-top: 36px !important;
  margin-bottom: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  z-index: 10 !important;
}

.rajshree-product-wrapper .related-swiper-pagination .swiper-pagination-bullet {
  width: 9px !important;
  height: 9px !important;
  background: #CBD5E1 !important;
  opacity: 1 !important;
  border-radius: 50% !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
}

.rajshree-product-wrapper .related-swiper-pagination .swiper-pagination-bullet-active {
  background: #3475A8 !important;
  width: 28px !important;
  border-radius: 50px !important;
}

.rajshree-product-wrapper .related-nav-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  border: 1px solid #D8E5ED !important;
  color: #142B45 !important;
  font-size: 1.3rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 25 !important;
  box-shadow: 0 4px 18px rgba(20, 43, 69, 0.14) !important;
  transition: all 0.25s ease !important;
}

.rajshree-product-wrapper .related-nav-prev {
  left: -8px !important;
}

.rajshree-product-wrapper .related-nav-next {
  right: -8px !important;
}

.rajshree-product-wrapper .related-nav-btn:hover {
  background: #3475A8 !important;
  color: #FFFFFF !important;
  border-color: #3475A8 !important;
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: 0 6px 22px rgba(52, 117, 168, 0.35) !important;
}

@media (max-width: 991px) {
  .rajshree-product-wrapper .related-nav-prev { left: 0px !important; width: 40px !important; height: 40px !important; font-size: 1.1rem !important; }
  .rajshree-product-wrapper .related-nav-next { right: 0px !important; width: 40px !important; height: 40px !important; font-size: 1.1rem !important; }
}

/* Automatic Swiper Controls Lock */
.swiper-button-lock,
.swiper-pagination-lock {
  display: none !important;
}

/* High Contrast Base Elements */
.rajshree-product-wrapper .section-text,
.rajshree-product-wrapper p {
  color: #1E293B;
}
.rajshree-product-wrapper .table tbody td {
  color: #142B45 !important;
}

/* Modal Popup */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  background: rgba(11, 21, 48, 0.75);
}
.modal.show { display: block; }
.modal-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem auto;
  max-width: 800px;
  pointer-events: none;
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-radius: var(--radius-lg);
  outline: 0;
  overflow: hidden;
}
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #dee2e6;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 2rem;
}
.form-control, .form-select {
  display: block;
  width: 100%;
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(52, 117, 168, 0.25);
}

/* ==========================================================
   SIDEBAR POSITION CONTROLS (LEFT / RIGHT)
   ========================================================== */
@media (min-width: 992px) {
  .rajshree-archive-wrapper .sidebar-pos-right,
  .rajshree-archive-wrapper .flex-lg-row-reverse {
    display: flex !important;
    flex-direction: row-reverse !important;
  }
  .rajshree-archive-wrapper .sidebar-pos-right > .rajshree-archive-sidebar-col,
  .rajshree-archive-wrapper .flex-lg-row-reverse > .rajshree-archive-sidebar-col {
    order: 2 !important;
  }
  .rajshree-archive-wrapper .sidebar-pos-right > .rajshree-archive-grid-col,
  .rajshree-archive-wrapper .flex-lg-row-reverse > .rajshree-archive-grid-col {
    order: 1 !important;
  }
}
@media (max-width: 991px) {
  .rajshree-archive-wrapper .sidebar-pos-right,
  .rajshree-archive-wrapper .flex-lg-row-reverse {
    flex-direction: column !important;
  }
  .rajshree-archive-wrapper .sidebar-pos-right > .rajshree-archive-sidebar-col,
  .rajshree-archive-wrapper .flex-lg-row-reverse > .rajshree-archive-sidebar-col {
    order: 1 !important;
  }
  .rajshree-archive-wrapper .sidebar-pos-right > .rajshree-archive-grid-col,
  .rajshree-archive-wrapper .flex-lg-row-reverse > .rajshree-archive-grid-col {
    order: 2 !important;
  }
}

/* ==========================================================
   HOMEPAGE & ARCHIVE PRODUCT FINDER (FILTER BAR)
   ========================================================== */
.rajshree-finder-component {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 20px auto !important;
  box-sizing: border-box !important;
}
.rajshree-finder-card {
  background: #FFFFFF !important;
  border: 1.5px solid #D8E5ED !important;
  border-radius: 20px !important;
  padding: 36px 32px !important;
  box-shadow: 0 12px 36px rgba(20, 43, 69, 0.08) !important;
  box-sizing: border-box !important;
}
.rajshree-finder-header .finder-title {
  color: #142B45 !important;
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
  margin-bottom: 6px !important;
}
.rajshree-finder-header .finder-subtitle {
  color: #4A5D6E !important;
  font-size: 0.95rem !important;
  margin-bottom: 0 !important;
}
.rajshree-finder-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) auto !important;
  gap: 16px !important;
  align-items: flex-end !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.rajshree-finder-grid .finder-field-group {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
}
.rajshree-finder-grid .finder-field-label {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  color: #142B45 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 8px !important;
  white-space: nowrap !important;
}
.rajshree-finder-grid .finder-select-wrapper {
  position: relative !important;
  width: 100% !important;
}
.rajshree-finder-grid .finder-select {
  width: 100% !important;
  height: 50px !important;
  background: #F8FAFC url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%233475A8' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 14px center / 13px !important;
  border: 1.5px solid #D8E5ED !important;
  border-radius: 12px !important;
  padding: 0 38px 0 16px !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: #142B45 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
}
.rajshree-finder-grid .finder-select:hover {
  border-color: #3475A8 !important;
  background-color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(52, 117, 168, 0.1) !important;
}
.rajshree-finder-grid .finder-select:focus {
  border-color: #3475A8 !important;
  background-color: #FFFFFF !important;
  box-shadow: 0 0 0 3px rgba(52, 117, 168, 0.2) !important;
  outline: none !important;
}
.rajshree-finder-grid .finder-action-group {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}
.rajshree-finder-grid .btn-finder-submit {
  height: 50px !important;
  padding: 0 28px !important;
  border-radius: 12px !important;
  background: #142B45 !important;
  background-image: linear-gradient(135deg, #142B45 0%, #1F5F8B 100%) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.3px !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 14px rgba(20, 43, 69, 0.2) !important;
  white-space: nowrap !important;
  width: auto !important;
  min-width: 170px !important;
  box-sizing: border-box !important;
}
.rajshree-finder-grid .btn-finder-submit:hover {
  background-image: linear-gradient(135deg, #3475A8 0%, #1F5F8B 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(52, 117, 168, 0.35) !important;
  color: #FFFFFF !important;
}

@media (max-width: 1199px) {
  .rajshree-finder-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .rajshree-finder-grid .finder-action-group {
    grid-column: span 2 !important;
  }
  .rajshree-finder-grid .btn-finder-submit {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .rajshree-finder-card {
    padding: 24px 20px !important;
    border-radius: 16px !important;
  }
  .rajshree-finder-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .rajshree-finder-grid .finder-action-group {
    grid-column: span 1 !important;
  }
  .rajshree-finder-grid .btn-finder-submit {
    width: 100% !important;
    height: 48px !important;
  }
  .rajshree-finder-header .finder-title {
    font-size: 1.4rem !important;
  }
}

/* ==========================================================================
   Rajshree Hero Trust Badges & Single Product Page Justified Typography
   ========================================================================== */
.rajshree-product-wrapper .rajshree-hero-badges-wrap {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-bottom: 16px !important;
  width: 100% !important;
  text-align: center !important;
}

.rajshree-product-wrapper .rajshree-hero-badges-wrap .badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* Justified text alignment across single product pages */
.rajshree-product-wrapper .product-overview-text,
.rajshree-product-wrapper .rajshree-overview-content p,
.rajshree-product-wrapper .rajshree-overview-content,
.rajshree-product-wrapper .rajshree-summary-box p,
.rajshree-product-wrapper .p-3.bg-cream.rounded-3.border p,
.rajshree-product-wrapper .rajshree-available-product-box p,
.rajshree-product-wrapper .rajshree-available-list,
.rajshree-product-wrapper .rajshree-available-list li,
.rajshree-product-wrapper .highlight-card p,
.rajshree-product-wrapper .target-customer-card p,
.rajshree-product-wrapper .why-source-card p,
.rajshree-product-wrapper .accordion-body,
.rajshree-product-wrapper .accordion-body div,
.rajshree-product-wrapper .accordion-body p,
.rajshree-product-wrapper .rajshree-lead-text,
.rajshree-product-wrapper .rajshree-disposable-intro,
.rajshree-product-wrapper .rajshree-disposable-outro,
.rajshree-product-wrapper .rajshree-disposable-packs-section p,
.rajshree-product-wrapper .product-card-body p,
.rajshree-product-wrapper p.text-muted,
.rajshree-product-wrapper p.text-secondary {
  text-align: justify !important;
  text-justify: inter-word !important;
}

/* ==========================================================================
   Rajshree Product Showcase - Mobile Full-Width Responsive Fix
   ========================================================================== */
.rajshree-showcase-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.rajshree-showcase-card {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  position: relative !important;
  isolation: isolate !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black) !important;
}
.rajshree-showcase-img-wrap {
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  border-top-left-radius: 14px !important;
  border-top-right-radius: 14px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}
.rajshree-showcase-img-wrap a {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}
.rajshree-showcase-img-wrap img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-top-left-radius: 14px !important;
  border-top-right-radius: 14px !important;
  box-sizing: border-box !important;
  display: block !important;
}

@media (max-width: 767px) {
  .rajshree-showcase-wrapper {
    padding: 0 !important;
    margin: 0 !important;
  }
  .rajshree-swiper-showcase-container,
  .rajshree-showcase-grid {
    padding: 6px 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .rajshree-swiper-showcase-container .swiper-slide,
  .rajshree-showcase-grid-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 4px 6px !important;
  }
  .rajshree-showcase-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }
}

/* ================= DISPOSABLE PRODUCTS SECTIONS ================= */
.rajshree-available-product-box {
  background: #FFFFFF !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 18px rgba(20, 43, 69, 0.06) !important;
  transition: all 0.25s ease !important;
}

.rajshree-available-list li {
  font-size: 0.92rem;
  color: #334155;
  transition: transform 0.2s ease;
}

.rajshree-available-list li:hover {
  transform: translateX(3px);
}

.rajshree-disposable-packs-section .card {
  box-shadow: 0 6px 24px rgba(20, 43, 69, 0.05) !important;
}

.rajshree-disposable-packs-section .shadow-xs {
  box-shadow: 0 2px 8px rgba(20, 43, 69, 0.04) !important;
  transition: all 0.25s ease !important;
}

.rajshree-disposable-packs-section .shadow-xs:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 117, 168, 0.12) !important;
  border-color: #CBD5E1 !important;
}

/* ================= SOCIAL SHARE BUTTONS ================= */
.rajshree-social-share-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin: 18px 0 16px 0 !important;
  padding: 4px 0 !important;
}

.rajshree-social-share-wrap .rajshree-share-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #FFFFFF !important;
  border: 1.5px solid #D8E5ED !important;
  color: #64748B !important;
  font-size: 1rem !important;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(20, 43, 69, 0.05) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  padding: 0 !important;
  outline: none !important;
}

.rajshree-social-share-wrap .rajshree-share-btn:hover {
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 6px 16px rgba(20, 43, 69, 0.12) !important;
}

/* Brand specific hover accents */
.rajshree-social-share-wrap .rajshree-share-wa:hover {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35) !important;
}

.rajshree-social-share-wrap .rajshree-share-fb:hover {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.35) !important;
}

.rajshree-social-share-wrap .rajshree-share-li:hover {
  background: #0A66C2 !important;
  border-color: #0A66C2 !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 18px rgba(10, 102, 194, 0.35) !important;
}

.rajshree-social-share-wrap .rajshree-share-x:hover {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3) !important;
}

.rajshree-social-share-wrap .rajshree-share-copy:hover,
.rajshree-social-share-wrap .rajshree-share-copy.copied {
  background: #3475A8 !important;
  border-color: #3475A8 !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 18px rgba(52, 117, 168, 0.35) !important;
}



