
@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
      font-family: "Poppins", sans-serif;

}

:root{
    --orange:rgba(66, 121, 97, 1);
}

.ct_green_text{
    color: var(--orange) !important;
}
.ct_fw_300{
    font-weight: 300;
}
.ct_fw_400{
    font-weight: 400;
}
.ct_fw_500{
    font-weight: 500;
}
.ct_fw_600{
    font-weight: 600;
}
.ct_fw_700{
    font-weight: 700;
}
.ct_fw_800{
    font-weight: 800;
}
.ct_fw_900{
    font-weight: 900;
}
.ct_top_bar{
    background-color: rgba(66, 121, 97, 1);
    padding: 8px 20px;
    font-size: 12px;
    color: #fff;
}

.ct_top_bar_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ct_top_bar_left{
    font-weight: 400;
}

.ct_top_bar_right{
    display: flex;
    align-items: center;
    gap: 20px;
}

.ct_order_tracker{
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s ease;
}

.ct_order_tracker:hover{
    color: #f5f5f5;
}

.ct_social_icons{
    display: flex;
    align-items: center;
    gap: 8px;
}

.ct_social_icons a{
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    transition: 0.3s ease;
}

.ct_social_icons a:hover{
    background-color: #fff;
    color: #2aa9ad;
}



.site-header{
    background:#fff;
    padding:18px 0;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img {
    max-height: 55px;
    width: 100%;
    max-width: 150px;
}

.main-nav ul{
    display:flex;
    align-items:center;
    gap:30px;
    margin:0;
    padding:0;
    list-style:none;
}

.main-nav a{
    text-decoration:none;
    color:rgba(30, 30, 30, 1);
    font-size:14px;
    text-transform:uppercase;
    font-weight:400;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:18px;
}

.header-actions a{
    color:rgba(30, 30, 30, 1);
    text-decoration:none;
    position:relative;
}

.header-search{
    position:relative;
}

.search-toggle{
    background:none;
    border:none;
    padding:0;
    color:rgba(30, 30, 30, 1);
    font-size:16px;
    cursor:pointer;
    line-height:1;
}

.search-dropdown{
    display:none;
    position:absolute;
    top:calc(100% + 16px);
    right:-10px;
    width:280px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:8px;
    box-shadow:0 12px 30px rgba(0, 0, 0, .12);
    padding:10px;
    gap:8px;
    z-index:50;
}

.header-search.active .search-dropdown{
    display:flex;
}

.search-dropdown input{
    flex:1;
    border:1px solid #e5e5e5;
    border-radius:6px;
    padding:8px 10px;
    font-size:14px;
    min-width:0;
}

.search-dropdown input:focus{
    outline:none;
    border-color:rgba(55, 101, 72, 1);
}

.search-dropdown button{
    border:none;
    border-radius:6px;
    background:rgba(55, 101, 72, 1);
    color:#fff;
    width:38px;
    flex-shrink:0;
    cursor:pointer;
}

.account-link{
    font-size:12px;
}

.cart-icon span{
    position:absolute;
    top:-8px;
    right:-8px;
    width:16px;
    height:16px;
    background:rgba(255, 72, 2, 1);
    color:#fff;
    border-radius:50%;
    font-size:9px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.menu-toggle{
    display:none;
    border:none;
    background:none;
    font-size:22px;
}

/* Mobile Menu */
.mobile-menu{
    position:fixed;
    top:0;
    right:-320px;
    width:320px;
    height:100%;
    background:#fff;
    z-index:9999;
    transition:.4s;
    padding:30px;
    overflow-y:auto;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu ul{
    list-style:none;
    padding:0;
    margin-top:40px;
}

.mobile-menu li{
    border-bottom:1px solid #eee;
}

.mobile-menu a{
    display:block;
    padding:14px 0;
    text-decoration:none;
    color:#333;
}

.close-menu{
    border:none;
    background:none;
    font-size:24px;
    float:right;
}

.mobile-menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9998;
}

.mobile-menu-overlay.active{
    opacity:1;
    visibility:visible;
}


/* home banner css S */

.ct_home_products img{
    width: 100%;
    height: 500px;
    object-fit: contain;

}

.ct_hero_section{
    position:relative;
    overflow:hidden;
    background:#09121b;
}

/* Hero slides (multi-banner carousel, admin-managed) */

.ct_hero_slide{
    position:relative;
    min-height:560px;
    display:flex;
    align-items:center;
    padding:60px 0;
    background:#09121b url("../img/banner.jpg") center center/cover no-repeat;
}

.ct_hero_slide_overlay{
    position:absolute;
    inset:0;
    background:rgba(0, 0, 0, 1);
    opacity: 0.4;
}

.ct_hero_section .owl-dots{
    position:absolute;
    bottom:20px;
    left:0;
    right:0;
    z-index:3;
    text-align:center;
}

.ct_hero_section .owl-dot span{
    background:rgba(255,255,255,.5) !important;
}

.ct_hero_section .owl-dot.active span{
    background:#fff !important;
}

.ct_hero_section .owl-nav{
    position:absolute;
    inset:0;
    z-index:3;
    pointer-events:none;
}

.ct_hero_section .owl-nav button.owl-prev,
.ct_hero_section .owl-nav button.owl-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.2) !important;
    color:#fff !important;
    font-size:20px;
    pointer-events:auto;
}

.ct_hero_section .owl-nav button.owl-prev:hover,
.ct_hero_section .owl-nav button.owl-next:hover{
    background:rgba(255,255,255,.35) !important;
}

.ct_hero_section .owl-nav button.owl-prev{ left:20px; }
.ct_hero_section .owl-nav button.owl-next{ right:20px; }

.ct_hero_section .container{
    position:relative;
    z-index:2;
}

.ct_hero_content h1{
    color:#fff;
    font-size:46px;
    line-height:1;
    font-weight:700;
    max-width: 600px;
    margin-bottom:15px;
}

.ct_hero_content p{
    color:#fff;
    font-size:14px;
    line-height:1.7;
    max-width:700px;
    margin-bottom:30px;
}

.ct_features{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.ct_features span{
    color:#fff;
    font-size:14px;
}

.ct_features i{
    color:#fff;
    font-size:12px;
    margin-right:6px;
}



.ct_btn_outline{
    border:1px solid rgba(255,255,255,.4);
    color:#fff;
    border-radius:20px;
    padding:13px 32px;
    font-size:16px;
    font-weight:500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s ease;
    text-decoration: none;
}

.ct_btn_outline:hover{
    background:#fff;
    color:#000;
}





.ct_btn_orange {
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s ease;
    border: 1px solid var(--orange);
    outline: none;
}

.ct_btn_orange:hover {
    background: #fff;
    color: #000;
    border-color: var(--orange);
}

.pagination {
    gap: 8px;
}
.pagination .page-link {
    border: 1px solid #E3E0D8;
    color: #4A4A4A;
    border-radius: 10px;
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: .2s ease;
    box-shadow: none;
}
.pagination .page-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}
.pagination .page-link:focus {
    box-shadow: 0 0 0 3px rgba(66, 121, 97, .18);
}
.pagination .page-item.active .page-link {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 4px 12px rgba(66, 121, 97, .3);
}
.pagination .page-item.disabled .page-link {
    color: #C4C4C4;
    background: #FAFAFA;
    border-color: #EFEFEF;
}


.ct_py_60{
    padding-block: 60px;
}


/* home banner css E */


.ct_feature_sec{
    background-image: url(../img/feature_img_bg.jpg);
    background-size: contain;
    background-position: center;
}

.ct_feature_card{
    text-align: center;
    padding: 15px 20px;
    border-right: 1px solid rgb(55 101 72 / 37%);
    height: 100%;
}

