/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/*@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");*/
body {
    font-family: "DM Sans", sans-serif;
    color: #595959;
}

h1,
.h1 {
    font-weight: 700;
    font-size: 48px;
    color: #000;
}

h2,
.h2 {
    font-weight: 700;
    font-size: 36px;
    color: #000;
}

h3,
.h3 {
    font-weight: 700;
    font-size: 20px;
    color: #000;
}

h4,
.h4 {
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

h5,
.h5 {
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

h6,
.h6 {
    font-weight: 700;
    font-size: 14px;
    color: #000;
}

:root,
[data-bs-theme="light"] {
    --bs-border-radius: 0px;
    --bs-border-radius-sm: 0px;
    --bs-border-radius-lg:  0px;
    --bs-border-radius-xl: 0px;
    --bs-border-radius-xxl: 0px;
    --bs-border-radius-2xl: 0px;
    --bs-border-radius-pill: 0px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    background: #000;
    color: #fff;
}

.nav-tabs .nav-link {
    color: #000;
}

.offcanvas-backdrop.show {
    display: none;
}

.wpml-ls-statics-footer {
    display: none;
}

.cm_padd {
    padding: 60px 0;
}

.cm_padd_40
{
    padding: 40px 0;
}

.green_bg {
    background: #E0EBED;
}

.grey_bg {
    background: #f8f8f8;
}

.light_bg {
    background: #f5faff;
}

.black_btn, button.wp-block-search__button {
    background: #FFD33D;
    color: #fff;
    border: 0;
    padding: 10px 25px;
    border-radius: 0;
}

.black_btn img {
    margin-left: 5px;
    position: relative;
    top: -2px;
    width: auto !important;
    display: inline-block !important;
}

.black_btn:hover, button.wp-block-search__button:hover {
    background: #E5BA2C;
    color: #ffffff;
}

.blue_btn {
    background: linear-gradient(180deg, #287B8C 0%, #18535F 100%);
    color: #fff;
    border: 2px solid #000;
    padding: 10px 25px;
}

.blue_btn img {
    margin-left: 5px;
    position: relative;
    top: -2px;
}

.blue_btn:hover {
    background: linear-gradient(180deg, #18535F 0%, #287B8C 100%);
    color: #fff;
}

/*******************  [Header] **********************/
.top_bar_wrapper {
    background: #101010;
    padding: 15px 0;
}

header#masthead {
    background: #fff !important;
    box-shadow: 0 6px 10px #dddddd36;
    position: relative;
    top: 0;
}

.header_top_main {
    position: relative;
    top: 0;
    transition: 0.3s;
}

header#masthead.fixed_nav .header_top_main {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid #ddd;
}

header #bootscore-navbar {
    margin: 0 auto;
    width: 100%;
}

header #bootscore-navbar a.nav-link {
    padding: 10px 24px;
    color: #1e1e1e;
}

header #bootscore-navbar a.nav-link:hover {
    color: #69aab7;
}

header #bootscore-navbar ul.dropdown-menu {
    left: 24px;
    border: 0;
    !I;
    !;
    padding: 20px 0 15px 0;
}

header #bootscore-navbar ul.dropdown-menu li a:hover {
    background: #69aab7;
    color: #fff;
}

header .dropdown-toggle::after {
    border: 1px solid #000;
    width: 7px;
    height: 7px;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    margin-left: 9px;
}

.top-button {
    background: linear-gradient(180deg, #287B8C 0%, #18535F 100%);
    color: #fff;
    border: 2px solid #000 !important;
    padding: 10px 15px;
}

.custom-language-switcher {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-family: sans-serif;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1px solid #cccccc33;
    font-size: 13px;
}

.language-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  background: #fff;
  border: 1px solid #cccccc33;
  padding: 0px 0;
  /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
  min-width: 100%;
}

.lang-item {
  padding: 5px 12px;
  white-space: nowrap;
  transition: background 0.2s;
}

.lang-item a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-item:hover {
  background-color: #f0f0f0;
}

.custom-language-switcher:hover .language-list {
  display: block;
}

.language-list img {
    filter: none !important;
    margin-right: 0px!important;
    
}
.current-language
{
  position: relative;
  top: -1px;
}

.custom-language-switcher.mobile
{
    display: none;
}

    






/*******************  [Home Page] **********************/

.img_wrap_slider .owl-item img {
    width: 480px;
    height: 480px;
    border-radius: 8px;
    margin-left: auto;
    display: block;
    margin-right: 55px;
    z-index: 1;
    position: relative;
}

.img_wrap_slider {
    position: relative;
}

.img_wrap_slider:before {
    content: "";
    background: #69AAB7;
    border-radius: 0px 0px 8px 8px;
    width: 300px;
    height: 300px;
    position: absolute;
    right: 0;
    top: -80px;
}

