/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Lexend", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

/* ::selection {
    background: var(--secondary-color);
    color: #fff;
} */

:root {
    --primary-color: #3d3d3d;
    --offwt-color: #F8F8F8;
    --theme-color: #26a999;
    --theme-light-color: #26a99ace;
    --green-color: #4CAF4F;
    --light-dark-color: rgba(0, 0, 0, 0.5);
    --border-color: #dee2e6;
    --coffee-color: #c58940;
    --coffee-light-color: #c58940b2;
}

.bg_wt {
    background: #fff !important;
}

.border-bottom-dashed {
    border-bottom: 2px dashed var(--border-color);
}

.text-theme {
    color: var(--coffee-color) !important;
}

.text-coffee {
    color: var(--coffee-color) !important;
}

.text-green {
    color: var(--green-color) !important;
    transition: all .3s ease-in-out;
}

a {
    text-decoration: none;
}

.mt-80 {
    margin-top: 80px;
}

.mtb-80 {
    margin-top: 80px;
    margin-bottom: 80px;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

header {
    padding: 1rem 0 1rem;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    opacity: 1 !important;
}

.web_logo {
    width: 150px;
}

.top_search input {
    background: var(--offwt-color);
    border-radius: 50px;
    width: 100%;
    padding: 12px 12px 12px 45px;
    border: none;
}

.serch_i {
    position: absolute;
    top: 10px;
    left: 22px;
    width: 16px;
    opacity: 0.7;
}

.back_menu {
    color: var(--light-dark-color);
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
    font-weight: 500;
}

.back_menu a {
    color: var(--light-dark-color);
}

/* .dropdown_002 ul{
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 12px;
} */

.dropdown_menu_002 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0 0 0 15px;
    list-style: none;
    margin: 2px 0 10px 0;
}

.dropdown_menu_002 li{
    margin-bottom: 3px;
}

.dropdown_002 a,
.dropdown_menu_002 li .nav_link {
    padding-bottom: 0.2rem;
}

.dropdown_menu_bar{
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown_002.active .dropdown_menu_002 {
    max-height: 200px;
}

.nav_01 {
    display: grid;
    grid-template-columns: 2fr 7fr 3fr;
    gap: 1rem;
}

.admin_area i {
    font-size: 1.5rem;
}

.admin_area .d-flex {
    cursor: pointer;
}

.nav_02 {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: start;
    gap: 2rem;
    margin: 1rem 0 0;
}

.main_menu_box {
    background: var(--coffee-color);
    padding: 0.5rem 1rem;
    color: #fff !important;
}

.nav_link {
    color: var(--primary-color);
    transition: all .3s ease-in-out;
    position: relative;
    padding-bottom: 0.5rem;
}

.nav_link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--coffee-color);
    transition: all .3s ease-in-out;
}

.nav_link:hover::before {
    width: 100%;
}

.nav_link:hover {
    color: var(--coffee-color);
}


.sub_title {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 1rem;
}


.title {
    font-size: 35px;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 50%;
    background: var(--coffee-color);
}

.title_left::before {
    left: 0;
    transform: translateX(0);
}

.title_start::before {
    left: 0;
    transform: translateX(0);
}

.title_2 {
    font-size: 35px;
    font-weight: bold;
}

.category_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    text-align: center;
}

.category_card {
    border-radius: 8px;
    overflow: hidden;
    /* border: 1px solid var(--border-color); */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #f9f9f9;
}

