
/* Estilos para los menús móviles */
.mobile-dropdown-menu {
    position: absolute;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1010;
    display: none;
    padding: 5px;
    min-width: 150px;
}

.mobile-dropdown-menu .currency-item,
.mobile-dropdown-menu .lang-item {
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 2px;
}

.mobile-dropdown-menu .currency-item:hover,
.mobile-dropdown-menu .lang-item:hover {
    background-color: #f5f5f5;
}

.mobile-dropdown-menu .currency-item.active,
.mobile-dropdown-menu .lang-item.active {
    background-color: #f0f0f0;
}

/* Mejoras para los botones móviles */
#lang-mobile, #currency-mobile {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#lang-mobile:hover, #currency-mobile:hover {
    background-color: #e9e9e9;
}

#lang-mobile img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

#currency-mobile .current-currency {
    font-size: 16px;
    font-weight: 600;
}

/* Currency Selector Styles */
#currency {
    position: relative;
    min-width: 80px;
}

#currency .current {
    padding: 6px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background-color: var(--theme-color-10);
    color: var(--theme-color);
    font-weight: 600;
    font-size: 14px;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.currency-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    z-index: 1005;
    display: none;
    margin-top: 15px;
    padding: 2px;
    white-space: nowrap;
    overflow: hidden;
}

.currency-item a {
    color: var(--theme-text);
    text-decoration: none;
    display: block;
    padding: 2px 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.currency-item:hover {
    background-color: var(--theme-color-5);
    border-radius: 6px;
}

.currency-item.active {
    background-color: var(--theme-color-10);
    border-radius: 6px;
}

#currency.show .currency-menu {
    display: block;
}

#currency .current img.icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-left: 4px;
}

.currency-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
}


/* Domain Boxes Styles */
.boxes .box {
    padding: 25px 15px;
    border-radius: 10px;
    background: var(--white);
    transition: all 0.3s ease;
}

.boxes .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.boxes .box .box-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.boxes .box .price {
    font-size: 15px;
}

.boxes .box .price .text:first-child {
    color: var(--theme-text-light);
    margin-bottom: 5px;
}

.boxes .box .price .text:last-child {
    color: var(--theme-text);
    font-weight: 600;
}

.hot-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--theme-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.box .price {
    transition: all 0.3s ease;
}

.box .price.updating {
    opacity: 0.5;
}


.currency-selector {
    margin-left: 15px;
}

.currency-selector .btn {
    color: var(--theme-text);
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 5px 15px;
}

.currency-list {
    min-width: 120px;
}

.currency-item {
    padding: 5px 15px;
    display: block;
    color: var(--theme-text);
    text-decoration: none;
}

.currency-item:hover {
    background: var(--theme-color-light);
}