/** Shopify CDN: Minification failed

Line 839:0 Expected "}" to go with "{"

**/
/* ==========================================================================
   CTA + Sister Brand Section Styles
   Mobile-First Approach: Base styles → Tablet (768px) → Desktop (1024px)
   Reference: docs/html/about-us-5.html (Lines 636-773)
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Set via inline style on section element)
   --brand-color: Primary brand color (red #e4010f)
   --brand-secondary: Secondary brand color (gold #FFB703)
   ========================================================================== */

/* ==========================================================================
   MOBILE STYLES (Base - 0px to 767px)
   ========================================================================== */

/* Reset Shopify section wrapper if present */
.cta-sister-brand-section {
  margin: 0 !important;
  padding: 0 !important;
}

/* Section Container - Brand dark theme using Dark Slate Gray #1a1a1a */
.cta-sister-brand {
  position: relative;
  padding: 64px 0; /* py-16 for mobile */
  overflow: hidden;
  font-family: var(--font-body-family);
  background: #ffffff; /* White (Light Minimal) */
  color: #1f2937; /* Dark Slate Text */
  z-index: 1; /* Keep below navbar (which should be z-index: 1000+) */
  /* Remove any inherited margin/padding from theme */
  margin: 0;
}

.cta-sister-brand *,
.cta-sister-brand *::before,
.cta-sister-brand *::after {
  box-sizing: border-box;
}

/* Gradient Background - Brand dark theme using Dark Slate Gray #1a1a1a */
.cta-sister-brand__bg {
  position: absolute;
  inset: 0;
  background: #ffffff; /* White */
  z-index: -1;
}

/* Decorative Orbs - Made more visible to match HTML reference */
.cta-sister-brand__orb {
  display: none !important; /* Force hide orbs for minimalism */
}

/* Orb - Brand red (top left) - Subtle glow */
.cta-sister-brand__orb--brand {
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  opacity: 0.6;
  background: radial-gradient(circle, rgba(228, 1, 15, 0.15) 0%, transparent 70%);
}

/* Orb - Brand red lighter (bottom right of center) */
.cta-sister-brand__orb--secondary {
  bottom: 0;
  right: 33.33%;
  width: 384px;
  height: 384px;
  opacity: 0.5;
  background: radial-gradient(circle, rgba(228, 1, 15, 0.12) 0%, transparent 70%);
}

/* Pattern Overlay */
.cta-sister-brand__pattern {
  display: none !important; /* Force hide pattern for minimalism */
}

.cta-sister-brand .section-container,
section.cta-sister-brand > .section-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1500px; /* Tailwind container max-width at 2xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px; /* px-4 for small mobile */
  padding-right: 16px;
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 400px) {
  .cta-sister-brand .section-container,
  section.cta-sister-brand > .section-container {
    padding-left: 24px; /* px-6 for larger phones */
    padding-right: 24px;
  }
}

/* --------------------------------------------------------------------------
   Grid Layout - Mobile (stacked)
   -------------------------------------------------------------------------- */

.cta-sister-brand__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px; /* Smaller gap for mobile */
  align-items: center;
}

/* --------------------------------------------------------------------------
   CTA Content (Left Side) - Mobile
   -------------------------------------------------------------------------- */

.cta-sister-brand__content {
  color: #1f2937; /* Gray 800 */
  width: 100%;
  text-align: center; /* Center on mobile */
  /* No left border/padding on mobile - added in tablet+ */
}

/* Trust Badge - Mobile: stacked layout */
.cta-sister-brand__content__trust-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin-bottom: 32px;
}

.trust-badge__stars {
  display: flex;
  gap: 3px;
  color: var(--brand-secondary, #ffb703);
}

.trust-badge__stars i {
  font-size: 1.4rem;
}

.trust-badge__text {
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--font-body-family);
  color: #374151; /* Gray 700 */
  text-align: left;
}

/* Title */
.cta-sister-brand__content__title {
  font-size: 2.4rem; /* Mobile size */
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: #111827; /* Gray 900 */
  font-weight: 700;
  font-family: var(--font-body-family);
}

