/** Shopify CDN: Minification failed

Line 23:0 Unexpected "<"
Line 448:0 Unexpected "<"
Line 1116:0 Unexpected "<"
Line 1126:98 Expected identifier but found "*"
Line 1128:69 Expected identifier but found "*"
Line 1230:0 Unexpected "<"

**/
/* ================================================================
   ghee-again-shared.css
   Consolidated CSS for the *-again product templates.
   Sections that load this: metaobject-ghee-again-product-template,
   metaobject-oils-again-product-template, v2-superfoods-metaobject-template.

   Replaces: ghee-again-grid.css, FAQ-ghee-again.css, uses-ghee-again.css,
             viedo-ghee-again.css, Ghee-Comparison-Container.css
   ================================================================ */


/* ---------- ghee-again-grid.css ---------- */
<style>
/* RESPONSIVE IMAGE GRID - CROPPING FIXED VERSION */
/* Core container setup with flexible aspect ratios */
.product-images-gallery {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0 auto;
  overflow: visible;
  width: 95%;
  max-width: 1500px;
}

.product-images-gallery .images-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  gap: 8px;
  padding: 0;
  width: 96%;
  max-width: 100%;
  margin: 0 auto;
  background-color: transparent;
  box-sizing: border-box;
}

/* Image wrapper with dynamic aspect ratios */
.product-images-gallery .product-image-item {
  overflow: hidden;
  background-color: transparent;
  border-radius: 6px;
  border: none;
  position: relative;
  width: 100%;
  /* Remove fixed heights - use aspect-ratio instead */
}

/* CRITICAL FIX: Prevent cropping with better object-fit handling */
.product-images-gallery .product-image-item img {
  width: 100%;
  height: 100%;
  /* Use object-fit: contain for full image visibility or cover with better positioning */
  object-fit: cover;
  object-position: center center; /* Better than default top positioning */
  border-radius: 6px;
  display: block;
  /* Add min-height to prevent squashing */
  min-height: 150px;
}

/* MOBILE LAYOUT - Use aspect-ratio instead of fixed heights */
/* Image 1 - Full width */
.product-images-gallery .product-image-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1;
  aspect-ratio: 16/9; /* Responsive ratio instead of fixed height */
  min-height: 180px;
}

/* Images 2 & 3 - Side by side */
.product-images-gallery .product-image-item:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 4/5; /* Portrait-ish ratio */
  min-height: 190px;
}

.product-images-gallery .product-image-item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 4/5;
  min-height: 190px;
}

/* Image 4 - Full width */
.product-images-gallery .product-image-item:nth-child(4) {
  grid-column: 1 / 3;
  grid-row: 3;
  aspect-ratio: 16/9;
  min-height: 180px;
}

/* Images 5 & 6 - Side by side */
.product-images-gallery .product-image-item:nth-child(5) {
  grid-column: 1;
  grid-row: 4;
  aspect-ratio: 4/5;
  min-height: 190px;
}

.product-images-gallery .product-image-item:nth-child(6) {
  grid-column: 2;
  grid-row: 4;
  aspect-ratio: 4/5;
  min-height: 190px;
}

/* VERY SMALL SCREENS (≤374px) */
@media screen and (max-width: 374px) {
  .product-images-gallery .images-container {
    gap: 6px;
    width: 98%;
  }
  
  .product-images-gallery .product-image-item {
    border-radius: 4px;
  }
  
  .product-images-gallery .product-image-item img {
    border-radius: 4px;
    min-height: 120px; /* Adjusted for very small screens */
  }
  
  /* Adjust aspect ratios for very small screens */
  .product-images-gallery .product-image-item:nth-child(1),
  .product-images-gallery .product-image-item:nth-child(4) {
    aspect-ratio: 3/2; /* Less wide on tiny screens */
    min-height: 140px;
  }
  
  .product-images-gallery .product-image-item:nth-child(2),
  .product-images-gallery .product-image-item:nth-child(3),
  .product-images-gallery .product-image-item:nth-child(5),
  .product-images-gallery .product-image-item:nth-child(6) {
    aspect-ratio: 1/1; /* Square on tiny screens */
    min-height: 160px;
  }
}