.img_wrap_slider:after {
    content: "";
    background: url(https://mahmoud-first-project.cyberwrath.tech/wp-content/uploads/2025/03/Frame-1597881790.png)no-repeat scroll center;
    background-size: 78px;
    width: 78px;
    height: 78px;
    position: absolute;
    bottom: -38px;
    left: 140px;
    z-index: 1;
}

.img_wrap_slider .owl-dots button {
    background: #B1BEC0;
    width: 8px;
    height: 8px;
    margin: 0 8px;
    border-radius: 50%;
}

.img_wrap_slider .owl-dots button.active {
    background: #287B8C;
    transform: scale(1.5);
}

/*******  [Home Product box Page] *****/
.product_box_wrap .product_box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
    transition: 0.8s;
}

.product_box_wrap .product_box h3 {
    margin: 10px 0;
}

.product_box_wrap .product_box {
    text-align: center;
    text-decoration: none;
    height: 100%;
    display: block;
    background: #ffffff;
    box-shadow: 0 20px 40px -20px #6181a3;
    padding-bottom: 30px;
    border-radius: 4px;
}

.product_box_wrap .product_box .price {
    display: block;
    margin-top: 20px;
    color: #000000;
    font-weight: 500;
}

.product_box_wrap .product_box .img_wrap {
    height: 200px;
    display: block;
    border-radius: 0;
    margin-bottom: 20px;
    overflow: hidden;
}

.product_box_wrap .product_box:hover img {
    transform: scale(1.1);
}

.hd_wrap {
    margin-bottom: 70px;
}

.product_box .star_wrap img {
    width: auto;
    height: auto;
    margin: 0 auto;
    display: block;
}

.product_box_wrap .nav-pills {
    justify-content: center;
}

.product_box_wrap .nav-pills button {
    color: #000;
    border-radius: 0;
}

.product_box_wrap .nav-pills button.active,
.product_box_wrap .nav-pills button:hover {
    background: #000;
    border-radius: 0;
    color: #fff;
}

.product_box .btn_wrap {
    margin-top: 30px;
}

/*******  [Home Car shelter steps Page] *****/
.car_shelter_steps {
    background-color: #f8f9fa;
}

.car_shelter_steps .container {
    position: relative;
}

.car_shelter_steps .container:before {
    content: "";
    background: url(/wp-content/uploads/2025/03/Frame-1597881790-1.png)no-repeat scroll center / 100px;
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: -50px;
    left: 20px;
}

.car_shelter_steps .container:after {
    content: "";
    background: url(/wp-content/uploads/2025/03/Frame-1597881790-1.png)no-repeat scroll center / 100px;
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: -50px;
    right: 20px;
}

.car_shelter_steps .step-card {
    background: white;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.car_shelter_steps .step-card:before {
    content: "";
    border: 1px dashed #69aab7;
    width: 70px;
    position: absolute;
    top: 45%;
    left: 100%;
}

.car_shelter_steps .step_card_wrapper .col-12:last-child .step-card:before {
    display: none;
}

.car_shelter_steps .step-number {
    background: #69AAB7;
    color: white;
    font-size: 32px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 12px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}

.car_shelter_steps .shop-btn {
    background: black;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.car_shelter_steps .step-card .step_number_wrap {
    display: flex;
    align-items: center;
}

.car_shelter_steps .step-card .step_number_wrap h3 {
    flex: 1;
    padding-right: 64px;
}

.car_shelter_steps .step-card .content {
    padding: 32px 32px 50px 32px;
    color: #1e1e1e;
    text-align: left;
}

.car_shelter_steps .btn_wrap {
    margin-top: 80px;
}

/*******  [Home Products] *****/
.woocommerce #review_form #respond .form-submit input {
    border-radius: 4px !important;
}
.woocommerce div.product form.cart .button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button {
    background: #FFD33D;
    border-color: #FFD33D;
    border-radius: 0;
    max-width: 195px;
    padding: 9px 0;
}
.woocommerce div.product form.cart .variations {
    max-width: 350px;
}
.woocommerce div.product form.cart .button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover {
    background: #E5BA2C;
    border-color: transparent;
    opacity: 0.8;
}

.woocommerce button.button:hover,
.woocommerce .shop_table a.button:hover,
.woocommerce .shop_table a.woocommerce-MyAccount-downloads-file.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover {
    background: #E5BA2C;
    color: #fff;
    border-color: transparent;
}

.woocommerce button.button, .woocommerce .shop_table a.button, .woocommerce .shop_table a.woocommerce-MyAccount-downloads-file.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit {
    color: #fff;
    background-color: #FFD33D;
    border-color: transparent;
}
a.checkout-button.button.alt.wc-forward {
    max-width: 100%;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    max-width: 340px;
}
td.product-subtotal {
    color: #000;
    font-weight: 600;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled] {
    color: #ffffff;
    border-radius: 0px !important;
}

.woocommerce table.shop_table a {
    color: #287b8c;
}

.woocommerce .input-group-text {
    background-color: #FFD33D;
    border: var(--bs-border-width) solid #FFD33D;
    color: #fafcff;
    height: 44px;
}

.woocommerce-home-grid {
    padding: 0;
}
button#wpmc-back-to-cart, .wpmc-no-back-to-cart #wpmc-prev {
    margin-right: auto;
    padding: 10px 20px;
}
.wpmc-nav-wrapper button#wpmc-prev.current, .wpmc-nav-wrapper button#wpmc-next.current, .wpmc-nav-wrapper button#wpmc-skip-login.current {
    display: inline-block !important;
    padding: 10px 30px;
}
.hm_product_section .hd_wrap {
    margin-bottom: 50px;
}

