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

body {
    font-family: Arial, sans-serif;
    background: #031514;
    color: white;
}


/* HEADER */

.navbar {
    height: 70px;

    display: flex;
    align-items: center;

    padding: 0 6%;

    background: #031010;

    border-bottom: 1px solid #12433f;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #00e6d0;
}

.logo small {
    display: block;

    font-size: 8px;

    letter-spacing: 3px;

    margin-top: 3px;
}

.navbar nav {
    display: flex;

    gap: 30px;

    margin-left: 90px;
}

.navbar nav a {
    color: white;

    text-decoration: none;

    font-size: 14px;
}

.navbar nav a:hover {
    color: #00e6d0;
}

.nav-right {
    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 22px;
}

.nav-right > a {
    color: #00e6d0;

    font-size: 21px;

    text-decoration: none;
}

.search {
    width: 270px;

    height: 38px;

    border: 1px solid #17645d;

    border-radius: 25px;

    display: flex;

    align-items: center;

    padding: 0 15px;
}

.search input {
    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    color: white;
}

.search input::placeholder {
    color: #777;
}

.search i {
    color: #00e6d0;
}


/* CHECKOUT HEADER */

.checkout-header {
    text-align: center;

    padding: 45px 20px 35px;
}

.checkout-header > p {
    color: #00e6d0;

    font-size: 11px;

    letter-spacing: 4px;

    margin-bottom: 12px;
}

.checkout-header h1 {
    font-size: 38px;
}

.checkout-header h1 span {
    color: #00e6d0;
}

.steps {
    margin-top: 25px;

    display: flex;

    justify-content: center;

    gap: 35px;

    color: #777;

    font-size: 13px;
}

.steps .active {
    color: #00e6d0;
}


/* CHECKOUT AREA */

.checkout-area {
    width: 88%;

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.5fr 0.8fr;

    gap: 30px;

    padding-bottom: 60px;
}


/* FORM BOX */

.form-box {
    background: #061e1c;

    border: 1px solid #12615a;

    border-radius: 10px;

    padding: 25px;

    margin-bottom: 20px;
}

.form-box h2 {
    font-size: 20px;

    margin-bottom: 25px;
}

.form-box h2 i {
    color: #00e6d0;

    margin-right: 8px;
}


/* FORM */

.row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;

    color: #bbb;

    font-size: 12px;

    margin-bottom: 7px;
}

.field input,
.field textarea {
    width: 100%;

    background: #031514;

    border: 1px solid #12615a;

    border-radius: 6px;

    padding: 13px;

    color: white;

    outline: none;

    font-family: Arial, sans-serif;
}

.field textarea {
    height: 90px;

    resize: none;
}

.field input:focus,
.field textarea:focus {
    border-color: #00e6d0;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #666;
}


/* PAYMENT */

.payment-option {
    display: block;

    padding: 15px;

    margin-bottom: 10px;

    background: #031514;

    border: 1px solid #12615a;

    border-radius: 7px;

    cursor: pointer;
}

.payment-option:hover {
    border-color: #00e6d0;
}

.payment-option input {
    accent-color: #00e6d0;
}

.payment-option span {
    margin-left: 10px;

    font-size: 13px;
}

.payment-option i {
    color: #00e6d0;

    margin-right: 10px;
}


/* ORDER SUMMARY */

.order-summary {
    height: fit-content;

    background: #061e1c;

    border: 1px solid #12615a;

    border-radius: 10px;

    padding: 25px;
}

.order-summary h2 {
    font-size: 21px;

    margin-bottom: 20px;
}


/* PRODUCT */

.product {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 0;

    border-bottom: 1px solid #103d39;
}

.product-image {
    width: 70px;

    height: 65px;

    background: #031514;

    border-radius: 6px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.product-image img {
    width: 100%;

    height: 100%;

    object-fit: contain;

    padding: 5px;
}

.product h3 {
    font-size: 13px;

    margin-bottom: 5px;
}

.product p {
    color: #888;

    font-size: 11px;

    margin-bottom: 5px;
}

.product strong {
    color: #00e6d0;

    font-size: 13px;
}


/* SUMMARY */

.line {
    height: 1px;

    background: #12615a;

    margin: 20px 0;
}

.summary-row {
    display: flex;

    justify-content: space-between;

    color: #aaa;

    font-size: 13px;

    margin-bottom: 13px;
}

.summary-row strong {
    color: white;
}

.summary-row .free {
    color: #00e6d0;
}

.total {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 20px;
}

.total span {
    font-size: 17px;
}

.total strong {
    color: #00e6d0;

    font-size: 22px;
}


/* PLACE ORDER */

.place-order {
    width: 100%;

    height: 48px;

    border: none;

    border-radius: 25px;

    background: #00e6d0;

    color: #031514;

    font-size: 14px;

    font-weight: bold;

    cursor: pointer;
}

.place-order:hover {
    background: #20ffe8;
}

.place-order i {
    margin-left: 8px;
}


/* BACK */

.back-cart {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    margin-top: 17px;

    color: #00e6d0;

    text-decoration: none;

    font-size: 13px;
}


/* FOOTER */

footer {
    min-height: 100px;

    padding: 25px 7%;

    background: #02100f;

    border-top: 1px solid #12433f;

    display: flex;

    align-items: center;
}

.footer-logo {
    font-size: 24px;

    font-weight: bold;
}

.footer-logo span {
    color: #00e6d0;
}

.footer-logo small {
    display: block;

    font-size: 8px;

    letter-spacing: 3px;

    margin-top: 5px;
}

.social {
    margin-left: auto;

    display: flex;

    gap: 20px;
}

.social i {
    font-size: 18px;
}

.footer-right {
    margin-left: 40px;

    padding-left: 30px;

    border-left: 1px solid #12615a;

    color: #bbb;

    font-size: 12px;
}

.copyright {
    padding: 12px 7%;

    background: #010908;

    color: #999;

    font-size: 12px;

    display: flex;

    justify-content: space-between;
}


/* MOBILE */

@media (max-width: 900px) {

    .navbar nav,
    .search {
        display: none;
    }

    .checkout-area {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .row {
        grid-template-columns: 1fr;
    }

    .steps {
        gap: 12px;

        flex-wrap: wrap;
    }

    footer,
    .copyright {
        flex-direction: column;

        gap: 20px;

        text-align: center;
    }

    .social {
        margin-left: 0;
    }

    .footer-right {
        margin-left: 0;

        padding-left: 0;

        border-left: none;
    }

}