/* SMALL SCREENS (375px - 479px) */
@media screen and (min-width: 375px) and (max-width: 479px) {
  .product-images-gallery .images-container {
    gap: 7px;
    width: 97%;
  }
  
  .product-images-gallery .product-image-item {
    border-radius: 5px;
  }
  
  .product-images-gallery .product-image-item img {
    border-radius: 5px;
    min-height: 140px;
  }
  
  /* Optimized ratios for small phones */
  .product-images-gallery .product-image-item:nth-child(1),
  .product-images-gallery .product-image-item:nth-child(4) {
    aspect-ratio: 5/3;
    min-height: 160px;
  }
}

/* MEDIUM MOBILE SCREENS (480px - 599px) */
@media screen and (min-width: 480px) and (max-width: 599px) {
  .product-images-gallery .images-container {
    gap: 8px;
    width: 96%;
  }
  
  .product-images-gallery .product-image-item img {
    min-height: 160px;
  }
  
  /* Better ratios for medium phones */
  .product-images-gallery .product-image-item:nth-child(1),
  .product-images-gallery .product-image-item:nth-child(4) {
    aspect-ratio: 16/9;
    min-height: 180px;
  }
}

/* TABLET LAYOUT (600px - 749px) - Asymmetric Grid */
@media screen and (min-width: 600px) and (max-width: 749px) {
  .product-images-gallery .images-container {
    gap: 10px;
    width: 85%;
    grid-template-rows: repeat(4, auto);
  }
  
  .product-images-gallery .product-image-item img {
    border-radius: 6px;
    min-height: 160px;
  }
  
  /* Tablet asymmetric layout with aspect ratios */
  .product-images-gallery .product-image-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 4/3;
    min-height: 180px;
  }
  
  .product-images-gallery .product-image-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / 3;
    aspect-ratio: 3/4;
    min-height: 380px;
  }
  
  .product-images-gallery .product-image-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 4/3;
    min-height: 180px;
  }
  
  .product-images-gallery .product-image-item:nth-child(4) {
    grid-column: 1;
    grid-row: 3 / 5;
    aspect-ratio: 3/4;
    min-height: 380px;
  }
  
  .product-images-gallery .product-image-item:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
    aspect-ratio: 4/3;
    min-height: 180px;
  }
  
  .product-images-gallery .product-image-item:nth-child(6) {
    grid-column: 2;
    grid-row: 4;
    aspect-ratio: 4/3;
    min-height: 180px;
  }
}

/* IPAD PRO LANDSCAPE (750px - 1024px) */
@media screen and (min-width: 750px) and (max-width: 1024px) and (orientation: landscape) {
  .product-images-gallery .images-container {
    gap: 15px;
    width: 85%;
    max-width: 1000px;
  }
  
  .product-images-gallery .product-image-item {
    border-radius: 10px;
  }
  
  .product-images-gallery .product-image-item img {
    border-radius: 10px;
    min-height: 200px;
  }
  
  /* iPad Pro landscape ratios */
  .product-images-gallery .product-image-item:nth-child(1),
  .product-images-gallery .product-image-item:nth-child(4) {
    aspect-ratio: 2/1;
    min-height: 240px;
  }
  
  .product-images-gallery .product-image-item:nth-child(2),
  .product-images-gallery .product-image-item:nth-child(3),
  .product-images-gallery .product-image-item:nth-child(5),
  .product-images-gallery .product-image-item:nth-child(6) {
    aspect-ratio: 4/5;
    min-height: 280px;
  }
}

/* IPAD PRO PORTRAIT (750px - 834px) */
@media screen and (min-width: 750px) and (max-width: 834px) and (orientation: portrait) {
  .product-images-gallery .images-container {
    gap: 12px;
    width: 90%;
    max-width: 800px;
  }
  
  .product-images-gallery .product-image-item {
    border-radius: 8px;
  }
  
  .product-images-gallery .product-image-item img {
    border-radius: 8px;
    min-height: 240px;
  }
  
  /* iPad Pro portrait ratios */
  .product-images-gallery .product-image-item:nth-child(1),
  .product-images-gallery .product-image-item:nth-child(4) {
    aspect-ratio: 3/2;
    min-height: 280px;
  }
  
  .product-images-gallery .product-image-item:nth-child(2),
  .product-images-gallery .product-image-item:nth-child(3),
  .product-images-gallery .product-image-item:nth-child(5),
  .product-images-gallery .product-image-item:nth-child(6) {
    aspect-ratio: 4/5;
    min-height: 320px;
  }
}

