@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

:root {
    --primary-body: #F4E4D5;
    --primary-black: #323A47;
    --primary-white: #fff;
    --primary-gray: rgba(0, 0, 0, 0.6);
    --primary-dark-gray: #ADBDBF;
    --primary-brown: #D27F33;
    --primary-dark-black: #282e38;
    --primary-text-font: 'Montserrat', sans-serif;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: var(--primary-text-font);
    position: relative;
    z-index: 1;
    color: var(--primary-black);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_slide_subcon {
    overflow: hidden;
    margin-left: 20px;
}

.product_slide_subcon {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.productslider {
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.product_img_con a {
    display: flex;
    object-fit: cover;
    overflow: hidden;
}

.product_img_con {
    overflow: hidden;
    position: relative;
    border: 1px solid #ded4ca;
}

.product_price {
    padding: 10px 0px;
}

.product_pri {
    position: relative;
    font-weight: 600;
}

.product_pri::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 30px;
    background: var(--primary-black);
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
}

.brand_bottom_left {}

.product_title {
    margin-right: 40px;
    font-size: 18px;
}

.product_image {
    transition: transform 0.3s ease-in-out;
}

.productslider:hover .product_image {
    transform: scale(1.04);
    transition: transform 0.3s ease-in-out;
}

.product_img_con {
    position: relative;
}

.pro_add_to_cart {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.pro_add_to_cart button {
    height: 40px;
    width: 120px;
    border-radius: 20px;
    cursor: pointer;
    background-color: var(--primary-black);
    border: none;
    outline: 0px;
    color: #fff;

}

.product_varient button {
    border: 2px solid var(--primary-brown);
    color: var(--primary-brown);
    font-weight: 600;
    padding: 3px 5px;
    margin: 10px 0px;
    background: transparent;
    border-radius: 2px;
    cursor: pointer;
}

.btnwishlist {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.productslider_stock {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 4;
    background: var(--primary-brown);
    color: var(--primary-white);
    padding: 3px 10px;
    font-weight: 600;
    font-size: 13px;
    border-radius: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product_rating {
    position: absolute;
    bottom: 50px;
    right: 10px;
    color: var(--primary-black);
    font-weight: 700;
}

.btnwishlist {
    background-color: transparent;
    border: none;
    outline: 0px;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary-black);
    opacity: 0;
    transform: translateY(10px);
    -webkit-transition: transform 549ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
    -moz-transition: transform 549ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
    transition: transform 549ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
}

.productslider:hover .btnwishlist {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transition: transform 549ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
    -moz-transition: transform 549ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
    transition: transform 549ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
}

.product_cart_button {
    opacity: 0;
    transform: translateY(10px);
    -webkit-transition: transform 0.8s cubic-bezier(0.4, 0.4, 0.000, 1.0);
    -moz-transition: transform 0.8s cubic-bezier(0.4, 0.4, 0.000, 1.0);
    transition: transform 0.8s cubic-bezier(0.4, 0.4, 0.000, 1.0);
}

.productslider:hover .product_cart_button {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transition: transform 0.8s cubic-bezier(0.4, 0.4, 0.000, 1.0);
    -moz-transition: transform 0.8s cubic-bezier(0.4, 0.4, 0.000, 1.0);
    transition: transform 0.8s cubic-bezier(0.4, 0.4, 0.000, 1.0);
}


/* web title */
.webtitle {
    width: 90%;
    margin: 0px auto;
    padding: 30px 0px;
}

.webtitle_con {
    width: 100%;
}

.webtitle_con_bottom {
    color: var(--primary-black);
    font-family: var(--primary-text-font);
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.webtitle_con_top {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}


/* web button  */
.webbutton {
    height: 40px;
    width: 130 px;
    background-color: var(--primary-black);
    cursor: pointer;
    color: #fff;
    border: none;
    outline: 0px;
    margin-top: 20px;
}

/* cookies container */
.cookies {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--primary-black);
    width: 400px;
    z-index: 10;
    padding: 20px;
    transform: translateY(400px);
}

.cookies_top {
    color: var(--primary-white);
    font-size: 14px;
    line-height: 20px;
}

.cookies_bottom {
    margin-top: 20px;
    text-align: right;
}

.cookies_bottom a {
    font-size: 14px;
    color: #fff;
    margin-right: 10px;
}

.cookies_bottom button {
    background: transparent;
    cursor: pointer;
    border: none;
    outline: 0;
    color: #fff;
    position: relative;
    padding-bottom: 5px;

}

.cookies_bottom button i {
    font-weight: 800;
}

.cookies_bottom button::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background: var(--primary-white);
    bottom: 0px;
    left: 0px;
}

/* .cookies_bottom button */

/* footer design */

.footer {
    margin-top: 60px;
    padding: 60px 0px 0px 0px;
    background: var(--primary-black);
}

.footer_con {
    width: 90%;
    margin: 0px auto;
}

.footer_content li a {
    color: var(--primary-white);
    font-size: 14px;
}

.footer h3 {
    letter-spacing: 1px;
    color: var(--primary-white);
}

.footer_content li {
    padding: 5px 0px;
}

.footer_con {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer_link_address_subcon {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer_address_left {
    flex: 0 0 30px;
    max-width: 30px;
    margin-top: 3px;
}

.footer_address_left i {
    color: var(--primary-white);
}

.footer_address_right {
    flex: 0 0 calc(100% - 30px);
    max-width: calc(100% - 30px);
    color: var(--primary-white);
    line-height: 28px;
    font-size: 14px;
}

.footer_link_address_subcon {
    margin-top: 10px;
}

.footer_img {
    flex: 0 0 20%;
    max-width: 20%;
    margin-top: 0px;
}

.footer_bottom {
    padding: 10px 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-dark-black);
    margin-top: 70px;
}

.footer_bottom_left {
    font-size: 14px;
    color: var(--primary-white);
}

.footer_bottom_con {
    width: 90%;
    margin: 0px auto;
}

.footer_social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer_social a {
    display: block;
    margin-right: 10px;
}

.footer_social a i {
    color: #fff;
}

.footer_img_con {
    font-size: 14px;
    color: var(--primary-white);
    line-height: 23px;
    padding: 20px 0px;
}

.footer_bottom_con {
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.resturants {
    padding: 60px 0px;
}

.resturants_con_bottom_left,
.resturants_con_bottom_right {
    display: flex;
    object-fit: cover;
}

.resturants_con_bottom_right {
    flex: 0 0 300px;
    max-width: 300px;
}


/* input_area */
.input_con input {
    height: 40px;
    padding: 0px 10px;
    width: calc(100% - 20px);
    background: transparent;
    border: 1px solid #e8e8e8;
    outline: 0;
    font-family: var(--primary-text-font);
}

.input_con textarea {
    width: calc(100% - 20px);
    padding: 10px;
    font-family: var(--primary-text-font);
    background: transparent;
    border: 1px solid #e8e8e8;
    resize: none;
    outline: 0px;
    height: 100px;
}

.input_area_con label {
    display: block;
    margin-bottom: 10px;
}

.input_con input:focus {
    border: 1px solid #000;
}

.input_area_con {
    margin-top: 20px;
}

.input_button {
    margin-top: 30px;
}

.btnweb {
    text-align: left;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
    outline: 0px;
    background: transparent;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btnwebspan {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 1px solid var(--primary-black);
    transition: all 0.3s ease;
    margin-left: 20px;
    font-size: 20px;
}

.btnweb:hover .btnwebspan {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* pages webtitle */
.pageswebtitle {
    width: 100%;
    background: url('../image/banners/faq.webp');

    background-position: bottom center;
    background-size: cover;
}

.pageswebtitle_con {
    width: 90%;
    height: 100%;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 12;
}

.pageswebtitle {
    height: 400px;
    width: 100%;
}

.pageswebtitle_con_title1 {
    font-size: 14px;
    color: var(--primary-white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.pageswebtitle_con_title2 {
    font-size: 50px;
    color: var(--primary-white);
    font-weight: 800;
    letter-spacing: 6px;
    margin-bottom: 60px;
}

.breadcome {
    margin-top: 20px;
}

.breadcome_con {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.breadcome_con {
    width: 90%;
    margin: 0px auto;
}

.breadcome_con {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.breadcome_con span {
    display: block;
    height: 20px;
    width: 2px;
    margin: 0px 10px;
    background: var(--primary-black);
}

.breadcome_con a {
    color: var(--primary-black);
    font-weight: 600;
}



/* web button design  */

.web_button a {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.web_button span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 1px solid var(--primary-black);
    transition: all 0.3s ease;
    margin-left: 20px;
}

.web_button a span i {
    font-size: 20px;
}

.web_button a:hover .webbuttonspan {
    background: var(--primary-black);
    transform: scale(1.1);
    color: var(--primary-white);
    transition: all 0.3s ease;
}


/* index checkbox */
.container {
    cursor: pointer;
    display: block;
    margin-right: 10px;
    margin-top: 3px;
}

.container input {
    display: none;
}

.container svg {
    overflow: visible;
}

.path {
    fill: none;
    stroke: var(--primary-black);
    stroke-width: 3;
    transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
    stroke-dasharray: 241 9999999;
    stroke-dashoffset: 0;
}

.container input:checked~svg .path {
    stroke-dasharray: 70.5096664428711 9999999;
    stroke-dashoffset: -262.2723388671875;
}

.web_faqs_con {
    width: 100%;
}

.webfaq_matter_title button {
    display: flex;
    justify-content: space-between;
}





/* faq Design  */


.product_faq {
    padding: 60px 0px;
}

.product_faq_con {
    width: 85%;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product_faq_con_left {
    flex: 0 0 35%;
    max-width: 35%;
    position: sticky;
    top: 40px;
}

.product_faq_con_right {
    flex: 0 0 58%;
    max-width: 58%;
}

.product_faq_con_left_top {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-black);
}

.product_faq_con_left_middile {
    font-size: 14px !important;
    line-height: 20px;
    margin-top: 10px !important;

}


/* faqs_container */
.faq_slider {
    border-bottom: 1px solid #ded4ca;
    padding-bottom: 10px;
    margin-top: 20px !important;
}

.faq_slider:last-child {
    border-bottom: 0px !important;
}

.acc-container {
    width: 100%;
}

.acc-btn {
    width: 100%;
    padding: 0px;
    font-size: 18px;
    color: var(--primary-black);
    cursor: pointer;
    background: inherit;
    border: none;
    outline: none;
    text-align: left;
    transition: all 0.5s linear;
}

.acc-btn:after {
    content: "\27A4";
    color: var(--primary-black);
    float: right;
    transition: all 0.3s linear;

}

.acc-btn.is-open:after {
    transform: rotate(90deg);
}

.acc-content {
    max-height: 0;
    color: var(--primary-black);
    font-size: 15px;
    line-height: 23px;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.tabnone {
    display: none !important;
}

.fullbackground {
    display: block;
    height: 40px;
    background: rgba(0, 0, 0, 0.9);
    line-height: 40px;
    padding: 0px 20px;
    color: var(--primary-white);
}

.probutton {
    height: 40px;
    line-height: 40px;
    background: var(--primary-black);
    color: var(--primary-white);
    border: none !important;
    padding: 0px 20px;
    cursor: pointer;
    outline: 0px;
}



/* notification css green  */


.alert_message_con {
    max-width: 400px;
    width: 100%;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 0px;
    overflow: hidden;
}


.alert {
    position: relative;

}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.3rem;
    font-size: 13px !important;
}

.alert-danger:before {
    position: absolute;
    height: 2px;
    width: 100%;
    content: "";
    background: #993746;
    left: 0px;
    bottom: 0px;
    animation: 5s slide-right;
}

.alert-danger:before {
    position: absolute;
    height: 2px;
    width: 100%;
    content: "";
    background: #993746;
    left: 0px;
    bottom: 0px;
    animation: 6s slide-right;
}

.alert-success {
    color: #287f5f;
    background-color: #d9f6ec;
    border-color: #caf3e4;
}

.alert-danger {
    color: #993746;
    background-color: #ffdee3;
    border-color: #ffd1d8;
}


.alert-success:before {
    position: absolute;
    height: 2px;
    width: 100%;
    content: "";
    background: #287f5f;
    left: 0px;
    bottom: 0px;
    animation: 6s slide-right;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0.9375rem 1.25rem;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="%23000"%3e%3cpath d="M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z"/%3e%3c/svg%3e') center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
}

@keyframes slide-right {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}


.resend {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-black);
    background-color: transparent;
    cursor: pointer;
    border: none;

}

.main_cntainer_admins {
    max-width: 100%;
}


.admin_img {
    width: 100px;
    margin: auto;
}

.admin_tital {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    padding-top: 10px;
}

.admin_para {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 20px 0px;
    line-height: 22px;
    color: #6a6a6a;
}

.admin_buttom {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.admin_buttom button {
    border: none;
    background: none;
    outline: none;
    background-color: black;
    color: white;
    padding: 5px;
    font-size: 18px;
    width: 100px;

}

.admin_buttom_btn {
    display: block;
    height: 40px;
    width: 130px;
    position: relative;
    line-height: 40px;
    text-align: center;
    color: #fff;
    position: relative;
    text-decoration: none;
    z-index: 2;
}

.admin_buttom_btn::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 0%;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: width 0.5s ease;
}
.admin_buttom_btn:hover::before {
    width: 100%;
    transition: width 0.5s ease;
}
.admin_buttom_btn_yellow{
   background: #000000;
   color: #F3D029;
}
.admin_buttom_btn_yellow::before{
    background: #F3D029;
   
}
.admin_buttom_btn_yellow:hover{
    color: #000000;
}
.admin_buttom_btn_transparent{
    color: #000;
    background: #F3D029;
    transition: width 0.5s ease;
}

.admin_buttom_btn_transparent:hover::before{
    background: #000000;
    transition: width 0.5s ease;
}

.admin_buttom_btn_transparent:hover{
    color: #F3D029;

}
#afterverify{
    display: none ;
}
