/*page header hide*/
.entry-title{
    margin: 0;
    display:none !important;
}

/*container settings - website*/
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1095px;
    }
}

@media (max-width: 993px) and (min-width: 576px) {
    .container, .container-sm {
        max-width: 708px;
    }
}

/*header*/
/* ================================
   GLOBAL HEADER RESET
================================ */
.site-header {
    width: 100%;
    position: relative;
    z-index: 999;
    background: #fff;
}

/* ================================
   TOP HEADER
================================ */
.top-header {
    background: #000;
    color: #fff;
    font-size: 14px;
}

.top-header .container {
    min-height: 55px;
}

.top-left {
    display: flex;
    gap: 50px;
}

.top-header .top-item {
        display: inline-flex;
        align-items: center;
        gap: 23px;
        font-weight: 400;
        font-family: "Roboto", Sans-serif;
        font-size: 18px;
        line-height: 19.2px;
}

.top-header i {
    font-size: 16px;
}
.top-header-telephone-icon{
    font-size: 20px !important;
    margin-right: 15px;
}
.location-icon-top-header{
    margin-right: 15px;
}
.top-header .top-social a {
    color: #fff;
    margin-left: 12px;
    font-size: 15px;
    transition: opacity 0.2s ease;
}

.top-header .top-social a:hover {
    opacity: 0.7;
}
.top-item a{
    text-decoration: none;
    color: #FFFFFF;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
}
/* ================================
   MAIN HEADER
================================ */
.main-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.main-header .container {
    min-height: 100px;
}

.site-branding img {
    max-height: 46px;
    width: auto;
}

/* ================================
   DESKTOP NAVIGATION
================================ */
.main-navigation {
    margin-left: auto;
}

.main-navigation ul {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    text-decoration: none;
    font-family: "Roboto", Sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #777;
    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: #6bbf59;
}

.main-navigation .current-menu-item > a {
    color: #6bbf59;
}

/*centered nav - start*/
.main-header .container {
    position: relative;
  }
  
  #site-navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .header-icons {
    margin-left: auto;
  }

  /*centered nav - end*/


/* ================================
   HEADER ICONS
================================ */
.header-icons {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 40px;
}

.header-icons .icon {
    color: #000;
    font-size: 22px;
    position: relative;
}

.cart-icon .cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #000;
    color: #fff;
    font-size: 11px;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================
   HAMBURGER BUTTON
================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #000;
    display: block;
}

/*further addded*/

.user-icon {
    position: relative;
  }
  
  /* dropdown hidden by default */
  .user-dropdown {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    /* top: 120%;
    right: 0; */

    top: 105%;
    right: -50px;

    background: #fff;
    min-width: 120px;
    z-index: 9999;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  
  /* show dropdown when hovering icon OR dropdown */
  .user-icon:hover .user-dropdown,
  .user-dropdown:hover {
    opacity: 1;
    visibility: visible;
  }
  
  /* dropdown links */
  .user-dropdown a {
    display: block;
    padding: 10px;
    text-decoration: none;
    background: #007f42;
    color: #fff;
    font-size: 15px;
    text-align: center;
  }
  
  .user-dropdown a:hover {
    background: #f5f5f5;
    color: #000;
  }
  
  /* icon styling */
  .icon.user-icon.myaccount-icon-top-header {
    font-size: 28px;
    margin-top: 5px;
    cursor: pointer;
  }
  

/*further added end*/

/* ================================
   MOBILE DRAWER
================================ */
#mobile-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 250px;
    height: 100%;
    background: #000;
    z-index: 11000;
    padding: 24px 20px;
    transition: left 0.35s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

#mobile-drawer.active {
    left: 0;
}


/* Close button */
.drawer-close {
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    position: absolute;
    top: 6px;
    right: 12px;
    color: #7a7a7a;
}

.drawer-close:hover{
    color: #fff;
}

/* Mobile Menu */
#mobile-menu {
    list-style: none;
    padding: 32px 0 0;
    margin: 0;
}

#mobile-menu li {
    margin-bottom: 14px;
}

#mobile-menu a {
    font-size: 16px;
    font-weight: 400;
    color: #7a7a7a;
    text-decoration: none;
    font-family: "Roboto", Sans-serif;
    padding: 10px;
}
#mobile-menu .current-menu-item a{
    color: #61ce70;
}

#mobile-menu a:hover{
    color: #61ce70;
}

/* ================================
   OVERLAY
================================ */
#drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

#drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.user_account_fa_icon{
    color: #000;
    font-size: 20px;
    margin-bottom: 18px;
}

.location-icon-top-header{
    font-size: 18px !important;
    margin-left: 5px;
}

/* ================================
   RESPONSIVE RULES
================================ */
@media (max-width: 1024px) {

    .main-navigation {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-icons {
        margin-left: 0;
    }

    .top-header {
        font-size: 13px;
    }

    .top-header .top-social {
        /* display: none; */
    }


    /*further enhancements - to make hamburger into fa bars*/
    /* Make header a 3-column layout */
	.main-header .container {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
	}

	/* Center hamburger */
	#hamburger-btn {
		grid-column: 2;
		justify-self: center;
		font-size: 28px;
		background: none;
		border: none;
		padding: 0;
        color: #54595f;
	}

    #hamburger-btn:hover{
        color: #61ce70;
    }

	/* Push icons to right */
	.header-icons {
		grid-column: 3;
		justify-self: end;
	}

    /*center allignment of icon*/
    .main-header .container {
		position: relative;
	}

    /* Center hamburger */
	#hamburger-btn {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 5;

		background: none;
		border: none;
		font-size: 24px;
		cursor: pointer;
	}

	/* Keep icons right */
	.header-icons {
		margin-left: auto;
		display: flex;
		align-items: center;
		gap: 50px;
	}

    #hamburger-btn i {
        pointer-events: none;
    }

}

@media (max-width: 768px){

    .top-header .top-left {
        display: none;
    }

    .top-header .top-right {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {

    .site-branding img {
        max-height: 30px;
    }
    .header-icons {
        gap: 30px;
    }
}


/*footer*/
/* ================================
   FOOTER
================================ */
.site-footer {
    background: #0a7f3f;
    color: #fff;
    font-size: 16px;
}

/* ===== Main Footer ===== */
.footer-main {
    padding: 80px 0 60px;
}

.footer-logo img {
    background: #fff;
    /* padding: 20px 28px; */
    padding: 15px 40px;
    border-radius: 10px;
    /* max-width: 260px; */
    margin-bottom: 24px;


    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
}

.footer-about p {
    max-width: 355px;
    line-height: 1.8;
    font-weight: 400;
}

/* ===== Footer Headings ===== */
.site-footer h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 28px;
    position: relative;

    margin-bottom: 28px;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    line-height: 22.73px;
}

.site-footer h4::after {
    content: '';
    display: block;
    width: 46px;
    height: 2px;
    background: #fff;
    margin-top: 10px;
}

/* ===== Footer Links ===== */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 14px;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
}

/*arrows on left side*/
.footer-menu a {
    position: relative;
    padding-left: 28px; /* space for icon */
    transition: 0.5s all ease;
    display: inline-flex; 
    align-items: center;
    font-family: "Roboto", Sans-serif;
    font-weight: 400;
}

.footer-menu a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;

    width: 20px;
    height: 20px;

    background-image: url("../images/right.png");
    background-size: 20px 20px;
    background-repeat: no-repeat;

    transform: translateY(-50%);
    filter: brightness(0) invert(1); /* white icon */
    
}


.footer-menu a:hover {
    /* text-decoration: none; */
    transform: translatex(10px);
    opacity: 0.7;
}

/* ===== Footer Contact ===== */
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.footer-contact i {
    font-size: 18px;
    margin-top: 4px;
}

/* ===== Certifications ===== */
.footer-badges {
    display: flex;
    gap: 5px;
    margin-top: 26px;
}

.footer-badges img {
    max-height: 70px;
    /* background: #fff; */
    padding: 6px;
    border-radius: 6px;
}

#certification_big_img{
    max-height: 100%;
}

/* ===== Footer Bottom ===== */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.25);
    padding: 24px 0;
}

.footer-copy {
    font-size: 15px;
    font-weight: 500;
}