.product-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    transition: transform 0.3s ease-in-out;
}

.product-item .product-image {
    height: 285px;
    overflow: hidden;
    display: block;
    margin-bottom: 20px;
    border-radius: 4px;
}

.product-image img {
    width: 100%;
    height: 285px;
    border-radius: 4px;
    margin-bottom: 15px;
    transition: 0.8s;
}

.product-item .product-image:hover img {
    transform: scale(1.1);
}

.product-title a {
    font-size: 16px;
    font-weight: bold;
    color: #1e1e1e;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

.product-category {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.product-rating {
    margin: 10px 0;
}

.product-rating .star-rating span {
    color: gold;
    font-size: 16px;
}

.product-price {
    font-size: 16px;
    font-weight: bold;
    color: #1e1e1e;
}

.product-details .product-label {
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.product-details .product-label img {
    margin-right: 5px;
}

/*******  [Single product page] *****/

.tent_dates {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.tent_dates label {
    font-weight: 800;
    color: #000000;
}


.tent_dates label input {
    display: block;
    min-width: 152px;
    padding: 0.375rem 1.15rem 0.375rem 0.75rem;
    border: 1px solid #80808063;
}

div#order_review .product-name {
    width: 65%;
}


.woocommerce p.stars a {
    color: #ffb300;
}

.woocommerce div.product form.cart .variations select
{
    min-width: 179px !important;
}

.woocommerce div.product form.cart .variations tbody {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.woocommerce div.product form.cart .variations tbody tr {
    display: flex;
    flex-direction: column;
}

.woocommerce div.product form.cart .variations label {
    color: #000;
}

/*******  [Home about_abris] *****/
.about_abris .img_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 50px;
}

.about_abris .img_wrap img {
    width: 284px;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
}

.about_abris .img_wrapper .img_wrap:first-child {
    margin-bottom: 100px;
    position: relative;
}

.about_abris .img_wrapper .img_wrap:first-child:before {
    content: "";
    background: url(/wp-content/uploads/2025/03/Frame-1597881790.png)no-repeat scroll center / 100px;
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: -50px;
    left: calc(50% - 100px);
    right: 0;
}

.about_abris .img_wrapper .img_wrap:last-child {
    margin-top: 100px;
    position: relative;
}

.about_abris .img_wrapper .img_wrap:last-child:before {
    content: "";
    background: url(/wp-content/uploads/2025/03/Frame-1597881790.png)no-repeat scroll center / 100px;
    width: 100px;
    height: 100px;
    position: absolute;
    top: -50px;
    left: calc(50% - 10px);
    right: 0;
}

/*******  [Home why_choose] *****/
.why_choose .card_box {
    border: 1px solid #dadada;
    border-radius: 10px;
    padding: 32px;
    background: #fff;
}

.why_choose .card_box .icon_wrap img {
    margin-top: -100px;
}

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

/*******  [Home Testimonials] *****/
.testimonials .card_box_wrapper {
    padding-left: 0;
    display: flex;
    position: relative;
    padding-bottom: 120px;
}

.testimonials .arrow_wrap {
    display: flex;
    justify-content: space-between;
    grid-gap: 20px;
}

.card_box_wrapper li {
    background: #fff;
    padding: 30px;
    list-style: none;
    border-radius: 8px;
}

.testimonials .card_box_wrapper .stars_wrap {
    display: flex;
    justify-content: space-between;
}

.testimonials .content {
    margin: 32px 0;
}

.testimonials .person_details {
    display: flex;
    align-items: center;
}

.testimonials .person_details .image_wrap {
    margin-right: 15px;
}

.testimonials .person_details .image_wrap img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.testimonials .card_box_wrapper .stars_wrap img {
    max-width: 130px;
}

.testimonials .card_box_wrapper h3 {
    font-size: 16px;
    margin-bottom: 32px;
}

.testimonials .person_details span.name {
    font-weight: bold;
    color: #1e1e1e;
}

.testimonials .person_details .desig {
    color: #7e7e7e7e;
}

.testimonials .arrow_wrap button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    background: #fff;
}

.testimonials .arrow_wrap button img {
    width: 30px;
}

.testimonials .card_box_wrapper .owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.testimonials .owl-dots button {
    background: #B1BEC0;
    width: 8px;
    height: 8px;
    margin: 0 8px;
    border-radius: 50%;
}

.testimonials .owl-dots button.active {
    background: #287B8C;
    transform: scale(1.5);
}

.testimonials .card_box_wrapper:before,
.testimonials .card_box_wrapper:after {
    content: "";
    background: url(/wp-content/uploads/2025/03/Frame-1597881790.png)no-repeat scroll center / 100px;
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: -50px;
    left: 20px;
    z-index: 0;
}

.variation-bookingType {
    text-transform: capitalize;
}

.testimonials .card_box_wrapper:after {
    left: unset;
    right: 0;
}

/************  [Footer CSS] ***********/
.footer {
    background-color: #ffffff;
    padding: 60px 0 40px;
}

.footer-logo img {
    max-width: 150px;
}

.footer_content {
    max-width: 250px;
}

.social-icons {
    margin-top: 50px;
}

.social-icons a {
    color: #333;
    margin-right: 10px;
    font-size: 20px;
}

.social-icons img {
    max-width: 32px;
    margin-right: 10px;
}

.social-icons a:hover {
    color: #007bff;
}

.footer_logo {
    margin-bottom: 20px;
}

.footer_logo img {
    max-width: 160px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li a {
    display: block;
    color: #1e1e1e;
    text-decoration: none;
    margin: 0 0 10px;
}

footer h5 {
    font-size: 16px;
    margin-bottom: 20px;
}

footer p strong,
footer p b {
    color: #1e1e1e;
}

footer p {
    color: #1e1e1e;
}

.footer_copyright {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.footer-bottom {
    background-color: #fff;
    padding: 10px 30px;
    text-align: center;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid #dadada;
    position: relative;
    z-index: 1;
}

.footer_copyright:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #dadada;
    position: absolute;
    top: 50%;
    z-index: -1;
    left: 0;
}

/*woocommerce css*/

.rental-cart-shipping {
    display: none;
}

.woocommerce div#content {
    div#content {
        padding-top: 65px !important;
    }

}

.rentman-header {
    text-align: center;
    margin-bottom: 20px;
}

.header-icons .cart-icon .cart-count {
    background: #287b8c !important;
}

.rentman-toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 215px;
    margin: 0 auto;
}

