@font-face {
    font-family: "Optima";
    font-style: normal;
    font-weight: 400;
    src: local("Optima"), url("../fonts/optima-normal.woff") format("woff");
}

@font-face {
    font-family: "Optima Medium";
    font-style: normal;
    font-weight: 500;
    src: local("Optima Medium"),
        url("../fonts/optima-medium.woff") format("woff");
}

@font-face {
    font-family: "Optima Bold";
    font-style: normal;
    font-weight: bold;
    src: local("Optima Bold"), url("../fonts/optima-bold.woff") format("woff");
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    font-size: 14px;
    scroll-behavior: smooth;
    --accent: #ee4e34;
    --primary: #121112;
    --white: #ffffff;
    --text: #747579;
    --success: #4caf50;
}

body {
    margin: 0;
    font-family: "Optima";
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary);
    background-color: var(--white);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(var(--primary), 0);
}

li {
    list-style: none;
}

ol,
ul,
dl,
p,
h1,
h2,
h3,
h4,
h5,
figure {
    padding: 0;
    margin: 0;
}
h1,
h2,
h3,
h4,
h5 {
    font-weight: 600;
    line-height: 24px;
}
h1,
h2 {
    font-size: 18px;
    margin-bottom: 2rem;
}
a {
    text-decoration: none;
    outline: 0;
}

p {
    line-height: 24px;
}

[hidden] {
    display: none !important;
}

/* Display */
.d-flex {
    display: flex;
}
.justify-content-center {
    justify-content: center;
}
.justify-space-between {
    justify-content: space-between;
}
.pos-r {
    position: relative;
}
.align-items-center {
    align-items: center;
}
.d-inline-block {
    display: inline-block;
}
.d-block {
    display: block;
}
.d-none {
    display: none;
}
.hide {
    display: none !important;
}

/* Text */
.text {
    color: #747579;
}
.t-accent {
    color: var(--accent);
}
.t-primary {
    color: var(--primary);
}
.t-right {
    text-align: right;
}
.t-left {
    text-align: left;
}
.t-center {
    text-align: center;
}
.t-white {
    color: var(--white);
}
.t-upper {
    text-transform: uppercase;
}
.fw-medium {
    font-weight: 600;
}
.small {
    font-size: 10px;
    line-height: 14px;
}

/* Background */
.bg-primary {
    background: var(--primary);
}
.bg-accent {
    background: var(--accent);
}
.bg-light {
    background: #f5f7f9;
}

/* Margin */
.mt-2 {
    margin-top: 0.5rem;
}
.mt-5 {
    margin-top: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 500;
    padding: 12px 20px;
    text-align: center;
    border-radius: 4px;
    color: var(--white);
    vertical-align: middle;
    user-select: none;
    border: 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    font-family: "Optima";
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.15),
        0 1px 1px rgba(38, 31, 68, 0.075);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn.round {
    border-radius: 25px;
}
.btn-accent {
    background: var(--accent);
    color: var(--peach);
}
.btn-primary {
    background: var(--primary);
}
.btn-accent-border {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: var(--white);
}
.btn-primary-border {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: var(--white);
}
.btn-group {
    justify-content: end;
    column-gap: 20px;
}
.btn.disabled {
    cursor: not-allowed;
    opacity: 0.65;
    pointer-events: none;
}

/* Form Controls */
.select-custom {
    position: relative;
}
.form-control {
    border: 1px solid #d4d4e1;
    font-size: 14px;
    padding: 1rem;
    width: 100%;
    font-family: "Optima";
    background-color: var(--white);
    position: relative;
    border-radius: 4px;
}
select.form-control {
    -webkit-appearance: none;
    color: var(--text);
}
.select-custom:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    pointer-events: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: 50%;
    right: 16px;
    border-top: 8px solid rgba(0, 0, 0, 0.24);
    margin-top: -4px;
}
.form-label {
    margin-bottom: 8px;
    display: block;
}
.form-control:focus-visible {
    outline: 0;
}
.field-error {
    font-size: 12px;
    color: #f44336;
}
.custom-radio{

    position: relative;

    color: #616161;

    font-size: 16px;

    width: 100%;

    padding: 20px 15px 20px 38px;

    font-family: "Optima";

    z-index: 1;

    display: inline-block;

    vertical-align: middle;

    cursor: pointer;

    font-weight: 400;

    margin-bottom: 12px;

    line-height: 18px;

}

.custom-indicator {

    position: absolute;

    border: 1px solid #ccc;

    border-radius: 50%;

    top: 23px;

    left: 10px;

    height: 14px;

    width: 14px;

}

