/* Navigation level */
.nav-level {
    width: 100%;
    height: 50px;
    background: #222;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-level span {
    margin: 0 10px;
}

.nav-level span a {
    color: #e0e0e0;
}

.shop-head {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Left Panel */
.wrapper {
    width: 100%;
    min-height: 100vh;
    padding: 0 25px;
    margin: 40px 0;
    display: flex;
    gap: 20px;
}

.left-panel {
    width: 20%;
}

.left-panel-2 {
    width: 40%;
}

.main-panel {
    flex: 1;
}

.left-panel-head {
    font-size: 1.4em;
    font-weight: 700;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #F5EFD7;
    margin-bottom: 20px;
}

.left-panel-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    transition: all 0.6s;
}

.left-panel-body a:hover .category-item {
    background: #096469;
    border-bottom: 1px solid #F5EFD7;
    transition: all 0.3s;
}

.left-panel-2 .socials{
    width: 100%;
}

.contact-info .c-i {
    margin: 10px 0;
}

.social-links {
    /* font-size: 1.2em; */
    display: flex;
    gap: 20px;
}

/* Pagination */
.pagination {
    width: 50%;
    display: flex;
    list-style: none;
    padding: 10px;
    border-radius: 8px;
    margin: 40px auto;
}
.pagination li {
    margin: 0 5px;
}
.pagination a {
    text-decoration: none;
    color: #F5EFD7;
    padding: 8px 12px;
    border: 1px solid #F5EFD7;
    border-radius: 5px;
    transition: 0.3s;
}
.pagination a:hover, .pagination .active a {
    background-color: #096469;
    color: F5EFD7;
}

.product-wrapper {
    width: 80%;
    min-height: 80vh;
    padding: 0 25px;
    margin: 40px auto;
    display: flex;
    gap: 40px;
}

.left-product {
    width: 40%;
}

.right-product {
    width: 50%;
}

.product-info {
    font-size: 1.2em;
    margin-top: 10px;
}

.cat-name {
    margin-top: 10px;
}

.quantity-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.quantity-box {
    display: flex;
    align-items: center;
    background-color: #333;
    border-radius: 5px;
    padding: 5px;
}

.quantity-box button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    padding: 10px 15px;
    cursor: pointer;
}

.quantity-box button:hover {
    background-color: #444;
}

.quantity-box span {
    padding: 10px 15px;
    font-size: 18px;
}

.add-btn {
    width: 300px;
    display: flex;
}

.add-btn a {
    background: #F5EFD7;
    color: #096469;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    margin-top: 20px;
}

.payment-card-box {
    width: 100%;
    background: #06494d;
    text-align: center;
    margin-top: 20px;
    font-size: 0.7em;
    padding: 20px 0;
}

.payment-card-box img {
    margin-bottom: 10px;
}

/* Shopping Cart */
.cart-table-group {
    min-height: 50vh;
    width: 100%;
    padding: 0 20px;
}

.cart-table {
    width: 100%;
    border: 1px solid #4b4b4b;
}

.ct-head {
    width: 100%;
    height: 40px;
    background: #222;
    border: 1px solid #4b4b4b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.ct-body {
    width: 100%;
}

.ct-body .ct-body-line .cart-img {
    width: 60px;
    height: 60px;
}