/* ===== Social Icons ===== */
.footer-social a {
    color: #0a7f3f;
    background: #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    /* background: #000; */
    background: #28a745;
    color: #fff;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    display: flex;
    gap: 14px;
}

.footer-contact a:hover {
    text-decoration: none;
}


/* ================================
   RESPONSIVE
================================ */
@media (max-width: 991px) {

    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-about {
        margin-bottom: 40px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .container {
        gap: 16px;
        justify-content: center !important;
    }

    .footer-about p {
        max-width: 100%;
        text-align: center;
    }

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

@media (max-width: 769px){

    .footer-main{
        padding-left: 15px;
        padding-right: 15px;
    }

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

}

@media (max-width: 576px){
    .footer-about {
        margin-bottom: 25px;
    }

    .footer-contact{
        margin-top: 25px;
    }
}



/*footer end*/


/*about page*/

.about_section_container{
    padding-top: 50px;
    padding-bottom: 20px;
}

.about_section_container p{
    font-size: 11pt;
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    background-color: transparent;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    text-decoration: none;
    vertical-align: baseline;
    white-space: pre-wrap;
}

@media (min-width: 769px){
    .about_section_container p{
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 600px){
    .about_section_container{
        padding-left: 20px;
        padding-right: 20px;
    }
}


/*contact us page start*/

/*testing phase code*/
.contact_form_wrapper{
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    /* padding: 50px 0px 50px 0px; */
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.19);
    margin-top: 50px;
    margin-bottom: 50px;
}

.contact_form_left_column{
    background: #007f42;
}

.contact_us_form_below_details_wrapper {
    color: #fff;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 20px 20px 20px 20px;
}

.contact_us_form_below_details_wrapper h3{
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 30px !important;
}

.contact_us_form_below_details_wrapper h2{
    color: #FFFFFF;
    font-family: "Roboto", Sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 12px; /*matching address alignment with first input of form*/
}

/*icons*/

/*address*/
.contact_form_wrapper i.fa.fa-map-marker.fs-4 {
    /* font-size: 34px !important; */
    font-size: 25px !important;
    padding-right: 8px;
    padding-bottom: 17px;
}
/*email and mobile*/
i.fa.fa-phone.fs-4 {
    /* font-size: 34px !important; */
    font-size: 25px !important;
    padding-right: 8px;
}

i.fa.fa-envelope.fs-5 {
    /* font-size: 30px !important; */
    font-size: 25px !important;
    padding-right: 6px;
}

.contact_form_left_column i.fa.fa-envelope.fs-5 {
    padding-top: 5px;
}

/*removing gap b/w both the columns*/
.contact_form_wrapper{
    gap: 0;
}

/*forminator form settings css*/

.contact_form_wrapper .forminator-guttenberg {
    padding: 20px 20px 20px 20px;
}

.get_in_touch_title_h2{
    font-size: 32px;
    font-weight: 600;
    color: #007f42;
    font-family: 'Roboto';
    margin-bottom: -7px;
}

/*hide the labels*/
.contact_form_right_column form label{
    display: none !important;
}
.contact_form_right_column form input{
    /* width: 50% !important; */
    font-size: 15px !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    /* padding: 8px !important; */
}
.contact_form_right_column form textarea{
    font-size: 15px !important;
    margin-bottom: 0 !important;
    margin-top: 18px !important;
    /* padding: 8px !important; */
}
.contact_form_right_column form input, .contact_form_right_column form textarea{
    border: 1px solid #ddd;
    border-radius: 5px !important;
}

/*on hover border color changes to green*/

#forminator-module-63 input[type="text"]:focus,
#forminator-module-63 input[type="email"]:focus,
#forminator-module-63 input[type="tel"]:focus,
#forminator-module-63 textarea:focus {
    border:2px solid #007F42 !important;
    outline: none !important;
    box-shadow: none !important;
}

/*phone number limit message not required*/
span#forminator-field-phone-1_6968a27f0cb73-description {
    display: none !important;
}

.forminator-ui.forminator-custom-form[data-design=default] .forminator-description{
    display: none !important;
}

button.forminator-button.forminator-button-submit.submit_btn_get_in_touch {
    padding: 10px 40px !important;
    background: #007F42;
    color: #fff;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer;
    font-size: 16px !important;
}

.contact_form_right_column form textarea{
    height: 96px !important;
    min-height: 96px !important;
}

/*error messages*/
.contact_form_right_column form .forminator-error-message{
    background: none !important;
    color: red !important;
    margin-top: 0px;
}

@media (min-width: 782px){
    .contact_form_left_column{
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }
    
}

/* ===== Get In Touch Grid ===== */
#get-in-touch-grid,
.get-in-touch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Message full width */
.get-in-touch-grid .forminator-field-textarea {
    grid-column: span 2;
}

/* Phone field fix */
.get-in-touch-grid .forminator-field-phone {
    grid-column: span 1;
}

/* Remove Forminator internal spacing that breaks grid */
#get-in-touch-grid .forminator-field,
.get-in-touch-grid .forminator-field {
    padding-right: 0 !important;
    margin-right: 0 !important;
    width: 100%;
    box-sizing: border-box;
}

/* Inputs should always be full width */
.get-in-touch-grid .forminator-input,
.get-in-touch-grid textarea,
.get-in-touch-grid select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 576px){

    .get-in-touch-grid .forminator-row{
        margin-bottom: 6px !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .get-in-touch-grid {
        grid-template-columns: 1fr;
    }

    .get-in-touch-grid .forminator-field-textarea {
        grid-column: span 1;
    }

    #get-in-touch-grid, .get-in-touch-grid{
        gap: 0;
    }
    .contact_form_right_column form textarea{
        margin-top: 23px !important;
    }
}


/*contact us page end*/


/*services page start*/

/* === SERVICES SECTION === */
.sp-services-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

    /*margins top and bottom*/
    margin-top: 90px;
    margin-bottom: 30px;
}

/* CARD */
.sp-service-card {
    background: #fff;
    border-radius: 14px;
    padding: 70px 30px 40px;
    text-align: center;
    position: relative;
    /* box-shadow: 0 12px 30px rgba(0,0,0,0.08); */
    box-shadow:
    0 4px 10px rgba(0,0,0,0.04),   /* subtle top */
    0 18px 35px rgba(0,0,0,0.04); /* strong bottom */

}

/* ICON */
.sp-service-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* background: #b6c532; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-service-icon img {
    /* width: 42px;
    height: 42px; */
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* TITLE */
.sp-service-title {
    margin-bottom: 18px;
    color: #474747;
    font-family: "Roboto", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 33.89px;
}

/* TEXT */
/* .sp-service-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    max-height: 95px;
    overflow: hidden;
    transition: max-height 0.4s ease;
} */

/* ... css */

/* .sp-service-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;

    display: -webkit-box;
    -webkit-line-clamp: 4;          
    -webkit-box-orient: vertical;
    overflow: hidden;
    

    transition: all 0.4s ease;
}


.sp-service-text {
    transition:
        max-height 0.6s ease,
        opacity 0.4s ease,
        transform 0.4s ease;
}

.sp-service-card.active .sp-service-text {
    opacity: 1;
    transform: translateY(0);
}

.sp-service-text {
    opacity: 0.95;
    transform: translateY(4px);
} */

/*updated service text css*/

.sp-service-content {
    overflow: hidden;
}

.sp-service-text {
    line-height: 1.7;
    transition: max-height 0.6s ease;

    font-size: 11pt;
    font-family: Arial;
    color: rgb(0, 0, 0);
}

/* COLLAPSED (with ...) */
.sp-service-text.sp-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 6.8em; /* 4 lines × line-height */
}

/* EXPANDED */
.sp-service-text.sp-expanded {
    display: block;
    max-height: 1000px; /* enough for any content */
}


/*end*/
.sp-read-toggle {
    transition:
        background 0.3s ease,
        transform 0.25s ease;
}

.sp-read-toggle:hover {
    transform: translateY(-2px);
}

/*... end*/


.sp-service-card.active .sp-service-text {
    max-height: 1000px;
}

