/** Shopify CDN: Minification failed

Line 131:11 Expected ":"

**/
/* assets/bullet-points-section.css */
.bullet-points-section {
  padding: 100px 0;
  background: #A85D3A;
}

.bullet-points-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

/* Left side - Heading */
.bullet-points-left {
  flex: 1;
  padding-left: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 300px;
}

.bullet-points-heading {
  font-size: 36px;
  font-weight: bold !important;
  font-family: 'Revaux', serif !important;
  line-height: 1.2;
  color: white;
  text-align: right;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  max-width: 400px;
}

.bullet-points-heading.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Right side - Bullet Points */
.bullet-points-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bullet-point-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.bullet-point-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.bullet-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}

.bullet-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bullet-icon svg {
  color: white;
  width: 16px;
  height: 16px;
}

.bullet-point-text {
  font-size: 17px;
  line-height: 1.7;
  color: white;
  font-weight: 300;
  margin: 0;
  text-align: left;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .bullet-points-section {
    padding: 0px 0;
  }

  .bullet-points-container {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 0.2rem;
  }

  .bullet-points-left {
    padding-left: 0;
    text-align: center;
  }

  .bullet-points-heading {
    font-size: 28px;
    text-align: center;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .bullet-points-right {
    gap: 0rem;
    margin-bottom: 12rem;
    padding-left: 4rem;
    padding right: 2rem;
  }

  .bullet-point-item {
    gap: 3.5rem !important;
    padding-right: 4rem;
  }

  .bullet-icon {
    width: 20px;
    height: 20px;
  }

  .bullet-icon svg {
    width: 14px;
    height: 14px;
  }

  .bullet-point-text {
    font-size: 14px;
  
  }
}