/* .category_card, */
.category_card img {
    transition: all .3s ease-in-out;
    text-align: left;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.category_img {
    overflow: hidden;
    transition: all .3s ease-in-out;
    /* border-radius: 5px; */
    padding: 1rem;
}

.category_card:hover img {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    /* scale: 1.3; */
}

.category_title {
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease-in-out;
    color: var(--primary-color);
    background: #fff;
    width: 100%;
    display: block;
    padding: 1rem;
}

.category_card:hover .category_title {
    color: var(--coffee-color);
}

.discount_cupon {
    background: var(--yellow-color);
    color: #000;
    padding: 1rem;
}

.discount_cupon h2 {
    font-weight: 900;
    font-size: 35px;
    margin: 0;
    line-height: 1;
}

.discount_cupon h2 span {
    font-size: 28px;
    font-weight: 700;
}

.cupon_code {
    font-weight: 900;
    font-size: 35px;
    border: 1px dashed #000;
    padding: 0 5px;
    background: #fff;
    display: inline-block;
}

.btn {
    border: none;
    padding: 10px 25px;
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.btn-theme {
    background: var(--coffee-color);
    color: #fff !important;
    border: 1px solid var(--coffee-color) !important;
}

.btn-theme-outline {
    background: #fff;
    color: var(--coffee-color);
    border: 1px solid var(--coffee-light-color) !important;
}

.btn-theme:hover {
    /* background: var(--offwt-color) !important; */
    background: var(--coffee-light-color) !important;
    border: 1px solid var(--coffee-light-color) !important;
}

.btn-theme-outline:hover {
    /* background: var(--offwt-color) !important; */
    background: var(--coffee-color) !important;
    border: 1px solid var(--coffee-color) !important;
    color: #fff !important;
}

.btn-theme-2-outline {
    background: #fff;
    color: var(--theme-color);
    border: 1px solid var(--theme-light-color) !important;
}

.btn-theme-2-outline:hover {
    /* background: var(--offwt-color) !important; */
    background: var(--theme-color) !important;
    border: 1px solid var(--theme-color) !important;
    color: #fff !important;
}

.btg-gradiant {
    border-radius: 3px;
    background: linear-gradient(to bottom, var(--coffee-color), #fe9800);
    color: #fff !important;
}

.btndark {
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color) !important;
}

.btndark:hover {
    background: #fff;
    color: var(--primary-color);
}

.btg-gradiant:hover {
    background: linear-gradient(to top, var(--coffee-color), #fe9800);
}

.line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 1px;
    background: var(--primary-color);
    left: -100px;
}

.product_img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.product_img img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.product_card:hover img {
    scale: 1.3;
}

.blog_title,
.product_title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
    /* border: 1px solid red; */
    height: 33px;
    color: var(--primary-color);
}

.blog_title {
    font-size: 16px;
    height: 42px;
}

.blog_short_para {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prise {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-color);
}

.prise span:nth-child(2) {
    text-decoration: line-through;
    color: #1b1b1b75;
}

.prise span:nth-child(3) {
    color: #fff;
    font-size: 14px !important;
    background: var(--green-color);
    padding: 5px 10px 1px;
    border-radius: 5px;
}

.product_card {
    margin: 30px 10px;
    border: 1px solid var(--border-color);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 16px;
    overflow: hidden;
    padding: 1rem;
    background: #fff;
    /* height: 506px; */
}

.category_area .product_card {
    margin: 0;
}

/* .roduct_card_body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
} */

.review i {
    color: var(--coffee-color);
    font-size: 1.2rem;
}

.review div:nth-child(2) .rating {
    font-weight: 700;
    color: var(--primary-color);
}

.review div:nth-child(2) .text_muted {
    color: rgba(0, 0, 0, 40%);
}

.demo .bi-chevron-left {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 2px;
}

.demo .bi-chevron-right {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2px;
}

.testimonial_card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: 1rem;
    position: relative;
}

.testimonial_img {
    height: 60px;
    width: 60px;
    border-radius: 5px;
    overflow: hidden;
}

.testimonial_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.testimonial_icon {
    position: absolute;
    font-size: 10rem;
    bottom: 2rem;
    right: 2rem;
    transform: rotate(180deg);
    line-height: 0;
    opacity: 0.2;
}

.review_name_inner {
    font-weight: 600;
    line-height: 1.2;
    color: var(--coffee-color);
}

.review_name_inner span {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
}

.collection_card {
    position: relative;
    height: 100%;
}

.collection_img img {
    width: 100%;
    border-radius: 15px;
}

.collection_btn {
    text-align: center;
    background: #000000cc;
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    transition: all .3s ease-in-out;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    width: fit-content;
}

.collection_card:hover .collection_btn {
    bottom: 20px;
    opacity: 1;
}

.text_card {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    font-size: 2.5rem;
    line-height: 1.2;
    padding: 2rem;
    display: flex;
    align-items: center;
}

.bg_area {
    padding: 80px 0;
    position: relative;
}

.bg_area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #f9f9f9;
    /* background: #bdbec0; */
    /* background: #fff8f2; */
    z-index: -9;
}

.bg_area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../img/bg_lines.png) no-repeat;
    opacity: 0.1;
    z-index: -8;
}

.half_bg::after,
.half_bg::before {
    height: 59%;
}

.bg_area_lt_pink::before {
    background: #fff8f2;
}

.bg_area_lt_pink_none::before {
    background: #fff;
}

