body {
    margin: 0;
    padding: 0; 
    color: #000000;
    background-color: #F5F2EE; 
}

/* NAVIGATION shop */ 
.navbar {
    background: #F5F2EE;             /* from my color theme */
    color: black;
}

.navleft a {
    color: black;
}

.navcenter p {
    font-size: 18px;
    font-weight: 600;
    margin-left: 10px;
    margin-right: 300px;
}

/* SHOP BAGS SECTION */
.bagssection {
    padding: 80px 20px 40px 20px;
    text-align: center;
}

.bagssection h2 {
    font-size: 4.1em;
    font-weight: 700;
    margin-bottom: 60px;
    padding-bottom: 45px;
}

.bagcontainer {
    display: flex;
    justify-content: center; 
    gap: 70px; 
    flex-wrap: wrap;
}

.bagbox {
    max-width: 350px; 
    text-align: left; 
    margin-bottom: 20px;
}

.bagbox img {
    width: 100%;
    height: 450px;
   /* width: 347px; */
    display: block;
    object-fit: cover; 
    margin-bottom: 10px;
}

.bagname {
    font-size: 1.5em; 
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 2px;
    padding-top: 9px;
}

.bagprice {
    font-size: 0.99em; 
    opacity: 0.8;
    letter-spacing: 0.5px;
    font-family: monospace;
    padding-top: 7px;
}

.bagbox p .bagtext {
    font-size: 0.9em;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-top: 12px;
}

.bagtext {
    padding-top: 16px;
    font-size: 1em;
    letter-spacing: 0.3px;
}

/* ORDER BUTTON */
.orderbutton {
    display: inline-flex; 
    align-items: center;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    font-family: monospace;
    font-size: 0.9em;
    font-weight: 700;
    border-radius: 14px;
    transition:  0.3s;
    letter-spacing: 1px;
    padding-right: 25px;
    
}

.orderbutton {
   margin-top: 28px;
}

.orderbutton:hover {
    background-color: #333;
}


/* FOOTER FOR SHOP PAGE */
:root {
    --scroll-color: #C8B8A8; 
    --text-color: #F5F2EE; 
}

.footer {
    background-color: #C8B8A8;
}

.footersection a {
    background-color: #F5F2EE;
    color: #C8B8A8;
}

.footersection a:hover {
    background-color:  #d2cfcc;
}