.rentman-shelter-card .product_data .black_btn {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 140px;
    margin: 0 auto;
}

/*.rentman-btn {
    background: linear-gradient(90deg, #000, #484848);
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    max-width: 200px;
    margin: 0 auto;
    margin-top: 20px;
    text-decoration: none;
}*/
.rentman-shelter-card .product_data {
    padding: 0 20px 25px 20px;
}

.rentman-shelter-card h3 {
    margin-top: 25px;
}

.product_data a {
    text-decoration: none;
}

.rentman-filter-options {
    justify-content: space-between;
    background: white;
    padding: 50px;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

span#rentman-vehicle-value {
    min-width: 70px;
}

.rentman-filter-left {
    width: 25%;
}

.rentman-filter-left select {
    padding: 8px;
    border: 1px solid #484848;
    border-radius: 5px;
}

.rentman-filter-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rentman-filter-right input {
    width: 150px;
}

.rentman-shelter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.rentman-shelter-card {
    background: white;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 20px 40px -20px #6181a3;
    text-align: center;
    position: relative;
    transition: 0.3s;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}

.rentman-shelter-card:hover {
    box-shadow: 0 20px 20px -30px #6181a3;
}

.rentman-badge {
    background: #FFC107;
    color: white;
    padding: 4px 10px;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    position: absolute;
    right: 0;
}

.rentman-image {
    height: 250px;
    background: #f5faff;
    border-radius: 10px 10px  0 0;
    margin-bottom: 10px;
    background-size: cover;
    background-position: center;
}

.rentman-tags span {
    background: #e3e3e3;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin: 2px;
    display: inline-block;
}

.rentman-price {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    color: #000;
}

ul#filter_tags li {
    list-style: none;
}

ul#filter_tags li a {
    text-decoration: none;
}

