@font-face {
    font-family: 'Hind-Bold';
    src: url('../fonts/Hind-Bold.eot');
    src: url('../fonts/Hind-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Hind-Bold.woff2') format('woff2'),
        url('../fonts/Hind-Bold.woff') format('woff'),
        url('../fonts/Hind-Bold.ttf') format('truetype'),
        url('../fonts/Hind-Bold.svg#Hind-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hind-Regular';
    src: url('../fonts/Hind-Regular.eot');
    src: url('../fonts/Hind-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Hind-Regular.woff2') format('woff2'),
        url('../fonts/Hind-Regular.woff') format('woff'),
        url('../fonts/Hind-Regular.ttf') format('truetype'),
        url('../fonts/Hind-Regular.svg#Hind-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hind-Medium';
    src: url('../fonts/Hind-Medium.eot');
    src: url('../fonts/Hind-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Hind-Medium.woff2') format('woff2'),
        url('../fonts/Hind-Medium.woff') format('woff'),
        url('../fonts/Hind-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora-Bold';
    src: url('../fonts/Lora-Bold.eot');
    src: url('../fonts/Lora-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lora-Bold.woff2') format('woff2'),
        url('../fonts/Lora-Bold.woff') format('woff'),
        url('../fonts/Lora-Bold.ttf') format('truetype'),
        url('../fonts/Lora-Bold.svg#Lora-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora-Regular';
    src: url('../fonts/Lora-Regular.eot');
    src: url('../fonts/Lora-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lora-Regular.woff2') format('woff2'),
        url('../fonts/Lora-Regular.woff') format('woff'),
        url('../fonts/Lora-Regular.ttf') format('truetype'),
        url('../fonts/Lora-Regular.svg#Lora-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora-SemiBold';
    src: url('../fonts/Lora-SemiBold.eot');
    src: url('../fonts/Lora-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lora-SemiBold.woff2') format('woff2'),
        url('../fonts/Lora-SemiBold.woff') format('woff'),
        url('../fonts/Lora-SemiBold.ttf') format('truetype'),
        url('../fonts/Lora-SemiBold.svg#Lora-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    /* font variables */
    --Lora-bold: 'Lora-Bold';
    --Lora-regular: 'Lora-Regular';
    --Lora-semibold: 'Lora-SemiBold';
    --Hind-bold: 'Hind-Bold';
    --Hind-regular: 'Hind-Regular';
    --Hind-medium: 'Hind-Medium';

    /* colors variables */
    --primary-color: #E83345;
    --white: #fff;
    --black: #030303;
    --light-bg: #F5F4F4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: var(--Hind-regular);
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
figure,
label,
address {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--Lora-bold);
    color: var(--black);
}

p {
    font-size: 18px;
    font-family: var(--Hind-regular);
    color: var(--black);
    margin-bottom: 0;
}

input::placeholder {
    opacity: 1;
}

input:focus-visible,
textarea:focus-visible {
    box-shadow: unset;
    outline: unset;
}

a,
button,
li {
    transition: 0.2s ease-in;
}

a {
    text-decoration: unset;
}

a:hover {
    text-decoration: none;
}

button:focus {
    outline: unset;
}

.c-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---------------------header css---------------------------- */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 2;
    background-color: #fff;
}

.nav-div {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar-brand img {
    max-width: 150px;
}

.nav-link {
    font-size: 15px;
    text-transform: uppercase;
    color: #000;
    border-bottom: 2px solid transparent;
    font-family: var(--Hind-medium);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    border-bottom: 2px solid #030303;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--primary-color);
    border-bottom: 2px solid #030303;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--primary-color);
    border-bottom: 2px solid #030303;
}



.searc-bar {
    display: flex;
    align-items: center;
    background-color: #E9E9E9;
    border-radius: 30px;
    padding: 5px;
}


.searc-bar input[type="text"] {
    padding: 10px;
    background: transparent;
    border: unset;
    color: #000;
    font-size: 14px;
    width: 100px;
}

.navbar-toggler {
    background-color: var(--white);
}

.cart-main {
    background-color: transparent;
    border: unset;
    margin-left: 10px;
}

.sign-up-btn {
    color: #FFFFFF;
    background-color: #E83345;
    border-radius: 19px;
    box-shadow: 0px 2px 10px 4px rgba(232.00000000000006, 50.999999999999964, 68.9999999999999, 0.44);
    padding: 13.5px 30px;
    width: 170px;
    display: block;
    text-align: center;
    margin-left: 10px;
}

/* ---------------------header css---------------------------- */
/* -------------------- footer css ------------------------- */
footer {
    background: #000;
    padding: 50px 0 20px 0;
}

.footer-links h5 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-family: var(--barlow-medium);
    text-transform: capitalize;
}

.footer-links a img {
    margin-right: 10px;
}

footer p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 0;
}

.news-latter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.news-latter-input form {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.news-latter-input .form-control::placeholder {
    color: #000;
    opacity: 1;
}

.news-latter-input .form-control {
    background: #fff;
    border: unset;
    width: 600px;
    border-radius: 30px;
    padding: 15px;
}

.blue-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 15px;
    border-radius: 30px;
    margin-left: 10px;
    border: 1px solid transparent;
    width: 180px;
}

.f-social-media {
    gap: 8px;
}

.f-social-media a {
    background: #fff;
    height: 35px;
    width: 35px;
    border-radius: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.f-social-media a img {
    margin: 0;
}

.f-logo {
    max-width: 250px;
}

footer .login-footer {
    padding: 20px 0;
    margin-top: 50px;
}

.login-footer ul {
    display: flex;
    justify-content: center;
}

footer .login-footer ul li,
footer .login-footer ul li a {
    color: var(--white);
}

.f-social-media.d-flex.align-items-center a {

    background-color: var(--primary-color);
    color: #fff;
}

.news-letter {
    text-align: center;
    margin-bottom: 50px;
}

.news-letter .footer-links h5 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 15px;
}

/* -------------------- footer css ------------------------- */

/* ------------------- banner start css ------------------- */
.banner-sec {
    background-size: cover !important;
    width: 100%;
    padding: 100px 0;
}

.section-title {
    color: #fff;
    font-size: 54px;
}

.banner-sec p {
    color: #fff;
    font-size: 18px;
    margin: 10px 0 20px 0;
}

.red-btn {
    color: #fff;
    background-color: var(--primary-color);
    font-size: 18px;
    padding: 10px;
    border-radius: 2px;
    width: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-color: transparent;
    transition: 0.5s all;
}


/* ------------------- banner end css ------------------- */

.center-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
}

.center-title .section-title {
    color: #fff;
    font-size: 30px;
}

.center-title img {
    margin-top: 15px;
}

.mid-section {
    padding: 100px 0;
    background-size: cover !important;
    background-attachment: fixed !important;
}

.product-box {
    margin-bottom: 30px;
    position: relative;
}

.product-box-img img {
    width: 100%;
}

.name-price h4 {
    color: #fff;
    font-size: 16px;

}

.name-price {
    width: 80%;
}

.product-box-btn {
    width: 20%;
    display: flex;
    justify-content: flex-end;
}


.product-box-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #212121;
    padding: 10px 15px;
}

.product-box-btn .red-btn {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 30px;
    padding: 5px;
    transition: 0.3s all;
    max-width: 60px;
    height: 60px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.show-all .red-btn {
    width: 110px;
}

.low-stock {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 30px;
}

.low-stock p {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 12px;
    text-transform: capitalize;

}

.product-box-img {
    position: relative;
}

.pre-order {
    background: #958E09;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 3px 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.show-all {
    margin-bottom: 50px;
}

.sub-banner-sec {
    background-size: cover !important;
    padding: 60px 0;
}

.price {
    font-size: 16px;
    color: #fff;
    margin-top: 10px;
    display: block;
}

.wishlist {
    position: absolute;
    right: 10px;
    top: 10px;
}

.add-fav {
    padding: 5px;
    cursor: pointer;
    border: 1px solid #fff;
    transition: all 0.5s ease;
    border-radius: 50px;
    box-shadow: inset 0 -1px 1px #eee;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.add-fav .fa-heart {
    font-size: 24px;
    color: #fff;
    position: relative;
    transition: all 0.5s ease-in-out;
}

.add-fav .icon-plus-sign {
    font-size: 10px;
    color: #333;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    bottom: 2px;
    right: 2px;
    height: 11px;
    width: 11px;
    line-height: 11px;
    text-align: center;
    transition: all 1s ease-in-out;
}

.add-fav input[type=checkbox] {
    position: absolute;
    opacity: 0;
}

.add-fav input[type=checkbox]:checked+.fa-heart {
    color: var(--primary-color);
}


.about-details {
    margin-bottom: 20px;
}

.about-details h4 {
    color: #fff;
    font-size: 35px;
}

.about-details span {
    color: #fff;
    font-size: 26px;
}

.about-details p {
    color: #fff;
}

.about-details ul {
    padding-left: 30px;
}

.about-details ul li {
    color: #fff;
    font-size: 18px;
    list-style: disc;
}

.about-form {
    margin-top: 50px;
}

.about-form span {
    color: var(--primary-color);
    font-size: 18px;
}

.about-form h5 {
    color: #fff;
    font-size: 40px;
}

.about-form .form-group {
    margin-bottom: 20px;
}

.about-form .form-control {
    border-radius: 20px;
    height: 45px;
}

.about-form textarea {
    height: 80px !important;
}

.about-form .red-btn {
    border: 1px solid #fff;
    border-radius: 15px;
}

.gallery-slider {
    margin-bottom: 20px;
}

.gallery-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 1600px;
    margin-left: 0;
}

.gallery-slider .owl-nav img {
    width: 15px !important;
}

.gallery-img img {
    max-height: 230px;
    object-fit: cover;
    object-position: top;
}



.first-section {
    display: flex;
    justify-content: flex-end;
    position: relative;
    align-items: center;
}

.f-left-content {
    background: var(--primary-color);
    padding: 50px;
    position: absolute;
    left: 0;
    width: 60%;
    box-shadow: 10px -10px 0px 0px rgba(255, 0, 0, 0.5);
}

.f-left-content h5 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}

.f-left-content p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.second-section {
    margin: 100px 0;
}

.second-section .f-left-content {
    position: unset;
    width: 100%;
    box-shadow: unset;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.second-section .f-right-img img {
    width: 100%;
}

.service-forn {
    background-color: #00000030;
    padding: 50px 0;
}

.sign-up-page {
    padding: 50px 100px 100px 100px;
    border-radius: 50px;
}

.sign-up-page form {
    padding: 50px;
    border: 1px solid #ffff;
}

.sign-up-page .about-form .form-group label {
    color: #fff;
    margin-bottom: 15px;
}

.sign-up-page .red-btn {
    width: 130px;
}

.red-btn:hover {
    border-color: transparent;
}

.forgott-password {
    color: var(--primary-color)
}


.check-box input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.check-box label {
    position: relative;
    cursor: pointer;
}

.check-box label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #fFF;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.check-box input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.product-main .center-title {
    align-items: start;
}

.product-slider img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 0;
}