/* BUTTON */
.sp-read-toggle {
    margin-top: 25px;
    background: #2da94f;
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sp-read-toggle:hover {
    background: #239442;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .sp-services-wrapper {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 70px;
    }
}

@media (max-width: 768px) {
    .sp-services-wrapper {
        grid-template-columns: 1fr;
    }

    /* COLLAPSED (with ...) */
    .sp-service-text.sp-clamped {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-height: 4.8em; /* 4 lines × line-height */
    }

    /* EXPANDED */
    .sp-service-text.sp-expanded {
        display: block;
        max-height: 500px; /* enough for any content */
    }

}

@media (max-width: 600px){
    .sp-services-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/*services page end*/


/*pages top banner - start*/

.ptb-top-banner {
    position: relative;
    height: 320px; /* matched visually */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.ptb-overlay {
    position: absolute;
    inset: 0;
    background-color: #00000020;
    opacity: 100;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.ptb-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ptb-title {
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .ptb-top-banner {
        height: 220px;
    }

    .ptb-title {
        font-size: 28px;
    }
}


/*pages top banner -end*/


/*woocommerce pages*
/

/*shop page*/

/*products listing as per display sizes will fix it later*/
/* Base 3-column layout */
/* .shop-archive-wrapper ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
} */

/* Tablet – 2 products per row */
/* @media (max-width: 991px) {
    .shop-archive-wrapper ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
} */

/* Mobile – 1 product per row */
/* @media (max-width: 575px) {
    .shop-archive-wrapper ul.products {
        grid-template-columns: 1fr;
    }
} */


/*hiding breadcrumbs nav*/

nav.woocommerce-breadcrumb {
    display: none;
}

/*products wrapper*/
.shop-archive-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

.shop-archive-wrapper .add_to_cart_button{
    display: none !important;
}

/*hiding read more btn in shop page when the price is not available*/
.shop-archive-wrapper .button.product_type_simple {
    display: none !important;
}

/*product cards - shop page*/
.product-card-inner-shop-page {
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 7px;
    /* transition: 0.5s all ease; */
    height: 100%;

    transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;

    /* min-height: 568px; */
    min-height: 446px;
    /*auto for related products*/
}

@media (max-width: 993px){
    .product-card-inner-shop-page{
        min-height: auto;
    }
}

.related .product-card-inner-shop-page{
    min-height: auto;
}


.product-card-inner-shop-page:hover {
transform: translateY(-1px);
box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

/*woocommerce product title*/
.woocommerce-loop-product__title {
    /* padding-left: 30px !important;
    padding-right: 30px !important; */
    font-size: 16px ! IMPORTANT;
    color: #212529;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    word-wrap: break-word;
    text-align: center;
    padding-left: 15px !important;
    padding-right: 15px !important;
}


.product-card-inner-shop-page .price .woocommerce-Price-amount bdi{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #007f42 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.5;
}

.product-card-inner-shop-page .price{
    text-align: center;
    padding-bottom: 20px;
    padding-top: 5px;
}


/*products ordering option*/
.woocommerce-ordering select.orderby {
    width: 100%;
    padding: .55rem .7rem;
    color: #495057;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: all .15s ease -in-out;
}

.woocommerce-ordering select.orderby:focus {
    outline: none;
    border-color: #007f42;
}

/*result count number*/
.woocommerce .woocommerce-result-count {
    margin: 0 0 1em;
    margin-bottom: 0px !important;
    margin-top: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1.1rem;
    color: #212529;
    line-height: 1.5;
}

/*page numbers*/

.woocommerce nav.woocommerce-pagination ul .page-numbers{
    color: rgb(0, 0, 0);
    font-weight: 400;
    position: relative;
    display: block;
    padding: .5rem .75rem !important;
    line-height: 1.25 !important;
    background-color: #fff;
    /* border: 1px solid #dee2e6; */
}

.woocommerce nav.woocommerce-pagination ul .page-numbers:hover{
    color: #007f42;
    background: #dee2e6;
}

.woocommerce-shop .woocommerce-pagination .page-numbers li .current {
    color: rgb(255, 255, 255) !important;
    background-color: rgb(0, 127, 66) !important;
    border-color: rgb(0, 127, 66) !important;
}

/*corner borders - for first and last numbers*/
.woocommerce nav.woocommerce-pagination ul li:first-child .page-numbers {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.woocommerce nav.woocommerce-pagination ul li:last-child .page-numbers{
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

/*right side border*/
.woocommerce nav.woocommerce-pagination ul li:last-child{
    /* border-right: none;
    border-top: none;
    border-bottom: none; */
}

/*shop page end*/


/*individual product page - start*/




.product_title {
    display: block !important;
}

/*product title*/

.single-product .product .product_title {
    font-size: 27px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/*price*/
.single-product .product .price .amount {
    font-size: 24px;
    font-weight: 700;
    color: #007f42;
}

/*short description table*/
.woocommerce-product-details__short-description {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1.1rem;
    color: #212529;
    line-height: 1.5;
}

.single-product .woocommerce-product-details__short-description table th {
    margin-right: 20px !important;
    display: block;
}

/*hiding category - which is in product-meta*/
.single-product .product_meta {
    display: none;
}

/*main-content*/
.single-product .site-main{
    padding: 24px 0;
}

/*MATCH GALLERY LAYOUT (HORIZONTAL + THUMBS)*/
/* Gallery container */
.woocommerce-product-gallery {
    /* display: flex;
    gap: 20px; */
}

/* Thumbnails */
.flex-control-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px !important;
    max-width: 354px;
}

.flex-control-thumbs img {
    border: 1px solid #ddd;
    padding: 3px;
    cursor: pointer;
}

.flex-control-thumbs img.flex-active {
    /* border-color: #007f42; */
    border: 1px solid #222;
}

/*arrows after script runs, will appear automatically*/
.flex-direction-nav {
    display: block !important;
}

.flex-direction-nav a {
    opacity: 1;
    visibility: visible;
}


/*opacity of non-selected gallery image  of product*/
.woocommerce div.product div.images .flex-control-thumbs li img {
    opacity: 1;
    padding: 0;
}


/*bottom content - description and reviews tab*/

/*non-active element
*/
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-weight: normal;
    color: #6c757d;
}

/*active tab*/
.single-product .woocommerce-tabs .wc-tabs li.active {
    color: #007f42 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    font-weight: bold;
}

/*items*/
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0;
    background-color: #fff;
    border-width: 1px;
    border-color: #d3ced2;
    border-style: solid;
    border-radius: 0;
}

/*summary panel*/
.woocommerce div.product .woocommerce-tabs .panel {
    margin: 0;
    padding: 1em;
    border-top: none !important;
    border-width: 1px;
    border-color: #d3ced2;
    border-style: solid;
}

/*title tabs*/
.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    flex-flow: row wrap;
    margin: 0;
    padding: 0;
}

/*minimal before and after pseudo elements points*/
.woocommerce-tabs ul.tabs::after, .woocommerce-tabs ul.tabs::before{
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before{
    display: none;
}


@media (max-width:600px){
    .single-product .product .product_title {
        font-size: 22px;
    }
}


/*quantity selector css - start*/

/* .woocommerce div.product form.cart div.quantity {
    float: none;
    margin: 0 0 1rem;
}

.single-product .cart .quantity {
    margin-top: 10px !important;
} */

.single-product .input-group.input-text.qty.text {
    margin-top: 15px;
    margin-bottom: 15px;
}

/*causing + to move a lit bit far*/
.woocommerce div.product form.cart div.quantity{
    margin: 0;
}

/*quantity*/
.woocommerce .quantity .qty{
    /* width: 30%; */
    padding: .53rem .7rem;
    color: #495057 !important;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 0;
    transition: all .15s ease-in-out;
    outline: none;
    width: 5em;
}

.woocommerce form.cart div.quantity .input-group, .woocommerce .product-quantity div.quantity .input-group {
    width: 128px;
}

.single-product button.btn.btn-decrement.btn-sm.btn-outline-secondary {
    width: auto;
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    color: #6c757d !important;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem 0 0 .25rem;
    height: 43px;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
}

button.btn.btn-increment.btn-sm.btn-outline-secondary {
    width: auto;
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    color: #6c757d !important;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 0 .25rem .25rem 0;
    height: 43px;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
}

button.btn.btn-increment.btn-sm.btn-outline-secondary:hover, .single-product button.btn.btn-decrement.btn-sm.btn-outline-secondary:hover{
    background: #007F42;
    color: #fff !important;
}

/*hide quantity selector's internal spinner arrows*/
/* Hide number input arrows – Chrome, Edge, Safari */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide number input arrows – Firefox */
input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}


/*quantity selector css - end*/

/*add to cart button in single page*/
.single-product .single_add_to_cart_button {
    background: #007f42 !important;
    border-color: #007f42 !important;
}

.single-product .single_add_to_cart_button:hover {
    background: #28a745 !important;
    border-color: #28a745 !important;
}

.single-product .single_add_to_cart_button.button.alt {
    /* padding: 0.55rem 2rem; */
    padding: 0.55rem 1.3rem;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: normal;
    text-align: center;
}

.woocommerce-message a.button.wc-forward {
    background: #007f42 !important;
    border-color: #007f42 !important;
    color: white;
    border-radius: 7px;
    padding: 12px 20px !important;
    font-weight: 500;
    margin-top: 10px;
}

.woocommerce-message a.button.wc-forward:hover {
    background: #28a745 !important;
    border-color: #28a745 !important;
}

/*success notice banner*/
/* .woocommerce-notices-wrapper.is-success {
    background-color: #f4fff7;
    border-color: #4ab866;
}

.woocommerce-notices-wrapper {
    
    align-content: flex-start;
    align-items: stretch;
    background-color: #fff;
    border: 1px solid;
    border-radius: 4px;
    box-sizing: border-box;
    color: #2f2f2f;
    display: flex
;
    font-size: .875em;
    font-weight: 400;
    gap: 12px;
    line-height: 1.5;
    margin: 16px 0;
    padding: 16px !important;
} */


.woocommerce-message {
    background-color: #f4fff7;
    border-color: #4ab866;
    /* border-top-color: transparent; */
    outline: none;
}

/*related products section*/

.related.products .products .custom-product-card .product-card-inner-shop-page .add_to_cart_button {
    display: none !important;
}

/*maintaining fair distance between the related products section and description tab*/

.woocommerce div.product .woocommerce-tabs {
    margin-bottom: 5rem;
}

/*description block*/
.woocommerce-Tabs-panel p{
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
    margin-top: 0;
}
.woocommerce-Tabs-panel h2{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
}

/*related products card*/

@media (max-width: 993px){
    /*full card width*/
    .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product{
        width: 60%;
        margin: 0 auto;
        margin-bottom: 25px;
    }

    .woocommerce .products ul, .woocommerce ul.products{
        display: flex;
            flex-direction: column;
    }

    .related.products h2 {
        text-align: center;
        /* margin-bottom: 30px; */
    }

    /*gap b/w desc block and related products*/
    .woocommerce div.product .woocommerce-tabs {
        margin-bottom: 2rem;
    }

}

/*shop page*/
@media (max-width: 993px) {
    /* shop-archive-wrapper .woocommerce ul.products{
        padding-top: 25px;
    } */

    .product-card-inner-shop-page .woocommerce .products ul, .woocommerce ul.products{
        padding-top: 25px;
    }
}

@media (max-width: 600px){
    .single-product .woocommerce-message a.button.wc-forward{
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .single-product-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .shop-archive-wrapper{
        padding-left: 15px;
        padding-right: 15px;
    }

    /*order and info*/
    .woocommerce-result-count {
        float: none !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    form.woocommerce-ordering {
        float: none !important;
        margin: 0 auto !important;
        margin-top: 20px !important;
        margin-bottom: 5px !important;
    }
    .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product{
        width: 100%;
    }
}

@media (max-width: 475px){
    /* .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product{
        width: 100%;
    } */
}

/*individual product page - end*/



/*classic cart*/

/*cart page - start*/
.custom-cart-container {
    padding: 40px 0;
}

/*progress bar*/
/* Cart Steps */
.wc-steps-wrapper {
    padding-top: 50px;
    padding-bottom: 30px;
}

.wc-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.wc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #999;
    font-weight: 500;
}

.wc-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.wc-step-title {
    font-size: 18px;
    font-weight: 700 !important;
}

/* .wc-step-active {
    color: #212529;
} */



.wc-step-active .wc-step-number {
    border-color: #007f42;
    background: #007f42;
    color: #fff;
}

.wc-step-divider {
    width: 60px;
    height: 2px;
    background: #ddd;
    margin-bottom: 36px;
}

/*2nd way added css for progress bar - start*/

/* .wc-step.active {
    color: #007f42;
} */

.wc-step.active .wc-step-number {
    background: #007f42;
    border-color: #007f42;
    color: #fff;
}

.wc-step.active .wc-step-title{
    color: #212529;
}


/*end*/

@media (min-width: 769px){
    .wc-steps{
        margin-left: 75px;
    }
}


/* Mobile */
@media (max-width: 768px) {
    .wc-steps {
        flex-direction: column;
        gap: 2px;
    }

    .wc-step-divider {
        width: 2px;
        height: 30px;
        margin-bottom: 10px;
    }

    .wc-steps-wrapper {
        padding-top: 30px;
    }
    
}


/*apply coupon*/
.woocommerce-cart .shop_table .actions .coupon .button, .woocommerce-cart .shop_table .actions .button, .woocommerce-cart .jupiterx-main-content .woocommerce .cart-collaterals .wc-proceed-to-checkout .button, .woocommerce-checkout .woocommerce .checkout_coupon .button {
    background: #007f42;
    border-color: #007f42;
    display: inline-block;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    transition: all .15sease-in-out;
}

.woocommerce-cart .shop_table .actions .coupon .button:hover, .woocommerce-cart .shop_table .actions .button:hover, .woocommerce-cart .jupiterx-main-content .woocommerce .cart-collaterals .wc-proceed-to-checkout .button:hover, .woocommerce-checkout .woocommerce .checkout_coupon .button:hover {
    background: #28a745;
    border-color: #28a745;
}

/*update btn*/
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit:disabled[disabled], .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button:disabled[disabled], .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled], .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled], .woocommerce .jupiterx-wc-loadmore.disabled, .woocommerce .jupiterx-wc-loadmore:disabled, .woocommerce .jupiterx-wc-loadmore:disabled[disabled] {
    padding: .375rem .75rem;
    color: #fff;
    pointer-events: none;
}

/*coupon input field*/
#add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text {
    float: left;
    box-sizing: border-box;
    border: 1px solid #cfc8d8;
    padding: 6px 6px 5px;
    margin: 0 4px 0 0;
    outline: 0;
}
.woocommerce-page .jupiterx-primary input:not(.jet-range__slider__input), .woocommerce-page .jupiterx-primary textarea, .woocommerce-page .jupiterx-primary select, .woocommerce form input:not(.jet-range__slider__input), .woocommerce form textarea, .woocommerce form select {
    width: 100%;
    padding: .55rem .7rem;
    color: #495057;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: all .15sease-in-out;
}

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
    width: 60%;
}