/* Loader Container */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Loader Styles */
.loader {
    border: 12px solid #f3f3f3; /* Light gray background */
    border-top: 12px solid #000; /* Red */
    border-right: 12px solid #484848; /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

/* Spin Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}

/********  [New CSS Updates] **********/

/********  [New Header] **********/

.top_bar p {
    margin-bottom: 0;
    color: #fff;
}

.top_bar p a {
    color: #fff;
}

.header_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.header_top .middle_section {
    flex: 1;
    margin: 0 20px;
    display: flex;
}

.header_top .middle_section form {
    flex: 1;
    max-width: 100%;
    margin: 0 auto;
}

.header_top form button {
    flex: 0 0 auto;
    border-radius: 0;
    background: #000 url(/wp-content/uploads/2025/04/search-interface-symbol.png)no-repeat scroll center / 20px;
    border: 0;
    color: #fff;
    text-indent: -9999px;
    padding: 5px 60px;
}

.header_top form button:hover {
    background-color: #c1c1c1;
}

.header_top input.form-control {
    border-radius: 0;
}

header nav#nav-main {
    border-top: 1px solid #ededed;
    padding: 5px 0;
}

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

.header-icons .icon-link {
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.header-icons .icon-link i {
    font-size: 20px;
    margin-bottom: 4px;
}

.header-icons .icon-link:hover {
    color: #0073aa; /* or your brand color */
}

.header-icons .cart-icon .cart-count {
    position: absolute;
    top: -5px;
    left: -10px;
    background: #0029ff;
    color: white;
    font-size: 10px;
    border-radius: 50%;
    padding: 3px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top_cta_button {
    display: flex;
    align-items: center;
}

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

.call_section_wrap ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.call_section_wrap ul li {
    list-style: none;
    margin: 0 20px 0 0;
    padding: 0;
    position: relative;
}

.call_section_wrap ul li:last-child {
    margin-right: 0;
}

.call_section_wrap ul li a {
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    padding-right: 20px;
    transition: 0.3s;
}

.call_section_wrap ul li a:hover {
    opacity: 0.8;
}

.call_section_wrap ul li a img {
    margin-right: 7px;
    filter: invert(1);
}

.call_section_wrap ul li:before {
    content: "";
    background: #595959;
    width: 1px;
    height: 15px;
    position: absolute;
    right: 0;
    top: 4px;
}

.call_section_wrap ul li:last-child:before {
    display: none;
}

.call_section_wrap ul li:last-child a {
    padding-right: 0;
}

header #bootscore-navbar > li:first-child > a.nav-link {
    padding-left: 0;
}

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

#nav-main .container {
    display: block;
}

.nav_main_inner div#offcanvas-navbar {
    flex: 0 0 auto !important;
}

.header-icons .icon-link:not(:last-child) {
    margin-right: 10px;
}

/********  [Home New] **********/
.main_banner {
    position: relative;
    overflow: hidden;
}

/*.main_banner:before {
    content: "";
    background: #000000;
    width: 70vw;
    height: 1000px;
    border-radius: 1000px;
    right: -580px;
    position: absolute;
    top: -160px;
}*/
.banner_item {
    position: relative;
}

/*.banner_item:before {
    content: "";
    background: rgba(0,0,0,0.6);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}*/

.banner_content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
}


.banner_content .content {
    font-size: 30px;
}
.banner_content h1 {
    font-size: 60px;
}
.banner_content .price_content {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 60px;
    font-weight: 600;
    line-height: 140%;
}

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

.banner_item .img_wrap img {
    width: 100%;
    object-fit: cover;
    height: 660px;
}

.banner_slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.banner_slider .owl-dots button.owl-dot {
    background: #0097b2;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    transition: 0.3s;
}

.banner_slider .owl-dots button.owl-dot.active {
    width: 30px;
    border-radius: 10px;
}

.feature_card {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    border-left: 10px solid #def1f7;
    border-radius: 4px;
    background-color: #ffffff;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    /*padding: 30px 35px 35px 15px;*/
    padding: 15px 35px 15px 15px;
    transition: 0.4s;
    display: flex;
}

.feature_card:hover {
    background: #0181980a;
    box-shadow: 0 10px 28px -20px #414141;
    border-color: transparent;
}

.feature_card_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-gap: 15px;
}

