
/*
Theme Name: TeeSpace - Child
Theme URI: https://harutheme.com/teespace
Author: HaruTheme
Author URI: https://harutheme.com/
Description: This is child theme of TeeSpace
Template: teespace
Version: 1.0.0
*/

/*---------------------------------
  	Write your css code from here
------------------------------------*/

/* Forzar ocultamiento del botón "Agregar al carrito" en productos */
.single-product form.cart button.single_add_to_cart_button {
  display: none !important;
}

.cotizar-whatsapp-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.cotizar-whatsapp-btn {
  display: inline-block !important;
  background-color: #25D366 !important;
  color: white !important;
  font-weight: bold;
  padding: 16px 32px;
  font-size: 18px;
  border-radius: 10px;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-in-out;
}

.cotizar-whatsapp-btn:hover {
  background-color: #1da955 !important;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  color: white !important;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

<style>
  /* Estilo forzado del botón de "Borrar Selección" */
  .variations_form .reset_variations {
    background-color: #1AACEB !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    transition: background 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .variations_form .reset_variations:hover {
    background-color: #F609C6 !important;
    color: white !important;
  }



</style>