.ct_icon{
   
    margin: 0 auto 18px;
}

.ct_icon img{
    width: 40px;
    height: 40px;
}

.ct_feature_card h6{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ct_feature_card p{
    font-size: 13px;
    color: rgba(85, 85, 85, 1);
    line-height: 1.7;
    margin-bottom: 0;
}
.ct_feature_border_box{
    border: 1px solid rgba(55, 101, 72, 1);
    border-radius: 50px;
    padding: 40px 15px;
}
.ct_border_none{
    border-right: none;
}

.ct_grid_5{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 40px 20px;
}



.ct_resources_section{
    background:#fff;
}




.ct_service_section{
    background:rgba(55, 101, 72, 1);
    padding:40px 0;
}

.ct_service_box{
    display:flex;
    align-items:start;
    justify-content:center;
    gap:15px;
    padding:18px 20px;
    border-right:1px solid rgba(255,255,255,.25);
    transition:.35s;
    height:100%;
}

.ct_service_icon{
    width:24px;
    height:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    flex-shrink:0;
    transition:.35s;
}

.ct_service_content h6{
    color:#fff;
    font-size:16px;
    font-weight:600;
    margin-bottom:4px;
    text-transform:uppercase;
}

.ct_service_content p{
    color:rgba(215, 215, 215, 1);
    font-size:14px;
    margin:0;
}

.ct_border_none{
    border-right:none;
}

/* Hover */

.ct_service_box:hover{
    background:rgba(255,255,255,.05);
}

.ct_service_box:hover .ct_service_icon{
    background:#fff;
    color:#1d4f9d;
    transform:rotateY(180deg);
}





.ct_inner_banner {
    position: relative;
    background: url("../img/banner.jpg") center center/cover no-repeat;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ct_inner_banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.ct_banner_content {
    position: relative;
    z-index: 2;
}

.ct_banner_content h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1;
}

.ct_breadcrumb_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ct_breadcrumb_list li {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}



.ct_breadcrumb_list li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.ct_breadcrumb_list li a:hover {
    color: var(--orange);
}


.ct_section_title {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 1);
}
.ct_sub_title{
    color: rgba(10, 69, 149, 1);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}



/* Tablet */


.ct_fs_14{
    font-size: 14px;
}

.pt_slider_nav{
    display:flex;
    gap:8px;
}

.pt_slider_nav button{
    width:34px;
    height:34px;
    border:1px solid #cfcfcf;
    background:#fff;
    cursor:pointer;
    transition:.3s;
}

.pt_slider_nav button:hover{
    background:var(--orange);
    border-color:var(--orange);
    color:#fff;
}





.ct_reservation_form {
    max-width: 850px;
    margin: auto;
    padding: 80px 0;
}

.ct_form_desc {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(85, 85, 85, 1);
    font-size: 14px;
    line-height: 1.7;
}

.ct_form_section {
    margin-bottom: 35px;
}

.ct_form_section h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

.ct_reservation_form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

.ct_reservation_form .form-control,
.ct_reservation_form .form-select {
    height: 48px;
    border-radius: 0;
    border: 1px solid #dcdcdc;
    font-size: 14px;
}

.ct_reservation_form textarea.form-control {
    height: auto;
    resize: none;
}

.ct_simple_list {
    padding-left: 18px;
    margin-bottom: 0;
}

.ct_simple_list li {
    margin-bottom: 6px;
    font-size: 14px;
    color: rgba(85, 85, 85, 1);
}

.ct_reservation_form .form-check-label {
    font-size: 14px;
    color: #000;
}

.ct_reservation_form .form-check {
    margin-bottom: 8px;
}






.ct_category_slider_wrap{
    position: relative;
    padding: 50px 45px;
    background-color: rgba(244, 244, 244, 1);
}

.ct_category_item{
    text-align:center;
}

.ct_category_item img{
    width:100px !important;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    margin:0 auto;
    border:1px solid #d8d8d8;
}

.ct_category_item h6{
    font-size:14px;
    font-weight:500;
    margin-top:15px;
    margin-bottom:0;
    color:#444;
    line-height:1.4;
}

/* Owl Navigation */




.ct_sidebar{
    padding-right:30px;
}

.ct_filter_box{
    padding-bottom:30px;
    margin-bottom:30px;
    border-bottom:1px solid #e5e5e5;
}

.ct_filter_title{
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
}

.ct_filter_select{
    border-radius:0;
    margin-bottom:20px;
}

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

.ct_filter_list li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
    font-size:14px;
}

.ct_filter_list label{
    display:flex;
    gap:10px;
    cursor:pointer;
    align-items: center;
}

.ct_filter_list input{
    width:13px;
    height:13px;
    accent-color: var(--orange );
}

/* Range Slider */

#ct_price_slider{
    height:3px;
    background:#ddd;
    border:none;
}

#ct_price_slider .ui-slider-range{
    background:#f37021;
}

#ct_price_slider .ui-slider-handle{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#f37021;
    border:none;
    top:-5px;
}

/* Top Bar */

.ct_product_topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.ct_sort_select{
    width:180px;
    border-radius:0;
}

.ct_product_topbar p{
    margin:0;
    font-size:13px;
}

/* Product Card */




/* Product Title */



.ct_rel_products{
    padding: 60px 0;
}

.ct_rel_title{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #222;
}