/* DESKTOP LAYOUT (1025px+) */
@media screen and (min-width: 1025px) {
  .product-images-gallery .images-container {
    gap: 20px;
    width: 80%;
    max-width: 1100px;
  }
  
  .product-images-gallery .product-image-item {
    border-radius: 12px;
  }
  
  .product-images-gallery .product-image-item img {
    border-radius: 12px;
    min-height: 280px;
  }
  
  /* Desktop ratios for consistent layout */
  .product-images-gallery .product-image-item:nth-child(1),
  .product-images-gallery .product-image-item:nth-child(4) {
    aspect-ratio: 5/3;
    min-height: 320px;
  }
  
  .product-images-gallery .product-image-item:nth-child(2),
  .product-images-gallery .product-image-item:nth-child(3),
  .product-images-gallery .product-image-item:nth-child(5),
  .product-images-gallery .product-image-item:nth-child(6) {
    aspect-ratio: 4/5;
    min-height: 380px;
  }
}

/* LARGE DESKTOP (1200px+) */
@media screen and (min-width: 1200px) {
  .product-images-gallery .images-container {
    gap: 25px;
    width: 75%;
    max-width: 1200px;
  }
  
  .product-images-gallery .product-image-item img {
    min-height: 320px;
  }
  
  /* Large desktop ratios */
  .product-images-gallery .product-image-item:nth-child(1),
  .product-images-gallery .product-image-item:nth-child(4) {
    aspect-ratio: 16/9;
    min-height: 380px;
  }
  
  .product-images-gallery .product-image-item:nth-child(2),
  .product-images-gallery .product-image-item:nth-child(3),
  .product-images-gallery .product-image-item:nth-child(5),
  .product-images-gallery .product-image-item:nth-child(6) {
    aspect-ratio: 3/4;
    min-height: 440px;
  }
}

/* ALTERNATIVE: Use object-fit: contain for NO cropping at all */
.product-images-gallery .product-image-item.no-crop img {
  object-fit: contain;
  background-color: #f8f8f8; /* Light background for letterboxing */
}

/* TEXT HEADER STYLING */
.custom-text-header {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  background-color: transparent;
}

.custom-text-header h1 {
  color: #00584b;
  font-size: clamp(2rem, 5vw, 4.5rem); /* Responsive font sizing */
  font-weight: 600;
}

/* MOBILE TEXT STYLING */
@media screen and (max-width: 749px) {
  .custom-text-header h1 {
    font-size: clamp(3rem, 8vw, 7.5rem);
  }
}

/* PERFORMANCE & ACCESSIBILITY IMPROVEMENTS */
.product-images-gallery img {
  transition: transform 0.3s ease;
  loading: lazy; /* Native lazy loading */
}

.product-images-gallery img:hover {
  transform: scale(1.02);
}

.product-images-gallery .product-image-item:focus-within {
  outline: 2px solid #00584b;
  outline-offset: 2px;
}

/* FALLBACK FOR OLDER BROWSERS */
@supports not (aspect-ratio: 1) {
  .product-images-gallery .product-image-item:nth-child(1),
  .product-images-gallery .product-image-item:nth-child(4) {
    height: 180px;
  }
  
  .product-images-gallery .product-image-item:nth-child(2),
  .product-images-gallery .product-image-item:nth-child(3),
  .product-images-gallery .product-image-item:nth-child(5),
  .product-images-gallery .product-image-item:nth-child(6) {
    height: 190px;
  }
}

/* PRINT STYLES */
@media print {
  .product-images-gallery .images-container {
    display: block;
  }
  
  .product-images-gallery .product-image-item {
    page-break-inside: avoid;
    margin: 0 0 20px 0;
    height: auto;
  }
}
</style>

