/*
Theme Name: Blocksy Child
Theme URI: https://creativethemes.com/blocksy/
Template: blocksy
Author: CreativeThemes
Author URI: https://creativethemes.com
Description: Blocksy is a fast, modern WordPress theme with advanced WooCommerce support and full compatibility with the block editor.
Tags: accessibility-ready,blog,block-patterns,e-commerce,wide-blocks,block-styles,grid-layout,one-column,two-columns,three-columns,four-columns,right-sidebar,left-sidebar,translation-ready,custom-colors,custom-logo,custom-menu,featured-images,footer-widgets,full-width-template,theme-options,threaded-comments
Version: 2.1.4.1753452528
Updated: 2025-07-25 16:08:48

*/

/* Quitar el texto "Envío: ..." arriba del bloque */
.ct-shipping-heading {
  display: none !important;
}

/* Mostrar opciones de envío tipo card */
.woocommerce-shipping-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

/* Estilo individual de cada opción de envío */
.woocommerce-shipping-methods li {
  flex: 1 1 48%;
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  background-color: #fff;
  list-style: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  position: relative;
  cursor: pointer;
}

/* Resaltar cuando está seleccionada */
.woocommerce-shipping-methods input[type="radio"]:checked + label {
  border-color: #000;
  background-color: #f5f5f5;
  border-radius: 12px;
}

/* El input radio se vuelve más grande y se coloca mejor */
.woocommerce-shipping-methods input[type="radio"] {
  transform: scale(1.4);
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Texto dentro de cada opción */
.woocommerce-shipping-methods label {
  display: block;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  padding-left: 2rem;
  position: relative;
}

/* Posicionar bien el input respecto al texto */
.woocommerce-shipping-methods label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.2rem;
  height: 1.2rem;
}

/* Estilo para el texto pequeño (dirección o subtítulo) */
.woocommerce-shipping-methods label small {
  display: block;
  font-weight: normal;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.25rem;
}