.ct_rel_card {
    position: relative;
    background: #fff;

}
.ct_rel_slider .item {
    width: calc(100% - 20px);
    margin-inline: auto;
}
.ct_rel_img{
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.ct_rel_fav{
    position: absolute;
    top: 12px;
    right: 12px;
    color: #222;
    text-decoration: none;
    z-index: 2;
}

.ct_rel_content{
    padding-top: 12px;
}

.ct_rel_content h6{
    font-size: 13px;
    color: #222;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ct_rel_bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ct_rel_bottom span{
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.ct_rel_rating{
    display: flex;
    align-items: center;
    gap: 4px;
}

.ct_rel_rating i{
    color: #f6b300;
    font-size: 12px;
}

.ct_rel_rating small{
    font-size: 12px;
    color: rgba(85, 85, 85, 1);
}






/* Slider Arrows */

.et_cart_modal {
    border-radius: 0;
    border: 0;
    padding: 16px;
}

.et_close_btn {
    border: 0;
    background: transparent;
    color: #111;
    font-size: 14px;
    margin-bottom: 15px;
}

.et_cart_title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    color: #111;
}

.et_clear_cart {
    font-size: 13px;
    color: #111;
    text-decoration: none;
}

.et_cart_card {
    border: 1px solid #bdbdbd;
    padding: 20px;
    position: relative;
    margin-bottom: 18px;
}

.et_remove_item {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #111;
    text-decoration: none;
    font-size: 12px;
}

.et_cart_img {
    text-align: center;
}

.et_cart_img img {
    max-width: 90px;
    width: 100%;
}

.et_cart_info h6 {
    font-size: 12px;
    color: #333;
    margin-bottom: 10px;
}

.et_cart_info h5 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.et_cart_info label {
    display: block;
    font-size: 11px;
    margin-bottom: 8px;
    color: rgba(85, 85, 85, 1);
}

.et_qty_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.et_qty_wrap button {
    width: 28px;
    height: 28px;
    border: 0;
    background: rgba(122, 154, 69, 1);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.et_qty_wrap input {
    width: 65px;
    height: 28px;
    border: 1px solid #d9d9d9;
    text-align: center;
    font-size: 12px;
}

.et_cart_summary {
    margin-top: 15px;
}

.et_cart_summary h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.et_cart_summary p {
    font-size: 12px;
    color: #333;
    margin-bottom: 8px;
}

.et_add_items_btn {
    width: 100%;
    height: 52px;
    border: 1px solid rgba(122, 154, 69, 1);
    color: rgba(122, 154, 69, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 15px;
    font-weight: 600;
    margin-top: 25px;
    transition: 0.3s ease;
}

.et_add_items_btn:hover {
    background: rgba(55, 101, 72, 1);
    color: #fff;
}

.et_checkout_btn {
    width: 100%;
    height: 52px;
    background: rgba(122, 154, 69, 1);
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    font-size: 15px;
    border-radius: 15px;
    font-weight: 600;
}

.et_checkout_btn:hover {
    color: #fff;
}

#etCartModal .modal-dialog {
    max-width: 500px;
}

.et_auth_wrap{
    min-height: 100vh;
    position: relative;
}
.ct_auth_logo img{
    width: 100%;
    object-fit: contain;
    max-width: 200px;
}

.et_auth_top_shape{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.et_auth_top_shape img{
    width: 100%;
}

.et_auth_inner{
    margin: auto;
}

.et_auth_tabs .nav-link{
    border: none !important;
    background: transparent !important;
    font-size: 28px;
    font-weight: 600;
    color: rgba(196, 196, 196, 1);
    padding: 0 25px;
}

.et_auth_tabs .nav-link.active{
    color: rgba(55, 101, 72, 1);
}
.ct_login_bg_12{
    background-image: url(../img/feature_img_bg.jpg);
    background-position: center;
    background-size: contain;
    padding-block: 100px;
}

.et_form-control{
    height: 48px;
    border-radius: 0;
    border: 1px solid #d9d9d9;
    border-radius: 20px;
    font-size: 13px;
    box-shadow: none !important;
}

.et_form-control:focus{
    border-color: var(--orange);
}

.et_password_btn{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: rgba(85, 85, 85, 1);
    font-size: 13px;
}

.et_forgot_link{
    color: rgba(85, 85, 85, 1);
    text-decoration: none;
    font-size: 11px;
}

.et_bottom_text{
    text-align: center;
    margin-top: 18px;
    font-size: 12px;
    color: #555;
}

.et_bottom_text a{
    color: var(--orange);
    text-decoration: none;
}

.et_terms_check{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.et_terms_check .form-check-input{
    width: 16px;
    height: 16px;
    border-radius: 0;
    margin-top: 2px;
    cursor: pointer;
}

.et_terms_check .form-check-label{
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    cursor: pointer;
}

.et_terms_check .form-check-label a{
    color: rgba(55, 101, 72, 1);
    text-decoration: underline;
    transition: 0.3s ease;
}


.et_otp_section{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.et_otp_box{
    max-width: 520px;
    margin: auto;
    text-align: center;
}

.et_otp_title{
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.et_otp_sent_text{
    font-size: 13px;
    color: #333;
    margin-bottom: 12px;
}

.et_otp_desc{
    font-size: 14px;
    color: #555;
    margin-bottom: 35px;
}

.et_otp_inputs{
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.et_otp_inputs .form-control{
    width: 48px;
    height: 48px;
    text-align: center;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 600;
    padding: 0;
}

.et_otp_inputs .form-control:focus{
    border-color: var(--orange);
    box-shadow: none;
}

.et_resend_otp{
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 500;
    text-decoration: underline;
    margin-bottom: 10px;
}

.et_timer_text{
    font-size: 12px;
    color: #555;
    margin-bottom: 0;
}

.et_otp_box .ct_orange_btn{
    max-width: 300px;
    margin-inline: auto;
}




.etc_order_success_section{
    padding: 80px 0;
}



.etc_order_success_title{
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.etc_order_success_desc{
    font-size: 14px;
    line-height: 1.8;
    color: rgba(85, 85, 85, 1);
    margin-bottom: 40px;
}



.gt_account_sidebar{
    background: rgba(244, 244, 244, 1);
    padding: 30px 20px;
    height: 100%;
    min-height: 700px;
}

.gt_account_tabs .nav-link{
    border: none;
    background: transparent;
    text-align: left;
    color: rgba(85, 85, 85, 1);
    font-size: 14px;
    padding: 12px 0;
    border-radius: 0;
}

.gt_account_tabs .nav-link.active{
    background: transparent;
    color: var(--orange);
    font-weight: 500;
}

.gt_page_title{
    font-size: 26px;
    font-weight: 600;
    color: #111;
    margin-bottom: 30px;
}

.gt_sub_title{
    font-size: 26px;
    font-weight: 600;
    color: #111;
    margin: 40px 0 25px;
}

.gt_account_section .form-label{
    font-size: 12px;
    color: rgba(85, 85, 85, 1);
    margin-bottom: 6px;
}

.gt_account_section .form-control{
    height: 48px;
    border-radius: 0;
    border: 1px solid #d9d9d9;
    box-shadow: none;
}
.gt_account_section .form-label{
    font-size: 14px;
    font-weight: 500;
}
.gt_account_section .form-control:focus{
    border-color: var(--orange);
}

.gt_form_hint{
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(85, 85, 85, 1);
}

.gt_password_field{
    max-width: 420px;
    margin-bottom: 20px;
}

.gt_eye_btn{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #555;
}

.gt_save_btn{
    min-width: 240px;
    height: 54px;
    border: none;
    background: var(--orange);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
}

.gt_save_btn:hover{
    background: #e44d00;
}

.gt_order_card{
    border-bottom: 1px solid #dcdcdc;
    padding: 20px 0;
}

.gt_order_logo{
    width: 100px;
    height: 100px;
    object-fit: contain;
    background-color: rgba(250, 250, 250, 1);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 1);
}

.gt_order_details{
    display: grid;
    grid-template-columns: 90px 10px 1fr;
    gap: 10px 15px;
}

.gt_order_details span{
    font-size: 14px;
    color: #000;
}

.gt_order_details p{
    margin: 0;
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.gt_order_price{
    font-size: 24px;
    font-weight: 700;
    text-align: right;
    margin-bottom: 15px;
}

.gt_order_action{
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.gt_order_btn{
    /* min-width: 82px; */
    height: 40px;
    background: var(--orange);
    color: #fff;
    border: none;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
    white-space: nowrap;
}

.gt_order_btn_outline{
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
}

.gt_order_btn_outline:hover{
    background: var(--orange);
    color: #fff;
}

.gt_feedback_modal{
    border-radius: 0;
    border: none;
    padding: 30px;
    position: relative;
}

.gt_close_btn{
    position: absolute;
    right: 20px;
    top: 20px;
    border: none;
    background: transparent;
    font-size: 24px;
    color: #222;
    z-index: 2;
}

.gt_feedback_title{
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    color: #222;
    margin-bottom: 30px;
    margin-top: 20px;
}

.gt_rating_wrap{
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 40px;
}

.gt_rating_wrap i{
    font-size: 26px;
    color: #ffb400;
    cursor: pointer;
}

.gt_feedback_label{
    font-size: 18px;
    color: #222;
    margin-bottom: 12px;
}

.gt_feedback_textarea{
    min-height: 150px !important;
    resize: none;
    border-radius: 0;
    box-shadow: none !important;
    border: 1px solid #cfcfcf;
    padding: 15px;
}

.gt_submit_btn{
    width: 100%;
    height: 50px;
    border: none;
    background: var(--orange);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 30px;
    transition: 0.3s;
}

.gt_submit_btn:hover{
    background: var(--orange);
}

#gtFeedbackModal .modal-dialog{
    max-width: 500px;
}

.pt_order_details_wrap{
    max-width: 700px;
}

.pt_section_title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

.pt_order_header{
    display: flex;
    gap: 20px;
    align-items: flex-start;
}



.pt_order_info_grid{
    display: grid;
    grid-template-columns: 140px 10px 1fr;
    gap: 8px 20px;
}

.pt_order_info_grid span{
    font-size: 14px;
    color: rgba(0, 0, 0, 1);
}

.pt_order_info_grid p{
    margin: 0;
    font-size: 14px;
    color: rgba(0, 0, 0, 1);
}

.pt_product_item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.pt_product_left{
    display: flex;
    align-items: center;
    gap: 15px;
}

.pt_product_left img{
    width: 55px;
}

.pt_product_left h5{
    font-size: 16px;
    margin-bottom: 6px;
}

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

.pt_product_item h4{
    font-size: 16px;
    font-weight: 600;
}

.pt_address_box h6{
    font-size: 14px;
    margin-bottom: 10px;
    color: rgba(85, 85, 85, 1);
}

.pt_address_box p{
    font-size: 14px;
    margin-bottom: 5px;
    color: rgba(85, 85, 85, 1);
}

.pt_payment_row{
    display: grid;
    grid-template-columns: 150px 30px 1fr;
    margin-bottom: 10px;
}

.pt_payment_row span{
    font-size: 14px;
    color: rgba(85, 85, 85, 1);
}

.pt_track_steps{
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 20px;
    border: 1px solid rgba(128, 131, 134, 1);
    padding: 30px 15px;
}

.pt_track_steps:before{
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    top: 37px;
    height: 2px;
    background: #777;
}

.pt_track_step{
    width: 25%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pt_track_dot{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(85, 85, 85, 1);
    display: block;
    margin: auto;
}

.pt_active .pt_track_dot{
    background: rgba(55, 101, 72, 1);
}
.pt_track_step  h5{
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
}
.pt_track_step p{
    font-size: 12px;
    margin-top: 10px;
    line-height: 1.4;
    color: rgba(85, 85, 85, 1);
    margin-bottom: 0px;
}
.pt_bloom {
    box-shadow: 0px 0px 0px 4px rgba(29, 137, 228, 0.5);
}

.ct_footer{
    background:rgba(28, 28, 28, 1);
    color:#fff;
    padding-top:70px;
}

.ct_footer_logo{
    display:inline-block;
    margin-bottom:20px;
}

.ct_footer_logo img{
    max-width:180px;
}

.ct_footer h5{
    font-size:16px;
    font-weight:500;
    margin-bottom:25px;
    color:#fff;
}

.ct_footer_text,
.ct_address{
    font-size:14px;
    color:rgba(255,255,255,1);
    line-height:1.9;
}

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

.ct_footer_links li{
    margin-bottom:12px;
}

.ct_footer_links li a{
    color:rgba(255,255,255,1);
    text-decoration:none;
    transition:.3s;
    font-size:14px;
    font-weight:400;
    position:relative;
    padding-left:15px;
}

.ct_footer_links li a:before{
    content:"•";
    position:absolute;
    left:0;
    color:#fff;
}

.ct_footer_links li a:hover{
    color:#4ea6ff;
    padding-left:20px;
}

.ct_footer_phone{
    display:block;
    font-size:24px;
    color:#fff;
    font-weight:500;
    text-decoration:none;
    margin:18px 0 10px;
}
a,a:hover{
    text-decoration: none;
}

.ct_footer_email{
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

.ct_footer_email:hover,
.ct_footer_phone:hover{
    color:#4ea6ff;
    text-decoration:none;
}

.ct_social_icon{
    display:flex;
    padding:0;
    margin:0;
    list-style:none;
}

.ct_social_icon li{
    margin-right:10px;
}

.ct_social_icon li a{
    width:40px;
    height:40px;
    border:1px solid rgba(255,255,255,.3);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.ct_social_icon li a:hover{
    background:var(--orange);
    border-color:var(--orange);
    transform:translateY(-4px);
}

.ct_footer_input{
    height:50px;
    border:none;
    border-radius:4px;
    background-color: rgba(43, 42, 42, 1);
    border:1px solid rgb(255 255 255 / 44%);
    box-shadow:none !important;
}

.ct_footer_input::placeholder{
    color:#888;
}

.ct_footer_bottom{
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:40px;
    background-color: rgba(55, 101, 72, 1);
    padding:10px 0;
}

.ct_footer_bottom p{
    margin:0;
    color:rgba(255,255,255,1);
    font-size:14px;
}


.pt_track_order_sec{
    background:#fff;
}

.pt_track_title{
    font-size:32px;
    font-weight:600;
    color:#111;
    margin-bottom:18px;
}

.pt_track_desc{
    font-size:15px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.pt_track_radio{
    display:flex;
    align-items:center;
    gap:35px;
    margin-bottom:25px;
}

.pt_track_radio .form-check{
    display:flex;
    align-items:center;
    margin:0;
}

.pt_track_radio .form-check-input{
    margin-top:0;
    box-shadow:none;
    cursor:pointer;
}

.pt_track_radio .form-check-label{
    margin-left:8px;
    font-size:14px;
    cursor:pointer;
    color:#444;
}

.pt_label{
    display:block;
    font-size:14px;
    color:#222;
    font-weight:500;
    margin-bottom:10px;
}

.pt_input{
    height:56px;
    border:1px solid #dcdcdc;
    border-radius:0;
    box-shadow:none !important;
    padding:0 20px;
    font-size:14px;
}

.pt_input::placeholder{
    color:#9b9b9b;
}

.ct_btn_orange{
    height:56px;
    font-size:16px;
    font-weight:600;
}

.ct_faq_section{
    background:#fff;
}

.ct_faq_heading{
    font-size:13px;
    font-weight:700;
    color:#222;
    letter-spacing:.8px;
    margin-bottom:25px;
    text-transform:uppercase;
}

.ct_faq_accordion .accordion-item{
    border:0;
    border-bottom:1px solid #ececec;
    border-radius:0;
    padding:4px 0;
}

.ct_faq_accordion .accordion-button{
    box-shadow:none;
    background:transparent;
    padding:18px 0;
    font-size:15px;
    font-weight:600;
    color:#2b2b2b;
    display:flex;
    align-items:center;
}

.ct_faq_accordion .accordion-button:not(.collapsed){
    background:transparent;
    color:#2b2b2b;
    box-shadow:none;
}

.ct_faq_accordion .accordion-button::after{
    display:none;
}

.ct_faq_icon{
    width:18px;
    height:18px;
    min-width:18px;
    border:1px solid #0d6efd;
    color:#0d6efd;
    border-radius:50%;
    display:flex;
    position: relative;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
    margin-right:14px;
    transition:.3s;
}
.ct_sky_text{
    color: rgba(55, 101, 72, 1);
}
.ct_faq_icon:before{
    content: "+";
    position: absolute;
}

.ct_faq_accordion .accordion-button:not(.collapsed) .ct_faq_icon:before{
    content: "-";
    position: absolute;
}

.ct_faq_accordion .accordion-body{
    padding:0 0 18px 32px;
    color:#777;
    font-size:14px;
    line-height:26px;
}



.ct_sec_title{
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}


.ct_input{
    height:56px;
    border:1px solid #d9d9d9;
    border-radius:0;
    box-shadow:none !important;
    padding:14px 16px;
    font-size:15px;
}

textarea.ct_input{
    height:120px;
    resize:none;
}

.ct_input::placeholder{
    color:#9a9a9a;
}





.cart_title{
    font-size:30px;
    font-weight:600;
}

.cart_notice{
    background:rgba(216, 255, 230, 1);
    border:1px solid rgba(55, 101, 72, 1);
    color:#555;
    padding:12px 18px;
    font-size:14px;
    border-radius:4px;
}

.cart_notice i{
    color:#ff6b35;
    margin-right:8px;
}

.cart_table{
    min-width:900px;
}

.cart_table thead th{
    background:rgba(55, 101, 72, 1);
    border:none;
    color:rgba(255, 255, 255, 1);
    font-size:14px;
    font-weight:500;
    padding:18px;
}

.cart_table tbody td{
    padding:22px 18px;
    vertical-align:middle;
    font-size: 14px;
}

.cart_table tbody tr{
    border-bottom:1px solid #e5e5e5;
}

.cart_remove{
    background:none;
    border:none;
    font-size:24px;
    color:#777;
}

.cart_product_img{
    width:70px;
}

.cart_product_name{
    font-size:14px;
    font-weight:600;
    margin:0;
}

.cart_qty{
    display:flex;
    align-items:center;
    gap:10px;
}

.cart_qty button{
    width:30px;
    height:30px;
    border:none;
    background:rgba(122, 154, 69, 1);
    border-radius: 5px;
    color:#fff;
    font-weight:700;
}

.cart_qty input{
    width:45px;
    text-align:center;
    border:1px solid transparent;
    height:30px;
}

.cart_coupon_btn{
    background:#1989ff;
    color:#fff;
    border-radius:0;
    padding:0 28px;
    white-space:nowrap;
}

.cart_coupon_btn:hover{
    color:#fff;
}

.cart_total_heading{
    font-size:22px;
    font-weight:600;
    margin-bottom:10px;
}

.cart_total_table td{
    padding:18px 0;
    border-color:#ddd;
    font-size: 14px;
    color: rgba(85, 85, 85, 1);
}

.cart_total_table tr:last-child td{
    font-size:16px;
    font-weight: 600;
}



.checkout_title{
    font-size:32px;
    font-weight:600;
    margin-bottom:25px;
}

.checkout_subtitle{
    font-size:20px;
    font-weight:500;
    margin-bottom:18px;
}

.checkout_label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:500;
    color:#333;
}

.checkout_input{
    height:50px;
    border-radius:0;
    border-radius: 10px;
    box-shadow:none !important;
    border:1px solid #d9d9d9;
    font-size:14px;
}

.checkout_input::placeholder{
    color:#bbb;
    font-size:13px;
}

textarea.checkout_input{
    height:120px;
}

.checkout_checkbox{
    font-size:14px;
    color:#555;
}


.checkout_payment_title{
    font-size:16px;
    font-weight:600;
}

.checkout_small_text{
    font-size:13px;
    color:#777;
    margin-bottom:12px;
}

.checkout_pay_img{
    height:42px;
}

.checkout_transfer_logo{
    height:28px;
}

.checkout_secure_title{
    font-size:18px;
    font-weight:600;
}

.checkout_cards{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.checkout_cards img{
    height:24px;
}

.checkout_policy{
    color:#777;
    font-size:13px;
    line-height:1.7;
}

.checkout_btn{
    width:100%;
    height:60px;
    background:rgba(122, 154, 69, 1);
    color:#fff;
    border-radius:0;
    font-weight:600;
    letter-spacing:.5px;
    border-radius: 15px;
}

.checkout_btn:hover{
    background:#0d6efd;
    color:#fff;
}

.checkout_note{
    color:#888;
    font-size:12px;
}

.checkout_payment_box hr{
    margin:25px 0;
}
.ct_secure_payment_1{
    width: 280px;
    object-fit: contain;
    padding-top: 40px;
}


.vs_modal{
    border:none;
    border-radius:16px;
    overflow:hidden;
}

.vs_close_btn{
    position:absolute;
    top:18px;
    right:18px;
    z-index:10;
}

.vs_logo_circle img{
    width:80px;
}

.vs_title{
    font-size:32px;
    font-weight:700;
    color:#111;
}

.vs_subtitle{
    font-size:16px;
    font-weight:700;
    letter-spacing:1px;
    color:#000;
    padding-block: 15px;
}

.vs_para{
    color:#000;
    font-weight: 500;
    font-size: 16px;
    margin-bottom:4px;
}

.vs_small_text{
    font-size:14px;
    color:rgba(85, 85, 85, 1);
}

.vs_feature{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:18px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 18px;
}

.vs_icon{
    width:46px;
    height:46px;
    border-radius:50%;
    background:rgba(237, 237, 237, 1);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:20px;
}
.vs_icon svg{
    width: 20px;
    height: 20px;
}

.vs_feature h6{
    font-size:15px;
    font-weight:700;
    margin-bottom:5px;
}

.vs_feature p{
    font-size:13px;
    color:#666;
    margin:0;
}

.vs_standard_box{
    border:1px solid #d8e5f4;
    padding:25px;
    margin-top:10px;
}

.vs_standard_box h5{
    text-align:center;
    color:rgba(14, 94, 168, 1);
    font-weight:700;
    margin-bottom:20px;
    font-size: 24px;
}
.vs_standard img{
    width: 30px;
    height: 30px;
}
.vs_standard{
    padding:10px;
}

.vs_standard p{
    margin-top:10px;
    font-size:14px;
    color:#000;
    font-weight: 600;
}
.vs_standard_box .col-md-3 + .col-md-3{
    border-left: 1px solid rgba(14, 94, 168, 1);
}

.vs_btn{
    background:rgba(55, 101, 72, 1);
    color:#fff;
    padding:10px 35px;
    border-radius:4px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.vs_btn:hover{
    background:#fff;
    color:#000;
}

.vs_btn_outline{
    border:1px solid rgba(55, 101, 72, 1);
    color:rgba(55, 101, 72, 1);
    display: flex;
    align-items: center;
    gap: 5px;
    padding:10px 35px;
    justify-content: center;
}

.vs_btn_outline:hover{
    background:#0056b3;
    color:#fff;
}

.vs_footer{
    background:#0b3f8a;
    padding:16px 24px;
    font-size:13px;
}

.vs_modal .modal-body {
    padding: 50px 80px;
}


.ct_category_section {
    background: #fff;
}

.ct_category_section .ct_sub_title {
    color: rgba(55, 101, 72, 1);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.ct_category_item a {
    display: inline-block;
    color: inherit;
}

.ct_category_item h6 {
    text-transform: uppercase;
}


  .custom-packaging {
    padding: 10px 0;
  }


  .custom-upload-group {
    margin-bottom: 17px;
  }

  .custom-upload-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #222;
    margin-bottom: 4px;
  }

  .custom-upload-row {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .custom-file-input {
    height: 40px;
    flex: 1;
    min-width: 0;
    border: 1px solid #d1d1d1;
    border-radius: 5px;
    padding: 0 12px;
    font-size: 14px;
    color: #999;
    outline: none;
  }

  .custom-file-input::placeholder {
    color: #bcbcbc;
  }

  .custom-upload-btn {
    height: 40px;
    padding-inline: 15px;
    border: 0;
    border-radius: 4px;
    background: rgba(122, 154, 69, 1);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
  }

  .custom-upload-btn:hover {
    background: #6c8e35;
  }

  .custom-file-note {
    font-size: 13px;
    color: #777;
    margin-top: 5px;
  }




    /* =========================
           Featured Product Section
        ========================= */

        .featured-products {
            position: relative;
            overflow: hidden;
            padding: 100px 0;
            background: #245d3d;
        }

        /* Background pattern */
        .featured-products::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image:url(../img/product_pattern.png);
            pointer-events: none;
            opacity: 0.5;
        }

        .featured-products .container {
            position: relative;
            z-index: 1;
        }

        /* Heading */
        .featured-title {
            margin: 0 0 24px;
            color: #fff;
            text-align: center;
            font-size: 20px;
            line-height: 1.2;
            font-weight: 600;
            letter-spacing: .3px;
            text-transform: uppercase;
        }

        /* =========================
           Category Navigation
        ========================= */

        .product-tabs {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 34px;
            margin-bottom: 20px;
        }

        .product-tab {
            position: relative;
            padding: 0;
            border: 0;
            background: transparent;
            color: #fff;
            font-size: 14px;
            line-height: 1;
            font-weight: 400;
            cursor: pointer;
            transition: .2s ease;
        }

        .product-tab.active {
            color: #f2c600;
        }

        .product-tab:hover {
            color: #f2c600;
        }

        /* =========================
           Product Card
        ========================= */

        .product-item {
            min-width: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .product-image{
            position: relative;
        }
.product-image img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
    object-position: bottom;
    border-radius: 15px;
}

        .product-wishlist {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 15px;
            height: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #111;
            font-size: 14px;
            background: transparent;
            border: 0;
            padding: 0;
            cursor: pointer;
        }

        .product-wishlist.active {
            color: #e0574c;
        }


        /* =========================
           Product Information
        ========================= */

        .product-info {
            padding-top: 15px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .product-info form {
            margin-top: auto;
            padding-top: 8px;
        }

        .product-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 5px;
        }

        .product-name {
            margin: 0;
            color: #fff;
            font-size: 14px;
            line-height: 1.25;
            font-weight: 600;
            text-transform: uppercase;
            min-height: calc(1.25em * 2);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-price {
            flex-shrink: 0;
            color: rgba(251, 188, 5, 1);
            font-size:14px;
            line-height: 1.2;
            font-weight: 600;
        }

        .product-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 5px;
            margin-top: 8px;
        }

        .product-quantity,
        .product-unit {
            color: rgba(255, 255, 255, .85);
            font-size: 14px;
            line-height: 1.2;
        }

        /* =========================
           View More Button
        ========================= */

        .view-products-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 133px;
            height: 30px;
            margin-top: 20px;
            padding: 0 15px;
            border: 0;
            border-radius: 7px;
            background: #8bad68;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            transition: .2s ease;
        }

        .view-products-btn:hover {
            background: #9dbc78;
            color: #fff;
        }




            .why-choose-section {
        position: relative;
        overflow: hidden;
        padding: 100px 0;
    }


    .why-choose-section .container {
        position: relative;
        z-index: 1;
    }

    /* =========================
       Left Content
    ========================= */


    .why-label {
        margin: 0 0 9px;
        color: #28705b;
        font-size: 16px;
        line-height: 1.2;
        font-weight: 600;
        letter-spacing: .3px;
        text-transform: uppercase;
    }

    .why-title {
        margin: 0 0 17px;
        color: rgba(43, 43, 43, 1);
        font-size: 28px;
        line-height: 1.05;
        font-weight: 600;
    }

    /* =========================
       Feature List
    ========================= */

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

    .why-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }

    .why-icon {
        flex: 0 0 20px;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1px;
        color: #4b846e;
        font-size: 14px;
    }

.why-item-content {
    min-width: 0;
    display: flex;
    gap: 10px;
}
    .why-item-title {
        margin: 0 0 3px;
        color: #28705b;
        font-size: 18px;
        line-height: 1.2;
        font-weight: 500;
    }


    .why-item-text {
        margin: 0;
        color: #777;
        font-size: 14px;
        line-height: 1.4;
        font-weight: 400;
    }

    /* =========================
       Image Layout
    ========================= */

    .why-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: center;
    }

    .why-image {
        overflow: hidden;
        border-radius: 11px;
        background: #ddd;
    }

    .why-images img{
        width: 100%;
        object-fit: cover;
        height: 250px;
        margin-top: 20px;
        border-radius: 15px;
    }
.ct_why_img_right{
    margin-top: -50px;
}



.ct_testimonial_card {
    background: #fff;
    border: 1px solid rgba(30, 30, 30, 1);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: .3s;
    width: calc(100% - 10px);
    margin-inline: auto;
}
.ct_testimonial_slider .item {
    height: 100%;
}
.ct_testimonial_slider .owl-stage{
    display: flex;
}
.ct_testimonial_card svg{
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
}

.ct_testimonial_card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}
.ct_bottom {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.ct_bottom h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0px;
}
.ct_bottom span {
    font-size: 12px;
    color: #8b8b8b;
}
.ct_rating i {
    color: #ffb400;
    font-size: 13px;
    white-space: nowrap;
}
.ct_testimonial_slider .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ct_testimonial_slider .owl-dot span {
    width: 10px;
    height: 10px;
    background: #d7d7d7 !important;
    display: flex;
    border-radius: 100px;
    margin: 5px;
}
.ct_testimonial_slider .owl-dot.active span {
    background: var(--orange) !important;
}

.ct_py_100{
    padding-block: 100px;
}

.ct_product_tab button{
    border: 1px solid rgba(87, 87, 87, 1);
    padding: 12px 25px;
    border-radius: 10px;
    min-width: 130px;
    color: rgba(85, 85, 85, 1);
    text-align: center;
    font-size: 14px;
    background-color: transparent;
}
.ct_product_tab button.active{
    background-color: rgba(122, 154, 69, 1);
    color: #fff;
    border-color:rgba(122, 154, 69, 1) ;
}

.form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}
.form-check-input:focus {
    box-shadow: unset;
    border-color: var(--orange);
}



    /* =========================================
       Product Detail
    ========================================= */

    .er_product_detail {
        padding: 32px 0;
        background: #fff;
    }

    .er_product_gallery {
        position: relative;
    }

    /* Main Image */
    .er_product_main_slider {
        position: relative;
    }

    .er_product_main_item {
        height: 415px;
        overflow: hidden;
        border: 1px solid #aeb5b1;
        border-radius: 8px;
        background: #e8e8e8;
    }

    .er_product_main_item img {
        width: 100%;
        height: 100%;
        display: block;
        object-position: bottom;
        object-fit: cover;
    }

    /* Slider Arrows */
    .er_gallery_arrow {
        position: absolute;
        top: 50%;
        z-index: 5;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 1px solid #000;
        background: transparent;
        color: #000;
        transform: translateY(-50%);
        font-size: 12px;
        cursor: pointer;
    }

    .er_gallery_prev {
        left: 8px;
    }

    .er_gallery_next {
        right: 8px;
    }


    /* =========================================
       Feature Strip
    ========================================= */

    .er_feature_strip {
        display: flex;
        align-items: stretch;
        margin-top: 12px;
        overflow: hidden;
        border-radius: 7px;
        background: #356c4d;
    }

    .er_feature_item {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 5px;
        border-right: 1px solid rgba(255,255,255,.4);
        text-align: center;
    }

    .er_feature_item:last-child {
        border-right: 0;
    }

    .er_feature_icon {
        color: #fff;
        font-size: 11px;
    }

    .er_feature_text {
        color: #fff;
        font-size: 5.5px;
        line-height: 1.25;
        text-transform: capitalize;
    }


    /* =========================================
       Product Information
    ========================================= */

    .er_product_info {
        padding-left: 10px;
    }

    .er_product_header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding-bottom: 15px;
        border-bottom: 2px solid #ccc;
    }

    .er_product_title {
        margin: 0;
        color: #252525;
        font-size: 32px;
        line-height: 1.2;
        font-weight: 600;
    }

    .er_product_price {
        color: #111;
        font-size: 18px;
        line-height: 1;
        font-weight: 600;
        white-space: nowrap;
    }

    .er_stock_badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 15px;
        background: var(--orange);
        color: #fff;
        font-size: 14px;
        line-height: 1;
        white-space: nowrap;
    }

    .er_product_meta {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 6px;
    }

    .er_product_meta span {
        color: #333;
        font-size: 14px;
    }


    /* =========================================
       Product Details
    ========================================= */

    .er_product_details {
        padding-top: 15px;
    }

    .er_product_number {
        margin-bottom: 15px;
        color: #666;
        font-size: 14px;
    }

    .er_option_group {
        margin-bottom: 25px;
    }

    .er_option_title {
        margin: 0 0 15px;
        color: #222;
        font-size: 16px;
        line-height: 1;
        font-weight: 600;
    }

    .er_option_buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
    }

    .er_option_btn {
        width: 90px;
        height: 35px;
        padding: 0 15px;
        border: 1px solid rgb(85 85 85 / 45%);
        border-radius: 5px;
        background: #fff;
        color: rgba(85, 85, 85, 1);
        font-size: 14px;
        line-height: 19px;
        text-align: center;
        cursor: pointer;
        transition: .2s ease;
    }

    .er_option_btn:hover,
    .er_option_btn.active {
        border-color: #7ba342;
        background: #7ba342;
        color: #fff;
    }


    /* =========================================
       Quantity
    ========================================= */

    .er_quantity_title {
        margin-bottom: 7px;
        color: #333;
        font-size: 14px;
        font-weight: 600;
    }

    .er_quantity_row {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .er_quantity_box {
        width: 150px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid #ddd;
        border-radius: 5px;
        overflow: hidden;
    }

    .er_quantity_btn {
        width: 40px;
        height: 100%;
        border: 0;
        background: #fff;
        color: #555;
        font-size: 14px;
        cursor: pointer;
    }

    .er_quantity_value {
        color: #333;
        font-size: 14px;
    }

    input.er_quantity_value {
        -moz-appearance: textfield;
        appearance: none;
        outline: none;
    }

    input.er_quantity_value::-webkit-outer-spin-button,
    input.er_quantity_value::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .er_add_cart {
        height: 40px;
        padding: 0 16px;
        border: 0;
        border-radius: 4px;
        background: #7ba342;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        transition: .2s ease;
    }

    .er_add_cart:hover {
        background: #668c34;
    }




 .er_product_description {
        padding: 20px 0 30px;
        background: #fff;
    }

    /* =========================
       Description
    ========================== */

    .er_section_heading {
        margin: 0 0 10px;
        color: #222;
        font-size: 32px;
        line-height: 1.2;
        font-weight: 500;
        text-transform: uppercase;
    }

    .er_description_content {
        padding: 12px 0 18px;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }

    .er_description_content p {
        margin: 0 0 5px;
        color: #555;
        font-size: 14px;
        line-height: 1.45;
    }

    .er_description_content p:last-child {
        margin-bottom: 0;
    }

    /* =========================
       Reviews Header
    ========================== */

    .er_reviews_section {
        padding-top: 18px;
    }

    .er_reviews_header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .er_add_review {
        min-width: 98px;
        height: 40px;
        padding: 0 15px;
        border: 0;
        border-radius: 8px;
        background: #7ba342;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        transition: .2s ease;
    }

    .er_add_review:hover {
        background: #668c35;
        color: #fff;
    }

    /* =========================
       Review
    ========================== */

    .er_review {
        display: flex;
        gap: 15px;
        padding: 0 20px;
    }

    .er_review + .er_review {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

    .er_review_avatar {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        overflow: hidden;
        border-radius: 50%;
    }

    .er_review_avatar img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .er_review_content {
        flex: 1;
        min-width: 0;
    }

    .er_review_top {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 7px;
    }

    .er_stars {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .er_star {
        color: #ff8b2c;
        font-size: 15px;
        line-height: 1;
    }

    .er_star.er_empty {
        color: #d8d8d8;
    }

    .er_review_author {
        color: #222;
        font-size: 14px;
        line-height: 1.2;
    }

    .er_review_date {
        color: #222;
        font-size: 14px;
    }

    .er_review_title {
        margin: 0 0 6px;
        color: #222;
        font-size: 16px;
        line-height: 1.3;
        font-weight: 500;
    }

    .er_review_text {
        margin: 0;
        color: #666;
        font-size: 14px;
        line-height: 1.4;
        font-style: italic;
    }

    /* =========================
       View More
    ========================== */

    .er_view_more {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 99px;
        height: 40px;
        margin-top: 20px;
        margin-left: 80px;
        padding: 0 15px;
        border: 1px solid #7ba342;
        border-radius: 8px;
        background: #fff;
        color: #7ba342;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        transition: .2s ease;
    }

    .er_view_more:hover {
        background: #7ba342;
        color: #fff;
    }

    .er_order_success {
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: #fff;
    }

    .er_order_success_inner {
        width: 100%;
        max-width: 620px;
        text-align: center;
    }

    /* =========================
       Success Icon
    ========================== */

    .er_success_icon {
        width: 87px;
        height: 87px;
        margin: 0 auto 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #619074;
        position: relative;
    }

    .er_success_icon::before {
        content: "";
        position: absolute;
        width: 63px;
        height: 63px;
        border-radius: 50%;
        background: #3f7659;
    }

    .er_success_icon::after {
        content: "";
        position: absolute;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #286247;
    }

    .er_success_icon i {
        position: relative;
        z-index: 2;
        color: #f5c400;
        font-size: 18px;
    }

    /* =========================
       Heading
    ========================== */

    .er_success_title {
        margin: 0 0 26px;
        color: #111;
        font-size: 32px;
        line-height: 1.2;
        font-weight: 500;
        text-transform: uppercase;
    }

    .er_success_greeting {
        margin: 0 0 8px;
        color: #222;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.4;
    }

    .er_success_text {
        margin: 0;
        color: #333;
        font-size: 14px;
        line-height: 1.5;
    }

    .er_confirmation_text {
        max-width: 628px;
        margin: 23px auto 13px;
        color: #555;
        font-size: 14px;
        line-height: 1.5;
    }

    /* =========================
       Order Details
    ========================== */

    .er_order_details {
        width: 100%;
        max-width: 365px;
        margin: 0 auto;
    }

    .er_order_detail {
        display: grid;
        grid-template-columns: 105px 105px 1fr;
        align-items: center;
        margin-bottom: 19px;
        text-align: left;
    }

    .er_order_detail:last-child {
        margin-bottom: 0;
    }

    .er_order_label,
    .er_order_value,
    .er_order_colon {
        color: #555;
        font-size: 14px;
        line-height: 1.3;
    }

    .er_order_label {
        text-align: left;
    }

    .er_order_colon {
        text-align: center;
    }

    .er_order_value {
        text-align: left;
    }

    /* =========================
       Footer Text
    ========================== */

    .er_thank_you {
        margin: 30px 0 28px;
        color: #333;
        font-size: 14px;
        line-height: 1.4;
    }

    /* =========================
       Buttons
    ========================== */

    .er_order_actions {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .er_order_btn {
        width: 187px;
        height: 43px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        transition: .2s ease;
    }

    .er_view_order {
        border: 1px solid #7da342;
        background: #7da342;
        color: #fff;
    }

    .er_view_order:hover {
        background: #6b9135;
        border-color: #6b9135;
        color: #fff;
    }

    .er_continue_shopping {
        border: 1px solid #7da342;
        background: #fff;
        color: #7da342;
    }

    .er_continue_shopping:hover {
        background: #7da342;
        color: #fff;
    }

.contact-info-section {
    padding: 0px 0 50px;
}

.contact-details h2 {
    margin: 0 0 12px;
    color: var(--orange);
    font-size: 32px;
    line-height: 1.05;
    font-weight: 500;
}
.contact-description {
    max-width: 400px;
    margin: 0 0 18px;
    color: rgba(85, 85, 85, 1);
    font-size: 14px;
    line-height: 1.5;
}
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #ed1c18;
    font-size: 14px;
}
.contact-detail-item h6 {
    margin: 0 0 3px;
    color: var(--orange);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}
.contact-detail-item p {
    margin: 0;
    color: rgba(85, 85, 85, 1);
    font-size: 14px;
    line-height: 1.35;
}

.message-section {
    position: relative;
    min-height: 310px;
    margin: 0 auto;
    width: calc(100% - 90px);
    max-width: 1000px;
    background: #f5f5f5;
    overflow: hidden;
}
.message-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    padding: 60px 0;
}
.message-content {
    text-align: center;
}
.message-content h2 {
    margin: 0 0 7px;
    color: var(--orange);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
}
.message-content > p {
    margin: 0 0 30px;
    color: rgba(85, 85, 85, 1);
    font-size: 14px;
    line-height: 1.3;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.contact-form .form-control {
    height: 50px;
    padding: 7px 10px;
    border: 1px solid rgb(30 30 30 / 27%);
    border-radius: 0;
    background: #fff;
    color: #222;
    font-size: 14px;
    line-height: 1.2;
    box-shadow: none;
}

.contact-form textarea.form-control {
    height: 70px;
    resize: none;
}


.ct_brand_packaging_section {
    padding: 50px 0;
}

.ct_brand_packaging_img {
    height: 360px;
    overflow: hidden;
    border-radius: 8px;
}

.ct_brand_packaging_img img {
    display: block;
}

.ct_brand_packaging_content {
    padding-left: 10px;
}

.ct_brand_packaging_content p {
    line-height: 1.55;
}


.abt_about-section {
    background: #fff;
}

.abt_image-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.abt_main-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 9px;
}

.abt_leaf-badge {
    position: absolute;
    right: -44px;
    bottom: 22px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #286346;
    border: 2px solid #d4a900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt_content {
    padding-left: 25px;
}

.abt_label {
    display: inline-block;
    margin-bottom: 10px;
    color: #367052;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.abt_title {
    max-width: 620px;
    margin-bottom: 12px;
    color: #202020;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.abt_text {
    max-width: 650px;
    margin-bottom: 13px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
}




.abt_mission-section {
    background: #fff;
}

.abt_mission-box {
    min-height: 168px;
    padding: 50px 30px 50px;
    border-radius: 17px;
    background: #356b4d;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.abt_mission-label {
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

.abt_mission-title {
    margin: 0 0 9px;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
}

.abt_mission-text {
    max-width: 800px;
    margin: 0;
    font-size:14px;
    line-height: 1.65;
    font-weight: 400;
}




.abt_branding-box {
    position: relative;
    padding-block: 100px;
        overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #286646;
    background-image:
        radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 18px 18px;
}

.abt_branding-content {
    position: relative;
    z-index: 2;
}

.abt_branding-label {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
}

.abt_branding-title {
    margin: 0 0 8px;
    color: #fff;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
}

.abt_branding-text {
    margin: 0 0 11px;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    line-height: 1.55;
}

.abt_branding-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 5px 30px;
    border-radius: 5px;
    background: #9abd76;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    transition: .2s ease;
}

.abt_branding-btn:hover {
    background: #aacb87;
    color: #fff;
}

.abt_branding-left,
.abt_branding-right {
    position: absolute;
    z-index: 1;
}
.abt_branding-left{
    top: 10px;
}
.abt_branding-right{
    bottom: 10px;
}
.abt_branding-left {
    left: 2%;
}

.abt_branding-right {
    right: 2%;
}

.abt_branding-image {
    width: 171px;
    height: 203px;
    object-fit: contain;
}




.abt_features-section {
    padding: 30px 0;
    background: #f3eee5;
    border-top: 3px solid #3a674b;
}

.abt_features-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt_feature-item {
    width: 25%;
    min-height: 54px;
    padding: 2px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid #d9d3c8;
}

.abt_feature-item:last-child {
    border-right: 0;
}

.abt_feature-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    color: #397253;
}

.abt_feature-icon img {
    width: 100%;
    height: 100%;
}

.abt_feature-content {
    min-width: 0;
}

.abt_feature-content h3 {
    margin: 0 0 3px;
    color: #222;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 600;
}

.abt_feature-content p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
}



.abt_materials-section {
    background: #fff;
}

.abt_materials-heading {
    margin-bottom: 25px;
}

.abt_materials-label {
    display: block;
    margin-bottom: 8px;
    color: #397253;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

.abt_materials-title {
    margin: 0 0 10px;
    color: #242424;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
}

.abt_materials-intro {
    margin: 0 auto;
    max-width: 700px;
    color: #666;
    font-size: 14px;
    line-height: 1.55;
}

/* Material Card */

.abt_material-card {
    position: relative;
    min-height: 100%;
    height: 100%;
    overflow: hidden;
    padding: 22px 20px;
    border-radius: 8px;
    background: #f1f1e8;
}

.abt_material-content {
    position: relative;
    z-index: 2;
    max-width: 70%;
}

.abt_material-content h3 {
    margin: 0 0 8px;
    color: var(--orange);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
}

.abt_material-subtitle {
    display: block;
    margin-bottom: 10px;
    color: #6f983e;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

.abt_material-description {
    margin: 0 0 10px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

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

.abt_material-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 23px;
    color: #666;
    font-size: 14px;
    line-height: 1.35;
}

.abt_material-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #7ba448;
    color: #fff;
    font-size: 8px;
    line-height: 13px;
    text-align: center;
    font-weight: 700;
}

/* Images */

.abt_material-image {
    position: absolute;
    right: -5px;
    bottom: -5px;
    z-index: 1;
}

.abt_material-image img {
    display: block;
    width: 175px;
    height: 145px;
    object-fit: contain;
}

.abt_material-image-kraft {
    right: -14px;
    bottom: 35px;
}

.abt_material-image-coating {
    right: -5px;
    bottom: 32px;
}

.abt_material-image-coating img {
    width: 175px;
    height: 140px;
}





.abt_product-card {
    position: relative;
    height: 100%;
    min-height: 290px;
    padding: 18px 20px;
    overflow: hidden;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    background: #fff;
}

.abt_product-content {
    position: relative;
    z-index: 2;
    height: 100%;
}

.abt_product-title {
    margin: 0 0 8px;
    color: var(--orange);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
}

.abt_product-subtitle {
    margin: 0 0 7px;
    color: #222;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
}

.abt_product-description {
    max-width: 470px;
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.45;
}

.abt_product-bottom {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-top: 16px;
}

.abt_product-image {
    flex: 0 0 48%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.abt_product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.abt_product-list {
    flex: 1;
    margin: 0;
    padding: 0;
    list-style: none;
}

.abt_product-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 13px;
    color: #555;
    font-size: 14px;
    line-height: 1.3;
}

.abt_product-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #777;
    font-size: 14px;
}

.abt_product-list li strong {
    display: block;
    margin-bottom: 2px;
    color: #333;
    font-size: 14px;
    line-height: 1.25;
}

.abt_product-list li span {
    display: block;
    color: #666;
    font-size: 14px;
    line-height: 1.35;
}

/* Paper Cups */

.abt_product-list-groups {
    flex: 1;
}

.abt_product-list-group {
    margin-bottom: 10px;
}

.abt_product-list-group:last-child {
    margin-bottom: 0;
}

.abt_product-list-group > strong {
    display: block;
    margin-bottom: 15px;
    color: #333;
    font-size: 14px;
    line-height: 1.2;
}

.abt_product-list-group .abt_product-list li {
    margin-bottom: 12px;
}




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