/* Local layout styles for the Retail ERP subpage */

/* Apply Kalam font globally to the retail page content area, leaving FontAwesome icons untouched */
.retail-page-content, .retail-page-content *:not(i):not(.fa):not(.fa-solid):not(.fa-regular):not(.fab):not(.far):not(.fas) {
  font-family: 'Kalam', cursive !important;
}

.retail-page-content {
  --color-primary: #DF9E37;      /* Warm Gold */
  --color-primary-hover: #B67A1D; /* Darker Gold */
  --color-primary-dark: #A16A14;  /* Brand dark gold / active breadcrumb */
  
  min-height: calc(100vh - 200px); /* Keeps footer at bottom when page is empty */
  background-color: #FAF9FB;
}

/* BREADCRUMBS */
.breadcrumbs-section {
  background-color: #FFFFFF;
  padding: 24px 24px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.breadcrumbs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
}

.breadcrumb-item {
  color: #4a7ab5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item:hover:not(.active) {
  color: #2b6cb0;
}

.breadcrumb-separator {
  color: #B67A1D;
  user-select: none;
  font-size: 13.5px;
  margin: 0 4px;
}

.breadcrumb-item.active {
  color: #B67A1D;
  font-weight: 600;
  pointer-events: none;
}

/* HERO SECTION */
.retail-hero-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 100px 24px;
  background-image: linear-gradient(135deg, rgba(223, 158, 55, 0.93) 0%, rgba(182, 122, 29, 0.93) 100%), url('assets/photo-1531297484001-80022131f5a1-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.retail-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.retail-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.retail-hero-badge-wrapper {
  margin-bottom: 24px;
}

.retail-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.retail-hero-title {
  color: #FFFFFF;
  font-family: 'Kalam', cursive;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.retail-hero-subtitle {
  color: #FFFFFF;
  font-family: 'Kalam', cursive;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 28px 0;
  line-height: 1.35;
  max-width: 850px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.retail-hero-description {
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  margin: 0 0 36px 0;
  line-height: 1.75;
  max-width: 800px;
}

.retail-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.retail-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: #B67A1D;
  font-family: 'Kalam', cursive;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 32px;
  border: 1.5px solid #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.retail-btn-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.retail-btn-primary i {
  transition: transform 0.25s ease;
}

.retail-btn-primary:hover i {
  transform: translateX(4px);
}

.retail-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #FFFFFF;
  font-family: 'Kalam', cursive;
  font-size: 18px;
  font-weight: 700;
  padding: 11px 32px;
  border: 1.5px solid #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.retail-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animation-delay-1 {
  animation-delay: 0.15s;
}

.animation-delay-2 {
  animation-delay: 0.3s;
}