.ct-body .ct-body-line .cart-img img {
    background-size: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ct-body-line {
    width: 100%;
    display: flex;
    padding: 10px 10px;
    justify-content: space-between;
    border-bottom: 1px solid #4b4b4b;
}

.ct-body-line .product-item {
    flex: 1;
}

.products-item, .price-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.price-item i:hover {
    cursor: pointer;
    color: #d8d8d8;
}

.cart-btns {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
}

.cont-shopping a {
    width: 200px;
    height: 40px;
    border: 1px solid #b3b3b3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cont-shopping a:hover {
    background: #222;
    border: none;
    transition: all 0.3s;
}

.clr-cart {
    margin-top: 20px;
}

.clr-cart a {
    border-bottom: 1px solid #b3b3b3;
    padding-bottom: 5px;
}

.chk-out a {
    width: 200px;
    height: 40px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cart-total-line {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-weight: bold;
}


/* Checkout */
.chkout {
    min-height: 40vh;
    width: 80%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.sh-info {
    width: 60%;
}

.sh-info h3 {
    margin-bottom: 20px;
}

.form-grp {
    width: 100%;
}

.input-grp {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.input-grp-11 {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.input-grp-11 div {
    width: 100%;
}

.input-grp div {
    width: 50%;
}

.input-grp input {
    width: 100%;
    height: 50px;
    padding-left: 10px;
    background: #222;
    border: none;
    color: #F5EFD7;
}

.input-grp-11 input {
    width: 100%;
    height: 50px;
    padding-left: 10px;
    background: #222;
    border: none;
    color: #F5EFD7;
}

.input-grp input::placeholder {
    color: #5a5a5a;
}

.input-grp-11 input::placeholder {
    color: #5a5a5a;
}

.form-grp-2 {
    width: 100%;
    margin-bottom: 20px;
}

.form-grp-2 select, .form-grp-2 textarea {
    width: 100%;
    height: 50px;
    padding-left: 10px;
    background: #222;
    border: none;
    color: #F5EFD7;
}

.form-grp-2 textarea {
    height: 200px;
    padding-top: 10px;
}

.form-grp-2 option {
    background: #096469;
    color: #F5EFD7;
}

.chkout-btn button {
    width: 200px;
    height: 50px;
    background: #222;
    color: #F5EFD7;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.chkout-btn button:hover {
    background: #2e2e2e;
    transition: all 0.3s;
}

/* Order summary */
.summ {
    width: 40%;
}

.summ-box {
    width: 100%;
    padding: 40px;
    box-shadow: 0px 2px 7px -1px rgba(255,255,255,0.75);
    -webkit-box-shadow: 0px 2px 7px -1px rgba(255,255,255,0.75);
    -moz-box-shadow: 0px 2px 7px -1px rgba(255,255,255,0.75);
}

.summ-box h3 {
    margin-bottom: 20px;
}

.item-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding-bottom: 40px;
    border-bottom: 1px solid #868686;
}

.summ-box-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 10px
}

.summ-box-item .s-b-img img {
    width: 100%;
    height: 100%;
    background-size: cover;
    object-fit: cover;
}

.summ-box-item .s-b-img img {
    width: 60px;
    height: 60px;
}

.s-b-det span {
    color: #979797;
}

.shp-fee {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    border-bottom: 1px solid #868686;
}

.sh-fee div:first-child {
    color: #979797;
}

.shp-total {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
}

.shp-total div:last-child {
    font-size: 1.4em;
}

/* Order details */
.payment-section {
    margin-top: 40px;
}

.payment-section ul {
    margin-left: 40px;
    margin-bottom: 20px;
}

.payment-section ul li {
    list-style: disc;
}

.form-group-1 {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.form-group-1 label {
    padding: 10px 20px;
    background: #222;
    margin-top: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.form-group-1 input {
    visibility: hidden;
}

.form-group-1 label span {
    font-size: 0.7em;
    margin-left: 20px;
}

.form-grp-4 {
    width: 50%;
}

.chk-out button {
    width: 200px;
    height: 40px;
    font-family: "Andada Pro", serif;
    font-size: 0.9em;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    color: #F5EFD7;
    border: none;
}

/* Order status */
.order-status {
    padding: 20px;
    padding-bottom: 0;
}

.order-status h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.status-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.status-list::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 4px;
    width: 2px;
    height: 100%;
    background: #fff;
    opacity: 0.4;
    border-left: 2px dotted #fff;
}

.status-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 27px;
}

.status-item-white {
    color: #fff;
}

.status-item-grey {
    color: #808080;
}

.status-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #fff;
}


/* Media Queries */
@media (max-width: 1000px) {
    .chkout {
        width: 100%;
        padding: 0 20px;
    }
    .form-group-1, .form-grp-4 {
        width: 70%;
    }
}

@media (max-width: 950px) {
    .payment-card-box img {
        width: 200px;
    }
}

@media (max-width: 800px) {
    .chkout {
        width: 80%;
        flex-direction: column-reverse;
    }
    .sh-info {
        width: 100%;
    }
    .summ {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .cart-btns {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    .form-group-1,  .form-grp-4 {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .wrapper, .product-wrapper {
        flex-direction: column;
    }
    .left-panel, .left-panel-2, .left-product {
        width: 100%;
    }
    .main-panel, .right-product {
        width: 100%;
    }
    .category-item {
        background: #096469;
        border-bottom: 1px solid #F5EFD7;
    }
    .left-panel-body a:hover .category-item {
        background: #06494d;
        border-bottom: 1px solid #F5EFD7;
        transition: all 0.3s;
    }
}

@media (max-width: 500px) {
    .chkout {
        width: 100%;
        font-size: 0.8em;
    }
    .summ-box {
        padding: 40px 20px;
    }
}