.cta-sister-brand__content__title--accent {
  color: var(--brand-color, #e4010f);
}

/* Description */
.cta-sister-brand__content__description {
  font-size: 1.5rem; /* Smaller on mobile */
  color: #1f2937;
  line-height: 1.5;
  font-weight: 500;
  font-family: var(--font-body-family);
  margin: 0 0 24px 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* CTA Buttons */
.cta-sister-brand__content__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px; /* Reduced from 40px to bring groups closer */
}

.cta-btn {
  display: flex; /* Changed from inline-flex to flex for better width handling */
  align-items: center;
  justify-content: center;
  gap: 8px; /* Further reduced gap */
  padding: 14px 16px; /* Further reduced padding */
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: var(--font-body-family);
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.cta-btn--primary {
  background: var(--brand-color, #e4010f);
  color: #ffffff;
}

.cta-btn--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(228, 1, 15, 0.3), 0 8px 10px -6px rgba(228, 1, 15, 0.2);
  /* Colored shadow to match brand */
}

.cta-btn__arrow {
  transition: transform 0.3s ease;
}

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

.cta-btn--secondary {
  background: transparent;
  border: 1px solid #d1d5db; /* Gray 300 */
  color: #1f2937; /* Gray 800 */
}

.cta-btn--secondary:hover {
  background: #f3f4f6; /* Gray 100 */
  transform: translateY(-4px);
}

.cta-btn__whatsapp-icon {
  color: #25d366;
}

/* Contact Options - Button style on mobile */
.cta-sister-brand__content__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px; /* Reduced gap for mobile */
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: var(--font-body-family);
  color: #1f2937;
  text-decoration: none;
  background: #ffffff;
  /* border: 1.5px solid #d1d5db; */
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.contact-link i {
  font-size: 1.6rem;
}

.contact-link:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Sister Brand Card (Right Side) - Mobile
   -------------------------------------------------------------------------- */

.cta-sister-brand__sister-brand {
  position: relative;
  width: 100%;
  margin-top: 32px; /* Add spacing from top on mobile */
}

/* Glow effect - Brand red gradient behind the card */
.cta-sister-brand__sister-brand__glow {
  display: none !important; /* Remove glow effect */
}

/* Card - Solid dark background */
.cta-sister-brand__sister-brand__card {  position: relative;
  z-index: 1;
  width: 100%;
  background: #f9fafb; /* Soft Gray (Gray 50) */
  border: 1px solid #e5e7eb; /* Light Gray Border (Gray 200) */
  border-radius: 24px;
  padding: 14px; /* Reduced padding for mobile */
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08); /* Adjusted shadow */
  text-align: center; /* Center badge and content on mobile */
}

/* Badge - Brand red accent */
.cta-sister-brand__sister-brand__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  background: rgba(228, 1, 15, 0.15);
  border: 1px solid rgba(228, 1, 15, 0.3);
  color: var(--brand-color, #e4010f);
  font-size: 1.4rem;
  font-weight: 500;
  font-family: var(--font-body-family);
  margin: 0 auto 24px auto; /* Center the badge */
  text-align: center;
}

/* Title */
.cta-sister-brand__sister-brand__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111827; /* Gray 900 */
  margin: 0 0 12px 0;
}

.cta-sister-brand__sister-brand__subtitle {
  font-size: 1.6rem;
  color: #4b5563; /* Gray 600 */
  line-height: 1.5;
  margin: 0 0 32px 0;
}

/* Info Card - Brand red with gradient */
.cta-sister-brand__sister-brand__info-card {
  background: #ffffff; /* White card inside gray card */
  border: 1px solid #e5e7eb; /* Gray 200 */
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
}

/* Logo Row */
.cta-sister-brand__sister-brand__logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  justify-content: center;
}

.cta-sister-brand__sister-brand__logo-img {
  width: 160px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  padding: 0;
  box-shadow: none;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.cta-sister-brand__sister-brand__logo-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: var(--brand-color, #e4010f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 2.4rem;
  box-shadow: 0 4px 12px rgba(228, 1, 15, 0.3);
  flex-shrink: 0;
}

.cta-sister-brand__sister-brand__name-block {
  flex: 1;
}

.cta-sister-brand__sister-brand__name {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px 0;
}

.cta-sister-brand__sister-brand__tagline {
  font-size: 1.4rem;
  color: #6b7280;
  margin: 0;
}

/* Metrics Row (below logo) */
.cta-sister-brand__sister-brand__metrics {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 16px 0;
  margin-bottom: 16px;
}

.cta-sister-brand__sister-brand__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cta-sister-brand__sister-brand__metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
}

