/*------------ Import ---------*/
@import url(./header-deut.css);
/* ==========================================================================
   Shipping Policy Page Styles (Pixel-Perfect Alignment)
   ========================================================================== */

/* Layout & Container */
.sp-container {
  width: 100%;
  max-width: 750px; /* Aligned for optimal reading line-length matching design */
  margin: 0 auto;
  padding: 160px 15px;
}

/* Header Section */
.sp-header {
  text-align: center;
  margin-bottom: 105px;
}

.sp-title {
  font-size: 51px;
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.sp-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #66677B;
  margin-bottom: 16px;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
}

.sp-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #0973E2;
  text-transform: uppercase;
}

/* Content & Typography */
.sp-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.sp-section h2 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.sp-section p {
  font-size: 14px;
  font-weight: 400;
  color: #4b5563;
  margin-bottom: 12px;
  line-height: 1.625;
}

.sp-section p:last-child {
  margin-bottom: 0;
}

.sp-section strong {
  font-weight: 400;
  color: #33354F;
  font-size: 16px;
  font-family: 'Inter';
}

/* Lists */
.sp-section ul, 
.sp-section ol {
  padding-left: 20px;
  margin-top: 8px;
  margin-bottom: 16px;
}

.sp-section ul li, 
.sp-section ol li {
  font-size: 14px;
  font-weight: 400;
  color: #33354F;
  margin-bottom: 6px;
  line-height: 1.6;
  list-style-type: disc;
  /* padding-left: 5px; */
  margin-left: 5px;
}

.sp-section a {
  color: #0973E2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Help Card Callout Box */
.sp-help-card {
  background-color: #EDF6F880;
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0;
  border: 1px solid var(--color-main-colors-200, #9ADEF6);
  gap: 0px;
}

.sp-help-info h3 {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
  line-height: 1.3;
  font-family: 'Inter';
}

.sp-help-info p {
  font-size: 13px;
  font-weight: 400;
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
}

.sp-help-btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #0973E2;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  border: 1px solid var(--color-black-white-100, #EDEDED);
  background: #FAFAFA;
  padding: 6px 10px;
  border-radius: 40px;
}

.sp-help-btn:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* Mobile Responsiveness (Matching Mobile Design Screenshot) */
@media (max-width: 640px) {
/*   .sp-container {
    padding: 40px 20px;
  } */

  .sp-header {
    margin-bottom: 36px;
  }

  .sp-title {
    font-size: 32px;
  }

  .sp-subtitle {
    font-size: 14px;
  }

  .sp-section h2 {
    font-size: 18px;
  }

  .sp-help-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }
}
/* ==========================================================================
   FAQ Page Styles (Desktop & Mobile Pixel-Perfect)
   ========================================================================== */

.faq-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 160px 15px;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 75px;
}

.faq-title {
  font-size: 64px;
  font-weight: 600;
  color: #1A1A1A;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 72px;
}

.faq-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #66677B;
  line-height: 1.5;
  /* max-width: 520px; */
  margin: 0 auto;
}