.product-thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    object-position: top;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid transparent;
}

.product-thumb .active-thumb img {
    border-color: var(--primary-color);
}

.product-right-deatils h2 {
    color: #fff;
    font-size: 34px;
}

.product-right-deatils h2,
.product-right-deatils p,
.product-right-deatils span {
    color: #fff;
}

.product-right-deatils span {
    font-size: 27px;
    margin-top: 21px;
    display: block;
}

.product-option {
    margin-top: 20px;
}

.product-option .form-label {
    color: #fff;
}

.option-btn input[type="radio"] {
    display: none;
    /* hide default radio */
}

.option-btn label {
    border: 2px solid #ccc;
    padding: 5px 50px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    color: #fff;
    border-radius: 30px 0 0 30px;
    text-transform: capitalize;
}

.option-btn:last-child label {
    border-radius: 0 30px 30px 0;
}

.option-btn input[type="radio"]:checked+label {
    border-color: #FFFFFF;
    background: var(--primary-color);
    color: #fff;
}

.delivery-options {
    display: flex;
    align-items: center;
}

.cart-item-number {
    border: 1px solid #fff;
}

.add-to-cart {
    margin: 15px 0;
    display: flex;
    gap: 20px;
}


.form-control.cart-item-number {
    width: 140px;
    background: transparent;
    border-radius: 30px;
    border: 2px solid #fff;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    font-size: 20px;
}