.bg_cards {
    position: relative;
    height: 400px;
    padding: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.bg_cards h4 {
    font-size: 25px;
    font-weight: 600;
}

.card_bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.card_bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.bg_cards:hover img {
    scale: 1.2;
}

footer {
    background: rgb(155 171 169 / 10%);
    padding: 80px 0 50px 0;
}

.footer_title {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer_menu {
    padding: 0;
    list-style: none;
    line-height: 2;
}

.footer_link {
    color: #242222;
    transition: all .3s ease-in-out;
    font-weight: 600;
    position: relative;
}

.footer_link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--coffee-color);
    transition: all .3s ease-in-out;
}

.footer_link:hover::before {
    width: 100%;
}

.footer_link:hover {
    color: var(--coffee-color);
}

.social_icon {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
    font-size: 1.5rem;
}

.social_icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.footer_social_media::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 0.5px;
    width: 100%;
    background: #0000002f;
    z-index: -1;
}

.copy p {
    font-size: 14px;
    margin: 0;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--theme-color);
}

.dropdown-menu {
    /* --bs-dropdown-min-width: 30rem; */
    padding: 1rem;
    box-shadow: 0 0 5px 1px #00000010;
    top: 40px;
    /* transition: all .3s ease-in-out; */
}

.megamenu_img {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.megamenu_img img {
    width: 100%;
}

/* .dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
} */

.dropdown-toggle::after {
    display: none !important;
}

.closebtn {
    border: 1px solid var(--primary-color);
    height: 30px;
    width: 30px;
    display: grid;
    place-content: center;
    border-radius: 5px;
}

.closebtn i {
    /* margin-bottom: -5px; */
    font-size: 1.5rem;
}

.cursor {
    cursor: pointer;
}

.modal-content {
    border: 15px;
    overflow: hidden;
    background: #fff;
}

.modal_grid {
    display: grid;
    grid-template-columns: 1;
}

.modal_slider .carousel-inner,
.modal_slider .carousel-inner .carousel-item,
.modal_slider .carousel,
.modal_slider {
    height: 100%;
}

.modal_slider img {
    border-radius: 10px 0 0 10px;
    height: 100%;
    object-fit: cover;
}

.modal_body {
    padding: 1.5rem;
}

.form_title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--coffee-color);
    border-color: var(--coffee-color);
    box-shadow: none;
}

.form-check-input:focus {
    box-shadow: none;
}

.mini_font input {
    margin-top: -1px;
}

.mini_font,
.formp {
    font-size: 15px;
    font-weight: 300;
    color: var(--light-dark-color);
}

.input_gp {
    position: relative;
}

.input_gp .form-select,
.input_gp_02 .form-control,
.input_gp .form-control {
    padding: 12px 12px 12px 0 !important;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
}

.input_gp_02 .form-control {
    margin-top: 10px;
}

.input_gp_02 .form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.input_gp .form-select,
.form-control:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.2);
}

.otpinputs input {
    border-color: var(--coffee-color);
    text-align: center;
}


.input_gp label {
    position: static;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    /* left: 13px; */
    /* color: var(--light-dark-color); */
    font-weight: 500;
    transition: all .3s ease-in-out;
    background: #fff;
    /* margin-bottom: 0.5rem; */
}

.input_gp .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 13px;
    color: var(--light-dark-color);
    font-weight: 300;
    cursor: pointer;
    opacity: 1;
}

.input_gp input:focus+label {
    top: 3px;
    font-size: 13px;
    color: var(--coffee-color);
}

.input_gp input:focus+.passowrd_hide {
    opacity: 0;
}

.or_area {
    position: relative;
    text-align: center;
    color: var(--light-dark-color);
    font-size: 13px;
}

.or_area::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 0.5px;
    background: var(--light-dark-color);
    opacity: 0.3;
}

.or_area p {
    background: #fff;
    height: 30px;
    width: 40px;
    margin: 0 auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: relative;
}