.featured-banner {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    border-radius: 4px;
    background: linear-gradient(45deg, #0196b1, #001d23);
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 40px 74px 40px 58px;
    display: flex;
    align-items: center;
    position: relative;
}

.featured-banner .featured-contents {
    width: 50%;
    z-index: 1;
    position: relative;
}

.featured-banner .img_wrap {
    width: 50%;
}

.featured-banner .img_wrap img {
    border-radius: 10px;
}

.featured-banner svg {
    position: absolute;
    left: 0;
    bottom: 0;
    fill: #E91E63;
    border-radius: 0px 0 0px 4px;
}

.feature_card p {
    margin-bottom: 0;
}

.cst_products .product-card {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 20px 40px -20px #6181a3;
    text-align: center;
    padding: 0px 0px 40px 0px;
    height: 100%;
    transition: 0.3s;
    border-radius: 4px;
}

.cst_products .product-card:hover {
    box-shadow: 0 20px 20px -30px #6181a3;
}

.cst_products .product-image {
    width: 100%;
    height: 200px;
    border-radius: 4px 4px 0 0;
    object-fit: cover;
    margin-bottom: 20px;
}

.cst_products .ps_wrap {
    padding: 20px 20px 0;
}

.cst_products .product-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    min-height: 70px;
}

.cst_products .product-name span {
    font-weight: 400;
    color: #7f8c8d;
}

.cst_products .product-rating {
    color: #f1c40f;
    font-size: 18px;
    margin-bottom: 10px;
}

.cst_products .product-price {
    font-weight: bold;
    font-size: 18px;
    color: #e74c3c;
    margin-bottom: 15px;
}

.cst_products .add-to-cart {
    background-color: #fff;
    color: #2c3e50;
    border: 1px solid #2c3e50;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.cst_products .add-to-cart:hover {
    background-color: #2c3e50;
    color: #fff;
}

.product-card .black_btn.btn {
    width: 100%;
    max-width: 200px;
}

.side_heading.hd_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/********  [CTA DATA] **********/
.cta_data {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 230px;
    grid-gap: 30px;
    padding: 50px;
    color: #fff;
    font-size: 20px;
    height: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 20px #a3a3a3;
}

.cta_data .img_wrap img {
    width: 100%;
    max-width: 250px;
    height: 250px;
    border-radius: 20px;
}

.cta_data {
    position: relative;
}

.cta_green.cta_data {
    background: #0031a3;
}

.cta_blue.cta_data {
    background: #8d0067;
    color: #fff;
    font-size: 20px;
}

.cta_data h2 {
    color: #fff;
}

.cta_data .big_font {
    font-size: 22px;
    color: #edbc00fc;
    font-weight: 700;
    margin: 30px 0;
}

.cta_full.cta_data {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px;
}

.cta_full.cta_data:before {
    content: "";
    background: rgb(0 0 0 / 65%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 4px;
}

.cta_full.cta_data .cta_block {
    z-index: 1;
    position: relative;
}

.cta_full.cta_data .btn_wrap {
    margin-top: 30px;
}

.cta_full.cta_data h2 {
    font-size: 60px;
}

/********  [Blog] **********/
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.blog-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-card-content {
    padding: 16px;
    flex-grow: 1;
}

.blog-card h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.blog-card p {
    font-size: 0.95rem;
    color: #666;
}

.blog-card a.read-more {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: #0073aa;
    text-decoration: none;
}

.blog-card a.read-more:hover {
    text-decoration: underline;
}

.blog_posts .card-footer {
    background: no-repeat;
    border: 0;
    margin-bottom: 20px;
}

.blog_posts .card {
    border: 0;
    box-shadow: 0 20px 40px -20px #6181a3;
    transition: 0.3s;
    height: 100%;
}

.blog_posts .card:hover {
    box-shadow: 0 20px 20px -30px #6181a3;
}

.blog_posts .wp-post-image {
    height: 250px;
    object-fit: cover;
}

/********  [Newsletter] **********/
.ct_form input.wpcf7-form-control {
    width: 100%;
    height: 60px;
    border: 1px solid #ddd;
    box-shadow: none;
    background: #fff;
}

.ct_form input[type="email"] {
    padding-left: 20px;
}

.ct_form input.wpcf7-submit {
    background: #000000;
    color: #fff;
    border: 0;
}

.ct_form input.wpcf7-submit:hover {
    background: #4a4a4a;
}

.newsletter_wrap {
    padding: 60px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 20px 40px -20px #6181a387;
}

.newsletter_wrap .content_data {
    max-width: 480px;
}

.contact_form .img_wrap img {
    max-width: 60px;
    margin: 0 auto;
    display: block;
    position: relative;
    left: -50px;
}

/*product Addons and product packages*/

.product-addons-grid {
    margin-bottom: 22px;
}
.product-addons-wrapper {
    margin-top: 40px;
    margin-bottom: 50px;
}

.product-addons-wrapper.mt-8 h4 {
    background: #80808014;
    padding: 6px 15px;
    border-radius: 4px;
}

.woocommerce-mini-cart__buttons.buttons a {
    background: #000;
    border-radius: 0;
    border: 0;
    float: none !important;
}
.woocommerce-mini-cart__buttons.buttons a:hover {
    background: #4a4a4a;
}
div#offcanvas-cart .item-quantity, div#offcanvas-cart .cart-product-excerpt  {
    display: none;
}

