.elementor-29526 .elementor-element.elementor-element-bf2651d{--display:flex;--margin-top:90px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-29526 .elementor-element.elementor-element-0947ddd{--display:flex;}.elementor-29526 .elementor-element.elementor-element-59ff281{--display:flex;}.elementor-29526 .elementor-element.elementor-element-5d8a15c{--display:flex;}@media(max-width:768px){.elementor-29526 .elementor-element.elementor-element-bf2651d{--margin-top:60px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}/* Start custom CSS for html, class: .elementor-element-05c388e *//* =========================================
   TAIGA UNIVERSAL PAGE HERO
   ========================================= */
.taiga-universal-hero {
  --taiga-dark: #1A1A1A;
  --taiga-gold: #D4AF37;
  --taiga-light: #FFFFFF;
  
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Montserrat', sans-serif;

  position: relative;
  width: 100%;
  min-height: 55vh; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Change to 'fixed' for a parallax effect */
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
  padding: 80px 24px 40px 24px;
}

/* The Cinematic Dark Overlay */
.taiga-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.6) 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
  z-index: 1;
}

/* Content Container */
.taiga-hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  width: 100%;
}

/* =========================================
   BREADCRUMBS STYLING
   ========================================= */
.taiga-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.taiga-crumb-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.taiga-crumb-link:hover {
  color: var(--taiga-gold);
}

.taiga-crumb-sep {
  color: var(--taiga-gold);
  opacity: 0.6;
}

.taiga-crumb-current {
  color: var(--taiga-gold);
}

/* =========================================
   PAGE TITLE STYLING
   ========================================= */
.taiga-page-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--taiga-light);
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: taigaHeroFadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.taiga-page-title span {
  color: var(--taiga-gold);
  font-style: italic;
}

/* Subtle Gold Accent Below Title */
.taiga-hero-accent {
  width: 60px;
  height: 3px;
  background-color: var(--taiga-gold);
  margin-top: 30px;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
  animation: taigaHeroFadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes taigaHeroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
  .taiga-universal-hero {
    min-height: 40vh;
    padding: 100px 20px 50px 20px;
  }
  
  .taiga-breadcrumbs {
    font-size: 0.7rem;
    gap: 8px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f3d205e *//* =========================================
   TAIGA ABOUT US - INTRO SECTION
   ========================================= */
.taiga-about-intro {
  --taiga-dark: #1A1A1A;
  --taiga-gold: #D4AF37;
  --taiga-light: #FFFFFF;
  --taiga-text: #5B6259;
  
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Montserrat', sans-serif;

  background-color: var(--taiga-light);
  padding: 120px 24px;
  overflow: hidden;
}

.taiga-about-intro .taiga-container {
  max-width: 1280px;
  margin: 0 auto;
}

.taiga-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* =========================================
   LEFT: VISUAL & BADGE
   ========================================= */
.taiga-intro-visual {
  position: relative;
  padding-right: 20px;
  padding-bottom: 20px;
}

.taiga-intro-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 5;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.taiga-intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.taiga-intro-visual:hover .taiga-intro-img {
  transform: scale(1.05);
}

/* Gold Overlapping Badge */
.taiga-experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--taiga-gold);
  padding: 30px;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  border: 6px solid var(--taiga-light);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.taiga-intro-visual:hover .taiga-experience-badge {
  transform: scale(1.08) rotate(5deg);
}

.badge-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  color: var(--taiga-light);
  margin-bottom: 5px;
}

.badge-text {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--taiga-light);
  line-height: 1.3;
}

/* =========================================
   RIGHT: TYPOGRAPHY CONTENT
   ========================================= */
.taiga-intro-content .taiga-subtitle {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--taiga-gold);
  margin-bottom: 20px;
  position: relative;
}

/* Small gold line next to subtitle */
.taiga-intro-content .taiga-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--taiga-gold);
  margin-left: 15px;
}

.taiga-intro-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.15;
  color: var(--taiga-dark);
  margin: 0 0 30px 0;
}

.taiga-intro-title span {
  color: var(--taiga-gold);
  font-style: italic;
}

.taiga-intro-text p {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--taiga-text);
  margin: 0 0 20px 0;
}

.taiga-intro-text p:last-child {
  margin-bottom: 40px;
}

/* =========================================
   FOOTER: SIGNATURE BLOCK
   ========================================= */
.taiga-intro-footer {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.taiga-signature {
  height: 60px;
  width: auto;
  opacity: 0.8;
  filter: invert(15%) sepia(9%) saturate(415%) hue-rotate(85deg) brightness(94%) contrast(89%);
}

.taiga-founder-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-name {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--taiga-dark);
}