.molda_icon {
    height: 40px;
    width: 40px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.molda_icon img {
    /* height: 100%; */
    width: 45%;
    object-fit: contain;
}

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

.sale_line1 {
    background: #fffcf7;
    padding: 1rem 0;
}

.bank_img {
    background: #f7f8f8;
    padding: 1rem 0;
}

.img_box {
    background: red;
    border-radius: 15px;
    overflow: hidden;
}

.img_box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.title_box {
    color: var(--primary-color);
    text-align: center;
    font-size: 1.5rem;
    margin-top: 1rem;
    transition: all .3s ease-in-out;
}

.img_title_box:hover img {
    scale: 1.1;
}

.img_title_box:hover .title_box {
    color: var(--coffee-color);
}

.order_card {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.order_card .price {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.border_card_header {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
}


.blog_sidebar_img {
    height: 70px;
    width: 70px;
    border-radius: 10px;
    overflow: hidden;
}

.blog_sidebar_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog_sidebar_title h5 {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
    -webkit-line-clamp: 2;
    width: 80%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog_sidebar_title p {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--coffee-color);
}

.bill_line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.bill_line span {
    color: var(--primary-color);
}

.bill_line p {
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

.billtotal {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    padding: 1rem 0;
}

.billtotal p {
    color: var(--primary-color);
}

.billtotal span {
    text-align: right;
}

.billtotal small {
    font-size: 15px;
    font-weight: 400;
}

.green_text_bg {
    background: rgb(76, 175, 79, 10%);
    color: var(--green-color);
    padding: 8px 15px;
    border-radius: 5px;
}

.offcanvas.offcanvas-end {
    width: 500px;
    height: 100vh;
    overflow-y: auto;
}

.cart_footer {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
}

.cart_menus {
    background: rgb(255, 75, 14, 10%);
    padding: 1rem 2rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
}

.cart_menus a {
    color: rgb(255, 75, 14, 0.5);
}

.cart_menus {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(255, 75, 14, 0.5);
}

.form_area {
    padding-right: 5rem;
    position: relative;
    height: 100%;
}

.form_area::before {
    content: "";
    position: absolute;
    top: 0;
    right: 2rem;
    height: 100%;
    width: 1px;
    background: #ced4da;
}

.modal-top-right {
    margin: 0 0 1.75rem auto;
}

.modal-top-right .modal-content {
    border-radius: 0 0 0 15px;
}

.apply_card {
    border: 1px solid var(--coffee-light-color);
    padding: 1rem 2rem;
    border-radius: 8px;
}

.apply_card p {
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.apply_card_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px dashed var(--coffee-light-color);
    padding: 0 0 0.7rem;
    margin-bottom: 15px;
}

.apply_card_header h4 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 0;
}

.apply_card_header span {
    color: var(--coffee-color);
    font-weight: 500;
    cursor: pointer;
    font-size: 1.3rem;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../img/icons/accordinblk.svg);
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button {
    border: none !important;
    background: none !important;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color) !important;
}

.accordion-button:focus {
    box-shadow: none;
    color: var(--primary-color);
}

.wallet_option .icon,
.accordion-button .icon {
    height: 20px;
    width: 20px;
}

.accordion-button span {
    margin-bottom: -5px;
}

#inner_accordionExample .accordion-button span {
    margin-bottom: 0;
}

#inner_accordionExample .accordion-button .accordion-body,
#inner_accordionExample .accordion-button small {
    font-size: 0.975rem;
}


input[type="radio"]:checked {
    accent-color: var(--coffee-color);
}

.accordion-button label {
    border: 1px solid red;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

.accordion-button .icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.accordion-item {
    border: 1px solid #dee2e6 !important;
    overflow: var(--green-color);
    border-radius: 8px !important;
}

.paymentimg {
    width: 110px;
}

.paymentimg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4rem;
}

.card_img {
    width: 100px;
    aspect-ratio: 3/2;
}

.card_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.bank_box {
    border: 1px solid red;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    height: 100%;
    transition: all .3s ease-in-out;
    background: #fff;
}

.bank_box:hover {
    background: rgb(255, 75, 14, 2%);
    border: 1px solid var(--coffee-color);
}

.bank_logo {
    height: 40px;
    width: 40px;
    margin: auto;
    margin-bottom: 1rem;
}

.bank_logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.upi_scaner {
    height: 100px;
    width: 100px;
}

.wallet_option img {
    /* margin-top: -1px; */
    border: 1px solid var(--border-color);
    border-radius: 100%;
    padding: 2px;
    object-fit: contain;
}

.wallet_option .icon {
    margin: 0;
    width: 30px;
    margin-top: -15px;
}

.wallet_option {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
}

