@import url("https://use.typekit.net/imp6pqx.css");
@font-face { font-family: AvenirLight; src: url(../fonts/AvenirLight.ttf); }
@font-face { font-family: AvenirHeavy; src: url(../fonts/AvenirHeavy.ttf); }

* {
    margin: 0;
    padding: 0;
}

nav {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 5px 5px rgba(0,0,0,.2);
}

.inner {
    position: relative;
    margin-left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 2000px;
}

.upper-nav {
    position: relative;
    height: 95px;
    z-index: 1;
    background: #fff;
}

.upper-nav h1 {
    position: relative;
    display: inline-block;
    margin-top: 15px;
    margin-left: 50%;
    transform: translateX(-50%);
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 32px;
    color: #000;
}

.upper-nav .subtitle {
    position: relative;
    display: inline-block;
    top: -5px;
    margin-left: 50%;
    transform: translateX(-50%);
    font-family: trajan-pro-3, serif;
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    font-size: 13px;
    color: #000;
}

.upper-nav button {
    width: 35px;
    height: 35px;
    background: red;
}

.upper-nav .cart {
    position: absolute;
    right: calc(10% + 10px);
    top: 50px;
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.upper-nav .cart-quantity {
    position: absolute;
    right: calc(10% + 5px);
    top: 47px;
    width: 15px;
    height: 15px;
    background: #000;
    border-radius: 50%;
    border: 2px solid #000;
}

.upper-nav .cart-quantity p {
    position: relative;
    top: -2px;
    margin-left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 15px;
    font-family: trajan-pro-3, serif;
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    font-size: 13px;
    color: #fff;
}

.lower-nav {
    position: relative;
    height: 95px;
    background: #fff;
    top: -1px;
    z-index: 10003;
}

.lower-nav ul {
    margin-top: 10px;
    border-top: 0.5px solid #000;
    border-bottom: 0.5px solid #000;
    width: calc(40% - 50px);
    height: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    list-style: none;
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    font-display: swap;
    color: #000;
    justify-content: space-evenly;
}

.lower-nav .left-list {
    position: absolute;
    left: 10%;
}

.lower-nav .right-list {
    position: absolute;
    right: 10%;
}

.lower-nav ul li {
    padding-top: 20px;
    height: 40px;
    width: 33.333%;
    text-align: center;
    cursor: pointer;
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
}            

.lower-nav ul li:hover {
    font-family: trajan-pro-3, serif;
    font-weight: 700;
    font-style: normal;
}

.lower-nav ul li:hover .underline {
    display: block;
    cursor: pointer;
}

.underline {
    position: relative;
    height: 5px;
    background: #dfc16d;
    width: 5px;
    border-radius: 50%;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 5px;
    display: none;
}

.logo-border {
    position: absolute;
    left: calc(50% - 33.25px);
    top: 7px;
    width: 60px;
    height: 60px;
    border: 3px dotted #dfc16d;
    border-radius: 50%;
    z-index: 10005;
    cursor: pointer;
    margin-bottom: 0;
}

nav .main-logo {
    position: absolute;
    top: 9px;
    left: calc(50%);
    transform: translateX(-50%);
    width: 63px;
    height: 63px;
    z-index: 1001;
    cursor: pointer;
}

.rotate-border-forward {
    -webkit-animation: rotateBorderForward 3s ease;
    -moz-animation: rotateBorderForward 3s ease;
    -o-animation: rotateBorderForward 3s ease;
    -ms-animation: rotateBorderForward 3s ease;
    animation: rotateBorderForward 3s ease;
}

.rotate-border-back {
    -webkit-animation: rotateBorderBack 3s ease;
    -moz-animation: rotateBorderBack 3s ease;
    -o-animation: rotateBorderBack 3s ease;
    -ms-animation: rotateBorderBack 3s ease;
    animation: rotateBorderBack 3s ease;
}


@keyframes rotateBorderForward {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotateBorderBack {
  0%   { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}



.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 99999;
    display: none;
}

.side-nav .side-nav-content {
    position: relative;
    width: 100%;
    z-index: 1;
}

.side-nav .side-nav-content .header {
    top: 0;
    height: 90px;
    width: 100%;
    box-shadow: 0 5px 5px rgba(0,0,0,.2);
    background: #fff;
}

.side-nav .side-nav-content .header ul {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    list-style: none;
}

.side-nav .side-nav-content .header h1 {
    font-size: 26px;
    font-family: trajan-pro-3, serif;
    font-weight: 400;
    font-style: normal;
}

.side-nav .side-nav-content .header h2 {
    margin-top: -5px;
    font-size: 13px;
    font-family: trajan-pro-3, serif;
    font-weight: 300;
    font-style: normal;
}

.logo-border2 {
    margin-left: 50px;
    position: absolute;
    top: 12px;
    width: 60px;
    height: 60px;
    border: 3px dotted #dfc16d;
    border-radius: 50%;
    z-index: 10005;
    cursor: pointer;
    margin-bottom: 0;
}

nav .side-logo {
    position: absolute;
    left: 52px;
    top: 14.5px;
    width: 63px;
    height: 63px;
    z-index: 1001;
    cursor: pointer;
}

.side-nav .side-nav-content .side-nav-tagline {
    position: relative;
    margin-top: 15px;
    margin-left: 125px;
}

.side-nav .side-nav-content .side-nav-tagline a {
    color: #000;
    text-decoration: none;
}

.side-nav .side-nav-content .side-nav-links {
    position: absolute;
    box-shadow: inset 0 5px 5px rgba(0,0,0,.2);
    height: 100vh;
    width: 100%;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    list-style: none;
    background: rgba(223, 193, 109, 0.8);
}

.side-nav .side-nav-content .side-nav-links li {
    margin-left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 100px);
    height: 60px;
    border-bottom: 1px solid #000;
    transition: 0.5s;
}

.side-nav .side-nav-content .side-nav-links li:nth-child(7) {
    border-bottom: none;
}

.side-nav .side-nav-content .side-nav-links li a {
    color: #000;
    text-decoration: none;
}

.side-nav .side-nav-content .side-nav-links li p {
    margin-left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding-top: 15px;
    height: 45px;
    min-width: 252px;
    text-align: center;
    font-size: 18px;
    font-family: trajan-pro-3, serif;
    font-weight: 300;
    font-style: normal;
    cursor: pointer;
}

.side-nav .side-nav-content .side-nav-links li p:hover {
    font-weight: 600;
}

.burger-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 30px;
    right: 50px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: 0.5s ease all;
}