.founder-title {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--taiga-gold);
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 980px) {
  .taiga-intro-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .taiga-about-intro {
    padding: 80px 20px;
  }
  
  .taiga-experience-badge {
    width: 140px;
    height: 140px;
    padding: 20px;
  }
  
  .badge-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .taiga-intro-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9a62ada *//* =========================================
   TAIGA "WHY US" TRUST SECTION
   ========================================= */
.taiga-why-section {
  --taiga-dark: #1A1A1A;
  --taiga-gold: #D4AF37;
  --taiga-light: #FFFFFF;
  --taiga-bg: #F9F8F4;
  --taiga-text: #5B6259;
  --taiga-border: #EAE6DF;
  
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Montserrat', sans-serif;

  background-color: var(--taiga-bg);
  padding: 60px 24px;
  overflow: hidden;
}

.taiga-why-section .taiga-container {
  max-width: 1280px;
  margin: 0 auto;
}

.taiga-why-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

/* =========================================
   LEFT: HEADER CONTENT (Sticky)
   ========================================= */
.taiga-why-header {
  flex: 0 0 40%;
  position: sticky;
  top: 100px; /* Sticks to the screen as the user scrolls past the grid */
}

.taiga-why-header .taiga-subtitle {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--taiga-gold);
  margin-bottom: 20px;
  position: relative;
}

.taiga-why-header .taiga-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--taiga-gold);
  margin-left: 15px;
}

.taiga-why-header .taiga-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.15;
  color: var(--taiga-dark);
  margin: 0 0 24px 0;
}

.taiga-why-header .taiga-title span {
  color: var(--taiga-gold);
  font-style: italic;
}

.taiga-why-header .taiga-desc {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--taiga-text);
  margin: 0 0 40px 0;
}

/* Primary Button Styling */
.taiga-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--taiga-dark);
  color: var(--taiga-light);
  padding: 18px 36px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.taiga-btn-primary span {
  transition: transform 0.3s ease;
}

.taiga-btn-primary:hover {
  background-color: var(--taiga-gold);
  color: var(--taiga-light);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.taiga-btn-primary:hover span {
  transform: translateX(6px);
}

/* =========================================
   RIGHT: TRUST PILLARS GRID
   ========================================= */
.taiga-why-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.taiga-trust-card {
  background: var(--taiga-light);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid var(--taiga-border);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.taiga-trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--taiga-gold);
}

.trust-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--taiga-gold);
  border-radius: 10px;
  margin-bottom: 24px;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.taiga-trust-card:hover .trust-icon {
  background-color: var(--taiga-gold);
  color: var(--taiga-light);
  transform: scale(1.05) rotate(5deg);
}

.trust-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--taiga-dark);
  margin: 0 0 12px 0;
}

.trust-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--taiga-text);
  margin: 0;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 1024px) {
  .taiga-why-wrapper {
    flex-direction: column;
    gap: 60px;
  }
  
  .taiga-why-header {
    flex: none;
    position: relative;
    top: 0;
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .taiga-why-section {
    padding: 80px 20px;
  }
  
  .taiga-why-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4ca5396 *//* =========================================
   TAIGA RETAILERS LIGHT SECTION STYLING
   ========================================= */
.taiga-retailers-light-section {
  --taiga-light-bg: #FAF9F6;
  --taiga-card-bg: #FFFFFF;
  --taiga-gold: #D4AF37;
  --taiga-gold-faded: rgba(212, 175, 55, 0.12);
  --taiga-dark-text: #1A1A1A;
  --taiga-text-muted: #555555;
  
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Montserrat', sans-serif;

  background-color: var(--taiga-light-bg);
  padding: 40px 24px;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.taiga-retailers-light-section .taiga-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* --- Header Styling --- */
.trl-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.trl-subtitle {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--taiga-gold);
  margin-bottom: 16px;
}

.trl-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.2;
  color: var(--taiga-dark-text);
  margin: 0 0 20px 0;
}

.trl-title span {
  color: var(--taiga-gold);
  font-style: italic;
}

.trl-desc {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--taiga-text-muted);
  margin: 0;
}

/* --- 3-Column Grid --- */
.trl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* --- Feature Cards --- */
.trl-card {
  background: var(--taiga-card-bg);
  border-radius: 12px;
  padding: 45px 35px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trl-card:hover {
  transform: translateY(-8px);
  border-color: var(--taiga-gold);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.trl-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--taiga-gold-faded);
  color: var(--taiga-gold);
  border-radius: 10px;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.trl-card:hover .trl-card-icon {
  background-color: var(--taiga-gold);
  color: #FFFFFF;
  transform: scale(1.05) rotate(5deg);
}

.trl-card-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--taiga-dark-text);
  margin: 0 0 12px 0;
}

.trl-card-desc {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--taiga-text-muted);
  margin: 0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
  .trl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .taiga-retailers-light-section {
    padding: 80px 20px;
  }
  .trl-grid {
    grid-template-columns: 1fr;
  }
  .trl-card {
    padding: 35px 25px;
  }
}/* End custom CSS */