/* ---------- FAQ-ghee-again.css ---------- */
/* FAQ ACCORDION STYLING - INCREASED WIDTH */
.custom-faq-accordion {
  width: 100%;
  max-width: 1100px; /* INCREASED FROM 800px */
  margin: 0 auto;
  padding: 0 20px;
  background-color: transparent;
}
.custom-faq-accordion h2 {
  color: #00584b;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 5px 0; /* Reduced from 25px to 5px */
  text-align: center;
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
}
.faq-container {
  margin: 0; /* Remove any top margin */
  padding: 0; /* Remove any padding */
}
.faq-item {
  border: 1px solid #e5e7eb;
  margin: 0 0 8px 0; /* Reduced from 12px to 8px */
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s ease;
}
/* Remove spacing from first FAQ item */
.faq-item:first-child {
  margin-top: 0 !important;
}
.faq-item:hover {
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px; /* ADDED INTERNAL VERTICAL PADDING */
  cursor: pointer;
  background-color: #ffffff;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  transition: all 0.2s ease;
  position: relative;
}
.faq-question:hover {
  background-color: #f9fafb;
}
.faq-question.active {
  background-color: #00584b;
  color: white;
}
.faq-question-text {
  flex: 1;
  margin-right: 15px;
  line-height: 1.5;
  font-weight: 500;
}
.faq-question-text::before {
  content: "Q. ";
  font-weight: 600;
  color: #00584b;
}
.faq-question.active .faq-question-text::before {
  color: white;
}
.faq-arrow {
  font-size: 14px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #6b7280;
  margin-left: 10px;
  flex-shrink: 0;
}
.faq-question.active .faq-arrow {
  transform: rotate(180deg);
  color: white;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f8f9fa;
  border-top: 1px solid #e5e7eb;
}
.faq-answer.active {
  max-height: 400px;
}
.faq-answer-text {
  padding: 18px 20px; /* ADDED INTERNAL VERTICAL PADDING */
  color: #4b5563;
  line-height: 1.6;
  font-size: 14px;
}
.faq-answer-text::before {
  content: "A. ";
  font-weight: 600;
  color: #00584b;
}
/* MOBILE FAQ STYLING */
@media screen and (max-width: 749px) {
  .custom-faq-accordion {
    padding: 0 15px;
    margin: 0 auto;
    max-width: 95%;
  }
  
  .custom-faq-accordion h2 {
    font-size: 1.5rem;
    margin: 0 0 3px 0; /* Reduced from 20px to 3px */
  }
  
  .faq-question {
    padding: 14px 16px; /* MOBILE INTERNAL VERTICAL PADDING */
    font-size: 14px;
  }
  
  .faq-question-text {
    margin-right: 12px;
  }
  
  .faq-arrow {
    font-size: 12px;
  }
  
  .faq-answer-text {
    padding: 16px 16px; /* MOBILE INTERNAL VERTICAL PADDING */
    font-size: 13px;
  }
}
/* DESKTOP FAQ STYLING */
@media screen and (min-width: 750px) {
  .custom-faq-accordion {
    padding: 0 30px;
    margin: 0 auto;
    max-width: 1200px; /* INCREASED FROM 900px */
  }
  
  .custom-faq-accordion h2 {
    font-size: 2rem;
    margin: 0 0 5px 0; /* Reduced from 30px to 5px */
  }
  
  .faq-question {
    padding: 18px 24px; /* DESKTOP INTERNAL VERTICAL PADDING */
    font-size: 16px;
  }
  
  .faq-answer-text {
    padding: 20px 24px; /* DESKTOP INTERNAL VERTICAL PADDING */
    font-size: 15px;
  }
}
/* LARGE DESKTOP FAQ STYLING */
@media screen and (min-width: 1200px) {
  .custom-faq-accordion {
    max-width: 1300px; /* EVEN WIDER FOR LARGE SCREENS */
  }
  
  .faq-question {
    padding: 20px 28px; /* LARGE DESKTOP INTERNAL VERTICAL PADDING */
  }
  
  .faq-answer-text {
    padding: 22px 28px; /* LARGE DESKTOP INTERNAL VERTICAL PADDING */
  }
}
/* Update existing accordion__content for FAQs to avoid conflicts */
.accordion__content.richtext.rte {
  padding: 0; /* Remove excessive padding */
}
/* Ensure FAQ accordion icons don't overlap */
.faq-answer-text::before {
  content: "A. ";
  font-weight: 600;
  color: #00584b;
  display: inline;
}
/* Keep existing FAQ styling intact */
.custom-faq-accordion {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: transparent;
}