.round_icon {
    border: 1px solid var(--border-color);
    padding: 2px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.round_icon img {
    height: 70%;
    width: 70%;
    object-fit: contain;
}

.iconlogo {
    height: 25px;
    width: 25px;
    object-fit: contain;
}

.emicalc {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    /* padding: 1rem; */
    text-align: center;
    background: rgb(251, 254, 255)
}

.emicalc div:nth-child(2) {
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.emicalc div {
    padding: 1rem;
}

.cslc_title {
    font-size: 1.3rem;
}

.cals_amount {
    font-size: 1rem;
    margin-top: 5px;
    margin-bottom: 0;
}

.cart_item_img {
    height: 150px;
    width: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.cart_item_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cart_card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    background: var(--offwt-color);
    padding: 1rem;
    border-radius: 15px;
    /* padding: 2rem 0; */
}

.cart_card p {
    margin-bottom: 0;
}

.cart_title {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.add_quantity {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 1rem 0;
    gap: 1rem;
    align-items: center;
}

.add_quantity input {
    grid-column-start: 2;
    grid-column-end: 4;
    width: 100%;
}

.add_quantity span:nth-child(3),
.add_quantity span:nth-child(4) {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.add_quantity span:nth-child(4) {
    text-decoration: line-through;
    color: #6c757d;
}

.add_quantity span:nth-child(5) {
    font-size: 14px;
}

.wish_remove {
    font-size: 12px;
}

.address_card .border_card_header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location_btn {
    font-size: 1rem;
    color: #fff;
    background: #4d4e4e;
    border-radius: 50px;
    padding: 3px 20px;
    font-weight: 300;
}

.address_card_body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
    font-size: 12px;
}

.address_card_body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 1px;
    background: var(--border-color);
}

.address_card_body p {
    margin: 0;
}

.address_card_body div:nth-child(2) {
    padding-left: 2rem;
}

.input_gp_02 label {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 600;
    position: relative;
}

.requerd_label label {
    position: relative;
    padding-right: 0.8rem;
}

.requerd_label label::before {
    content: "*";
    position: absolute;
    top: 0;
    right: 0;
}


/* ================================ Start product page ================================== */

.product_page_grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

.product_img_area {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.product_main_img {
    /* height: 600px; */
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.product_main_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.product_other_images {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.other_img_box {
    transition: all .3s ease-in-out;
    border-radius: 4px;
    overflow: hidden;
    outline: 2px solid transparent;
    aspect-ratio: 1/1;
}

.other_img_box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.other_img_box:hover {
    outline: 2px solid var(--coffee-color);
}

.other_img_box.active {
    outline: 2px solid var(--coffee-color);
}

.m_p_title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.m_p_subtitle {
    font-size: 18px;
    color: var(--coffee-color);
}

.price_area_box {
    display: grid;
    grid-template-columns: 4fr 6fr 6fr;
    gap: 0.5rem;
}

/* .m_p_price{
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 1rem;
} */

.m_p_price h5 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.m_p_price p {
    font-size: 1.1rem;
    margin: 0;
    color: var(--coffee-color);
    font-weight: 600;
}

.m_p_price p span {
    background: rgb(76, 175, 79, 10%);
    color: var(--green-color);
    padding: 5px 10px;
    border-radius: 4px;
}

.variant_title {
    font-size: 1.1rem;
    font-weight: 600;
    /* color: var(--coffee-light-color); */
    margin-bottom: 0.5rem;
}

.variant_info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.variant {
    border: 1px solid rgb(255, 75, 14, 0%);
    color: var(--coffee-color);
    font-size: 0.9rem;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgb(255, 75, 14, 10%);
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.variant:hover {
    border: 1px solid var(--coffee-color);
}


.wish_list {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
}

.wish_list .icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.wish_list .icon i {
    color: var(--coffee-light-color);
    font-size: 1.4rem;
    margin-bottom: -3px;
}

.m_p_btns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.description_box {
    padding: 1rem;
    background: rgb(222, 226, 230, 40%);
    border-radius: 10px;
}

.feature_area {
    background: var(--primary-color);
    padding: 80px 0;
}


.feature_box {
    padding: 3rem 1rem 1rem;
    text-align: center;
    color: #fff;
    font-weight: 300;
    border: 1px solid var(--coffee-light-color);
    height: 100%;
    border-radius: 10px;
}

.feature_icon {
    height: 150px;
    width: 150px;
    margin: auto;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #fff; */
    border-radius: 10px;
    position: relative;
}

.feature_icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(255, 75, 14, 10%);
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.feature_box:hover .feature_icon::before {
    rotate: 45deg;
    background: rgb(255, 255, 255, 10%);
}

.feature_box_title {
    color: var(--coffee-color);
    font-weight: 500;
    font-size: 1.3rem;
}

.feature_icon img {
    height: 70%;
    width: 70%;
    object-fit: contain;
}

/* ================================ End product page ================================== */

/* ================================ choose theme page ================================== */
.choose_img {
    aspect-ratio: 1/1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.choose_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.choose_box {
    background: rgb(222, 226, 230, 30%);
    padding: 1.5rem 1.5rem 1rem;
    border-radius: 10px;
}

/* ================================ end theme page ================================== */
/* ================================ start add photo page ================================== */
.create_theme_edit_area {
    display: grid;
    grid-template-columns: 3fr 9fr;
    gap: 1rem;
}

.vertical_btn_group {
    /* box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); */
    padding: 1rem 1rem 1rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 140px;
}

.vericatl_menu {
    border: 1px solid var(--border-color);
    padding: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 6px;
    color: var(--primary-color);
    transition: all .3s ease-in-out;
}

.vericatl_menu::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    height: 2px;
    width: 50px;
    background: var(--border-color);
    transition: all .3s ease-in-out;
}

.vericatl_menu .count {
    /* border: 1px solid green; */
    height: 35px;
    width: 35px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
    border-radius: 5px;
    background: #9a9a9a;
    color: #fff;
    transition: all .3s ease-in-out;
}

.vericatl_menu:hover .count,
.vertical_btn_group .active .count {
    background: #ffede6;
    color: var(--coffee-color);
    border: 1px solid var(--coffee-color);
}

.vericatl_menu:hover::before,
.vertical_btn_group .active::before {
    background: var(--coffee-color);
}

.vericatl_menu:hover,
.vertical_btn_group .active {
    background: #ffede6;
    color: var(--coffee-color);
    border-color: var(--coffee-color);
}

.vertical_btn_group .process_done .count {
    background: #ecf6ec;
    color: var(--green-color);
    border: 1px solid var(--green-color);
}

.vertical_btn_group .process_done::before {
    background: var(--green-color);
}

.vertical_btn_group .process_done {
    background: #ecf6ec;
    color: var(--green-color);
    border-color: var(--green-color);
}

.upload_img_box {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin: auto;
    border-radius: 15px;
    position: relative;
}

.upload_img_box::before {
    content: "";
    position: absolute;
    inset: 30px 30px 30px 30px;
    border: 3px dashed var(--border-color);
    border-radius: 15px;
}

.upload_img_box input {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 3px dashed var(--border-color);
    border-radius: 15px;
    opacity: 0;
    cursor: pointer;
}

.upload_img_text {
    padding: 50px 0 70px;
    font-size: 1.2rem;
    font-weight: 600;
}

.upload_images_box {
    height: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem;
    gap: 1rem;
    overflow-y: scroll;
    height: 354.40px;
}

.up_image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #f3f1f1;
}

.up_image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* ================================ end add photo page ================================== */
/* ================================ start edit image page ================================== */
.edit_img_box {
    aspect-ratio: 1/1;
    width: 100%;
    /* height: 500px; */
    /* border: 1px solid red; */
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border-color);
}

.edit_image {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 386px;
    width: 386px;
    margin: auto;
    background: #fff;
    text-align: center;
}

.edit_image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    margin-bottom: 1rem;
}

.edit_filter_area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    height: 100px;
    margin: 1rem auto;
    justify-content: center;
}

.edit_filter_area .folter_ {
    height: 60px;
    width: 60px;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.edit_filter_area .folter_ img {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.album_page {
    background: #F8F8F8;
    padding: 1rem;
    border-radius: 10px;
}

.album_pate_title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1rem;
}

.album_page img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* ================================ end edit image page ================================== */
/* ================================ start upgrade option image page ================================== */
.upgrade_card {
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 15px;
    height: 100%;
    position: relative;
}

.upgrade_card .price,
.upgrade_card_title {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--coffee-color);
}

.upgrade_card_img {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    background: #F8F8F8;
}

.upgrade_card_body {
    background: rgb(255, 75, 14, 10%);
    border-radius: 0 0 12px 12px;
    padding: 2rem;
}

.checkbox-wrapper-26 {
    position: absolute;
    top: 2rem;
    right: 2rem;
}



.checkbox-wrapper-26 * {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.checkbox-wrapper-26 input[type="checkbox"] {
    display: none;
}

.checkbox-wrapper-26 label {
    --size: 50px;
    --shadow: calc(var(--size) * .07) calc(var(--size) * .1);

    position: relative;
    display: block;
    width: var(--size);
    height: var(--size);
    margin: 0 auto;
    background-color: var(--coffee-light-color);
    border-radius: 50%;
    box-shadow: 0 var(--shadow) #ffbeb8;
    cursor: pointer;
    transition: 0.2s ease transform, 0.2s ease background-color,
        0.2s ease box-shadow;
    overflow: hidden;
    z-index: 1;
}

.checkbox-wrapper-26 label:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: calc(var(--size) * .7);
    height: calc(var(--size) * .7);
    margin: 0 auto;
    background-color: #fff;
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: inset 0 var(--shadow) #ffbeb8;
    transition: 0.2s ease width, 0.2s ease height;
}

.checkbox-wrapper-26 label:hover:before {
    width: calc(var(--size) * .55);
    height: calc(var(--size) * .55);
    box-shadow: inset 0 var(--shadow) #ff9d96;
}

.checkbox-wrapper-26 label:active {
    transform: scale(0.9);
}

.checkbox-wrapper-26 .tick_mark {
    position: absolute;
    top: -1px;
    right: 0;
    left: calc(var(--size) * -.05);
    width: calc(var(--size) * .6);
    height: calc(var(--size) * .6);
    margin: 0 auto;
    margin-left: calc(var(--size) * .14);
    transform: rotateZ(-40deg);
}

.checkbox-wrapper-26 .tick_mark:before,
.checkbox-wrapper-26 .tick_mark:after {
    content: "";
    position: absolute;
    background-color: #fff;
    border-radius: 2px;
    opacity: 0;
    transition: 0.2s ease transform, 0.2s ease opacity;
}

.checkbox-wrapper-26 .tick_mark:before {
    left: 0;
    bottom: 0;
    width: calc(var(--size) * .1);
    height: calc(var(--size) * .3);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.23);
    transform: translateY(calc(var(--size) * -.68));
}

.checkbox-wrapper-26 .tick_mark:after {
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(var(--size) * .1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.23);
    transform: translateX(calc(var(--size) * .78));
}

.checkbox-wrapper-26 input[type="checkbox"]:checked+label {
    background-color: #07d410;
    box-shadow: 0 var(--shadow) #92ff97;
}

.checkbox-wrapper-26 input[type="checkbox"]:checked+label:before {
    width: 0;
    height: 0;
}

.checkbox-wrapper-26 input[type="checkbox"]:checked+label .tick_mark:before,
.checkbox-wrapper-26 input[type="checkbox"]:checked+label .tick_mark:after {
    transform: translate(0);
    opacity: 1;
}

/* ================================ end upgrade option image page ================================== */

.d-flex-grid {
    display: grid;
    grid-template-columns: 2fr 9fr;
    gap: 0.5rem;
}

.sticky_top {
    position: sticky;
    top: 145px;
    z-index: 99;
}

.sub {
    background: var(--coffee-color);
    color: #fff;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
}

.blog_mini_img {
    width: 400px;
    max-width: 100%;
}

.bloger_img {
    height: 100px;
    width: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.bloger_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.pro_short_dis {
    font-size: 12px;
    color: var(--green-color);
    margin: 0.6rem 0;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    opacity: 0.8;
}

.for_icons_area {
    background: rgb(197, 137, 64, 8%);
    padding: 1rem;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-radius: 15px;
    margin: 1rem 0 1.5rem 0;
    gap: 0;
    /* width: fit-content3; */
}

.icon_box {
    border-right: 1px solid var(--coffee-light-color);
}

.for_icons_area .icon_box:nth-child(4) {
    border: none;
}

.icon_box .icon {
    height: 55px;
    width: 55px;
    border-radius: 100%;
    border: 1px solid var(--coffee-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 10px;
}

.icon_box .icon img {
    height: 60%;
    width: 60%;
    object-fit: contain;
}

.icon_box p {
    color: var(--coffee-color);
    font-size: 14px;
}

.grid_000 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.reel_box {
    background: red;
    aspect-ratio: 9/16;
    border-radius: 12px;
    margin: 5px;
    overflow: hidden;
    position: relative;
}

.reel_product {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 1rem;
    height: 20%;
    width: 100%;
    display: flex;
    align-items: end;
    background: linear-gradient(to top, rgb(0, 0, 0, 80%), rgb(255, 255, 255, 0));
}

.reel_product_img {
    /* height: 80px; */
    aspect-ratio: 1/1;
    width: 80px;
    overflow: hidden;
}

.reel_product_img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.reel_product_name {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #fff;
}

.reel_btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
}

.reel_product .prise {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.reel_product .prise span:nth-child(2) {
    color: #fff;
    font-size: 14px;
    opacity: 0.6;
    font-weight: 500;
}

.reel_box img {
    height: 100%;
    width: 100%;
}

.category_box {
    aspect-ratio: 1/1;
    /* background: red; */
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
    border: 1px solid var(--border-color);
    position: relative;
}

.category_title_2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #d1944ac4;
    height: 85%;
    width: 85%;
    border-radius: 12px;
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: end;
    padding: 1rem;
    line-height: 1;
    transition: all .3s ease-in-out;
    opacity: 0;
    cursor: pointer;
}

.category_box:hover .category_title_2 {
    opacity: 1;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.category_title_2 .link {
    font-size: 14px;
    color: #fff;
    position: relative;
}

.category_title_2 .link::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 110%;
    height: 1px;
    width: 150px;
    background: #fff;
}

.big_box {
    padding: 4rem 4rem 4rem 4rem;
    color: #fff;
    position: relative;
}

.big_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--coffee-color);
    z-index: -2;
}