/*hiding shipping method in checkout block - cart page*/
tr.woocommerce-shipping-totals.shipping {
    display: none !important;
}


/*proceed to checkout btn*/
/* a.checkout-button.button.alt.wc-forward {
    background: #007f42;
    font-weight: normal;
} */

.cart-page-continue-shopping, a.checkout-button.button.alt.wc-forward {
    background: #007f42 !important;
    font-weight: normal !important;
    color: #fff !important;
    
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

a.checkout-button.button.alt.wc-forward{
    padding: .375rem .75rem !important;
}

.cart-page-continue-shopping:hover, a.checkout-button.button.alt.wc-forward:hover{
    background: #28a745 !important;
    border-color: #28a745 !important;
}

a.checkout-button.button.alt.wc-forward:hover, .cart-page-continue-shopping:hover {
    background: #28a745;
}


.cart-page-continue-shopping{
    margin-right: 5px;
}



/*delete icon cross*/
.woocommerce a.remove {
    transition: all 0.2sease-in-out;
    color: #fff !important;
    background-color: #d1d3d6;
    border-width: 0;
    border-style: solid;
    border-radius: 20px;
    padding-top: 1px;
    padding-right: 1px;
    padding-bottom: 1px;
    padding-left: 1px;
}

.woocommerce a.remove:hover{
    background: #007f42;
}

/*banner on cart page*/
.woocommerce-cart .woocommerce-notices-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
}

