.elegant-header {
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: #fafafa;
    border-bottom: 1px solid #ececec;
    padding: 8px 0;
}

.header-top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link {
    font-size: 12px;
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.25s ease;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.top-link:hover {
    color: #ff0000;
}

.top-link svg {
    stroke-width: 2;
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #E31E24;
    color: white;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

.header-main {
    padding: 1px 0;
    background-color: #ffffff;
}

.header-main-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: block;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.03);
}

.header-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.header-nav {
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.nav-link {
    font-size: 13px;
    color: #333;
    text-decoration: none;
    padding: 16px 0;
    display: inline-block;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.25s ease;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #E31E24;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #E31E24;
}

.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 992px) {
    .header-top-container {
        padding: 0 20px;
    }

    .header-main-container {
        padding: 0 5px;
    }

    .nav-container {
        padding: 0 20px;
        gap: 24px;
    }

    .header-logo {
        width: 110px;
        height: 110px;
    }

    .nav-link {
        font-size: 12px;
        padding: 14px 0;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 6px 0;
    }

    .top-link {
        font-size: 11px;
        gap: 4px;
    }

    .top-link svg {
        width: 12px;
        height: 12px;
    }

    .header-main {
        padding: 20px 0;
    }

    .header-logo {
        width: 90px;
        height: 90px;
    }

    .nav-container {
        gap: 16px;
        padding: 8px 20px;
    }

    .nav-link {
        font-size: 11px;
        padding: 12px 0;
    }

    .nav-link::after {
        bottom: 10px;
    }
}

@media (max-width: 576px) {
    .top-left {
        gap: 12px;
    }

    .top-right {
        gap: 12px;
    }

    .header-logo {
        width: 75px;
        height: 75px;
    }

    .nav-container {
        gap: 12px;
        padding: 8px 16px;
    }

    .nav-link {
        font-size: 10px;
        padding: 10px 0;
        letter-spacing: 0.3px;
    }
}