div#offcanvas-cart .item-image
{
    display: none;
}

/*.tent-info-meta {
    margin-bottom: 20px;
    box-shadow: 0px 0px 26px 1px #ffd33d8f;
    padding: 20px 23px;
    max-width: 355px;
    border-radius: 6px;
}*/

.tent-info-meta p {
    margin: 0;
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.installation-notes p {
    margin-bottom: 2px;
}

.tent-info-meta p::before {
    content: "✔"; /* or use "•", "➤", "★", etc. */
    position: absolute;
    left: 0;
    color: #2a9d8f; /* nice green-blue, adjust to your theme */
    font-size: 1em;
    line-height: 1;
    top: 4px;
}

.bootscore-custom-render-total.h6.mb-4 {
    margin-bottom: 5px !important;
}

div#offcanvas-cart .item-name {
    display: flex;
    align-items: center;
}



.addons-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-addons-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media (min-width: 600px) {
    .product-addons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .product-addons-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.addon-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}

.addon-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.addon-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.addon-item img {
    max-height: 75px;
    object-fit: contain;
}

.addon-title {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    text-decoration: none;
}

.addon-title:hover {
    color: #0073aa;
}

.addon-price {
    color: #2a8b3c;
    font-weight: 600;
    margin-top: 5px;
}

.addon-form {
    margin-top: auto;
}

.addon-form-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.addon-quantity {
    width: 60px;
    padding: 3px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

.addon-button {
    background: #FFD33D;
    color: #fff;
    padding: 3px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 100%;
    text-decoration: none;
}

.addon-button:hover {
    background-color: #E5BA2C;
}


.shifted-for-cart {
  transition: transform 0.3s ease;
  transform: translateX(-20px); /* adjust based on cart width */
  overflow: hidden;
}

#offcanvas-cart.fixed-cart {
    width: 340px;
    transition: none;
    position: fixed !important;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1055;
    display: block !important;
    visibility: visible !important;
    background-color: #fff;
    padding-top: 110px;
    overflow: scroll;
    box-shadow: -10px 10px 10px #cfcfcf29;
    border: 0;
}
#offcanvas-cart.fixed-cart .offcanvas-title {
    text-align: center;
    font-size: 30px;
}

#offcanvas-cart.fixed-cart .offcanvas-header {
    justify-content: center;
}
.woocommerce-mini-cart {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 16px;
  line-height: 1.6;
  counter-reset: my-sec-counter;
}

.woocommerce-mini-cart li {
    padding: 6px 20px 6px 60px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    font-size: 15px;
    flex-direction: column;
    position: relative;
}

.woocommerce-account aside#secondary {
    display: none;
}

.woocommerce-account .col-lg-9 {
    width: 100%;
}

.woocommerce-mini-cart li span.p-name {
    width: 100%;
    font-weight: bold;
    color: #000;
}

.woocommerce-mini-cart li:last-child {
  border-bottom: none;
}

