/** Shopify CDN: Minification failed

Line 6:21 Unexpected "-"

**/
* FAQ Section Styles - Mobile First Design 
   Base: 1rem = 10px
   Figma 1920px measurements: Container 1920px x 777px, Content 1399px x 115px, FAQ boxes 679px x 78px
*/

/* Base font size for consistent rem calculations */


.faq {
  background-color: #f0f0f0;
  padding: clamp(4rem, 8vw, 13.4rem) 0; /* 134px top padding at 1920px */
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Main Container - Flex Layout */
.faq__container {
  max-width: 192rem; /* 1920px max width */
  margin: 0 auto;
  padding: 0 clamp(1.6rem, 4vw, 26rem); /* 260px left/right padding at 1920px */
  box-sizing: border-box;
  
  /* Mobile: Stack vertically */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(3rem, 6vw, 5rem);
}

/* Header Section - FAQ Title and Description */
.faq__header {
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.3rem); /* 33px gap at 1920px */
}

.faq__title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500; /* Medium from Figma */
  font-size: clamp(2.4rem, 5vw, 3.2rem); /* 24px to 32px */
  line-height: clamp(1.1, 1.2, 0.6875); /* 22px/32px = 0.6875 at desktop */
  color: #2f2f2f;
  margin: 0;
}

.faq__description {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 300; /* Light from Figma */
  font-size: clamp(1.6rem, 3vw, 2.2rem); /* 16px to 22px */
  line-height: clamp(1.4, 1.5, 1.364); /* 30px/22px = 1.364 at desktop */
  color: #2f2f2f;
  margin: 0;
}

/* FAQ Items Container - 2 Column Layout on Desktop */
.faq__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
}

.faq__items {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4.9rem); /* 49px gap between FAQ items from Figma */
  width: 100%;
}

.faq__item {
  border: 2px solid #858585; /* Exact Figma border */
  border-radius: 0.8rem; /* 8px - exact Figma radius */
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  /* Remove problematic max-width - let grid handle sizing */
}

.faq__item:hover {
  border-color: #2f2f2f;
}

.faq__question {
  width: 100%;
  padding: clamp(1.2rem, 2vw, 1.6rem); /* 16px exact Figma padding */
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: background-color 0.2s ease;
  min-height: clamp(5.6rem, 8vw, 7.8rem); /* 78px exact Figma height */
  box-sizing: border-box;
}

.faq__question:hover {
  background-color: rgba(47, 47, 47, 0.05);
}

.faq__question:focus {
  outline: 2px solid #e50012;
  outline-offset: -2px;
}

.faq__question-text {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500; /* Medium from Figma */
  font-size: clamp(1.6rem, 3vw, 2.2rem); /* 16px to 22px - exact Figma size */
  line-height: clamp(1.3, 1.4, 1.364); /* 30px/22px = 1.364 at desktop */
  color: #2f2f2f;
  flex: 1;
  padding-right: 1rem;
}

.faq__icon {
  flex-shrink: 0;
  width: clamp(3.2rem, 5vw, 4.6rem); /* 46px exact Figma icon size */
  height: clamp(3.2rem, 5vw, 4.6rem); /* 46px exact Figma icon size */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq__icon svg {
  width: clamp(2rem, 3vw, 2.4rem); /* 24px responsive icon */
  height: clamp(2rem, 3vw, 2.4rem); /* 24px responsive icon */
  color: #858585; /* Exact Figma color */
  transition: all 0.3s ease;
  position: absolute;
}

.faq__icon-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq__icon-minus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq__item--expanded .faq__icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq__item--expanded .faq__icon-minus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}

.faq__item--expanded .faq__answer {
  max-height: 30rem; /* Increased for larger content */
}

.faq__answer-content {
  padding: 0 clamp(1.2rem, 2vw, 1.6rem) clamp(2rem, 3vw, 2.4rem) clamp(1.2rem, 2vw, 1.6rem); /* Responsive padding */
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 2vw, 1.8rem); /* Responsive answer text */
  line-height: 1.6;
  color: #2f2f2f;
}

.faq__answer-content p {
  margin: 0 0 1rem 0;
}

.faq__answer-content p:last-child {
  margin-bottom: 0;
}

/* ================================================
   RESPONSIVE BREAKPOINTS - MOBILE FIRST DESIGN
   Mobile: Stacked layout
   768px+: Header on top, FAQ items in 2-column layout
   Breakpoints: 576px, 768px, 1024px, 1280px, 1400px, 1920px
   ================================================ */

/* Mobile First: Stack everything vertically */
@media (max-width: 575px) {
  .faq__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    margin-bottom:20px;
  }
  
  .faq__header {
    text-align: center;
    max-width: 100vw;
  }
  
  .faq__items {
    gap: 2rem;
    width: 100%;
    display: flex; /* Change from grid to flex on mobile */
    flex-direction: column; /* Stack vertically */
  }
  
  .faq__item {
    width: 100%;
    margin: 0 auto; /* Center the items */
  }
}

/* Large Mobile: 576px+ */
@media (min-width: 576px) {
  .faq__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom:20px;
  }
  
  .faq__header {
    text-align: left;
  }
  
  .faq__items {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2-column layout for FAQ items */
    gap: clamp(2rem, 4vw, 2.5rem); /* Reduced gap to prevent overlap */
    width: 100%;
    max-width: 100%;
  }
  
  .faq__item {
    max-width: 100%;
    width: 100%;
    margin: 0; /* Remove auto margin */
  }
}