.cart-item-n-bnt {
    border: 2px solid #fff;
    background-color: transparent;
}

.red-btn.cart-item-n-bnt {
    border-radius: 30px;
    width: 240px;
}

.checkout-btn .red-btn {
    width: 400px;
    border-radius: 30px;
    text-transform: uppercase;
}

.red-btn.cart-item-n-bnt:hover {
    border-color: var(--primary-color);
}

.product-inner {
    margin-bottom: 70px;
}

.form-control.cart-item-number::placeholder {
    color: #fff;
    opacity: 1;
}

.account-sec {
    background-color: #00000030;
    padding: 100px;
    border-radius: 30px;
}

.nav-pills .nav-link {
    background: var(--primary-color);
    padding: 10px 15px;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 10px;
    border: 1px solid #fff;
    color: #fff;
    transition: 0.3s all;
}

.nav-pills .nav-link:hover {
    border: 1px solid transparent;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid transparent;
}

.my-account-content {
    padding: 50px;
    min-height: 430px;
    background: #fff;
    border-radius: 30px;
}

.no-product {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.no-product p {
    color: #000;
    margin-bottom: 20px;
    font-size: 24px;
}

.shoping-cart h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.pd-img {
    max-width: 60px;
    margin: 0 auto;
}

.shoping-cart span {
    color: #000;
}

.btn.red-btn:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);

}

.address-tab .red-btn {
    width: 100%;
    margin: 15px 0;
}

.address-tab h5,
.address-tab p {
    text-align: center;
}

.no-product .red-btn {
    width: 200px;
}

.btn.btn-sm.btn-primary.red-btn-w {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.wishlist-sec {
    background-color: #fff;
    padding: 50px 0;
}

