:root{
    --primary:#813405;
    --secondary:#D45113;
    --accent:#F9A03F;
    --light:#F8DDA4;
    --success:#606C38;

    --background:#111111;
    --footer:#1a1a1a;
    --card:#1A1A1A;
    --border:#333333;
    --text:#FFFFFF;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    width:100%;
    min-height:100%;
}

body{
    width:100%;
    min-height:100vh;
    background:var(--light);
    color:var(--text);
    font-family:Arial, Helvetica, sans-serif;
    display:flex;
    flex-direction:column;
}

/* HEADER */

.site-header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:5px 0;
    background:var(--light);
    border-bottom:1px solid var(--footer);
    position:sticky;
    top:0;
    z-index:999;
}

.header-logo{
    margin-left:5%;
}

.header-logo img{
    height:75px;
    width:auto;
    display:block;
}

.header-checkout{
    margin-right:10%;
    display:flex;
    align-items:center;
    gap:10px;
}

.header-checkout a,
.header-add-selected-btn{
    display:inline-block;
    color:#ffffff;
    text-decoration:none;
    font-weight:bold;
    padding:12px 24px;
    border-radius:8px;
    transition:.2s ease;
    font-size:15px;
    line-height:1;
    border:none;
    cursor:pointer;
    font-family:Arial, Helvetica, sans-serif;
}

.header-checkout a{
    background:var(--primary);
}

.header-checkout a:hover{
    background:#6b2b04;
}

.header-add-selected-btn{
    background:var(--secondary);
}

.header-add-selected-btn:hover{
    background:var(--primary);
}

/* PAGE CONTENT */

.site-main{
    width:80%;
    max-width:1024px;
    flex:1;
    margin:0 auto;
    padding-top:20px;
}

/* FOOTER */

.site-footer{
    width:100%;
    margin-top:auto;
    background:var(--footer);
    color:var(--text);
    text-align:center;
    padding:20px;
    font-size:14px;
    line-height:1.8;
}

.footer-contact{
    font-size:14px;
}

.footer-contact a{
    color:var(--accent);
    text-decoration:none;
    font-weight:bold;
}

.footer-contact a:hover{
    text-decoration:underline;
}

.copyright{
    margin-top:8px;
    font-size:12px;
    opacity:.8;
}

/* TABLET */

@media(max-width:992px){

    .header-logo img{
        height:96px;
    }

    .site-main{
        width:90%;
    }

}

/* MOBILE */

@media(max-width:768px){

    .site-header{
        padding:4px 0;
    }

    .header-logo{
        margin-left:4%;
    }

    .header-logo img{
        height:96px;
    }

    .header-checkout{
        margin-right:4%;
        gap:8px;
    }

    .header-checkout a,
    .header-add-selected-btn{
        padding:10px 14px;
        font-size:13px;
    }

    .site-main{
        width:94%;
    }

    .site-footer{
        padding:16px;
        font-size:13px;
    }

    .footer-contact{
        font-size:13px;
    }

    .copyright{
        font-size:11px;
    }

}

/* SMALL PHONES */

@media(max-width:480px){

    .site-header{
        padding:3px 0;
    }

    .header-logo img{
        height:82px;
    }

    .header-checkout a,
    .header-add-selected-btn{
        padding:8px 10px;
        font-size:12px;
    }

}