/* Contenedor principal */
.product-carousel-wrapper {
  position: relative;
  padding: 0 5px;
  margin: 0 0px;
}

.custom-product-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-slides-container {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 12px;
  padding: 5px;
}

.product-slide-item {
  flex: 0 0 calc(50% - 6px);
  min-width: 0;
}

/* Tarjeta de producto moderna */
.modern-product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* más marcado */
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.modern-product-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Sección de imagen */
.product-media-section {
  position: relative;
  padding: 12px 12px 0 12px;
}

.product-image-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
}

.product-main-image {
  width: 80%;
  height: 90%; /* Reducido para móvil */
  object-fit: cover;
  transition: transform 0.3s ease;
  display: flex;
}

.modern-product-card:hover .product-main-image {
  transform: scale(1.05);
}

/* Badges y estados */
.product-status-badge {
  position: absolute;
  top: 20px;
  left: -25px;
  background: linear-gradient(135deg, #6c757d, #495057);
  color: white;
  padding: 4px 25px;
  transform: rotate(-45deg);
  font-size: 10px;
  font-weight: 700;
  z-index: 2;
}

.product-discount-flag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #000000, #000000);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.product-new-flag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* Panel de acciones rápidas */
.quick-actions-panel {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.modern-product-card:hover .quick-actions-panel {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}

.action-btn:hover {
  background: #ff9400;
  color: white;
  transform: scale(1.1);
}

/* Sección de información */
.product-info-section {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.delivery-info {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #28a745;
  margin-bottom: 6px;
}

.delivery-info i {
  font-size: 9px;
}

.product-rating {
  margin-bottom: 8px;
}

.stars-rating {
  display: flex;
  gap: 2px;
}

.star {
  color: #dee2e6;
  font-size: 10px;
}

.star.filled {
  color: #ffc107;
}

.product-title {
  font-family: inherit;
  margin-bottom: 10px;
  flex: 1;
  color: #ff9400 !important;
}

.product-title a {
  font-family: inherit;
  font-size: 13px;
  line-height: 1.3;
  color: #ff9400;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
}

.product-title a:hover {
  color: #ff9400 !important;
}

/* Fila de precio y acción */
.product-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price-display {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.current-price {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}

.original-price {
  font-size: 11px;
  color: #a0aec0;
  text-decoration: line-through;
}

.action-button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.cart-btn {
  background: linear-gradient(135deg, #ff9400, #ff9400);
  color: white;
}

.cart-btn:hover {
  background: linear-gradient(135deg, #ff9400, #ff9400);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.order-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.order-btn:hover {
  background: linear-gradient(135deg, #128c7e, #0c6b5e);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Navegación del carousel */
.carousel-progress {
  width: 100%;
  height: 3px;
  background: #e2e8f0;
  margin-top: 15px;
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff9400, #ff9400);
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 2px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #ff9400;
  transform: scale(1.2);
}

/* Responsividad mejorada */
@media (min-width: 480px) {
  .product-slide-item {
    flex: 0 0 calc(50% - 6px);
  }

  .product-main-image {
    height: 160px;
  }
}

@media (min-width: 768px) {
  .product-carousel-wrapper {
    padding: 0 15px;
    margin: 0 -15px;
  }

  .carousel-slides-container {
    gap: 16px;
    padding: 10px;
  }

  .product-slide-item {
    flex: 0 0 calc(25% - 12px);
  }

  .product-main-image {
    height: 250px;
  }

  .product-media-section {
    padding: 16px 16px 0 16px;
  }

  .product-info-section {
    padding: 16px;
  }

  .product-title a {
    font-family: inherit;
    font-size: 14px;
  }

  .action-button {
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (min-width: 1024px) {
  .product-slide-item {
    flex: 0 0 calc(20% - 13px);
  }

  .product-main-image {
    height: 200px;
  }
}

@media (min-width: 1200px) {
  .product-slide-item {
    flex: 0 0 calc(20% - 13px);
  }

  .product-main-image {
    height: 220px;
  }
}

/* Estados de interacción táctil */
@media (hover: none) {
  .quick-actions-panel {
    opacity: 1;
    transform: translateX(0);
  }

  .modern-product-card:active {
    transform: scale(0.98);
  }
}
/* Contenedor principal */
.featured-products-grid-container {
  width: 100%;
  padding: 0 5px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.grid-product-item {
  animation: fadeInUp 0.6s ease-out;
}

.grid-product-item.hidden-product {
  display: none;
}

/* Tarjeta de producto */
.featured-product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-product-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

/* Sección de imagen */
.product-media-area {
  position: relative;
  padding: 12px 12px 0 12px;
}

.product-img-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
}

.product-grid-image {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-product-card:hover .product-grid-image {
  transform: scale(1.05);
}

/* Badges y estados */
.stock-status-badge {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-30%, -30%) rotate(-35deg);
  z-index: 10;
  pointer-events: none;
}
.stock-status-badge span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff9400;
  text-shadow: 1px 1px 3px #ff9400;
  letter-spacing: 2px;
  background: transparent;
  padding: 5px 10px;
  border: 2px solid #ff9400;
  border-radius: 5px;
  animation: destello 1.5s infinite alternate;
}
.discount-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ff9400, #ff1e00);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.family-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #000000, #ff9400);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Panel de acciones rápidas */
.grid-actions-panel {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.featured-product-card:hover .grid-actions-panel {
  opacity: 1;
  transform: translateX(0);
}

.grid-action-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}

.grid-action-btn:hover {
  background: #ff9400;
  color: white;
  transform: scale(1.1);
}

/* Sección de información */
.product-details-area {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shipping-info {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #28a745;
  margin-bottom: 6px;
}

.shipping-info i {
  font-size: 9px;
}

.rating-stars {
  margin-bottom: 8px;
}

.stars-container {
  display: flex;
  gap: 2px;
}

.star-icon {
  color: #dee2e6;
  font-size: 10px;
}

.star-icon.filled {
  color: #ffc107;
}

.grid-product-title {
  font-family: inherit;
  margin-bottom: 10px;
  flex: 1;
}

.grid-product-title a {
  font-size: 13px;
  line-height: 1.3;
  color: #2d3748;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  font-family: inherit;
}

.grid-product-title a:hover {
  color: #ff9400;
}

/* Fila de precio y acción */
.price-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.final-price {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}

.original-price-line {
  font-size: 11px;
  color: #a0aec0;
  text-decoration: line-through;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 6px;
  border: none;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  width: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.add-cart-btn {
  background: linear-gradient(135deg, #ff9400, #ff9400);
  color: white;
}

.add-cart-btn:hover {
  background: linear-gradient(135deg, #ff9400, #ff9400);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.whatsapp-order-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.whatsapp-order-btn:hover {
  background: linear-gradient(135deg, #128c7e, #0c6b5e);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Botón Ver Más */
.load-more-container {
  text-align: center;
  margin-top: 20px;
}

.load-more-btn {
  background: linear-gradient(135deg, #000000, #ff9400);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #ff9400, #000000);
}

.load-more-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.product-count {
  font-size: 12px;
  opacity: 0.8;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividad */
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .product-grid-image {
    height: 180px;
  }

  .product-media-area {
    padding: 16px 16px 0 16px;
  }

  .product-details-area {
    padding: 16px;
  }

  .grid-product-title a {
    font-size: 14px;
  }

  .action-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .product-grid-image {
    height: 200px;
  }
}

@media (min-width: 1200px) {
  .featured-products-grid-container {
    padding: 0 20px;
  }
}

/* Estados de interacción táctil */
@media (hover: none) {
  .grid-actions-panel {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Efecto de carga */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fa-spin {
  animation: spin 1s linear infinite;
}

.simple-categories-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 15px 0;
}

.categories-scroll-container {
  width: 100%;
  overflow: hidden;
}

.categories-scroll-track {
  display: flex;
  gap: 15px;
  animation: scrollCategories 30s linear infinite;
  width: max-content;
}

.category-tag {
  flex: 0 0 auto;
  padding: 10px 20px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  color: #495057;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.category-tag:hover {
  background: #000000;
  color: white;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.category-tag.active {
  background: #000000;
  color: white;
  border-color: #000000;
}

/* Pausar animación al hacer hover */
.categories-scroll-container:hover .categories-scroll-track {
  animation-play-state: paused;
}

@keyframes scrollCategories {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .category-tag {
    padding: 8px 16px;
    font-size: 13px;
  }

  .categories-scroll-track {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .category-tag {
    padding: 6px 12px;
    font-size: 12px;
  }

  .categories-scroll-track {
    gap: 10px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 700;
  color: #000000;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 8px;
}
:root {
  --primary-color: #ff9400;
  --secondary-color: #000000;
  --accent-color: #ff9400;
  --dark-color: #000000;
  --light-color: #f8f9fa;
  --success-color: #2ecc71;
  --warning-color: #ff9400;
  --danger-color: #e74c3c;
  --gradient-bg: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8fafc;
}

.app-download-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.app-download-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1551650975-87deedd944c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80");
  opacity: 0.05;
  z-index: 0;
}

.app-container {
  position: relative;
  z-index: 1;
}

.app-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.app-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.app-header {
  text-align: center;
  margin-bottom: 2rem;
}

.app-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.app-header p {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.app-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.app-info {
  flex: 1;
}

.app-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-bg);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.2rem;
}

.feature-text {
  font-weight: 500;
  color: var(--dark-color);
}

.download-btn {
  background: var(--gradient-bg);
  border: none;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(58, 123, 213, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(58, 123, 213, 0.6);
  color: white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 10px 20px rgba(58, 123, 213, 0.4);
  }
  50% {
    box-shadow: 0 10px 30px rgba(58, 123, 213, 0.7);
  }
  100% {
    box-shadow: 0 10px 20px rgba(58, 123, 213, 0.4);
  }
}

.app-preview {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.phone-mockup {
  width: 180px;
  height: 360px;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 15px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 20px;
  background: #1a1a1a;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}

.mockup-1 {
  animation: float 6s ease-in-out infinite;
}

.mockup-2 {
  animation: float 6s ease-in-out infinite 2s;
}

.mockup-3 {
  animation: float 6s ease-in-out infinite 4s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.app-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #6c757d;
}

/* Responsive */
@media (max-width: 992px) {
  .app-content {
    flex-direction: column;
    text-align: center;
  }

  .app-preview {
    order: -1;
    margin-bottom: 2rem;
  }

  .phone-mockup {
    width: 150px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .app-download-section {
    padding: 3rem 0;
  }

  .app-card {
    padding: 2rem 1.5rem;
  }

  .app-header h2 {
    font-size: 1.8rem;
  }

  .app-preview {
    gap: 10px;
  }

  .phone-mockup {
    width: 120px;
    height: 240px;
  }

  .app-stats {
    gap: 1rem;
  }

  .stat-item {
    padding: 0.8rem 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* Efectos adicionales */
.floating-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--danger-color);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.qr-code {
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  display: inline-block;
}

.qr-code img {
  width: 120px;
  height: 120px;
}

/* Contenedor principal */
.promotional-slider-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.modern-slider-wrapper {
  position: relative;
  height: 800px; /* Altura reducida */
  overflow: hidden;
  border-radius: 15px;
}
/* Oculto por defecto */
.promotional-slider-container {
  display: none;
}

/* Solo en pantallas pequeñas (ej. hasta 768px) */
@media (max-width: 768px) {
  .promotional-slider-container {
    display: block;
  }
}
/* Contenedor de slides */
.promotional-slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-slide-item {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  height: 100%;
}

.slide-content-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Imagen de fondo */
.promo-image-background {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s ease;
}

.promo-slide-item:hover .promo-image-background {
  transform: scale(1.05);
}

/* Overlay de contenido */
.promo-content-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 60px;
  display: flex;
  justify-content: flex-end;
}

.promo-text-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Botón de acción */
.promo-action-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff9400, #ff9400);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
  color: white;
  text-decoration: none;
}

.promo-action-button i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.promo-action-button:hover i {
  transform: translateX(3px);
}

/* Controles de navegación */
.promo-slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

.promo-nav-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #ff9400;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Indicadores */
.promo-slider-indicators {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}

.promo-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Progress bar */
.promo-slider-progress {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 3;
}

.promo-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff9400, #ff9400);
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .modern-slider-wrapper {
    height: 350px;
  }

  .promo-content-overlay {
    padding: 0 30px;
    justify-content: center;
  }

  .promo-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .promo-slider-indicators {
    bottom: 70px;
  }

  .promo-slider-progress {
    bottom: 50px;
  }
}

@media (max-width: 480px) {
  .modern-slider-wrapper {
    height: 300px;
  }

  .promo-content-overlay {
    padding: 0 20px;
  }

  .promo-text-content {
    max-width: 100%;
    padding: 15px;
  }

  .promo-product-title {
    font-size: 1.1rem;
  }

  .promo-action-button {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Animación de entrada para cada slide */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.promo-slide-item {
  animation: fadeIn 0.8s ease-out;
}
