.contact-page .cwrap {
    justify-content: space-between;
}

.contact-info {
    flex: 1 1 27%;
    max-width: 27%;
    padding: 0 25px;
}

.contact-box {
    border-radius: 8px;
    background-color: #070604;
    padding: 40px;
}

.contact-box h4 {
    margin-bottom: 0;
    padding-bottom: 32px;
    line-height: 1.1;
}

.contact-box .footer-contact {
    max-width: none;
    padding: 0;
}

.contact-box .footer-contact p:last-child {
    margin-bottom: 0;
}

.checkout-section {
    flex: 1 1 62%;
    max-width: 62%;
    padding: 0 185px 0 25px;
    position: relative;
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.checkout-steps:before,
.checkout-steps:after {
    width: 100%;
    background-color: #5F4127;
    height: 3px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    content: "";
}

.checkout-steps:after {
    background-color: #E99E45;
    z-index: 1;
    width: 0;
}

.checkout-step {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid #5F4127;
    font-size: 48px;
    color: #fff;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-weight: 900;
    background-color: #14110B;
    position: relative;
    z-index: 2;
}

.checkout-step.active-step {
    background-color: #E99E45;
    border-color: #E99E45;
    color: #14110B;
}

.step-completed {
    display: none;
    align-items: center;
    justify-content: center;
}

.step-2-active .checkout-step:first-child,
.step-3-active .checkout-step:first-child,
.step-3-active .checkout-step:nth-child(2),
.order-completed .checkout-step {
    background-color: #E99E45;
    border-color: #E99E45;
}

.step-2-active .checkout-step:first-child .step-completed,
.step-3-active .checkout-step:first-child .step-completed,
.step-3-active .checkout-step:nth-child(2) .step-completed,
.order-completed .step-completed {
    display: flex;
}

.step-2-active .checkout-step:first-child .step-number,
.step-3-active .checkout-step:first-child .step-number,
.step-3-active .checkout-step:nth-child(2) .step-number,
.order-completed .step-number {
    display: none;
}

.step-2-active .checkout-steps:after {
    background-color: #E99E45;
    z-index: 1;
    width: 50%;
}

.step-3-active .checkout-steps:after {
    background-color: #E99E45;
    z-index: 1;
    width: 100%;
}

.step2,
.step3,
.step4 {
    display: none;
    position: relative;
}

.step1-heading {
    padding: 80px 0;
}

.step1-heading h2 {
    margin-bottom: 0;
}

.step1-options h5,
.step3-form h5 {
    padding-top: 0;
    margin-bottom: 0;
}

.step1-headings,
.step2-headings {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.step1-headings a,
.step2-headings a {
    flex-grow: 1;
    display: inline-block;
    padding: 22px 32px 22px 60px;
    background-color: #070604;
    position: relative;
    font-size: 20px;
    color: #fff;
}

.step1-headings a:before,
.step2-headings a:before {
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    content: "";
    border-radius: 50%;
}

.step1-headings a:after,
.step2-headings a:after {
    position: absolute;
    top: 50%;
    left: 34px;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #fff;
    content: "";
    border-radius: 50%;
    display: none;
}

.step1-headings a.active-product,
.step2-headings a.active-option {
    background-color: #E99E45;
    color: #14110B;
}

.step1-headings a.active-product:before,
.step2-headings a.active-option:before {
    border-color: #14110B;
    background-color: #14110B;
}

.step1-headings a.active-product:after,
.step2-headings a.active-option:after {
    display: block;
}

.step1-product-list {
    display: none;
    padding-top: 80px;
}

.products-heading {
    padding-top: 0;
}

.products-note {
    background: url('../images/info.png') no-repeat left center / 24px;
    color: #E99E45;
    font-size: 20px;
    padding-left: 36px;
    margin-bottom: 0;
}

.product-list {
    padding-top: 24px;
}

.product-list .cols {
    margin: 0 -8px;
    justify-content: start;
}

.product-list .col3 {
    padding: 0 8px 16px;
}

.product-list .pcard a {
    border: 2px solid #070604;
}

.product-list .pcard a.selected-product-1,
.product-list .pcard a.selected-product-2,
.product-list .pcard a.selected-option {
    border-color: #E99E45;
}

.product-list .pimage {
    padding: 20px;
}

.product-list .pimage {
    height: 300px;
}

.product-list .pdata h2 {
    font-size: 28px;
    font-weight: 600;
    text-transform: none;
    text-align: center;
}

.checkout-buttons {
    text-align: right;
    padding-top: 80px;
}

.checkout-buttons .button {
    padding: 24px 68px;
    margin-left: 16px;
}

.checkout-buttons .button.disabled {
    cursor: default;
    pointer-events: none;
    opacity: 0.6;
}

.checkout-buttons .button.back {
    background-color: #FDEFD1;
    color: #14110B;
}

.step2-options {
    padding-top: 80px;
}

.step2-options h5 {
    margin-bottom: 0;
    padding-top: 0;
}

.step2-headings {
    justify-content: start;
    padding-top: 24px;
}

.step2-headings a {
    flex-grow: 0;
}

.step2-delivery {
    display: none;
    padding-top: 20px;
}

.step2-delivery .select-wrapper {
    margin-top: 24px;
}

.step2-extras {
    padding-top: 80px;
}

.step2-extras h5 {
    padding-top: 0;
    margin-bottom: 0;
}

.step2-extras-toggle,
.step2-product-toggle {
    padding: 24px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.step2-extras-toggle input[type="checkbox"],
.step2-product-toggle input[type="checkbox"] {
    appearance: none;         
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.step2-extras-toggle input[type="checkbox"]:checked,
.step2-product-toggle input[type="checkbox"]:checked {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='12' viewBox='0 0 14 12' fill='none'><path d='M2 6.26841L5.78892 9.51409L12 1.7998' stroke='%2314110B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 12px;
}

.step2-extras-toggle span,
.step2-product-toggle span {
    font-size: 20px;
}

.step3-form-row {
    padding-top: 24px;
}

.row-2,
.row-3,
.tel-code {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.row-2 > div,
.row-3 > div,
.tel-wrap > div {
    flex-grow: 1;
}

.row-2 > div:first-child {
    flex-grow: 0;
}

.select-header {
    padding: 26px 28px;
    border: 1px solid #FDEFD1;
}

.select-header span {
    opacity: 0.5;
}

.select-header.selected span {
    opacity: 1;
}

.step3-form-col .select-wrapper {
    width: 185px;
}

.select-options {
    display: none;
}

.select-options {
    background-color: #14110B;
    position: absolute;
    top: auto;
    left: 0;
    width: 100%;
    z-index: 1;
}

.select-options span {
    display: block;
    padding: 16px 28px;
    border: 1px solid #FDEFD1;
    border-bottom: 0;
    cursor: pointer;
}

.select-options span:hover {
    background-color: #FDEFD1;
    color: #14110B;
}

.select-options span:first-child {
    border-top: 0;
}

.select-options span:last-child {
    border-bottom: 1px solid #FDEFD1;
}

.tel-code {
    background-color: #FDEFD1;
    align-items: center;
    justify-content: center;
}

.tel-code span:first-child {
    color: #14110B;
}

.tel-code span:nth-child(2) {
    position: relative;
    top: 2px;
}

.delicato-loader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(7, 6, 4, 0.85);
	z-index: 10;
	justify-content: center;
	align-items: center;
    display: none;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #dc1f25;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.order-item {
    border-radius: 8px;
    background-color: #070604;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.order-item:last-child {
    margin-bottom: 0;
}

.order-image {
    flex: 1 1 70px;
    max-width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.order-image img {
    max-width: 70px;
}

.order-info {
    flex: 1 1 calc(100% - 70px);
    width: calc(100% - 70px);
}

.order-info h3 {
    font-family: "Sofia Sans", sans-serif;
    color: #E99E45;
    font-size: 28px;
    font-weight: 600;
    text-transform: none;
}

.order-info p {
    margin-bottom: 5px;
}

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

@media screen and (max-width : 1600px) {
    .contact-info {
        flex: 1 1 32%;
        max-width: 32%;
    }

    .checkout-section {
        flex: 1 1 64%;
        max-width: 64%;
        padding-right: 25px;
	}

    .order-item {
        padding: 20px;
        gap: 12px;
    }

    .order-info h3 {
        font-size: 24px;
    }
}

@media screen and (max-width : 1200px) {
    .order-item {
        flex-direction: column;
        align-items: start;
    }
}

@media screen and (max-width : 1024px) {
    .checkout-section {
        padding-right: 25px;
    }
}

@media screen and (max-width : 767px) {
    .contact-box {
        padding: 20px;
    }

    .step1-heading {
        padding: 40px 0 20px;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }

    .step1-headings, .step2-headings {
        flex-direction: column;
    }

    .checkout-buttons,
    .step2-options, .step2-delivery {
        padding-top: 40px;
    }

    .product-list .col3 {
        flex: 1 1 50%;
        max-width: 50%;
    }

    .product-list .pimage {
        height: 200px;
    }

    .checkout-buttons {
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }

    .checkout-buttons .button {
        padding: 20px 40px;
        margin: 0;
        flex-grow: 1;
        text-align: center;
    }

    .row-2, .row-3 {
        flex-direction: column;
        gap: 20px;
    }

    .tel-code {
        padding: 0 10px;
    }

    .step3-form-col .select-wrapper {
        width: 100%;
    }
}