/* Category Tabs */
.faq-tabs-wrapper {
  margin-bottom: 40px;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-tab-btn {
  background-color: #00000000;
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 400;
  color: #66677B;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  border: 1px solid #EDEDED;
}

.faq-tab-btn:hover {
  color: #0973E2;
  border: 1px solid #9ADEF6;
  background: #e0f2fe;
}

.faq-tab-btn.active {
  background-color: #e0f2fe;
  border-color: #9ADEF6;
  color: #0973E2;
}

/* Tab Panels */
.faq-tab-content {
  display: none;
}

.faq-tab-content.active {
  display: block;
}

.faq-empty-text {
  font-size: 14px;
  color: #9ca3af;
  text-align: center;
  padding: 32px 0;
}

/* Accordion Group */
.faq-accordion-group {
  display: flex;
  flex-direction: column;
}

.faq-accordion-item {
  border-bottom: 1px solid #f3f4f6;
}

.faq-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-accordion-title {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
  padding-right: 16px;
  line-height: 1.4;
}

.faq-icon {
  font-size: 11px;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.faq-accordion-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-accordion-body {
  display: none;
}

.faq-accordion-item.open .faq-accordion-body {
  display: block;
}

.faq-accordion-inner {
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.625;
  color: #4b5563;
}

.faq-accordion-inner p {
  margin: 0;
  color: #66677B;
  font-size: 16px;
  line-height: 26px;
}

/* Help Card Callout Box */
.faq-help-card {
  background-color: #f0f9ff;
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  border: 1px solid var(--color-main-colors-200, #9ADEF6);
}

.faq-help-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 4px;
  line-height: 1.3;
}

.faq-help-info p {
  font-size: 13px;
  color: #66677B;
  margin: 0;
  line-height: 1.4;
}

.faq-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  border-radius: 9999px;
  padding: 8px 17px;
  font-size: 14px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: 1px solid #EDEDED;
}

.faq-help-btn:hover {
  background-color: #f8fafc;
  border-color: #d1d5db;
}

/* Mobile Responsive View */
@media (max-width: 640px) {
  /* .faq-container {
    padding: 40px 16px;
  } */

  .faq-title {
    font-size: 30px;
  }

  .faq-tabs-wrapper {
    margin-bottom: 28px;
  }

  .faq-tabs {
    justify-content: flex-start;
    gap: 8px;
  }

  .faq-accordion-header {
    padding: 16px 0;
  }

  .faq-accordion-title {
    font-size: 14px;
  }

  .faq-help-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .faq-help-btn {
    width: 100%;
    justify-content: center;
    background-color: #ffffff;
    padding: 10px 18px;
  }
}

/* Warning Icon Styling for Legal / Draft Inputs */
.sp-warn-icon {
  color: #111827;
  font-size: 13px;
  margin-right: 4px;
  display: inline-block;
  vertical-align: baseline;
}

/* ==========================================================================

   Coming Soon Page - Full Viewport Studio Background Alignment

   ========================================================================== */





/* Main Wrapper */

.cs-wrapper {position: relative;width: 100%;height: 1110px;display: flex;align-items: flex-start;justify-content: center;overflow: hidden;font-family: 'Inter';background-color: #FAFBFD;padding-top: 90px;padding-bottom: 52px;}



/* Background Image Layer with light fade mask */

.cs-bg-image {position: absolute;top: 112px;left: 0;width: 100%;height: 100%;background-position: center center;background-repeat: no-repeat;background-size: 40%;z-index: 1;opacity: 0.35; /* Creates the subtle, faded watermark effect from design */}



/* Content Container */

.cs-content {

  position: relative;

  z-index: 2;

  text-align: center;

  padding: 40px 20px;

  max-width: 611px;

  margin: 0 auto;

}



/* Main Heading */

.cs-title {

  font-size: 60px;

  font-weight: 600;

  color: #1A1A1A;

  line-height: 1.15;

  margin: 0 0 34px 0;

  letter-spacing: -0.02em;

}



.cs-title-blue {

  background: linear-gradient(90deg, #1084f6 0%, #35a5f5 50%, #8ee1fa 100%);

  -webkit-background-clip: text;

  background-clip: text;

  -webkit-text-fill-color: transparent;

  display: inline-block;

}



.cs-title-light {

  color: #52c5ff;

}



/* Gradient Line Divider */

.cs-divider {

  width: 240px;

  height: 4px;

  background: linear-gradient(90deg, #07004d 0%, #1136d8 25%, #0873e3 50%, #3bbded 80%, #99def6 100%);

  border-radius: 10px;

  margin: 0 auto 24px auto;

}



/* Description Text */

.cs-description {

  font-size: 26px;

  font-weight: 400;

  color: #33354F;

  line-height: 1.5;

  margin: 35px 0 32px 0;

}



/* Action Buttons Container */

.cs-actions {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 16px;

  width: 100%;

}



/* Base Button Styles */

.cs-btn {display: inline-flex;align-items: center;justify-content: center;gap: 3px;padding: 16px 60px;border-radius: 12px;font-size: 15px;font-weight: 600;text-decoration: none;transition: all 0.25s ease;box-sizing: border-box;min-width: 170px;}

.cs-btn i {
    padding-inline-end: 5px;
}



/* Primary Button (Sky Blue) */

.cs-btn-primary {

  background-color: #34c3f1;

  color: #ffffff;

  border: 1px solid #34c3f1;

  box-shadow: 0 4px 14px rgba(52, 195, 241, 0.3);

}



.cs-btn-primary:hover {

  background-color: #2bb0db;

  border-color: #2bb0db;

  color: #ffffff;

  transform: translateY(-2px);

}



/* Secondary Button (Outline) */

.cs-btn-secondary {

  background-color: #ffffff;

  color: #111827;

  border: 1.5px solid #34c3f1;

}



.cs-btn-secondary:hover {

  background-color: #f0f9ff;

  color: #111827;

  transform: translateY(-2px);

}



/* Media Query: Responsive Mobile Styles */

@media screen and (max-width: 768px) {

  .desktop-only {

    display: none;

  }



  .cs-wrapper {

    align-items: flex-start;

    padding-top: 60px;
	  height: 100vh;

  }



  .cs-bg-image {

background-size: 97% auto;
        background-position: center center;

    opacity: 0.3;

  }



  .cs-title {

    font-size: 38px;

  }



  .cs-description {

    font-size: 15px;

    padding: 0 10px;

  }



  /* Stack buttons vertically on mobile */

  .cs-actions {

    flex-direction: column;

    width: 100%;

    max-width: 320px;

    margin: 0 auto;

  }



  .cs-btn {

    width: 100%;

    padding: 14px 20px;

  }

} 

main.cs-wrapper::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/coming_soon_bg.png);
}