.header-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff !important;
    text-decoration: none;
    transition: 0.25s ease;
    position: relative;
}

.header-icon-link:hover {
    color: var(--gold) !important;
    transform: translateY(-1px);
}

.header-icon-link svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.9;
    flex-shrink: 0;
}

.header-icon-text {
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.header-text-link {
    color: #ffffff !important;
    font-size: 14px;
    transition: 0.25s ease;
}

.header-text-link:hover {
    color: var(--gold) !important;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.main-nav a,
.header-text-link,
.header-icon-link {
    position: relative;
}

.main-nav a::after,
.header-text-link::after,
.header-icon-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
}

.main-nav a:hover::after,
.header-text-link:hover::after,
.header-icon-link:hover::after {
    width: 100%;
}

.cart-icon {
    padding-right: 0;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: var(--gold);
    color: #000000;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 999px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(199, 164, 65, 0.28);
}

.search-box button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.search-box button:hover {
    background: var(--gold-dark);
}

.search-box button svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.mobile-header-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-icon-link {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    position: relative;
    transition: 0.25s ease;
}

.mobile-icon-link:hover {
    color: var(--gold) !important;
    border-color: rgba(199, 164, 65, 0.45);
}

.mobile-icon-link svg {
    width: 19px;
    height: 19px;
    stroke-width: 1.9;
}

.mobile-cart-link-icon {
    position: relative;
}

.mobile-cart-count {
    top: -7px;
    right: -7px;
}

@media (max-width: 1023px) {
    .top-actions {
        gap: 14px;
    }

    .header-icon-text {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .header-icon-text {
        display: none;
    }
}