/*return to shop btn - when all cart items got deleted*/

.return-to-shop a{
    background: #007f42 !important;
    color: #fff !important;
    font-weight: normal !important;
    border-radius: 6px !important;
    margin: 0 auto !important;
    display: table !important;
    padding: 15px !important;
}

.return-to-shop a:hover{
    background: #28a745 !important;
}


/*empty cart msg*/

.wc-empty-cart-message {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}


.cart-empty.woocommerce-info::before {
    color: #007F42;
    border: #007F42;
}

.cart-empty.woocommerce-info {
    border-top-color: #007F42 !important;
}


/*product name*/
td.product-name a{
    color: #212529;
    font-size: 14px !important;
    line-height: 1.3;
    text-decoration: none;
}

td.product-name a:hover{
    color: #007F42;
}

.woocommerce-cart .product-thumbnail a img{
    width: 80px !important;
    height: auto !important;
    border-radius: 8px !important;
    max-width: 80px;
}

/*afterwards*/

/*cart - left and order totals right*/
/* .woocommerce-cart .custom-cart-container .woocommerce {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.woocommerce-cart .woocommerce-cart-form {
    flex: 0 0 68%;
}

.woocommerce-cart .cart-collaterals {
    flex: 0 0 32%;
} */

/*mobile css for above*/
/* @media (max-width: 991px) {
    .woocommerce-cart .custom-cart-container .woocommerce {
        flex-direction: column;
    }

    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals {
        width: 100%;
    }
} */


/*trials*/

/*left form - order details*/
/* .woocommerce-cart .woocommerce-cart-form{
    width: 67%;
    float: left;
    margin-top: 5px;
} */


/*right block - summary block*/
/* 
.woocommerce-cart  .cart-collaterals{
    width: 31%;
    float: right;
} */

/* Cart main layout */



/*additionals end*/

/*add-on css*/
.woocommerce-cart .cart_totals h2{
    font-size: 1.5rem;
    padding-bottom: .5rem;
}



/*totals block - 
now workd*/

/*this one is top-tier block*/
.container.custom-cart-container {
    display: flex;
    flex-direction: row;
    gap: 35px;
}
/*this is second block*/
.cart_totals.calculated_shipping {
    float: none !important;
    width: 100% !important;
}

/*this one is top block*/
.cart-collaterals {
    width: 60% !important;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals{
    float: none !important;
    width: 100% !important;
}


.wc-proceed-to-checkout {
    display: flex
;
    gap: 4px;
}


@media (max-width: 1200px){
    .container.custom-cart-container {
        
        flex-direction: column;
    }
}

@media (max-width: 769px){
    .cart-collaterals {
        width: 100% !important;
    }
    .container.custom-cart-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 600px){

}

/*cart page - end*/


/*checkout page - start */

.wc-block-components-notice-banner.is-error {
    background-color: #fff0f0;
    border-color: #cc1818;
}

/*additional*/
/* Checkout error container */
.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
    margin-bottom: 30px;
}

.woocommerce-checkout .woocommerce-notices-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    /* padding-bottom: 30px; */
}


/* Main error box */
.woocommerce-checkout .woocommerce-error {
    list-style: none;
    margin: 0;
    padding: 20px 20px 20px 60px;
    border-radius: 6px;
    background: #fff5f5;
    border: 1px solid #f1aeb5;
    color: #842029;
    position: relative;
}

/* Error icon (circle + exclamation) */
.woocommerce-checkout .woocommerce-error::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 22px;
    width: 24px;
    height: 24px;
    background: no-repeat center / contain
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23842029'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
}

/* Heading line (like “The following problems were found”) */
/* .woocommerce-checkout .woocommerce-error::after {
    content: "The following problems were found:";
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
} */

/* Error items */
.woocommerce-checkout .woocommerce-error li {
    margin-left: 0;
    padding-left: 0;
    line-height: 1.6;
}


/*additional end*/

/*place order css for both below btn's allignment*/
.woocommerce-checkout .place-order {
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px; */
}



/*place order*/
.woocommerce-checkout button#place_order {
    background: #007f42;
    border-color: #007f42;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    padding: .375rem .75rem;
}

.woocommerce-checkout button#place_order:hover {
    background-color: #28a745;
}

/*continue shopping*/

.woocommerce-checkout a.button.woocommerce-checkout-continue-shopping {
    background: #007f42;
    border-color: #007f42;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    padding: .375rem .75rem;
    float: right;
    margin-right: 0.75rem;
}

.woocommerce-checkout a.button.woocommerce-checkout-continue-shopping:hover{
    background-color: #28a745;
}

/*fixing the postion of place order even at smaller screens*/
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    float: right !important;
    width: auto !important;
}

/*checkout page - end*/

/*auth pages - start*/

/*auth template css*/
.auth-wrapper {
    padding: 0;
}

.auth-left {
    position: relative;
    align-items: center;
    justify-content: center;
}

.auth-left-inner {
    max-width: 80%;
}

.auth-left-text {
    margin-bottom: 40px;
}

.auth-right {
    padding: 60px;
}

.auth-form-wrapper {
    max-width: 420px;
    margin: auto;
}

.ellipse {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}


/*auth pages end*/


/*myaccount page*/

/*dashboard - start*/

li.woocommerce-MyAccount-navigation-link{
    list-style: none;
    margin-bottom: 10px;
}