.custom-indicator:after {

    position: absolute;

    left: 2px;

    top: 2px;

    height: 8px;

    width: 8px;

    border-radius: 50%;

    border: 2px solid #fff;

    background-color: var(--accent);

}

.custom-radio .label-border {
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    border-radius: 4px;
    border: 1px dashed #dfdfdf;
    transform: translate(-50%, -50%);
}
.custom-radio input:checked~.custom-indicator:after {
    content: '';
    display: block;
}
.custom-radio input:checked~.custom-indicator {
    background: var(--accent);
    border-color: var(--accent);
}
.custom-radio input:checked~.label-border{
    border: 1px solid var(--accent);
}
.custom-radio input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* col */
[class*="col-"] {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}
.col-12 {
    width: 100%;
}
.row {
    display: flex;
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.container {
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}
.section {
    padding: 40px 0;
}
.sec-title {
    color: var(--primary);
    margin-bottom: 8px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.row-direction {
    flex-direction: column;
}
.is_web {
    display: none;
}

/* Header */
.header-fixed {
    position: relative;
    padding: 2px 0 4px;
    width: 100%;
    background-color: var(--white);
    font-size: 1rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    z-index: 99;
    transition: top 0.3s ease-in-out;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.header-fixed .brand-logo {
    width: 150px;
}

/* Products */
.product-card-wrap {
    gap: 30px 16px;
    flex-wrap: wrap;
}
.product-card-wrap li {
    width: calc(50% - 8px);
}
.product-card-wrap .prod-info {
    flex-direction: column;
}
.product-card h4 {
    font-weight: bold;
    margin-bottom: 4px;
}
.product-card .price {
    font-size: 12px;
    color: var(--text);
}
.product-card .btn {
    border-radius: 0;
    padding: 5px 16px;
    height: 28px;
    font-weight: bold;
    border-color: #bdbdbd;
    white-space: nowrap;
}
.product-card .btn img {
    margin-left: 4px;
}
.checkout-form {
    margin-top: 2rem;
}
.checkout-form .row {
    flex-wrap: wrap;
    row-gap: 20px;
}
.summary-wrap {
    margin-top: 2rem;
}
.summary-main {
    margin: 40px 0 0 0;
}
.product-details {
    border: 1px solid #d4d4e1;
    padding: 18px 16px;
    border-radius: 4px;
}
.product-details li {
    border-bottom: 1px solid #d4d4e1;
    padding-bottom: 15px;
    margin-bottom: 15px;
    flex-direction: column;
    row-gap: 22px;
}
.product-details .price {
    font-size: 14px;
    color: var(--text);
    margin-top: 8px;
    display: block;
}
.product-details .prod-wrap {
    width: 100%;
}
.product-details .right-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.prod-info .qty-wrap {
    justify-content: space-between;
    display: flex;
    margin-top: 6px;
}
.prod-info .btn-add {
    margin-top: 6px;
}
.qty-wrap .btn {
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 0;
    border-color: #bdbdbd;
}
.qty-wrap .qty {
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid transparent;
}
.product-details li:last-child {
    border: 0;
    padding: 0;
    margin: 0;
}
.coupon-code {
    margin: 1rem 0 2rem;
    position: relative;
}
.coupon-code .btn-apply {
    right: 0;
    top: 0px;
    box-shadow: none;
    position: absolute;
    padding: 13px 2rem;
    color: var(--primary);
    text-transform: capitalize;
    border: 1px solid #d4d4e1;
}
.coupon-discount {
    color: var(--success);
}
.coupon-code .code {
    position: absolute;
    z-index: 99;
    border: 1px dashed var(--success);
    padding: 8px 30px;
    top: 6px;
    left: 16px;
    color: var(--success);
    border-radius: 4px;
}
.subtotal {
    margin-left: auto;
}
.subtotal li {
    margin-bottom: 20px;
}
.subtotal .total {
    border-top: 1px solid #bdbdbd;
    padding-top: 20px;
    font-weight: bold;
}
.thank-you h2 {
    margin: 30px 0 15px;
}
.thank-you .btn {
    margin-top: 30px;
}
.thank-you img {
    width: 150px;
}

footer {
    background-color: #f8f8f8;
}
footer a {
    color: var(--text);
    margin: 0 10px;
}
footer .brand-logo {
    width: 200px;
}
footer .container {
    flex-direction: column;
    row-gap: 20px;
}
.footer-info {
    padding: 20px 0;
    border-bottom: 1px solid #dfdfdf;
}
.footer-copy {
    padding: 20px 0;
}
.content-page p {
    text-align: left;
}
.content-page p,
.content-page h4,
.content-page h2 {
    margin-bottom: 20px;
}
.screen-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 999;
}
.screen-loader:before {
    content: "";
    background: url(../images/screen-loader.gif) no-repeat bottom center;
    -webkit-background-size: cover;
    background-size: cover;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 120;
    display: block;
}
.offer-strip {
    background-color: #ff000014;
    border-radius: 4px;
    padding: 10px 12px 8px;
    margin-bottom: 30px;
    color: #000;
    line-height: 1.5;
}
.delivery-charges-text {
    background-color: #ff00000f;
    padding: 10px 12px;
    border-radius: 4px;
    margin-top: 20px;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 35px;
}
.delivery-charges-text i {
    background: #ff000080;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 22px;
    color: #ffe8e8;
}
.delivery-charges-text.free {
    padding: 8px 12px;
    background-color: #4caf5029;
}
.delivery-charges-text.free i {
    background-color: #66bb6a;
    color: #fff;
}
.wapp-msg {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    background: #40c351;
    border-radius: 4px;
    padding: 3px;
    transition: all 0.3s ease-in-out;
}
.wapp-msg img {
    display: block;
}
@media only screen and (max-width: 768px) {
    .row-direction {
        padding-bottom: 80px;
    }
    .product-card h4 {
        min-height: 48px;
    }
    #checkout .btn-group {
        position: absolute;
        bottom: 0;
        width: calc(100% - 16px);
    }
    .product-details li {
        column-gap: 12px;
    }
    .prod-main .prod-details {
        margin-top: 30px;
    }
    .footer-info .contact-wrap span {
        width: 100px;
    }
    .footer-info .contact-info {
        gap: 10px;
        display: flex;
        flex-wrap: wrap;
    }
}
@media only screen and (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media only screen and (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    .is_mobile {
        display: none;
    }
    .is_web {
        display: block;
    }
}
@media only screen and (min-width: 992px) {
    :root {
        font-size: 16px;
    }
    .container {
        max-width: 960px;
    }
    .screen-loader:before {
        width: 150px;
        height: 150px;
    }
    .section {
        padding: 70px 0;
    }
    h1,
    h2 {
        font-size: 1.7rem;
    }
    .btn {
        font-size: 16px;
    }
    .btn-next {
        width: auto;
        padding: 14px 50px;
    }
    .col-lg-6 {
        width: 50%;
    }
    .row-direction {
        flex-direction: row;
    }
    .header-fixed {
        padding: 1.5rem 0 1.75rem;
    }
    .header-fixed .brand-logo {
        width: 300px;
    }
    .product-card-wrap {
        margin-top: 2rem;
        column-gap: 30px;
    }
    .product-card-wrap .prod-info {
        flex-direction: row;
        column-gap: 15px;
        justify-content: space-between;
    }
    .product-card .price {
        font-size: 16px;
    }
    .product-card-wrap li {
        width: calc(25% - 25px);
    }
    .product-details {
        padding: 18px 25px;
    }
    .product-details li {
        flex-direction: row;
    }
    .product-details .right-panel {
        flex-direction: column;
        align-items: end;
        row-gap: 20px;
    }
     #checkout h1, #checkout h2{
        font-size: 1.4rem;
    }
    .checkout-form {
        margin-top: 2rem;
    }
    .checkout-form .row {
        row-gap: 30px;
    }
    .summary-main {
        padding-left: 80px;
        margin: 0 0 0 80px;
        border-left: 1px solid #d4d4e1;
    }
    .coupon-code .btn-apply {
        padding: 15px 2rem;
    }
    .subtotal {
        width: 70%;
        padding: 0 25px;
    }
    .thank-you {
        min-height: 650px;
    }
    .thank-you img {
        width: 200px;
    }
    footer .container {
        flex-direction: row;
    }
    footer .brand-logo {
        width: 300px;
    }
    .footer-info {
        padding: 40px 0;
    }
    .content-page h4 {
        font-size: 20px;
    }
    .content-page p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .offer-strip {
        padding: 20px 12px 18px;
        text-align: center;
        margin-bottom: 60px;
    }
    .delivery-charges-text {
        margin: 30px 0 60px;
        column-gap: 20px;
        padding: 18px 20px;
    }
    .delivery-charges-text.free {
        padding: 12px 20px;
    }
    .wapp-msg {
        bottom: 70px;
        right: 40px;
        padding: 3px;
    }
    .wapp-msg img{
        width: 60px;
        height: 60px;
    }
}
@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media only screen and (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}