.woocommerce-mini-cart__total {
  padding: 12px;
  border-top: 2px solid #ddd;
  font-size: 18px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.woocommerce-mini-cart__buttons {
  padding: 12px;
  text-align: right;
}

.woocommerce-mini-cart__buttons .button {
  margin-left: 8px;
}

.woocommerce-product-gallery__wrapper {
  min-height: 500px; 
  align-items: center;
  justify-content: center;
}

.woocommerce-product-gallery__image img {
    max-height: 500px !important;
    min-height: 500px;
    object-fit: cover;
}

body.modal-open {
  padding-right: 0 !important; /* prevent Bootstrap scrollbar shift */
}
.woocommerce-mini-cart li span.p-name {
    width: 100%;
    font-weight: bold;
}

.woocommerce-mini-cart li span.p-meta {
    font-size: 14px;
    flex: 1;
}

.woocommerce-mini-cart li:before {
    counter-increment: my-sec-counter;
    content: "" counter(my-sec-counter) ". ";
    position: absolute;
    top: 12px;
    left: 15px;
    background: #0097b2;
    width: 20px;
    height: 25px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-weight: bold;
    font-size: 12px;
}
@media (max-width: 1450px) {

    .shifted-for-cart
    {   
        transform: translateX(0px);
        padding-right: 285px;
    }
}

/********  [Blog Page CSS] **********/
.cmn_inner_banner {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.cmn_inner_banner:before {
    content: "";
    background: rgba(0,0,0,0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.cmn_inner_banner .container {
    position: relative;
    z-index: 1;
}
.pagination_wrap ul.page-numbers {
    display: inline-flex;
    list-style: none;
    padding-left: 0;
}

.pagination_wrap ul.page-numbers li {
    margin: 0 5px;
}

.pagination_wrap ul.page-numbers li a, .pagination_wrap ul.page-numbers li span {
    display: inline-block;
    padding: 4px 12px;
    text-decoration: none;
    background: #f0f0f0;
    color: #333;
    border-radius: 0;
    transition: 0.3s;
}

.pagination_wrap ul.page-numbers li .current {
    background: #000;
    color: #fff;
    pointer-events: none;
}

.single-post .post-thumbnail img {
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.widget  h2.wp-block-heading, .widget .wp-block-search__label {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
}
.widget .list-group-item {
    background: no-repeat;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
    color: #000;
    position: relative;
}
.widget .list-group-item:first-child {
    padding-top: 0;
}
.widget .list-group-item-action:hover, .widget .list-group-item-action:focus, .widget .list-group-item.active {
    background: no-repeat;
}

.widget .list-group-item-action:hover a, .widget .list-group-item-action:focus a, .widget .bs-list-group .list-group-item-action.active a {
    color: #ffd33d;
}

/********  Woocommerce Checkout **********/
.alert-info, .must-log-in, .woocommerce-info, .woocommerce-noreviews {
    background: #000;
    border-color: transparent;
    color: #fff;
}

.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before, .wc-stripe-error::before {
    background: #FFC107;
}

.woocommerce-billing-fields, .woocommerce-shipping-fields, .woocommerce-additional-fields, .woocommerce-checkout-review-order {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #dddddd7a;
    margin-bottom: 20px;
}

.woocommerce td.product-name dl.variation dt {
    width: 170px;
    display: block;
    clear: none;
    float: none;
}

.woocommerce td.product-name dl.variation dd {
    margin-bottom: 10px;
}

.woocommerce td.product-name dl.variation {
    margin-top: 10px;
}

table.shop_table.woocommerce-checkout-review-order-table tr {
    color: #000;
}

.installation-notes {
    background: #000 !important;
    color: #fff;
}

.installation-notes h3 {
    color: #FFC107;
}

.woocommerce form .form-row label {
    color: #000 !important;
    font-weight: 500;
}




/********  [Responsive] **********/

@media(min-width:768px)
{
    a.reset_variations {
        position: absolute;
        margin-left: 20px;
    }
}
@media(min-width:1200px) {
    .footer_row .footer_widget {
        flex: auto;
        width: auto;
    }

    .footer_row {
        justify-content: space-between;
        grid-gap: 105px;
    }
    #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item:first-child > a.mega-menu-link {
        padding-left: 0;
    }
}

@media(max-width:1199px) {
    .container {
        max-width: 100%;
    }
    header #bootscore-navbar a.nav-link {
        padding: 10px 10px;
        color: #1e1e1e;
        font-size: 15px;
    }

    .top_cta_button {
        margin-left: auto;
    }

}


@media(max-width:991px) {

    .top_cta_button {
        display: none;
    }
    .header-icons span.icon-label {
        display: none;
    }
    .nav_main_inner {
        flex-direction: row-reverse;
    }
    .header-icons .icon-link i {
        margin-bottom: 0;
        margin-top: 2px;
    }
    .call_section_wrap ul li a {
        font-size: 12px;
        padding-right: 10px;
    }

    .call_section_wrap ul li {
        margin: 0 10px 0 0;
    }

    .call_section_wrap ul li a img {
        max-width: 18px;
    }
}


@media(max-width:767px) {
    .banner_content h1 {
        font-size: 45px;
    }
    .banner_content .price_content {
        margin-top: 20px;
        font-size: 40px;
    }
    .banner_item .img_wrap img {
        height: 550px;
    }

}

@media(max-width:575px) {
    .header_top .middle_section form {
        display: none !important;
    }
    .cta_full.cta_data h2 {
        font-size: 40px;
    }
    .cta_data {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        text-align: center;
    }
    .cta_data .cta_block {
        order: 1;
    }
    .featured-banner {
        flex-wrap: wrap;
        padding: 40px 20px;
    }

    .featured-banner .featured-contents {
        width: 100%;
        order: 1;
    }

    .featured-banner .img_wrap {
        width: 100%;
    }
    h2, .h2 {
        font-size: 30px;
    }
    .newsletter_wrap {
        padding: 30px;
    }
    li.language-li
    {
        display: none;
    }
    .custom-language-switcher.mobile
    {
        display: block;
    }
    li.email-li:before{
        content: none!important;
    }
    .header_top .middle_section
    {
        justify-content: right;
    }
}