li.woocommerce-MyAccount-navigation-link a{
    background: #007f42;
    border-color: transparent;
    color: #fff !important;
    text-decoration: none;
    /* padding: 15px ! IMPORTANT;
    border-radius: 5px !important; */

    /*lately added*/
    display: flex;
        width: 100%;
        height: 100%;
        padding: var(--tabs-padding, 12px 20px);
        border-width: 1px;
        border-style: var(--tabs-border-type, solid);
        border-radius: var(--tabs-border-radius, 0);
        border-color: var(--tabs-border-color, #ccc);

        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 19px;
}

.woocommerce-MyAccount-navigation ul li:not(.is-active) a {
    color: #111111 ! IMPORTANT;
    background: transparent;
}

/* li.woocommerce-MyAccount-navigation-link a:hover{
    cursor: pointer;
    color: #fff !important;
    background-color: #007f42 !important;
} */

.woocommerce-MyAccount-navigation ul li:not(.is-active) a:hover {
    cursor: pointer;
    color: #fff !important;
    background-color: #007f42;
}

.woocommerce .woocommerce-MyAccount-navigation>ul>li >a {
    margin-bottom: 5px;
}


.woocommerce-account .woocommerce-MyAccount-content{
    float: right;
    width: 75% !important;
    padding: 15px 20px !important;
    font-size: 17px;
    font-weight: 400;
    color: #555;
    font-family: Roboto, sans-serif;
    border-radius: 5px;
    border: 1px solid #cccccc;
    background: #fff;
    /* max-height: 317px;  */
}

.woocommerce-account .woocommerce-MyAccount-navigation{
    width: 25% !important;
    float: left;
}

/*right block*/
.woocommerce-account .woocommerce-MyAccount-content a{
    text-decoration: none;
    color: #007f42;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover{
    color: #111111;
    text-decoration: underline;
}

/*payment methods - add payment method btn*/
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button{
    background: #007f42 !important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
    border-top-color: #007f42;
    background: #f4fff7;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info::before {
    color: #007f42;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info a{
    background-color: #007f42;
    color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info a:hover{
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
}

/*edit account details form*/
.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm.edit-account .woocommerce-Button {
    background-color: #007f42;
    color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm.edit-account .woocommerce-Buttonn:hover{
    background-color: #28a745 !important;
    color: #fff !important;
    text-decoration: none;
}


/* nav.woocommerce-MyAccount-navigation {
    width: 25% !important;
    float: left;
} */



/*c - css */
.myaccount-container {
    padding: 50px 15px;
}

.myaccount-layout {
    display: flex !important;
        gap: 30px !important;
}

/* Sidebar */
.woocommerce-MyAccount-navigation {
    /* width: 260px !important; */
    /* background: #fff; */
    border-radius: 8px;
    /* padding: 20px; */
    /* box-shadow: 0 10px 30px rgba(0,0,0,.05); */
}

/* Content */
.myaccount-content-wrap {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}


/*disbled btn css*/

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button.button.disabled {
    padding: 0.75rem 0.75rem !important;
    margin-top: 6px;
    margin-left: 3px;
    border-radius: 3px;
}

/*this is for address section - myaccount page*/
.woocommerce-account .woocommerce-MyAccount-content .button{
    background-color: #007f42;
    color: #fff;    
    border-color: none;
    margin-top: 5px;
    margin-left: 3px;
}

/*pay btn when payment failed - in order section in dashboard*/
.woocommerce-account .woocommerce-MyAccount-content a.woocommerce-button.button.pay {
    margin-right: 3px;
}

.woocommerce-account .woocommerce-MyAccount-content .button:hover{
    background-color: #28a745 !important;
    color: #fff !important;
    text-decoration: none;
    border-color: none;   
}


.woocommerce-account .woocommerce-MyAccount-content .button.disabled {
    padding: 0.75rem 0.75rem !important;
    margin-top: 6px;
    margin-left: 3px;
    border-radius: 3px;
}

/*order view button*/
.woocommerce-account .woocommerce-MyAccount-content a.woocommerce-button.button.view{
    margin-top: 0;
    margin-left: 0;
}

/*order section*/
.woocommerce-MyAccount-content woocommerce-order-details .woocommerce-order-details__title{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #000;
    margin-left: 2px;
    margin-bottom: 15px;
}

/*shipping address in order details*/

/* .woocommerce-order-details .woocommerce-customer-details .woocommerce-column--shipping-address{
    margin-top: 25px;
}

.woocommerce-order-details .woocommerce-customer-details .woocommerce-columns .woocommerce-column__title{

} */

.woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 .woocommerce-column__title, .woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1 .woocommerce-column__title, h2.woocommerce-order-details__title{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #000;
    margin-left: 2px;
    margin-bottom: 15px;
}

/*address edit form*/
.woocommerce-MyAccount-content form h2{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #000;
    margin-left: 2px;
    margin-bottom: 15px;
}

/*password text in edit account details my account page*/
.woocommerce-EditAccountForm legend{
    margin-top: 10px;
    margin-left: 3px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #000;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title h2, .woocommerce-EditAccountForm legend{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #000;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a{
    float: none;
    margin-bottom: 2px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address address {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-top: 12px;
}

/*leftside's nav padding*/
.woocommerce-account .woocommerce-MyAccount-navigation ul{
    padding: 0;
}


/* Mobile */
@media (max-width: 993px) {
    .myaccount-layout {
        flex-direction: column;
    }
    .woocommerce-MyAccount-navigation {
        width: 100%;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul{
        padding: 0;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation{
        width: 100% !important;

    }

    .woocommerce-account .woocommerce-MyAccount-content{
        width: 100% !important;
    }
}

@media (max-width:768px){
    .woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 {
        margin-top: 25px;
    }
}

@media (max-width:600px){
    .myaccount-container {
        padding: 35px 15px;
    }
}

/*minor fixes for smaller screens*/
@media (max-width:475px){
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-message{
        padding: 0.5em 1em 1em 3.5em;
        font-size: 15px;
    }
}

@media (max-width: 400px){
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-error{
        padding: 0.5em 1em 1em 3.5em;
        font-size: 15px;
    }
}

/*dashboard - end*/


/*cart page afterwars*/
/*quantity filler*/

.woocommerce-message a{
    text-decoration: none;
    color: #007F42;
}
.woocommerce-message a:hover{
    text-decoration: underline;
    color: #000;

}


/*login page*/
.woocommerce-error{
    outline: none;
}
.woocommerce-error li a{
    text-decoration: none;
    color: #007F42;
}

.woocommerce-error li a:hover{
    text-decoration: underline;
    color: #000;
}


/*payments css*/


/*thankyou page*/

.custom-thankyou-wrapper {
    /* padding: 60px 0; */
    background: #f8f9fa;
}

p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 35px;
}

@media (min-width: 993px){
    ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 993px){
    ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
        padding: 0;
    }
}


@media (max-width: 769px){

    p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received{
        margin-bottom: 15px;
        margin-top: 0px;
    }

    /*order details*/

    ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 10px;
    }

    /*each list*/
    .woocommerce ul.order_details li {
        display: flex;
        flex-direction: unset;
        gap: 20px;
    }

    .woocommerce ul.order_details li strong {
        line-height: 0.6;
        font-size: 1.2em;
        font-weight: 500;
        font-family: 'Roboto';
    }
    

}


/*errors on checkout page - needs to make everything in green to red*/
.woocommerce-checkout .woocommerce-error li a {
    text-decoration: none;
    color: #842029;
}

.woocommerce-checkout .woocommerce-error li a:hover {
    text-decoration: none;
    color: #842029;
    /* cursor: none; */
}

.woocommerce-checkout a.showcoupon {
    color: #007f42;
    text-decoration: none;
}

.woocommerce-checkout a.showcoupon:hover {
    color: #007f42;
    text-decoration: underline;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info{
    background-color: #f4fff7;
    border-color: #4ab866;
    outline: none;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before{
    color: #007f42;
}

.woocommerce-checkout h3{
    font-size: 1.5rem;
}

/*notification receive btn is not given in the original site*/
.woocommerce-checkout label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
    display: none;
}


/*checkout page - shipping address block*/

#ship-to-different-address label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
    display: flex;
    flex-direction: row;
    gap: 15px;
    font-size: 1.5rem;
}

input#ship-to-different-address-checkbox {
    width: 18px;
    accent-color: #007f42;
    cursor: pointer;
}


/*woocommerce form*/

.woocommerce-checkout .woocommerce form .form-row .input-text, .woocommerce form .form-row select{
    /* padding: .55rem .7rem; */
    color: #495057 !important;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: all .15s ease-in-out;
}

.woocommerce-checkout .woocommerce form .form-row .input-text:focus,
.woocommerce-checkout .woocommerce form .form-row select:focus {
    border-color: #007f42;
    outline: none;
    box-shadow: none;
}

.woocommerce-checkout .woocommerce form .form-row label, .woocommerce-page form .form-row label{
    line-height: 2;
    font-size: 1rem;
    color: #212529;
}

#order_review_heading {
    margin-top: 10px;
    margin-bottom: 20px;
}
/*for dropdown in form*/
/* Select2 default (closed) */
.select2-container--default .select2-selection--single {
    height: 42px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    display: flex;
    align-items: center;
}

/* Focus / open state */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #007f42;
}

/* Rendered text */
.select2-selection__rendered {
    line-height: 42px !important;
    color: #495057;
}

/* Arrow alignment */
.select2-selection__arrow {
    height: 42px;
}

/* Dropdown panel */
.select2-container--default .select2-dropdown {
    border-color: #007f42;
}

/* Hover option */
.select2-container--default .select2-results__option--highlighted {
    /* background-color: rgba(0, 127, 66, 0.12); */
    color: #000;
}

/* Selected option */
.select2-container--default .select2-results__option--selected {
    /* background-color: rgba(0, 127, 66, 0.2); */
    color: #000;
}

/* Remove blue focus outline */
.select2-container--default .select2-selection--single:focus {
    outline: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected]
 {
    background-color: #007f42;
    color: #fff;
}

/*hiding shipping address as to match with original site*/
.woocommerce-checkout .woocommerce-shipping-fields {
    display: none;
}

/*additional notes block*/
.woocommerce-checkout .woocommerce-additional-fields {
    /* margin-top: 30px; */
}

/*payment box*/
.woocommerce-checkout #order_review #payment .payment_box {
    background-color: #dcd7e342;
}
.woocommerce-checkout #order_review #payment .payment_box a{
    text-decoration: none;
    color: #007f42;
}
.woocommerce-checkout #order_review #payment .payment_box a:hover{
    text-decoration: underline;
    color: #007f42;
}


div#wc-stripe-payment-method-instructions-card a {
    text-decoration: none;
    color: #007f42;
}

