.custom-currency-symbol {
  background-color: #fff200;
  border-radius: 50%;
  padding: 8px 18px; /* Aumentado padding para más espacio interno */
  border: 3px solid black;
  margin-right: 6px;
  color: #000;
  font-size: 24px;
}

.pricing-breakdown-container {
  margin: 10px 0; /* Reducido de 20px a 10px */
  border-radius: 8px;
  overflow: hidden;
}

.pricing-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px; /* Reducido de 15px 20px */
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-header:hover {
  opacity: 0.9;
}

.pricing-icon {
  margin-right: 12px; /* Reducido de 15px */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.pricing-icon svg {
  width: 72px;
  height: 72px;
  color: #000;
}

.pricing-text {
  display: flex;
  align-items: center;
  gap: 8px; /* Reducido de 10px */
}

.pricing-label {
  font-size: 24px;
  color: #000;
}

.pricing-amount {
  font-size: 24px;
  color: #000;
}

/* Estilos para precios en oferta */
.pricing-amount-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pricing-amount-regular {
  font-size: 20px;
  color: #666;
  text-decoration: line-through;
}

.pricing-amount-sale {
  font-size: 24px;
  color: #000;
  font-weight: bold;
}

.pricing-discount {
  background-color: #e74c3c;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

.pricing-toggle {
  margin-left: 12px; /* Reducido de 15px */
  transition: transform 0.3s ease;
  position: absolute;
  right: 15px; /* Reducido de 20px */
}

.pricing-toggle.active {
  transform: rotate(180deg);
}

.chevron-icon {
  width: 24px;
  height: 24px;
  color: #333;
}

.pricing-breakdown {
  padding: 15px; /* Reducido de 20px */
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px; /* Reducido de 25px a 15px */
}

.breakdown-item {
  text-align: center;
  padding: 35px 15px; /* Reducido padding horizontal de 20px a 15px */
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.breakdown-item:hover {
  transform: translateY(-2px);
}

.breakdown-icon {
  margin-bottom: 20px; /* Más espacio entre icono y porcentaje */
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Alinea los iconos al fondo, elimina espacio arriba */
  height: 175px; /* Altura ajustada para iconos de 175px */
}

.breakdown-icon img {
  max-width: 175px; 
  max-height: 175px;
  object-fit: contain;
}

.breakdown-percentage {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin-bottom: 12px; /* Más espacio entre porcentaje y título */
}

.breakdown-title {
  font-size: 16px;
  color: #000;
  line-height: 1.3;
  font-weight: 500;
  font-family: "Roboto";
}

/* Responsive */
@media (max-width: 768px) {
  .breakdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; /* Reducido de 20px */
  }
  .pricing-breakdown-container {
    max-width: 100%;
    margin: 8px 0; /* Reducido */
  }
  .pricing-breakdown {
    padding: 12px; /* Reducido */
  }
  .breakdown-item {
    padding: 30px 12px; /* Reducido padding horizontal */
  }
  .breakdown-percentage {
    font-size: 32px;
  }
  .breakdown-icon {
    height: 100px; /* Cambiado a 100px */
    margin-bottom: 18px; /* Más espacio entre icono y porcentaje */
    align-items: flex-end; /* Elimina espacio arriba del icono */
  }
  .breakdown-icon img {
    max-width: 100px; /* Cambiado a 100px */
    max-height: 100px; /* Cambiado a 100px */
    width: 100px; /* Asegura tamaño exacto */
    height: 100px; /* Asegura tamaño exacto */
    object-fit: contain; /* Mantiene proporciones sin distorsión */
  }
  .breakdown-percentage {
    margin-bottom: 10px; /* Más espacio entre porcentaje y título */
  }
  .breakdown-title {
    font-size: 15px;
  }
  /* Responsive para precios en oferta */
  .pricing-amount-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .pricing-amount-regular {
    font-size: 18px;
  }
  .pricing-amount-sale {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .breakdown-grid {
    grid-template-columns: repeat(2, 1fr); /* Cambiado de 1fr a repeat(2, 1fr) para mantener dos columnas */
    gap: 10px; /* Reducido de 18px */
  }
  .pricing-header {
    padding: 10px 12px; /* Reducido */
  }
  .pricing-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px; /* Reducido de 5px */
  }
  .breakdown-item {
    padding: 25px 8px; /* Reducido padding horizontal para que quepan mejor dos columnas */
  }
  .breakdown-icon {
    height: 100px; /* Cambiado a 100px */
    margin-bottom: 15px; /* Espacio entre icono y porcentaje */
    align-items: flex-end; /* Elimina espacio arriba */
  }
  .breakdown-icon img {
    max-width: 100px; /* Cambiado a 100px */
    max-height: 100px; /* Cambiado a 100px */
    width: 100px; /* Asegura tamaño exacto */
    height: 100px; /* Asegura tamaño exacto */
    object-fit: contain; /* Mantiene proporciones sin distorsión */
  }
  .breakdown-percentage {
    font-size: 28px; /* Reducido ligeramente para que quepan mejor */
    margin-bottom: 8px; /* Espacio entre porcentaje y título */
  }
  .breakdown-title {
    font-size: 13px; /* Reducido ligeramente para que quepan mejor */
  }
  /* Responsive adicional para precios en oferta */
  .pricing-amount-regular {
    font-size: 16px;
  }
  .pricing-amount-sale {
    font-size: 20px;
  }
  .pricing-discount {
    font-size: 12px;
    padding: 1px 4px;
  }
}