*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
}

/* =====================
   Announcement Bar
===================== */

.announcement-bar{
    height:48px;
    background:#f26b48;
    overflow:hidden;
    display:flex;
    align-items:center;
    position:relative;
    z-index:9999;
}

.announcement-track{
    display:flex;
    white-space:nowrap;
    animation:marquee 30s linear infinite;
}

.announcement-track span{
    color:#fff;
    font-size:17px;
    padding-right:120px;
}

@keyframes marquee{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* =====================
 Header
===================== */

.main-header{

    position:absolute;
    top:48px;
    left:0;
    width:100%;
    z-index:999;

    transition:.4s ease;

}

.main-header.sticky{

    position:fixed;
    top:0;

    background:rgba(0,0,0,.88);

    backdrop-filter:blur(8px);

    box-shadow:0 5px 25px rgba(0,0,0,.2);

}

.header-container{

    width:100%;
    max-width:1400px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 30px;
    min-height:95px;

    gap:20px;

}

/* Logo */

.logo{

    flex-shrink:0;

}

.logo img{

    height:82px;
    width:auto;
    display:block;

}

/* Menu */

.desktop-menu{

    flex:1;
    display:flex;
    justify-content:center;

}

.desktop-menu ul{

    display:flex;
    align-items:center;
    gap:32px;

    list-style:none;

}

.desktop-menu a{

    text-decoration:none;

    color:#fff;

    font-size:17px;

    font-weight:500;

    transition:.3s;

}

.desktop-menu a:hover{

    color:#f7b94b;

}

/* Button */

.contact-btn{

    text-decoration:none;

    color:#fff;

    border:2px solid #fff;

    padding:12px 30px;

    border-radius:50px;

    transition:.3s;

}

.contact-btn:hover{

    background:#fff;
    color:#000;

}
.header-right{

    display:flex;
    align-items:center;
    justify-content:flex-end;

    gap:15px;

    flex-shrink:0;

}

/* Hamburger */

.hamburger{

    display:none;

    background:none;

    border:none;

    cursor:pointer;

}

.hamburger span{

    display:block;

    width:28px;

    height:3px;

    margin:5px 0;

    background:#fff;

}

/* =====================
 Sidebar
===================== */

.sidebar-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.5);

    visibility:hidden;

    opacity:0;

    transition:.4s;

    z-index:9998;

}

.sidebar-overlay.active{

    visibility:visible;

    opacity:1;

}

.mobile-sidebar{

    position:fixed;

    top:0;

    right:-320px;

    width:300px;

    height:100vh;

    background:
        linear-gradient(
            rgba(180, 30, 20, 0.65),
            rgba(255, 115, 0, 0.75)
        ),
        url('../images/52520a91df08bb11cc5dd3a02b191f7e.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    z-index:9999;

    transition:.4s;

    padding:30px;

    overflow-y:auto;

}

.mobile-sidebar.active{

    right:0;

}

.sidebar-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.sidebar-top h3{

    font-size:24px;

    color:#fff;

}

.sidebar-top button{

    border:none;

    background:none;

    font-size:28px;

    cursor:pointer;

    color:#fff;

}

.mobile-sidebar ul{

    list-style:none;

    margin-top:20px;

    border-top:1px solid rgba(255,255,255,.25);

    padding-top:20px;

}

.sidebar-logo{

    text-align:center;

    margin-bottom:25px;

}

.sidebar-logo img{

    height:90px;

}
.mobile-sidebar li{

    margin-bottom:20px;

}

.mobile-sidebar a{

    text-decoration:none;

    color:#fff;

    font-size:18px;

    font-weight:500;

    transition:.3s;

}
.mobile-sidebar a:hover{

    color:#ffd27a;

    padding-left:8px;

}

/* =====================
 Tablet
===================== */

@media(max-width:991px){

.desktop-menu{

display:none;

}

.contact-btn{

display:none;

}

.hamburger{

display:block;

}

.logo img{

height:72px;

}

.header-container{

padding:0 25px;

min-height:85px;

}

.cart-btn{

width:44px;
height:44px;

margin-right:8px;

}

}

@media(max-width:768px){

.main-header{

top:48px;

}

.header-container{

padding:0 18px;

min-height:78px;

}

.logo img{

height:58px;

}

.cart-btn{

width:42px;
height:42px;

}

.cart-btn i{

font-size:16px;

}

.hamburger span{

width:26px;
height:3px;

}

}

/* =====================
 Mobile
===================== */

@media(max-width:576px){

.header-container{

padding:0 15px;

min-height:72px;

}

.logo img{

height:50px;

}

.cart-btn{

width:38px;
height:38px;

margin-right:5px;

}

.cart-btn i{

font-size:15px;

}

.hamburger span{

width:24px;
margin:4px 0;

}

.mobile-sidebar{

width:270px;

}

.announcement-bar{

height:42px;

}

.main-header{

top:42px;

}

.announcement-track span{

font-size:13px;
padding-right:70px;

}

}
@media(max-width:360px){

.header-container{

padding:0 12px;

}

.logo img{

height:44px;

}

.cart-btn{

width:34px;
height:34px;

}

.contact-btn{

display:none;

}

}

.cart-btn{

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    border:2px solid #fff;

    color:#fff;
    text-decoration:none;

    transition:.35s;

}

.cart-btn i{

    font-size:18px;

}

.cart-btn:hover{

    background:#f36b2a;

    border-color:#f36b2a;

    transform:translateY(-3px);

}