div#wc-stripe-payment-method-instructions-card a:hover {
    text-decoration: underline;
    color: #007f42;
}

div#wc-stripe-payment-method-instructions-card{
    margin-bottom: 18px;
    background-color: #dcd7e342;
}
.p-AccordionButton.c-AccordionNegateSpacingHorizontal.c-AccordionNegateBorderVertical.p-AccordionButton--alignCenter {
    color: green !important;
    
}

a.woocommerce-privacy-policy-link {
    text-decoration: none;
    color: #007f42;
}

a.woocommerce-privacy-policy-link:hover {
    text-decoration: underline;
    color: #007f42;
}

.container.custom-checkout-container {
    padding-bottom: 65px;
}

@media (max-width:600px){
    .custom-checkout-container{
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 50px;
    }


}


/*privacy policy page*/
.privacy-policy-wrapper {
    padding: 40px 0;
    font-family: "Roboto", Sans-serif;
}

.privacy-policy-wrapper p{
    font-weight: 400;
}
.privacy-policy-wrapper h1{
    font-size: 1.6rem;
}


.privacy-policy-wrapper h2{
    font-size: 1.5rem;
}

.privacy-policy-wrapper h3{
    font-size: 1.2rem;
}

.privacy-policy-wrapper h4,h5{
    font-size: 1.1rem;
}
.privacy-policy-wrapper h6{
    font-size: 1rem;
}
.privacy-policy-wrapper a{
    text-decoration: none;
    color: #007f42;
    font-weight: normal;
}

.privacy-policy-wrapper a:hover{
    text-decoration: underline;
    color: #000;
}

@media(max-width: 600px){
    .privacy-policy-wrapper {
        padding: 25px 10px;
    }
}


/*add to any social icons on single product pages*/

/*color schemes*/

/*
icons with colors

email: #343a40
fb: #3b5998
twitter: #1da1f2
redit: #ff4500
linkedin: #0077b5
pinterest: #bd081c




*/

a.a2a_button_email span{
    background-color: #343a40 !important;
}

a.a2a_button_email span:hover{
    background-color: #24292d !important;
    opacity: 1 !important;
}

a.a2a_button_facebook span{
    background-color: #3b5998 !important;
}

a.a2a_button_twitter span{
    background-color: #1da1f2 !important;
}

a.a2a_button_pinterest span{
    background-color: #bd081c !important;
}

a.a2a_button_linkedin span{
    background-color: #0077b5 !important;
}

a.a2a_button_reddit span{
    background-color: #ff4500 !important;
}

.a2a_svg svg{
    padding: 5px !important;
}



/*social side sticky grid*/
/* Sticky social side grid */
.social-side-grid {
    position: fixed;
    top: 70%;

    left: auto;
    right: 0px;

    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    
    z-index: 999;
}

/* Icon button */
.social-side-grid a {
    width: 42px;
    height: 42px;
    background: #28a745; /* brand green */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    
}

/* Hover effect */
.social-side-grid a:hover {
    background: #007f42;
    
}

.social-side-grid a i {
    pointer-events: none;
}


/* Mobile hide (optional) */
@media (max-width: 768px) {
    .social-side-grid {
        /* display: none; */
    }
}



/*search popup*/
/* ===============================
   Custom Search Popup
================================ */

.custom_search_popup {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1009;
	display: none;
}

.custom_search_popup.active {
	display: block;
}

.custom_search_popup_close {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
	color: #fff;
	font-size: 32px;
	line-height: 1;
}

.custom_search_popup_content {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	max-width: 600px;
	margin: auto;
	padding: 15px 35px;
}

.custom_search_popup_form {
	position: relative;
}

.custom_search_popup_input {
	width: 100%;
	height: 55px;
	padding: 20px 151px 20px 40px;
	font-size: 16px;
	border-radius: 40px;
	border: 1px solid #ddd;
	background: rgba(255, 255, 255, 0.9);
	outline: none;
}

/*cross inside the search bar*/
.custom_search_popup_input::-webkit-search-cancel-button {
	cursor: pointer;
    color: #000 !important;
}



.custom_search_popup_button {
	position: absolute;
	top: 5px;
	right: 6px;
	height: 45px;
	width: 140px;
	border-radius: 90px;
	background: #007f42;
	border: none;
	color: #fff;
	font-size: 18px;
    font-weight: 500 !important;
	cursor: pointer;
}

.custom_search_popup_button:hover{
    background: #239442;
}


body.search-popup-open {
	overflow: hidden;
}


/*no results found window*/
/* Search No Results Page */
.custom-search-results {
    padding: 24px 0;
    padding-bottom: 55px;
    word-wrap: break-word;
}

.custom-no-results {
	text-align: center;
}

.custom-no-results .jupiterx-post-title {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #212529;
}

.custom-no-results p {
	font-size: 18px;
	color: #6c757d;
	margin-bottom: 35px;
}

/* Search form */
.custom-search-form {
	position: relative;
	max-width: 600px;
	margin: 0 auto;
}

.custom-search-form input[type="search"] {
	width: 100%;
	height: 55px;
	padding: 15px 150px 15px 30px;
	border-radius: 40px;
	border: 1px solid #ddd;
	font-size: 16px;
}

.custom-search-btn {
	position: absolute;
	right: 5px;
	top: 5px;
	height: 45px;
	width: 140px;
	border-radius: 40px;
	background: #007f42;
	color: #fff;
	border: none;
	font-size: 16px;
	font-weight: 500;
}

.custom-search-btn:hover {
	background: #28a745;
    color: white;
}

@media (max-width: 600px){
    #jupiterx-primary {
        padding-left: 15px;
        padding-right: 15px;
    }
    .custom-no-results .jupiterx-post-title {
        font-size: 36px;
    }
}


/*search results css*/
/* Search headers */
.jupiterx-search-secondary-title {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
    color: #212529;
}

.jupiterx-search-secondary-subtitle {
	color: #212529;
    margin-bottom: 2.3rem;
    line-height: 1.5;
}

/* New search block */
.jupiterx-new-search {
    padding-bottom: 2.5rem;
    margin: 1rem 0 2rem;
    border-bottom: 1px solid #dee2e6;
    text-align: center;
}

.jupiterx-new-search .jupiterx-title {
	font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
}

/* Product grid spacing */
.woocommerce ul.products {
	margin-top: 20px;
}

/* Page/Post results */
.jupiterx-search-post-title a{
    text-decoration: none;
	font-size: 1.25rem;
	margin-bottom: 1rem;
    color: #212529;
}

.jupiterx-search-post-title a:hover{
    text-decoration: underline;
}

.jupiterx-post-loop {
	margin-top: 30px;
	border-top: 1px solid #eee;
	padding-top: 25px;
}

.result_form_for_search{
    display: flex;
}
.result_form_for_search .form-control{
    border-right: none;
    border-radius: 0.375rem 0 0 0.375rem;
}

.result_search_key{
    background: #28a745;
    border-radius: 0 0.375rem 0.375rem 0;
    border: 1px solid #dee2e6;
    border-left: none;
    color: #fff;
    margin-top: -1px;
}

.result_search_key:hover{
    background: #239442;
    color: #fff;
    border-color: #239442;
}

 .form-control:focus{
    border-color: #fff;
    box-shadow: none;
}

.result_form_for_search .form-control::-webkit-search-cancel-button {
	cursor: pointer;
    color: #000 !important;
}

.jupiterx-new-search header, .jupiterx-new-search p{
    text-align: center;
}

/*products section css - search page*/
.custom-search-product-item {
	text-decoration: none;
	color: inherit;
}

.custom-search-product-img img {
	width: 100%;
	height: auto;
	border-radius: 6px;
    max-height: 240px;
    height: 240px;
    max-height: none;
    object-fit: cover;
}

.custom-search-product .product-col {
    margin-bottom: 30px;
}


.custom-search-product-title {
    font-weight: 600;
    margin: 6px 0 2px;
    font-size: 1em;
    color: #212529;
    padding: .5em 0;
}
.custom-search-product-title:hover{
    text-decoration: underline;
}

.custom-search-product-price {
	font-size: 16px;
	color: #007f42;
	font-weight: 600;
}

/*empty form error*/
.search-error {
	border-color: #e63946 !important;
}