/* ---------- uses-ghee-again.css ---------- */
/* STYLING FOR USES INSIDE RICH TEXT ACCORDION */

/* TARGET PARAGRAPHS OR LIST ITEMS INSIDE ACCORDION CONTENT */
.accordion__content.richtext.rte p,
.accordion__content.richtext.rte li,
.accordion__content.richtext.rte div {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px 20px; /* ADDED INTERNAL PADDING */
  transition: all 0.3s ease;
  position: relative;
}

.accordion__content.richtext.rte p:hover,
.accordion__content.richtext.rte li:hover,
.accordion__content.richtext.rte div:hover {
  /* box-shadow: 0 4px 6px rgba(0,0,0,0.1); */
  transform: translateY(-2px);
  /* border-color: #00584b; */
}

/* ADD ICON BEFORE EACH USE */
.accordion__content.richtext.rte p::before,
.accordion__content.richtext.rte li::before,
.accordion__content.richtext.rte div::before {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #00584b;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* STYLE THE TEXT CONTENT */
.accordion__content.richtext.rte p,
.accordion__content.richtext.rte li,
.accordion__content.richtext.rte div {
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

/* REMOVE DEFAULT LIST STYLING */
.accordion__content.richtext.rte ul,
.accordion__content.richtext.rte ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* SPECIAL STYLING FOR STRONG/BOLD TEXT INSIDE */
.accordion__content.richtext.rte p strong,
.accordion__content.richtext.rte li strong,
.accordion__content.richtext.rte div strong {
  color: #00584b;
  font-weight: 600;
}

/* ANIMATION FOR USES WHEN ACCORDION OPENS */
.accordion__content.richtext.rte p {
  opacity: 0;
  animation: fadeInUse 0.6s ease forwards;
}

.accordion__content.richtext.rte p:nth-child(1) { animation-delay: 0.1s; }
.accordion__content.richtext.rte p:nth-child(2) { animation-delay: 0.2s; }
.accordion__content.richtext.rte p:nth-child(3) { animation-delay: 0.3s; }
.accordion__content.richtext.rte p:nth-child(4) { animation-delay: 0.4s; }
.accordion__content.richtext.rte p:nth-child(5) { animation-delay: 0.5s; }
.accordion__content.richtext.rte p:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUse {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 749px) {
  .accordion__content.richtext.rte p,
  .accordion__content.richtext.rte li,
  .accordion__content.richtext.rte div {
    padding: 14px 16px; /* MOBILE INTERNAL PADDING */
    font-size: 14px;
    margin: 0 0 10px 0;
  }
  
  .accordion__content.richtext.rte p::before,
  .accordion__content.richtext.rte li::before,
  .accordion__content.richtext.rte div::before {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
}

/* TABLET */
@media screen and (min-width: 750px) and (max-width: 1199px) {
  .accordion__content.richtext.rte p,
  .accordion__content.richtext.rte li,
  .accordion__content.richtext.rte div {
    padding: 16px 20px; /* TABLET INTERNAL PADDING */
    font-size: 15px;
  }
}

/* DESKTOP */
@media screen and (min-width: 1200px) {
  .accordion__content.richtext.rte p,
  .accordion__content.richtext.rte li,
  .accordion__content.richtext.rte div {
    padding: 18px 24px; /* DESKTOP INTERNAL PADDING */
    font-size: 16px;
  }
  
  .accordion__content.richtext.rte p::before,
  .accordion__content.richtext.rte li::before,
  .accordion__content.richtext.rte div::before {
    width: 26px;
    height: 26px;
    font-size: 18px;
  }
}

/* CENTER ACCORDION HEADINGS */
.product__accordion .summary__title {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product__accordion .accordion__title {
  text-align: center;
  margin: 0 auto;
  flex: 1;
}

/* ENSURE SUMMARY CONTENT IS CENTERED */
.product__accordion summary {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 16px 20px; /* ADDED INTERNAL PADDING */
}

/* CENTER THE CARET ICON */
.product__accordion summary svg {
  margin-left: auto;
  margin-right: 0;
}

/* RESPONSIVE CENTERING */
@media screen and (max-width: 749px) {
  .product__accordion .summary__title {
    text-align: center;
  }
  
  .product__accordion .accordion__title {
    text-align: center;
    font-size: 16px;
  }
  
  .product__accordion summary {
    padding: 14px 16px; /* MOBILE INTERNAL PADDING */
  }
}

@media screen and (min-width: 750px) {
  .product__accordion .summary__title {
    text-align: center;
  }
  
  .product__accordion .accordion__title {
    text-align: center;
    font-size: 18px;
  }
  
  .product__accordion summary {
    padding: 18px 24px; /* DESKTOP INTERNAL PADDING */
  }
}

/* STYLING FOR USES SECTION (NON-ACCORDION) */
.uses-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 88, 75, 0.1);
}

.uses-title {
  color: #00584b;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}

.uses-content.richtext.rte {
  color: #374151;
  font-size: 15px;
  line-height: 1.6;
  padding: 0;
}

/* Style individual paragraphs or list items in Uses */
.uses-content.richtext.rte p,
.uses-content.richtext.rte li,
.uses-content.richtext.rte div {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 12px 16px; /* ADDED INTERNAL PADDING */
  position: relative;
  transition: all 0.3s ease;
}

/* Remove icon to prevent overlap */
.uses-content.richtext.rte p::before,
.uses-content.richtext.rte li::before,
.uses-content.richtext.rte div::before {
  content: none;
}

/* Style strong/bold text */
.uses-content.richtext.rte p strong,
.uses-content.richtext.rte li strong,
.uses-content.richtext.rte div strong {
  color: #00584b;
  font-weight: 600;
}

/* Remove default list styling */
.uses-content.richtext.rte ul,
.uses-content.richtext.rte ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Animation for content */
.uses-content.richtext.rte p {
  opacity: 0;
  animation: fadeInUse 0.6s ease forwards;
}

.uses-content.richtext.rte p:nth-child(1) { animation-delay: 0.1s; }
.uses-content.richtext.rte p:nth-child(2) { animation-delay: 0.2s; }
.uses-content.richtext.rte p:nth-child(3) { animation-delay: 0.3s; }
.uses-content.richtext.rte p:nth-child(4) { animation-delay: 0.4s; }
.uses-content.richtext.rte p:nth-child(5) { animation-delay: 0.5s; }
.uses-content.richtext.rte p:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUse {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile responsive */
@media screen and (max-width: 749px) {
  .uses-container {
    max-width: 95%;
    padding: 0 15px;
  }
  
  .uses-title {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
  }
  
  .uses-content.richtext.rte p,
  .uses-content.richtext.rte li,
  .uses-content.richtext.rte div {
    font-size: 14px;
    padding: 10px 14px; /* MOBILE INTERNAL PADDING */
    margin: 0 0 10px 0;
  }
}

/* Tablet */
@media screen and (min-width: 750px) and (max-width: 1199px) {
  .uses-container {
    max-width: 1000px;
    padding: 0 20px;
  }
  
  .uses-title {
    font-size: 1.8rem;
  }
  
  .uses-content.richtext.rte p,
  .uses-content.richtext.rte li,
  .uses-content.richtext.rte div {
    font-size: 15px;
    padding: 12px 16px; /* TABLET INTERNAL PADDING */
  }
}

/* Desktop */
@media screen and (min-width: 1200px) {
  .uses-container {
    max-width: 1300px;
    padding: 0 30px;
  }
  
  .uses-title {
    font-size: 2rem;
  }
  
  .uses-content.richtext.rte p,
  .uses-content.richtext.rte li,
  .uses-content.richtext.rte div {
    font-size: 16px;
    padding: 14px 18px; /* DESKTOP INTERNAL PADDING */
  }
}

/* STYLING FOR NON-FAQ USES SECTION */
.page-width.product__accordion.accordion.quick-add-hidden.uses-section {
  background-color: transparent;
  border: none;
  max-width: 1200px;
  padding: 0;
}

.uses-content.richtext.rte {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

/* CRITICAL: Remove spacing from the first element right after the title */
.uses-content.richtext.rte > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Remove default paragraph spacing in Uses section */
.page-width.uses-section .uses-content.richtext.rte p {
  margin-top: 0 !important;
  margin-bottom: 8px !important;
}

/* Remove spacing from all direct children */
.page-width.uses-section .uses-content.richtext.rte > * {
  margin-top: 0 !important;
}

/* STYLING FOR EACH PARAGRAPH/LINE WITH BORDERS AND INTERNAL PADDING */
.uses-content.richtext.rte p,
.uses-content.richtext.rte li,
.uses-content.richtext.rte div {
  margin: 0 0 12px 0;
  padding: 16px 20px; /* ADDED INTERNAL PADDING */
  /* border: 1px solid #e5e7eb;
  border-radius: 10px; */
  background-color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  font-size: 15px;
  color: #374151;
  line-height: 1.1;
}

/* STYLE STRONG/BOLD TEXT */
.uses-content.richtext.rte p strong,
.uses-content.richtext.rte li strong,
.uses-content.richtext.rte div strong {
  color: #00584b;
  font-weight: 600;
}

/* REMOVE DEFAULT LIST STYLING */
.uses-content.richtext.rte ul,
.uses-content.richtext.rte ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ANIMATION FOR CONTENT */
.uses-content.richtext.rte p {
  opacity: 0;
  animation: fadeInUse 0.6s ease forwards;
}

.uses-content.richtext.rte p:nth-child(1) { animation-delay: 0.1s; }
.uses-content.richtext.rte p:nth-child(2) { animation-delay: 0.2s; }
.uses-content.richtext.rte p:nth-child(3) { animation-delay: 0.3s; }
.uses-content.richtext.rte p:nth-child(4) { animation-delay: 0.4s; }
.uses-content.richtext.rte p:nth-child(5) { animation-delay: 0.5s; }
.uses-content.richtext.rte p:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUse {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 749px) {
  .page-width.product__accordion.accordion.quick-add-hidden.uses-section {
    margin: 0 auto;
    padding: 0;
  }
  
  .uses-content.richtext.rte p,
  .uses-content.richtext.rte li,
  .uses-content.richtext.rte div {
    font-size: 14px;
    padding: 14px 16px; /* MOBILE INTERNAL PADDING */
    margin: 0 0 6px 0;
    border-width: 1px;
  }
}

/* TABLET */
@media screen and (min-width: 750px) and (max-width: 1199px) {
  .uses-content.richtext.rte p,
  .uses-content.richtext.rte li,
  .uses-content.richtext.rte div {
    font-size: 15px;
    padding: 16px 18px; /* TABLET INTERNAL PADDING */
  }
}

/* DESKTOP */
@media screen and (min-width: 1200px) {
  .page-width.product__accordion.accordion.quick-add-hidden.uses-section {
    max-width: 1300px;
  }
  
  .uses-content.richtext.rte p,
  .uses-content.richtext.rte li,
  .uses-content.richtext.rte div {
    font-size: 16px;
    padding: 18px 24px; /* DESKTOP INTERNAL PADDING */
    border-width: 1px;
  }
}

/* ---------- viedo-ghee-again.css ---------- */
/* <!-- Video --> */
<style>
/* VIDEO STYLING - RESPONSIVE WITH BACKGROUND */
.product-videos-gallery {
  width: 100%;
  max-width: 1400px; /* INCREASED FROM 1200px */
  margin: 0 auto;
  padding: 0 15px; /* REMOVED VERTICAL PADDING */
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%); /* SUBTLE GREEN BACKGROUND */ */
  border-radius: 16px;
  /* box-shadow: 0 4px 12px rgba(0, 88, 75, 0.08); /* SOFT SHADOW */ */
}
.product-videos-gallery .videos-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px; /* INCREASED GAP */
  width: 100%;
  max-width: 1200px; /* CONTAINER WIDTH */
}
.product-videos-gallery .video-item {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 88, 75, 0.12); /* VIDEO SHADOW */
  border: 2px solid rgba(0, 88, 75, 0.1); /* SUBTLE BORDER */
}
.product-videos-gallery video {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 14px;
  object-fit: contain;
  display: block;
}
/* TABLET VIDEO STYLING */
@media screen and (min-width: 600px) and (max-width: 749px) {
  .product-videos-gallery {
    width: 95%;
    max-width: 1300px;
    padding: 0 20px;
    margin: 0 auto;
  }
  
  .product-videos-gallery .videos-container {
    max-width: 1000px;
    gap: 30px;
  }
}
/* DESKTOP VIDEO STYLING */
@media screen and (min-width: 750px) {
  .product-videos-gallery {
    width: 95%; /* INCREASED FROM 90% */
    max-width: 1400px; /* INCREASED FROM 1000px */
    margin: 0 auto; /* REMOVED VERTICAL MARGIN */
    padding: 0 30px; /* REMOVED VERTICAL PADDING */
  }
  
  .product-videos-gallery .videos-container {
    max-width: 1300px; /* INCREASED CONTAINER */
    gap: 35px;
  }
  
  .product-videos-gallery .video-item {
    width: 100%;
    max-width: 1200px; /* INCREASED FROM 1100px */
    margin: 0 auto;
  }
  
  .product-videos-gallery video {
    width: 100%;
    height: auto;
    max-height: 600px; /* INCREASED FROM 500px */
    object-fit: contain;
  }
}
/* LARGE DESKTOP VIDEO STYLING */
@media screen and (min-width: 1200px) {
  .product-videos-gallery {
    width: 90%;
    max-width: 1500px; /* EVEN WIDER FOR LARGE SCREENS */
    padding: 0 40px;
    margin: 0 auto;
  }
  
  .product-videos-gallery .videos-container {
    max-width: 1400px;
  }
  
  .product-videos-gallery .video-item {
    max-width: 1300px;
  }
  
  .product-videos-gallery video {
    max-height: 700px;
  }
}
/* LOADING STATES */
.video-loading::after {
  /* content: "Loading video..."; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
  font-size: 14px;
}
</style>

/* ---------- Ghee-Comparison-Container.css ---------- */
/* Ghee Comparison Container */



.ghee-comparison-gallery .images-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 15px;
  width: 96%;
  max-width: 100%;
  margin: 0 auto;
  background-color: transparent;
  box-sizing: border-box;
}

.ghee-comparison-gallery .product-image-item {
  flex: 0 0 auto;
  width: 300px;
  height: 400px;
  overflow: hidden;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  position: relative;
}

.ghee-comparison-gallery .product-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Hide scrollbar but keep functionality */
.ghee-comparison-gallery .images-container::-webkit-scrollbar {
  display: none;
}

.ghee-comparison-gallery .images-container {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Tablet and Desktop Adjustments */
@media screen and (min-width: 600px) {
  .ghee-comparison-gallery .product-image-item {
    width: 350px;
    height: 450px;
  }
}

@media screen and (min-width: 750px) {
  .ghee-comparison-gallery .images-container {
    width: 80%;
    max-width: 1100px;
    margin: 20px auto;
  }

  .ghee-comparison-gallery .product-image-item {
    width: 400px;
    height: 500px;
  }
}

@media screen and (min-width: 1200px) {
  .ghee-comparison-gallery .images-container {
    width: 75%;
    max-width: 1200px;
    margin: 30px auto;
  }

  .ghee-comparison-gallery .product-image-item {
    width: 450px;
    height: 550px;
  }
}
.ghee-comparison-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Mobile Vertical Stack - Only visible on mobile */
.mobile-vertical-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

/* Desktop Horizontal Row - Hidden on mobile */
.desktop-horizontal-row {
  display: none;
}

/* Desktop styles - 768px and above */
@media screen and (min-width: 768px) {
  .mobile-vertical-stack {
    display: none;
  }
  
  .desktop-horizontal-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .horizontal-image-item {
    flex: 1;
    max-width: calc(33.333% - 15px);
    min-width: 250px;
  }
  
  .horizontal-image-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    transition: transform 0.3s ease;
  }
  
  .horizontal-image-item img:hover {
    transform: translateY(-5px);
  }
}

/* Large desktop - 1024px and above */
@media screen and (min-width: 1024px) {
  .ghee-comparison-container {
    padding: 30px;
  }
  
  .desktop-horizontal-row {
    gap: 30px;
    padding: 0 30px;
  }
  
  .horizontal-image-item {
    max-width: calc(33.333% - 20px);
  }
}

/* Mobile specific adjustments */
@media screen and (max-width: 480px) {
  .ghee-comparison-container {
    padding: 15px;
  }
  
  .mobile-vertical-stack {
    gap: 15px;
    padding: 0 15px;
  }
  
  .horizontal-image-item {
    width: 100%;
    max-width: 100%;
  }
  
  .horizontal-image-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    background: white;
  }
}