.animation-delay-3 {
  animation-delay: 0.45s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Animation Styles */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* RETAIL INTRO SECTION */
.retail-intro-section {
  background-color: #FFFFFF;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.retail-intro-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.retail-intro-title {
  font-family: 'Kalam', cursive;
  font-size: 2.3rem;
  line-height: 1.35;
  color: #7A4F7A; /* Deep purple brand color */
  margin-top: 0;
  margin-bottom: 35px;
  font-weight: 700;
  text-align: center;
}

.retail-intro-text {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #4B5563;
  max-width: 950px;
  margin-top: 0;
  margin-bottom: 24px;
  text-align: center;
}

.retail-intro-text:last-of-type {
  margin-bottom: 50px;
}

.retail-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  background-color: #F8FAFC;
  border: 1px solid rgba(223, 158, 55, 0.12); /* Thin gold border */
  border-radius: 12px;
  padding: 40px 30px;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.retail-intro-col {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #374151;
  text-align: center;
  font-weight: 500;
}

/* RETAIL FEATURES SECTION */
.retail-features-section {
  background-color: #FAF6F0; /* Light pastel cream */
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.retail-features-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.retail-features-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 28px;
  line-height: 1.3;
  color: #7A4F7A;
  margin-top: 0;
  margin-bottom: 35px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.3px;
}

.retail-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.retail-feature-card {
  background: #FFFFFF;
  border: 1px solid rgba(223, 158, 55, 0.08);
  border-radius: 16px;
  padding: 45px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

.retail-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(223, 158, 55, 0.08);
  border-color: rgba(223, 158, 55, 0.3);
}

.retail-feature-icon-wrapper {
  margin-bottom: 20px;
}

.retail-feature-icon-circle {
  width: 60px;
  height: 60px;
  background-color: rgba(223, 158, 55, 0.09);
  color: #DF9E37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.retail-feature-card:hover .retail-feature-icon-circle {
  background-color: #DF9E37;
  color: #FFFFFF;
}

.retail-feature-card-title {
  font-family: 'Kalam', cursive;
  font-size: 19px;
  font-weight: 700;
  color: #7A4F7A;
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1.3;
}

.retail-feature-card-text {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14.5px;
  color: #4B5563;
  line-height: 1.65;
  margin: 0;
}

/* RETAIL WHY SECTION */
.retail-why-section {
  background-color: #FFFFFF;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.retail-why-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.retail-why-layout {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.retail-why-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.retail-why-title {
  font-family: 'Kalam', cursive;
  font-size: 32px;
  color: #7A4F7A;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 30px;
  text-align: center;
}

.retail-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.retail-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.retail-why-icon-holder {
  color: #DF9E37;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.retail-why-item-text {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: #4B5563;
}

.retail-why-item-text strong {
  color: #2E3856;
  font-weight: 700;
}

.retail-why-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.retail-why-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.retail-why-image:hover {
  transform: scale(1.02);
}

/* RETAIL GROW SECTION */
.retail-grow-section {
  background-color: #FAF6F0; /* Warm cream matching Top Features section */
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.retail-grow-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.retail-grow-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 28px;
  line-height: 1.3;
  color: #7A4F7A;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.3px;
}

.retail-grow-subtitle {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: #556070;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.retail-grow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.retail-grow-card {
  background: #FFFFFF;
  border: 1px solid rgba(223, 158, 55, 0.08);
  border-radius: 16px;
  padding: 45px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

.retail-grow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(223, 158, 55, 0.08);
  border-color: rgba(223, 158, 55, 0.3);
}

.retail-grow-card-title {
  font-family: 'Kalam', cursive;
  font-size: 19px;
  font-weight: 700;
  color: #DF9E37;
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1.3;
}

.retail-grow-card-text {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14.5px;
  color: #4B5563;
  line-height: 1.65;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .retail-intro-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 35px 25px;
  }
  
  .retail-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .retail-why-layout {
    gap: 30px;
  }
  
  .retail-grow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .retail-hero-section {
    padding: 60px 16px;
    min-height: auto;
  }
  
  .retail-hero-title {
    font-size: 32px;
  }
  
  .retail-hero-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .retail-hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .retail-hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .retail-btn-primary,
  .retail-btn-secondary {
    width: 100%;
    max-width: 320px;
  }
  
  .breadcrumbs-section {
    padding: 16px 16px;
  }
  
  .retail-intro-section {
    padding: 60px 16px;
  }
  
  .retail-intro-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
  
  .retail-intro-text {
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 20px;
  }
  
  .retail-intro-text:last-of-type {
    margin-bottom: 35px;
  }
  
  .retail-intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }
  
  .retail-features-section,
  .retail-why-section,
  .retail-grow-section {
    padding: 60px 16px;
  }
  
  .retail-section-title,
  .retail-features-title,
  .retail-grow-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .retail-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .retail-feature-card {
    padding: 30px 20px;
  }
  
  .retail-why-layout {
    flex-direction: column;
    gap: 35px;
  }
  
  .retail-why-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .retail-why-image-wrapper {
    width: 100%;
  }
  
  .retail-grow-subtitle {
    margin-top: -10px;
    margin-bottom: 30px;
    font-size: 15.5px;
  }
  
  .retail-grow-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .retail-grow-card {
    padding: 30px 20px;
  }
}

/* RETAIL TESTIMONIALS SECTION */
.retail-testimonials-section {
  background-color: #FFFFFF;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.retail-testimonials-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.retail-testimonials-title {
  font-family: 'Kalam', cursive;
  font-size: 32px;
  color: #7A4F7A;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  margin-top: 0;
  margin-bottom: 50px;
}

.retail-testimonials-slider {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.retail-testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: max-content;
}