@media (min-width: 769px){
    .result_form_for_search{
        max-width: 33.3333%;
        margin: 0 auto;
    }
}

@media(max-width: 769px){
    .custom-search-results {
        padding: 20px 0;
        padding-bottom: 40px;
    }

    .custom-search-product-img img {
        max-height: none;          /* remove hard cap */
        height: auto;
        object-fit: contain;       /* prevent awkward cropping */
        border-radius: 8px;
    }
}

@media(max-width: 600px){
    .custom-search-results{
        padding-right: 20px;
        padding-left: 20px;
    }
}


/*new cable quote css - start */

form#new_cable_form {
    padding-top: 25px;
}

.new_cable-custom-form {
    padding: 25px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0px 4px 24px rgba(0,0,0,.15);
}

.new_cable-custom-form h1 { color:#0CB852; }
.new_cable-custom-form .est-price {
    color:#007f42;
    font-size:24px;
    font-weight:600;
}

form#new_cable_form .form-check-input[type=radio] {
    border-radius: 50%;
    cursor: pointer;
}

form#new_cable_form .form-check-input:checked {
    background-color: #007F42;
    border-color: #007F42;
    box-shadow: none;
}

form#new_cable_form .form-check-input:focus{
    outline: none;
}

.new_cable-custom-form .cable-type-box .form-check{
    margin-bottom: 15px;
}

.invalid-feedback {
    display:block;
    color:#dc3545;
    font-size:80%;
    margin-top:4px;
}

.lynfast_attachment_link{
    text-decoration: none;
    color: #007f42;
    font-size: 17px;
    font-weight: 400;
}

.lynfast_attachment_link:hover{
    color: #0CB852;
}
.estm-text{
    font-size: 17px;
    color: #717070;
    font-weight: 400;
}
.new_cable-custom-form p {
    color: #717070;
    font-family: "Roboto", Sans-serif;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 12px;
}

.new_cable-custom-form .strt-button{
    width: 100%;
    background-color: #007F42;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.new_cable-custom-form .strt-button:hover{
    background-color: #0CB852;
}

.new_cable-custom-form .form-check-label {
    font-size: 18px;
    font-weight: 400;
}

.new_cable-custom-form .progress_estimate_text_class{
    padding-bottom: 0;
    color: #717070;
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 500;
}

/*borders*/
.border-right {
    border-right: 1px solid #AEAEAE;
}


@media screen and (min-width: 993px) {
    .cable-type-box > div:first-child {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }

    .new_cable-custom-form .cable-type-box .form-check{
        margin-bottom: 5px;
    }
}

@media screen and (min-width: 1201px) {
    .cable-type-box > div:first-child {
        column-gap: 28px;
    }
}

@media screen and (min-width: 1400px) {
    .new_cable-custom-form{
        max-width: 1300px;
    }
}

@media screen and (max-width: 993px) {
    .invalid-feedback {
        margin-left: 2px;
    }
}


@media screen and (max-width: 767px) {
    .m-border-bottom {
        border-bottom: 1px solid #AEAEAE;
        padding: 25px 0;
    }
    .border-right {
        border-right: 0px;
    }
    #new_cable_form{
        padding-left: 30px;
        padding-right: 30px;
    }

    .new_cable-custom-form p{
        font-size: 28px;
    }

    .new_cable-custom-form .form-check-label {
        font-size: 20px;
    }
}

/*new cable qoute css end*/


/*order pay - when payment failed*/
.order-pay-wrapper {
    background: #fff;
    border-radius: 12px;
}

.order-pay-page table.shop_table {
    margin-bottom: 30px;
}

.order-pay-page #place_order {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

/*checkout page - further css*/

/*order again button*/
.order-again a {
    color: #fff !important;
    background: #007f42 !important;
    border-color: #007f42 !important;
    font-weight: normal !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    padding: .375rem .75rem !important;
}

/*wp-steps wrapper - top margin to be zero as page has its own top pading*/
.woocommerce-checkout .wc-steps-wrapper{
    /* padding-top: 0 !important; */
}

@media (max-width: 600px){
    .custom-thankyou-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
}


/*reviews section - start*/

.woocommerce .comment-form-rating .stars a {
    color: #ffc000;
}


/*submit btn*/
.single-product .woocommerce-tabs .woocommerce-Tabs-panel #commentform .form-submit input {
    max-width: 150px;
    border-color: #007f42 !important;
    background: #007f42 !important;
    color: #fff !important;
    font-weight: normal !important;
    padding: .375rem .75rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    text-align: center !important;

}

/*label above the stars*/

.single-product .woocommerce-tabs .woocommerce-Tabs-panel label#comment-form-rating-label, .single-product .woocommerce-tabs .woocommerce-Tabs-panel .comment-form-comment label {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

/*title*/
.single-product .woocommerce-tabs .woocommerce-Tabs-panel h2.woocommerce-Reviews-title {
    display: none;
}

/*product title*/
.single-product .woocommerce-tabs .woocommerce-Tabs-panel  .comment-reply-title {
    font-size: 1.25rem;
}

/*rating form box*/

.single-product .woocommerce-tabs .woocommerce-Tabs-panel .comment-form-rating {
    margin-top: 10px;
}


/*reviews link right infront of the product image*/

a.woocommerce-review-link {
    color: #007f42;
    text-decoration: none;
    background-color: transparent;
}

a.woocommerce-review-link:hover {
    color: #007f42;
    text-decoration: underline;
}

/*all links to green in single product page*/
.single-product .woocommerce-product-details__short-description a{
    color: #007f42;
    text-decoration: none;
}

.single-product .woocommerce-product-details__short-description a:hover{
    color: #007f42;
    text-decoration: underline;
}

/*stars within the page itself*/
.woocommerce .star-rating span {
    color: #ffc000;
    /* display: none; */
}

/*review form's max-width*/
.single-product .woocommerce-tabs .woocommerce-Tabs-panel #commentform {
    max-width: 500px !important;
    width: 100%;
}

/*checkbox*/
input#wp-comment-cookies-consent {
    width: auto;
}


/*star ratings - reviews needs to hide on product cards*/

.product-card-inner-shop-page .star-rating, .product-card-inner-shop-page a.button.product_type_simple {
    display: none !important;
}

/*single product - ratings stars color*/
/* WooCommerce single product star color */
.single-product .woocommerce-product-rating .star-rating::before {
    color: #ccc; /* empty stars (optional) */
}

.single-product .woocommerce-product-rating .star-rating span::before {
    color: #ffc000; /* ⭐ filled stars */
}


/* Force WooCommerce star font */
.woocommerce .star-rating,
.woocommerce .star-rating span {
    font-family: 'star' !important;
}

/*reviews section - end*/


/*css for single product page's cart icon prefix addtion*/
.single-product .single_add_to_cart_button.button.alt::before {
    content: "\f07a"; /* Font Awesome cart */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    margin-right: 0.4em;
    font-size: 0.95em;
    vertical-align: middle;
}

/*product title to be shown as shorten compared to full*/
/* Woo product title – clamp length like inspiration site */
/* Soft product title truncation (no knife cut) */
.woocommerce-loop-product__title {
    line-height: 1.45em;
    max-height: 2.9em; /* ~2 lines */
    overflow: hidden;

    display: block;
}


/*footer fixes*/
i.fa.fa-envelope.fs-5.mail_in_footer_icon {
    font-size: 18px !important;
    padding-right: 0;
}


/*page scroll top css*/
/* Scroll to top wrapper */
.custom-corner-buttons {
    position: fixed;
    bottom: 0;
    right: -100px; /* hidden by default */
    z-index: 990;
    transition: right 0.2s ease;
}

/* Visible state */
.custom-corner-buttons.scrolled {
    right: 0;
}

/* Button styling */
.custom-scroll-top {
    margin: 1rem;
    padding: 1rem 1.2rem;

    border: 1px solid #e9ecef;
    border-radius: 50px;

    background-color: #e9ecef;
    color: #007f42;

    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;

    transition: background-color 0.15s, color 0.15s, transform 0.15s;
}

.custom-scroll-top:hover {
    background-color: #007f42;
    color: #fff;
    transform: translateY(-2px);
}
