/* style.scss */
/* _variables.scss */
body {
  background-color: #f8fafc;
  color: #1e293b;
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
}

.txt-primary {
  color: #ff383c;
}

.txt-secondary {
  color: #f59e0b;
}

.bt-primary {
  background-color: #ff383c;
  color: white;
  border: none;
  transition: all 0.3s ease;
}
.bt-primary:hover {
  background-color: #fdd2d3;
  color: white;
}

.bt-link-primary {
  background-color: transparent;
  color: #ff383c;
  border: none;
  transition: all 0.3s ease;
}
.bt-link-primary:hover {
  background-color: transparent;
  color: #ff383c;
}

.bt-outline-primary {
  border: 1px solid #ff383c;
  color: #ff383c;
  transition: all 0.3s ease;
}
.bt-outline-primary:hover {
  background-color: #ff383c;
  color: white;
}
.bt-outline-primary:active {
  background-color: #ff383c;
  color: white;
}

#heroCarousel .hero-img {
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.5);
}
#heroCarousel .hero-caption-clean {
  top: 30%;
  left: 15%;
  right: auto;
  text-align: left;
  width: 60%;
  padding-left: 0;
}
#heroCarousel .hero-caption-clean h1 {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  font-family: "Space Grotesk", sans-serif;
}
#heroCarousel .hero-caption-clean p {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.btn-tefa-primary {
  background-color: #ff383c;
  color: white;
  border: none;
  transition: all 0.3s ease;
}
.btn-tefa-primary:hover {
  background-color: rgb(255, 5, 10.0251256281);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 56, 60, 0.4);
}

.card-category {
  background-color: white;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.card-category .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgb(255, 235.1, 235.5);
  color: #ff383c;
  transition: all 0.3s ease;
}
.card-category .icon-wrapper i {
  line-height: 1;
}
.card-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: rgb(255, 215.2, 216);
}
.card-category:hover .icon-wrapper {
  background-color: #ff383c;
  color: white;
  transform: rotateY(180deg);
}
.card-category h4 {
  color: #1e293b;
}

.group-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}
.group-card .transition-img {
  transition: transform 0.5s ease;
}
.group-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}
.group-card:hover .transition-img {
  transform: scale(1.05);
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.animated-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

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

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

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  #heroCarousel .hero-img {
    height: 400px;
  }
  #heroCarousel .carousel-caption {
    display: block !important;
    bottom: 10%;
    padding: 1rem !important;
  }
  #heroCarousel .carousel-caption h1 {
    font-size: 1.5rem;
  }
  #heroCarousel .carousel-caption p {
    font-size: 0.9rem;
  }
  #heroCarousel .carousel-caption .btn {
    padding: 5px 15px;
    font-size: 0.8rem;
  }
}
.breadcrumb-tefa .breadcrumb-item a {
  color: #64748b;
}
.breadcrumb-tefa .breadcrumb-item a:hover {
  color: #ff383c;
}
.breadcrumb-tefa .breadcrumb-item.active {
  color: #ff383c;
  font-weight: 600;
}

.product-gallery .main-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.product-gallery .main-image img {
  transition: transform 0.5s ease;
}
.product-gallery .main-image img:hover {
  transform: scale(1.05);
}
.product-gallery .thumb-list {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.product-gallery .thumb-list .thumb-item {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
  opacity: 0.7;
  transition: all 0.3s;
}
.product-gallery .thumb-list .thumb-item.active, .product-gallery .thumb-list .thumb-item:hover {
  border-color: #ff383c;
  opacity: 1;
}
.product-gallery .thumb-list .thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-info .badge-category {
  background-color: #fdd2d3;
  color: #ff383c;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}
.product-info h1 {
  font-weight: 800;
  color: #1e293b;
  margin-top: 10px;
}
.product-info .price-tag {
  font-size: 1.5rem;
  color: #ff383c;
  font-weight: 700;
}
.product-info .specs-box {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}
.product-info .specs-box li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-info .specs-box li i {
  color: #f59e0b;
}

.news-image {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn-wa {
  background-color: #25d366;
  color: white;
  border: none;
  font-weight: 600;
}
.btn-wa:hover {
  background-color: rgb(29.3911290323, 167.6088709677, 81.0241935484);
  color: white;
}

.btn-primary-tefa {
  background-color: #ff383c;
  color: white;
  border: none;
}
.btn-primary-tefa:hover {
  background-color: rgb(255, 5, 10.0251256281);
  color: white;
}