.cta-sister-brand__sister-brand__metric-label {
  font-size: 1.1rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Instagram Follow Button - Brand Red */
.cta-sister-brand__sister-brand__instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  padding: 12px 28px;
  margin: 0 auto;
  border-radius: 6px;
  background: var(--brand-color, #e4010f);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-sister-brand__sister-brand__instagram-btn i {
  font-size: 1.8rem;
}

.cta-sister-brand__sister-brand__instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(228, 1, 15, 0.4);
  background: #c7000d;
}

/* Features - 2 column grid */
.cta-sister-brand__sister-brand__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

.cta-sister-brand__sister-brand__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #374151;
  justify-content: flex-start;
}

.cta-sister-brand__sister-brand__feature i {
  font-size: 1.4rem;
  color: var(--brand-color, #e4010f);
}

/* --------------------------------------------------------------------------
   Instagram Stats Card
   -------------------------------------------------------------------------- */

.cta-sister-brand__sister-brand__instagram {
  display: block;
  text-decoration: none;
  margin-bottom: 16px;
}

.instagram-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
}

.cta-sister-brand__sister-brand__instagram:hover .instagram-card {
  transform: translateY(-2px);
  border-color: #d1d5db;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.instagram-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.instagram-card__header i {
  font-size: 2rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.instagram-card__handle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111827;
}

.instagram-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}

.instagram-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.instagram-metric__value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
}