.retail-testimonial-card {
  background: #FFFFFF;
  border: 1px solid #F1F5F9;
  border-radius: 16px;
  padding: 35px 30px;
  width: 360px;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.retail-testimonial-text {
  font-family: 'Kalam', cursive;
  font-size: 15.5px;
  line-height: 1.7;
  color: #4B5563;
  margin: 0;
  font-style: italic;
}

.retail-testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.retail-testimonial-avatar {
  width: 50px;
  height: 50px;
  background-color: #F3A83B;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Kalam', cursive;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.retail-testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.retail-testimonial-name {
  font-family: 'Kalam', cursive;
  font-size: 16px;
  font-weight: 700;
  color: #2E3856;
  margin: 0;
}

.retail-testimonial-rating {
  display: flex;
  gap: 4px;
  color: #F3A83B;
  font-size: 12px;
}

.retail-testimonial-location {
  font-family: 'Kalam', cursive;
  font-size: 13.5px;
  color: #8C98A5;
}

/* RETAIL FAQ SECTION */
.retail-faq-section {
  background-color: #FAF6F0;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

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

.retail-faq-title {
  font-family: 'Kalam', cursive;
  font-size: 32px;
  color: #7A4F7A;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  margin-top: 0;
  margin-bottom: 50px;
}

.retail-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.retail-faq-item {
  background: #FFFFFF;
  border: 1px solid #FAF6F0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.retail-faq-item.active {
  border-color: rgba(223, 158, 55, 0.2);
  box-shadow: 0 10px 25px rgba(223, 158, 55, 0.05);
}

.retail-faq-question {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background-color: #FFFFFF;
  transition: background-color 0.2s ease;
}

.retail-faq-question:hover {
  background-color: #FCFBF9;
}

.retail-faq-question-text {
  font-family: 'Kalam', cursive;
  font-size: 17px;
  font-weight: 700;
  color: #DF9E37;
  margin: 0;
  line-height: 1.4;
}

.retail-faq-chevron {
  color: #DF9E37;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.retail-faq-item.active .retail-faq-chevron {
  transform: rotate(180deg);
}

.retail-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #FFFFFF;
}

.retail-faq-answer-content {
  padding: 0 28px 22px 28px;
  font-family: 'Kalam', cursive;
  font-size: 15px;
  line-height: 1.65;
  color: #556070;
  margin: 0;
}

/* RETAIL CTA SECTION */
.retail-cta-section {
  background: linear-gradient(135deg, rgba(223, 158, 55, 0.95) 0%, rgba(182, 122, 29, 0.95) 100%), url('assets/photo-1486312338219-ce68d2c6f44d.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 24px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.retail-cta-container {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.retail-cta-text {
  font-family: 'Kalam', cursive;
  font-size: 18px;
  line-height: 1.75;
  color: #FFFFFF;
  margin: 0;
  max-width: 850px;
}

.retail-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.retail-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: #B67A1D;
  font-family: 'Kalam', cursive;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 32px;
  border: 1.5px solid #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.retail-cta-btn-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.retail-cta-btn-primary i {
  transition: transform 0.25s ease;
}

.retail-cta-btn-primary:hover i {
  transform: translateX(4px);
}

.retail-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #FFFFFF;
  font-family: 'Kalam', cursive;
  font-size: 18px;
  font-weight: 700;
  padding: 11px 32px;
  border: 1.5px solid #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.retail-cta-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE LAYOUTS FOR NEW SECTIONS */
@media (max-width: 1024px) {
  .retail-testimonial-card {
    width: 320px;
    padding: 30px 24px;
  }
  .retail-testimonials-title,
  .retail-faq-title {
    font-size: 1.8rem;
    margin-bottom: 35px;
  }
}

@media (max-width: 768px) {
  .retail-testimonials-track {
    gap: 20px;
  }
  .retail-testimonial-card {
    width: calc(100vw - 48px);
    max-width: 380px;
    padding: 30px 20px;
  }
  .retail-testimonials-slider {
    padding-bottom: 20px;
  }
  .retail-faq-question {
    padding: 18px 20px;
  }
  .retail-faq-answer-content {
    padding: 0 20px 18px 20px;
  }
  .retail-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .retail-cta-btn-primary,
  .retail-cta-btn-secondary {
    width: 100%;
    max-width: 320px;
  }
  .retail-cta-text {
    font-size: 16px;
    line-height: 1.65;
  }
}

