.top-banner {
    width: 100%;
    height: 32px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 20px;
    gap: 15px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(74, 44, 42);
}

.top-banner a {
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 15px;
    color: white;
}

.header-wrapper {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 20px;
    gap: 15px;
}

.header-wrapper img {
    width: 100px;
    height: 46px;
}

.header-wrapper {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0 20px;
    gap: 15px;
    border-bottom: 1px solid black;
}

.header-logo {
    width: 100px;
    height: 46px;
}

.header-linklist {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.header-linklist a {
    text-decoration: none;
    color: #a49b9b;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}

.sale-badge {
    background-color: #E16203;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    margin-left: 8px;
    line-height: 1;
}

.link-text {
    position: relative;
    font-size: 16px;
    font-weight: normal;
}

.link-text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #b7b1b1;
    transition: width 0.3s;
}

a:hover .link-text::after {
    width: 100%;
}

.more-section {
    display: flex;
    align-items: center;
    height: 100%;
}

.separator {
    color: #ccc;
    font-size: 20px;
    font-weight: 300;
}

.more-trigger {
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.more-link {
    text-decoration: none;
    color: #999;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.more-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #b7b1b1;
    transition: width 0.3s;
}

a:hover .more-link::after {
    width: 100%;
}

.mega-dropdown {
    display: none;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 50px 0;
    z-index: 90;
}

.more-trigger:hover .mega-dropdown,
.mega-dropdown:hover {
    display: block;
}

.dropdown-grid {
    max-width: 1200px;
    height: 200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 0 40px;
}

.col {
    padding-right: 40px;
}

.col-border {
    border-left: 1px solid #eee;
    padding-left: 40px;
}

.col h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 0;
}

.dropdown-links {
    list-style: none;
    padding: 0;
}

.dropdown-links li { margin-bottom: 10px; }
.dropdown-links a {
    text-decoration: none;
    color: #888;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}
.dropdown-links a:hover { color: #E85D04; }

.btn-shop {
    background: #E16203;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 12px;
    margin-top: 20px;
    cursor: pointer;
}

.header-shopping{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    box-sizing: border-box;
    padding: 0 20px;
    gap: 15px;
}

.header-shopping img{
    width: 36px;
    height: 36px;
}

.header-button{
    height: 30px;
    width: 90px;
    color: white;
    background-color: #E16203;
    border: none;
}

.header-button a {
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    color: white;
}

.header-img {
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: transform 0.2s;
    display: block;
}

.cart-icon-wrapper {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge {
    position: absolute;
    top: -8px; right: -8px;
    background-color: #000; color: #fff;
    font-size: 10px; font-weight: 700;
    min-width: 18px; height: 18px;
    border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    z-index: 10;
}
.cart-badge.show { display: flex; }


.buy-btn-container {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.main-info-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 100%;
    max-width: 500px;
    color: white;
    background-color: #E16203;
    border: 1px solid #E16203;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.main-info-button img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

@media (max-width: 1024px){
    .top-banner a{
        font-size: 10px;
    }

    .header-linklist{
        display: none;
    }

    .header-button{
        display: none;
    }
}