/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
/* Reemplazo global de color #8B9478 por #4B2E19 */
* {
  --color-old: #8B9478;
  --color-new: #4B2E19;
}

*:not([style]) {
border-color: var(--color-new) !important;
}

div {

border-color: var(--color-new) !important;
}

.bg-old, .background-old {
  background-color: var(--color-new) !important;
}

.border-old {
  border-color: var(--color-new) !important;
}

/* Reemplazo específico del color original donde aparezca */
*[style*="#8B9478"] {
  background-color: var(--color-new) !important;
  border-color: var(--color-new) !important;
}

.lk-lang-select {
  position: relative;
  font-family: inherit;
  font-size: 13px;
}

.lk-lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff7ea; /* ajusta a tu color de header */
  cursor: pointer;
  line-height: 1;
}

.lk-lang-code {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.7;
}

.lk-lang-label {
  font-weight: 600;
}

.lk-lang-arrow {
  font-size: 10px;
  margin-left: 4px;
}

/* Dropdown */
.lk-lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  min-width: 160px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  padding: 6px 0;
  display: none;
  z-index: 9999;
}

.lk-lang-menu a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.lk-lang-menu a span {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.6;
}

.lk-lang-menu a:hover {
  background: #f5f2eb;
}

.lk-lang-menu a.active {
  font-weight: 600;
}

/* mostrar cuando está abierto */
.lk-lang-select.open .lk-lang-menu {
  display: block;
}