.big_box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../img/bg_lines.png) no-repeat;
    background-position: top center;
    z-index: -1;
    opacity: 0.3;
}

.big_box .title {
    font-size: 4rem;
    line-height: 1.1;
    padding-bottom: 1rem;
    color: #fff;
}

.big_box .title::before {
    background: #fff;
    left: 0;
    transform: translateX(0);
}

.big_box_img {
    background: #fff;
    height: 290px;
    border-radius: 15px;
    overflow: hidden;
}

.big_box_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.btn-light {
    border: 1px solid var(--coffee-color);
    background: #fff;
    color: var(--coffee-color);
}

.btn-light:hover {
    border: 1px solid #fff !important;
    background: var(--coffee-color) !important;
    color: #fff !important;
}

.btn-theme-2 {
    border: 1px solid #fff !important;
    background: var(--theme-color) !important;
    color: #fff !important;
}

.btn-theme-2:hover {
    border: 1px solid var(--theme-color);
    background: #fff;
    color: var(--theme-color);
    opacity: 0.7;
}



.btn_gp {
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr 1fr; */
    display: flex;
    justify-content: center;
    gap: 2rem;
    /* border: 1px solid var(--border-color); */
    /* padding: 1rem; */
    /* border-radius: 8px; */
}

.btn_gp .link {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all .3s ease-in-out;
    position: relative;
}

