.header {
    background: #004bad;
    padding: 5px 0;
    background: linear-gradient(90deg,rgba(1, 0, 33, 1) 0%, rgba(1, 20, 102, 1) 32%, rgba(1, 56, 143, 1) 57%, rgba(1, 20, 102, 1) 77%, rgba(1, 0, 33, 1) 100%);
}

.header.affix {
    width: 100%;
    top: 0;
    box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.15);
    animation: slide-down .5s linear forwards;
    z-index: 101;
    position: fixed;
}


@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo img {
    width: 100%;
    max-width: 150px;
}

.header .nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header .nav a {
    font-size: 17px;
    font-weight: 500;
    color: #FFF;
    transition: color 0.2s;
    padding: 0;
}

.header .nav a.active {
    color: #ffa726;
}

.header .nav a:hover {
    color: #ffa726;
}

.header .actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .actions .cart-btn {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffa726;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .actions .cart-btn svg {
    width: 22px;
    height: 22px;
}

.header .actions .cart-btn svg path {
    stroke: #fff;
}

.header .actions .cart-btn .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #FFF;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .actions .login-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    padding: 5px 5px 5px 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #FFF;
}

.header .actions .login-btn .arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .actions .login-btn .arrow svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
}

.header .actions .dots-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .actions .dots-btn svg {
    width: 16px;
    height: 16px;
    fill: #FFF;
}


/* â”€â”€ OVERLAY â”€â”€ */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 100;
    display: none;
}

.sidebar-overlay.open {
    display: block;
}

/* â”€â”€ SIDEBAR â”€â”€ */
.sidebar-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 370px;
    height: 100vh;
    background: #fff;
    z-index: 200;
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(.4, 0, .2, 1);
}

.sidebar-menu.open {
    transform: translateX(0);
}

.sidebar-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-menu .close-btn svg {
    width: 14px;
    height: 14px;
    stroke: #444;
    fill: none;
    stroke-width: 2.2;
}

.sidebar-menu .s-logo {
    margin-bottom: 18px;
}

.sidebar-menu .s-logo img {
    max-width: 200px;
    width: 100%;
}

.sidebar-menu .s-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 28px;
}

.sidebar-menu .s-contact-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.sidebar-menu .s-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.sidebar-menu .s-contact-item .icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-menu .s-contact-item .icon svg {
    width: 26px;
    height: 26px;
    stroke: #f47b20;
    fill: none;
    stroke-width: 1.5;
}

.sidebar-menu .s-contact-item .info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-menu .s-contact-item .info .label {
       font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    padding-left: 0px;
}