/* Tablet: 768px+ */
@media (min-width: 768px) {
  .faq {
    padding: clamp(6rem, 10vw, 13.4rem) 0;
  }
  
  .faq__container {
    padding: 0 clamp(3rem, 6vw, 26rem);
    gap: clamp(4rem, 6vw, 6rem);
  }
  
  .faq__header {
    max-width:100vw;
    /*max-width: calc(1399px * 768px / 1920px); /* Proportional scaling */
  }
  
  .faq__items {
    gap: clamp(2rem, 3vw, 3rem); /* Responsive gap */
  }
  
  .faq__item {
    width: 100%;
  }
  
  .faq__question {
    min-height: calc(78px * 768px / 1920px);
    padding: calc(16px * 768px / 1920px);
  }
  
  .faq__icon {
    width: calc(46px * 768px / 1920px);
    height: calc(46px * 768px / 1920px);
  }
}

/* Desktop Small: 1024px+ */
@media (min-width: 1024px) {
  .faq {
    padding: clamp(8rem, 12vw, 13.4rem) 0;
  }
  
  .faq__container {
    padding: 0 calc(260px * 1024px / 1920px);
    gap: clamp(5rem, 8vw, 6rem);
  }
  
  .faq__header {
    max-width:100vw; /*calc(1399px * 1024px / 1920px);*/
  }
  
  .faq__items {
    gap: clamp(2.5rem, 4vw, 3.5rem); /* Responsive gap */
  }
  
  .faq__item {
    width: 100%;
  }
  
  .faq__question {
    min-height: calc(78px * 1024px / 1920px);
    padding: calc(16px * 1024px / 1920px);
  }
  
  .faq__icon {
    width: calc(46px * 1024px / 1920px);
    height: calc(46px * 1024px / 1920px);
  }
}

/* Desktop Medium: 1280px+ */
@media (min-width: 1280px) {
  .faq__container {
    padding: 0 calc(260px * 1280px / 1920px);
  }
  
  .faq__header {
    max-width: 100vw;  }
  
  .faq__items {
    gap: clamp(3rem, 4vw, 4rem); /* Responsive gap */
  }
  
  .faq__item {
    width: 100%;
  }
  
  .faq__question {
    min-height: calc(78px * 1280px / 1920px);
    padding: calc(16px * 1280px / 1920px);
  }
  
  .faq__icon {
    width: calc(46px * 1280px / 1920px);
    height: calc(46px * 1280px / 1920px);
  }
}

/* Desktop Large: 1400px+ */
@media (min-width: 1400px) {
  .faq__container {
    padding: 0 calc(260px * 1400px / 1920px);
  }
  
  .faq__header {
    max-width: 100vw;/*calc(1399px * 1400px / 1920px);*/
  }
  
  .faq__items {
    gap: clamp(3.5rem, 4vw, 4.5rem); /* Responsive gap */
  }
  
  .faq__item {
    width: 100%;
  }
  
  .faq__question {
    min-height: calc(78px * 1400px / 1920px);
    padding: calc(16px * 1400px / 1920px);
  }
  
  .faq__icon {
    width: calc(46px * 1400px / 1920px);
    height: calc(46px * 1400px / 1920px);
  }
}

/* Full Desktop (Figma Design): 1920px+ */
@media (min-width: 1920px) {
  .faq {
    padding: 13.4rem 0; /* 134px exact from Figma */
  }
  
  .faq__container {
    padding: 0 26rem; /* 260px exact from Figma */
    gap: 6rem; /* Appropriate gap between header and FAQ items */
  }
  
  .faq__header {
    max-width: 139.9rem; /* 1399px exact from Figma */
    height: 11.5rem; /* 115px exact from Figma */
    gap: 3.3rem; /* 33px exact from Figma */
  }
  
  .faq__title {
    font-size: 3.2rem; /* 32px exact from Figma */
    line-height: 2.2rem; /* 22px exact from Figma */
  }
  
  .faq__description {
    font-size: 2.2rem; /* 22px exact from Figma */
    line-height: 3rem; /* 30px exact from Figma */
  }
  
  .faq__items {
    gap: 4.9rem; /* 49px exact gap from Figma */
    width: 100%;
    /* No max-width restriction - let grid handle 2-column layout */
  }
  
  .faq__item {
    width: 100%;
    /* Let grid handle the width to be ~679px per column */
  }
  
  .faq__question {
    min-height: 7.8rem; /* 78px exact from Figma */
    padding: 1.6rem; /* 16px exact from Figma */
  }
  
  .faq__question-text {
    font-size: 2.2rem; /* 22px exact from Figma */
    line-height: 3rem; /* 30px exact from Figma */
  }
  
  .faq__icon {
    width: 4.6rem; /* 46px exact from Figma */
    height: 4.6rem; /* 46px exact from Figma */
  }
  
  .faq__icon svg {
    width: 2.4rem; /* 24px exact */
    height: 2.4rem; /* 24px exact */
  }
}

/* Section Padding Customization */
.faq[data-padding-top] {
  padding-top: var(--section-padding-top, 3rem);
}

.faq[data-padding-bottom] {
  padding-bottom: var(--section-padding-bottom, 3rem);
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .faq__item {
    border-width: 3px;
  }
  
  .faq__question:focus {
    outline-width: 3px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .faq__item,
  .faq__answer,
  .faq__icon svg,
  .faq__question {
    transition: none;
  }
  
  .faq__answer {
    transition: max-height 0.1s ease;
  }
}

/* Print Styles */
@media print {
  .faq {
    background: white;
    padding: 1rem 0;
  }
  
  .faq__item {
    border: 1px solid #ccc;
    page-break-inside: avoid;
    margin-bottom: 1rem;
  }
  
  .faq__answer {
    max-height: none;
  }
  
  .faq__icon {
    display: none;
  }
}