.btn_gp .link::after,
.btn_gp .link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--coffee-color);
    transition: all .3s ease-in-out;
}

.btn_gp .link::before {
    opacity: 0.2;
    z-index: -2;
    width: 100%;
}

.btn_gp .link::after {
    opacity: 1;
    z-index: -1;
    width: 0;
}

.active_btn_link::after,
.btn_gp .link:hover::after {
    width: 100%;
}

.active_btn_link::after {
    opacity: 1;
    z-index: -1;
    width: 100% !important;
}

#offcanvasWishlist .bi-heart-fill {
    color: rgb(255, 48, 48);
}

.profile_area_bg {
    background: #eff3f6;
    padding: 50px 0;
}

.sticky_area {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.profile_inner_area {
    /* background: #fff; */
    padding: 2rem;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 2fr 8fr;
    gap: 1rem;
}

.profile_page_menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.profile_img_name span,
.profile_page_menu_border .p_p_link a {
    color: var(--primary-color);
    transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.profile_img_name i,
.profile_page_menu_border .p_p_link a i {
    color: var(--coffee-color);
    transition: all .3s ease-in-out;
    margin-right: 5px;
    transition: all .3s ease-in-out;
}

.p_p_link {
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    /* background-color: red; */
    transition: all .3s ease-in-out;
}

.pp_btn_active,
.profile_img_name:hover,
.p_p_link:hover {
    background: var(--coffee-color) !important;
}

.pp_btn_active span,
.pp_btn_active a,
.pp_btn_active i,
.profile_img_name:hover span,
.profile_img_name:hover i,
.p_p_link:hover a,
.p_p_link:hover i {
    color: #fff !important;
}

.profile_page_menu_border {
    /* border: 1px solid rgb(0, 0, 0, 10%); */
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1rem;
    padding: 1rem 0;
    background: #fff;
}

.profile_img_name {
    background: #fff;
    padding: 1.3rem;
    border-radius: 12px;
    cursor: pointer;
    color: var(--theme-color);
    font-size: 1rem;
    transition: all .3s ease-in-out;
}

.frame_area {
    background: #fff;
    border-radius: 12px;
    padding: 3rem;
}

.my-order-table {
    display: grid;
    grid-template-columns: 1fr 8fr 2fr;
    align-items: center;
    /* background: red; */
    background: #fafafa;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all .3s ease-in-out;
}

.my-order-table:hover {
    background-color: var(--coffee-color);
    color: #fff;
}

.my-order-table:hover .text-green {
    color: #fff !important;
}

.my-order-table img {
    width: 70px;
}