.sidebar-menu .s-contact-item .info .value {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.sidebar-menu .s-socials {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.sidebar-menu .s-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s;
}

.sidebar-menu .s-socials a:hover {
    border-color: #f47b20;
}

.sidebar-menu .s-socials a svg {
    width: 16px;
    height: 16px;
    stroke: #444;
    fill: none;
    stroke-width: 2;
}

.icon-menu-m {
    display: none;
}

.icon-menu-m svg {
    width: 22px;
    height: 22px;
}

.icon-menu-m svg path {
    fill: #FFF;
}

 .header-bell-news .notify-wrapper {
	 position: relative;
	 width: fit-content;
}
 .header-bell-news .notify-bell {
	 font-size: 20px;
	 cursor: pointer;
	 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	 position: relative;
	 width: 32px;
	 height: 32px;
	 border-radius: 50%;
	 border: 1px solid #FFF;
	 display: flex;
	 align-items: center;
	 justify-content: center;
}
 .header-bell-news .notify-bell .dot {
	 width: 17px;
	 height: 17px;
	 background: #fff;
	 border-radius: 50%;
	 position: absolute;
	 top: -7px;
	 right: -5px;
	 font-size: 10px;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 font-weight: 600;
}
 .header-bell-news .notify-dropdown {
	 position: absolute;
	 top: 60px;
	 right: 0;
	 width: 320px;
	 background: #fff;
	 border-radius: 12px;
	 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	 overflow: hidden;
	 display: none;
	 z-index: 99;
}
 .header-bell-news .notify-header {
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 padding: 14px 16px;
	 border-bottom: 1px solid #eee;
}
 .header-bell-news .notify-header span {
	 font-weight: 600;
	 color: #333;
}
 .header-bell-news .notify-header button {
	 padding: 6px 12px;
	 border-radius: 8px;
	 border: 1px solid #ddd;
	 background: #f9f9f9;
	 cursor: pointer;
	 font-size: 12px;
}
 .header-bell-news .notify-list {
	 max-height: 300px;
	 overflow-y: auto;
}
 .header-bell-news .notify-item {
	 display: flex;
	 gap: 12px;
	 padding: 14px 16px;
	 border-bottom: 1px solid #f1f1f1;
	 cursor: pointer;
}
 .header-bell-news .notify-item:hover {
	 background: #f8fbff;
}
 .header-bell-news .notify-avatar {
	 width: 36px;
	 height: 36px;
	 border-radius: 50%;
	 font-size: 13px;
	 font-weight: 600;
	 display: flex;
	 align-items: center;
	 justify-content: center;
}
 .header-bell-news .notify-avatar.blue {
	 background: #e6f2ff;
	 color: #2b7cff;
}
 .header-bell-news .notify-avatar.green {
	 background: #e6f7f0;
	 color: #1aa36f;
}
 .header-bell-news .notify-avatar.orange {
	 background: #fff3e6;
	 color: #ff8a00;
}
 .header-bell-news .notify-content {
	 flex: 1;
}
 .header-bell-news .notify-title {
	 font-size: 14px;
	 font-weight: 500;
	 color: #333;
	 display: flex;
	 justify-content: space-between;
}
 .header-bell-news .notify-title span {
	 font-size: 12px;
	 color: #999;
}
 .header-bell-news .notify-desc {
	 font-size: 13px;
	 color: #777;
	 margin-top: 4px;
}
.header .nav li:nth-child(4) {
    display: none !important;
}

.header .nav li:nth-child(9) {
    display: none;
}
 @media (max-width: 480px) {
	 .header-bell-news .notify-dropdown {
		 width: 280px;
		 right: -20px;
	}
}
 
@media (max-width: 1450px) {
	.header .nav a {
		font-size: 16px;
	}

	.header .nav {
		gap: 25px;
	}

    .header .actions {
        gap: 8px;
    }
}

@media (max-width: 1320px) { 
    .header .nav a {
		font-size: 15px;
	}

	.header .nav {
		gap: 20px;
	}
}

@media (min-width: 1250px) { 
    .close-menu-mb {
        display: none;
    }
}

@media (max-width: 1250px) { 
    .icon-menu-m {
        display: flex;
    }

    .header .actions .dots-btn {
        display: none;
    }

    .overlay-m {
        background: #000;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
    }

    .overlay-m.active {
        opacity: .5;
        visibility: visible;
    }

    .header .menu {
        background: #FFF;
        border-color: rgba(0, 0, 0, 0.1);
        width: 85%;
        max-width: 440px;
        position: fixed;
        z-index: 101;
        left: 0;
        top: 0;
        bottom: 0;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        padding: 15px;
        height: 100vh;
        overflow: auto;
    }

    .header .nav {
        display: block;
    }

    .header .menu.active {
        transform: translateX(0%);
        opacity: 1;
        visibility: visible;
    }

    .header .nav a {
        color: #000;
        font-size: 18px;
    }

    .menu .close-menu-mb {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
    }

    .menu .close-menu-mb svg {
        width: 20px;
        height: 20px;
    }

    .header .nav li {
        padding: 10px 0;
    }

    .header .actions .login-btn {
        font-size: 14px;
        gap: 8px;
        padding: 0 5px 0px 0;
    }
}