/* Menú principal alineado en una sola línea */
.navbar .navbar-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin: 35px 0 10px;
    padding-left: 20px;
}

/* Evita que los ítems se corten */
.navbar .navbar-nav > li {
    white-space: nowrap;
}

/* Enlaces del menú principal */
.navbar .navbar-nav > li > a {
    position: relative;
    color: #777;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
    line-height: 15px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 15px;
    background: transparent;
    display: block;
}

/* Submenús: ocultos por defecto y adaptables al contenido */
.navbar .navbar-nav > li > ul.drop-down {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 40px;
    //background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    list-style-type: none;
    width: max-content;     /* ancho basado en el contenido */
    min-width: 100%;        /* opcional: asegura que no sea menor que el ítem padre */
    white-space: nowrap;    /* evita saltos de línea */
    z-index: 1000;
}

/* Mostrar submenú al pasar el ratón */
.navbar .navbar-nav > li:hover > ul.drop-down {
    display: block;
}

/* Alineación del contenedor de navegación (si se usa) */
.navbar-right {
    float: left !important;
}

/* Fuente general del sitio */
html body {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
}

/* Imágenes con object-fit */
.obj_contain_cs img {
    object-fit: contain;
}



table.variations {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: separate;
  border-spacing: 0;
}

table.variations td.label,
table.variations th.label {
  width: 120px;
  padding: 0.5rem;
  text-align: left;
  vertical-align: middle;
  color: #666666; /* Gris medio */
  font-weight: 500;
  font-size: 16px;
}

table.variations td.value {
  padding: 0.5rem;
}

table.variations select {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
  color: #333;
}

.woocommerce-variation-add-to-cart {
  margin-top: 1rem;
  display: flex;
  gap: 10px;
  align-items: center;
}

.woocommerce-variation-add-to-cart button,
.woocommerce-variation-add-to-cart .quantity input {
  height: 42px;
  font-size: 16px;
}