.burger-container.open .burger {
    transform: translateX(-50px);
    background: transparent;
}

.burger-container.open .burger::before {
    transform: rotate(45deg) translate(35px, -35px);
}

.burger-container.open .burger::after {
    transform: rotate(-45deg) translate(35px, 35px);
}

.burger {
    width: 30px;
    height: 3px;
    background: #000;
    border-radius: 5px;
    border: none;
    outline: none;
    transition: 0.5s ease all;
}

.burger::before,
.burger::after {
    position: absolute;
    content: '';
    width: 30px;
    height: 3px;
    background: #000;
    border-radius: 5px;
    transition: 0.5s ease all;
}

.burger::before {
    transform: translateY(-10px);
}

.burger::after {
    transform: translateY(10px);
}

.side-menu {
    display: none;
}

.side-menu img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

@media only screen and (max-width: 1000px) {
    
    .side-nav {
        display: block;
    }
    
    .upper-nav {
        display: none;
    }
    .lower-nav {
        display: none;
    }
    
}

@media only screen and (max-width: 550px) {
    .logo-border2 {
        top: 19px;
        margin-left: 25px;
        width: 45px;
        height: 45px;
        border: 2px dotted #dfc16d;
    }
    
    nav .side-logo {
        position: absolute;
        left: 26px;
        top: 21.5px;
        width: 47px;
        height: 47px;
        z-index: 1001;
        cursor: pointer;
    }
    
    .side-nav .side-nav-content .side-nav-tagline {
        position: relative;
        margin-top: 25px;
        margin-left: 80px;
    }
    
    .side-nav .side-nav-content .header h1 {
        font-size: 18px;
        font-family: trajan-pro-3, serif;
        font-weight: 400;
        font-style: normal;
    }
    
    .side-nav .side-nav-content .header h2 {
        margin-top: -5px;
        font-size: 9px;
        font-family: trajan-pro-3, serif;
        font-weight: 300;
        font-style: normal;
    }
    
    .burger-container {
        top: 35px;
        right: 25px;
        width: 25px;
        height: 25px;
        cursor: pointer;
        transition: 0.5s ease all;
    }
    
    .burger {
        width: 25px;
        height: 2px;
        background: #000;
        border-radius: 5px;
        border: none;
        outline: none;
        transition: 0.5s ease all;
    }
    
    .burger::before,
    .burger::after {
        position: absolute;
        content: '';
        width: 25px;
        height: 2px;
        background: #000;
        border-radius: 5px;
        transition: 0.5s ease all;
    }
    
    .burger::before {
        transform: translateY(-8.5px);
    }
    
    .burger::after {
        transform: translateY(8.5px);
    }
}

@media only screen and (max-width: 375px) {
    .logo-border2 {
        top: 25px;
        margin-left: 15px;
        width: 35px;
        height: 35px;
        border: 2px dotted #dfc16d;
    }
    
    nav .side-logo {
        position: absolute;
        left: 16.5px;
        top: 26.5px;
        width: 37px;
        height: 37px;
    }
    
    .side-nav .side-nav-content .side-nav-tagline {
        position: relative;
        margin-top: 33px;
        margin-left: 60px;
    }
    
    .side-nav .side-nav-content .header h1 {
        font-size: 12px;
        font-family: trajan-pro-3, serif;
        font-weight: 400;
        font-style: normal;
    }
    
    .side-nav .side-nav-content .header h2 {
        margin-top: -2px;
        font-size: 6px;
        font-family: trajan-pro-3, serif;
        font-weight: 300;
        font-style: normal;
    }
    
    .burger-container {
        top: 35px;
        right: 25px;
        width: 25px;
        height: 25px;
        cursor: pointer;
        transition: 0.5s ease all;
    }
    
    .burger {
        width: 25px;
        height: 2px;
        background: #000;
        border-radius: 5px;
        border: none;
        outline: none;
        transition: 0.5s ease all;
    }
    
    .burger::before,
    .burger::after {
        position: absolute;
        content: '';
        width: 25px;
        height: 2px;
        background: #000;
        border-radius: 5px;
        transition: 0.5s ease all;
    }
    
    .burger::before {
        transform: translateY(-8.5px);
    }
    
    .burger::after {
        transform: translateY(8.5px);
    }
}