.instagram-metric__label {
  font-size: 1.1rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Button - Brand red */
.cta-sister-brand__sister-brand__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: var(--brand-color, #e4010f);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-sister-brand__sister-brand__cta:hover {
  /* Tailwind shadow-lg + shadow-brand/30 */
  box-shadow: 0 10px 15px -3px rgba(228, 1, 15, 0.3), 0 4px 6px -4px rgba(228, 1, 15, 0.3);
  transform: translateY(-2px);
  background: #c7000d;
}

.cta-sister-brand__sister-brand__cta i {
  transition: transform 0.3s ease;
}

.cta-sister-brand__sister-brand__cta:hover i {
  transform: translate(2px, -2px);
}

/* ==========================================================================
   SMALL TABLET STYLES (640px and up) - Matching Tailwind's sm: breakpoint
   ========================================================================== */

@media (min-width: 640px) {
  /* CTA content - add accent border and padding */
  .cta-sister-brand__content {
    text-align: left;
    padding-left: 24px;
    border-left: 4px solid var(--brand-color, #e4010f);
  }
  
  .cta-sister-brand__content__title {
    font-size: 3.2rem;
  }
  
  .cta-sister-brand__content__description {
    font-size: 1.7rem;
  }

  /* Utility to hide border if toggle is disabled */
  .cta-sister-brand__content--no-border {
    border-left: none !important;
    padding-left: 0 !important;
  }
}

/* ==========================================================================
   TABLET STYLES (768px and up)
   ========================================================================== */

@media (min-width: 768px) {
  /* Trust badge - horizontal on tablet+ */
  .cta-sister-brand__content__trust-badge {
    flex-direction: row;
    gap: 12px;
    border-radius: 9999px;
    padding: 10px 20px;
  }
  
  /* Buttons - horizontal on tablet+ */
  .cta-sister-brand__content__buttons {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  /* Contacts - horizontal on tablet+ */
  .cta-sister-brand__content__contacts {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .contact-link {
    width: auto; /* Reset width for desktop */
    padding: 12px 20px;
    /* border: 1.5px solid #d1d5db; Add border back for desktop */
  }

/* ==========================================================================
   TABLET STYLES (768px and up)
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1023px) {
  /* Tablet specific adjustments */
  .cta-sister-brand__content {
    max-width: 700px;
  }
}

@media (min-width: 768px) {
  .cta-sister-brand__content__title {
    font-size: 4rem;
  }
  
  .cta-sister-brand__content__description {
    font-size: 1.8rem;
    max-width: 600px;
  }

  .cta-sister-brand__sister-brand__card {
    padding: 32px;
  }

  .cta-sister-brand__sister-brand__title {
    font-size: 2.8rem;
  }
}

/* ==========================================================================
   DESKTOP STYLES (1024px and up)
   ========================================================================== */

@media (min-width: 1024px) {
  .cta-sister-brand {
    padding: 96px 0;
  }

  .cta-sister-brand__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  
  .cta-sister-brand__content {
    padding-left: 32px;
  }

  .cta-sister-brand__content__title {
    font-size: 4.8rem;
  }
  
  .cta-sister-brand__content__description {
    font-size: 1.8rem;
    max-width: 520px;
  }
  
  .cta-sister-brand__sister-brand__card {
    padding: 40px;
  }
  
  .cta-sister-brand__sister-brand__title {
    font-size: 3rem;
  }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .cta-btn,
  .cta-sister-brand__sister-brand__cta,
  .contact-link,
  .cta-btn__arrow,
  .cta-sister-brand__sister-brand__cta i,
  .instagram-card {
    transition: none;
  }

  .cta-btn--primary:hover,
  .cta-btn--secondary:hover,
  .cta-sister-brand__sister-brand__cta:hover,
  .cta-sister-brand__sister-brand__instagram:hover .instagram-card {
    transform: none;
  }

  .cta-btn--primary:hover .cta-btn__arrow,
  .cta-sister-brand__sister-brand__cta:hover i {
    transform: none;
  }
}

/* ==========================================================================
   NEW FEATURES - Added safely without affecting existing design
   These styles only apply when new settings/blocks are used
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties for New Settings
   Uses fallbacks matching original hardcoded values
   -------------------------------------------------------------------------- */

.cta-sister-brand {
  padding-top: var(--padding-top, 96px);
  padding-bottom: var(--padding-bottom, 96px);
}

@media (min-width: 1024px) {
  .cta-sister-brand__grid {
    gap: var(--grid-gap, 64px);
  }
}

/* --------------------------------------------------------------------------
   Reversed Layout (Card Left, CTA Right)
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Reversed Layout (Card Left, CTA Right)
   -------------------------------------------------------------------------- */

/* Desktop: Swap columns using order */
@media (min-width: 1024px) {
  .cta-sister-brand--reversed .cta-sister-brand__content {
    order: 2;
  }

  .cta-sister-brand--reversed .cta-sister-brand__sister-brand {
    order: 1;
  }
}

/* --------------------------------------------------------------------------
   Animation Toggle (--no-animation modifier)
   When enable_hover_animations is unchecked, this class is added
   -------------------------------------------------------------------------- */

.cta-sister-brand--no-animation .cta-btn,
.cta-sister-brand--no-animation .cta-sister-brand__sister-brand__cta,
.cta-sister-brand--no-animation .contact-link,
.cta-sister-brand--no-animation .cta-btn__arrow,
.cta-sister-brand--no-animation .cta-sister-brand__sister-brand__cta i,
.cta-sister-brand--no-animation .instagram-card {
  transition: none !important;
}

.cta-sister-brand--no-animation .cta-btn--primary:hover,
.cta-sister-brand--no-animation .cta-btn--secondary:hover,
.cta-sister-brand--no-animation .cta-sister-brand__sister-brand__cta:hover {
  transform: none !important;
}

.cta-sister-brand--no-animation .cta-sister-brand__sister-brand__instagram:hover .instagram-card {
  transform: none !important;
  box-shadow: none !important;
}

.cta-sister-brand--no-animation .cta-btn--primary:hover .cta-btn__arrow,
.cta-sister-brand--no-animation .cta-sister-brand__sister-brand__cta:hover i {
  transform: none !important;
}

/* --------------------------------------------------------------------------
/* --------------------------------------------------------------------------
   Dynamic Background Colors - DISABLED to enforce Light Theme
   -------------------------------------------------------------------------- */

.cta-sister-brand {
   /* background: defined in base styles */
}

.cta-sister-brand__bg {
   /* background: defined in base styles */
}

/* --------------------------------------------------------------------------
   Solid Card Background (when card_background is set)
   -------------------------------------------------------------------------- */

.cta-sister-brand--solid-card .cta-sister-brand__sister-brand__card {
  background: var(--card-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cta-sister-brand--solid-card .cta-sister-brand__sister-brand__glow {
  display: none !important;
}
