/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 04 2026 | 06:59:09 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 


/** custom_product_variation_shortcode **/
.custom-product-wrapper{
    display:flex;
    gap:50px;
}

.custom-product-left{
    width:50%;
}

.custom-product-right{
    width:50%;
}

.thumb-slider .slick-slide{
    margin:5px;
    cursor:pointer;
}



.custom-action-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Prevent overflow */
}

/* Button Styling (optional but recommended) */
.custom-action-buttons button,
.custom-action-buttons a {
    padding: 10px 20px;
}

/* Tablet */
@media (max-width: 992px) {
    .custom-action-buttons {
        gap: 12px;
    }
}

/* Mobile */
@media (max-width:667px) {
    .custom-action-buttons {
        flex-direction: column;  /* Stack vertically */
        align-items: stretch;    /* Full width buttons */
    }

    .custom-action-buttons button,
    .custom-action-buttons a {
        width: 100%;
        text-align: center;
    }
	button.acf-toggle-btn {
    font-size: 20px;
}
}

/* Small Mobile */
@media (max-width: 480px) {
    .custom-action-buttons {
        gap: 10px;
    }
}


.dynamic-calculator-modal{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.calculator-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}
.calculator-content {
    position: relative;
    width: 500px;
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    z-index: 2;
    border: solid 6px #0000ff21;
}

.close-calculator{
    position:absolute;
    right:15px;
    top:10px;
    cursor:pointer;
    font-size:20px;
}


.variation-item{
    margin-bottom:20px;
    padding-bottom:10px;
    border-bottom:1px solid #eee;
}

/* Category listing shortcode */

 .category-listing {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 15px;
        margin: 0;
    }
    .category-card {
        border: 1px solid #eee;
        border-radius: 12px;
        text-align: center;
        background: #fff;
        padding: 0px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 14px rgba(0,0,0,0.1);
    }
.category-card .imgsection {
    position: relative;
    height: 16.5625rem;
    overflow: hidden;
    z-index: 1;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}
.category-card img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 12px;
    min-height: 100%;
}

.category-card:hover .description {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
  .category-card .description {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 100%;
    padding: 1.25rem;
    z-index: 2;
    background: rgba(255, 255, 255, .9);
    color: #000;
    opacity: 0;
    overflow: hidden;
    transition: opacity .35s 
ease-out, transform .35s 
ease-out;
    transform: translate3d(0, 2.5rem, 0);
	  font-size: 13px;
}
.cardbottomsection {
    padding: 22px;
}
.category-card h3, .page-card  h3 {
    margin: 22px 0;
    /* font-size: 20px; */
    font-weight: 600;
    color: #222;
    font-size: 1.125rem;
    margin-top: 0px !important;
}
.category-card .price, .page-card .price {
    color: #007b5e;
    font-weight: 500;
    margin: 5px 0 15px;
    /* font-size: 15px; */
    font-size: 1rem;
}
.category-card .price span, .page-card .price span {
    font-size: .75rem;
}
    .category-card a.order-btn {
       width: auto !important;
    border: none;
    padding: 0;
    background: 0 0;
    color: #DB00A1;
    letter-spacing: 1px !important;
    font-weight: 500;
    white-space: nowrap;
		position: relative;
    }
    .category-card a.order-btn:hover {
      background: 0 0;
    color: #DB00A1;
    }

.category-card a.order-btn:hover:not([disabled]):before {
    width: calc(100% - 14px);
}
.category-card a.order-btn:before {
    width: 0;
    height: 2px;
    background: #DB00A1;
    transition: width .4s ease-out;
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
}



/* Slider section */
/* === Page/Post Slick Slider Styles === */


.page-slider .slick-slide {
    padding: 7px;
    height: auto !important;
}

.page-slider .page-card {
    /* background: #fff; */
    /* border: 1px solid #eee; */
    /* border-radius: 12px; */
    /* overflow: hidden; */
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
    /* transition: all 0.3s ease; */
    /* height: 100%; */
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: center;
    background: #fff;
    padding: 0px;
    transition: all 0.3s 
ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.page-slider .page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.page-slider .page-card .imgsection {
    /* text-align: center; */
    /* padding: 15px; */
    position: relative;
    height: 16.5625rem;
    overflow: hidden;
    z-index: 1;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.page-slider .page-card img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 12px;
    min-height: 100%;
}
.page-slider .page-card:hover .description {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.page-slider .page-card .description {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 100%;
    padding: 1.25rem;
    z-index: 2;
    background: rgba(255, 255, 255, .9);
    color: #000;
    opacity: 0;
    overflow: hidden;
    transition: opacity .35s 
ease-out, transform .35s 
ease-out;
    transform: translate3d(0, 2.5rem, 0);
    font-size: 13px;
}


.page-slider .order-btn:hover {
    background: 0 0;
    color: #DB00A1;
}
.page-slider .order-btn {
    width: auto !important;
    border: none;
    padding: 0;
    background: 0 0;
    color: #DB00A1;
    letter-spacing: 1px !important;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
}
.page-slider .order-btn:hover:not([disabled]):before {
    width: calc(100% - 14px);
}
.page-slider .order-btn:before {
    width: 0;
    height: 2px;
    background: #DB00A1;
    transition: width .4s ease-out;
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
}

.page-slider .slick-prev:before,
.page-slider .slick-next:before {
    color: #3A3C92;
    font-size: 24px;
}


.page-slider {
    overflow: hidden;
}
.page-slider .slick-prev
{
    left: 25px;
}


.page-slider .slick-next
{
    right: 25px;
}
.slick-track {
    display: flex !important;
}
a.order-btn {
    cursor: pointer !important;
}
.ekit-inline-video-overlay-image img {
    border-radius: 13px !important;
}
.ekit-inline-video-content iframe {
    width: 100%;
    height: 435px;
    border-radius: 13px;
}


/* Testimonial */
.modern-testimonial .slick-track {
    display: flex !important;
    align-items: center;
    min-height: 380px;
}
.modern-testimonial {
    text-align: center;
    padding: 0px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}
    .modern-testimonial .testimonial-text {
        font-size: 22px;
        color: #fff;
        font-weight: 500;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto 40px;
        min-height: 90px;
        transition: opacity 0.4s ease;
    }
    /* Base slider container */
.testimonial-slider {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

/* All slides (default smaller + faded) */
.testimonial-item {
  transition: all 0.4s ease;
  opacity: 1;
  transform: scale(1);
}

/* Center active slide */
.slick-center .testimonial-item {
  opacity: 1;
  transform: scale(1.25);
  z-index: 5;
}

/* Image styles */
.testimonial-image img {
    width: 85%;
    height: 85%;
    border-radius: 20px;
    object-fit: cover;
    margin: 0 auto;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Center image enlarged + glow */
.slick-center .testimonial-image img {
    width: 100%;
    height: 100%;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
    border: 4px solid #218ef166;
    transform: scale(1.05);
}

/* Optional subtle blur for side images */


/* Smooth transition */

.slick-slide {
  transition: all 0.4s ease-in-out;
}

.testimonial-name {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-top: -20px;
}



/* footer */
.footersection .ekit_lottie svg {
    margin-top: -26px;
}


/* accordingstyle1  */

.accordingstyle1 .elementor-element {
    border: none;
}

.accordingstyle1 summary.e-n-accordion-item-title {
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordingstyle1 .e-n-accordion-item {
    border: 1px solid #dadbe0;
    box-shadow: inset 0 0 0 2px #fff;
    overflow: hidden;
    border-radius: 23px;
}
.accordingstyle1 span.e-n-accordion-item-title-header {
    line-height: 22px;
    color: #000000;
    padding: 14px 0px 14px 10px;
}
span.e-n-accordion-item-title-icon {
    margin-right: 10px;
}

ul.elementskit-pricing-lists li {
    border-bottom: solid 1px #e6e1e1;
    padding-bottom: 13px;
}



/* Insert Product */

.insertproduct h1.product_title.entry-title, .insertproduct h2{
    font-size: 33px;
    font-weight: 500;
    line-height: 39px;
}

.insertproduct ol.flex-control-nav.flex-control-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px !important;
}

.insertproduct ol.flex-control-nav.flex-control-thumbs li {
    max-height: 116px;
    overflow: hidden;
    float: left;
    width: 19% !IMPORTANT;
    border-radius: 10px;
}

.insertproduct ol.flex-control-nav.flex-control-thumbs li img {
    width: 100% !important;
    object-fit: cover;
}

.insertproduct img.zoomImg {
    border-radius: 20px !IMPORTANT;
}

.insertproduct .woocommerce-product-gallery__image.flex-active-slide {
    border-radius: 12px;
    margin-bottom: 20px !important;
    overflow: hidden !important;
}

.insertproduct section.related.products {
    display: none;
}
.insertproduct li#tab-title-reviews {
    display: none;
}

.insertproduct td,.insertproduct th {
    padding: 10px !IMPORTANT;
}

.insertproduct table td, .insertproduct table th {
    border: 1px solid hsl(0deg 0% 85.2% / 50.2%);
}

.insertproduct hr {
    background: #9797973b;
    border: solid 1px #9797973b;
    border-bottom: none !important;
    margin-bottom: 13px;
    margin-top: 13px;
}


.elementor-icon-list-item::marker{
  display: none;
}




.custom-product-right h2 {
    color: #0A0A0A;
    font-family: "Poppins", Sans-serif;
    font-size: 25px;
    margin-bottom: 25px;
}

.variation-item h4 {
    color: #0A0A0A;
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.product-wrapper-section {
    margin-bottom: 60px;
    /* display: flex; */
    gap: 50px;
    margin-bottom: 40px;
    border-radius: 2rem 2rem 2rem 2rem;
    border:solid 2px #e8e8e8;
    padding: 25px;
}

.custom-product-wrapper{
    display:flex;
    gap:50px;
    margin-bottom:40px;
}

.custom-product-left,
.custom-product-right{
    width:50%;
}

@media(max-width:768px){
    .custom-product-wrapper{
        flex-direction:column;
    }
    .custom-product-left,
    .custom-product-right{
        width:100%;
    }
}

.thumb-slider .slick-slide{
    margin:5px;
    cursor:pointer;
}

.thumb-slider img{
    border:2px solid transparent;
}


.acf-toggle-wrapper {
    text-align: left;
    border: solid 1px #d8d8d8;
    border-radius: 22px;
	   background: #fff;
	   padding: 14px 20px;
}
.acf-toggle-btn, .acf-toggle-btn:hover, .acf-toggle-btn:focus {
    color: #353535;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 24px;
    text-align: left;
    background: transparent ! IMPORTANT;
    font-weight: 400;
    text-wrap: auto;
	padding: 0;
}
.acf-toggle-wrapper h4 {
    font-size: 20px;
    font-weight: 500;
}
.acf-toggle-content{
    background:#f9f9f9;
    padding:25px;
    margin-top:10px;
    border-radius:22px;
}
.acf-block {
    margin-bottom: 25px;
    border-bottom: solid 1px #dad8d8;
}
.acf-block img {
    border-radius: 20px;
}
.acf-block ul {
    margin-bottom: 25px;
}

.acf-block:last-child {
    margin: 0px;
    border: none;
}
.custom-product-wrapper .thumb-slider button {
    display: none !important; 
}
.custom-product-wrapper .slick-slide img {
    width: 100%;
    border-radius: 20px;
	width:100%;
    height:auto;
    object-fit:cover;
}



.main-slider button.slick-arrow {
    background: transparent !IMPORTANT;
    border: none !important;
    color: #fff;
    position: absolute;
    top: 50%;
    z-index: 999;
}

.main-slider button.custom-prev.slick-arrow {
    left: 0px;
}

.main-slider button.custom-next.slick-arrow {
    right: 0px;
}


.calculate-cost-btn, .get-quote-button,.calculate-cost-btn:hover {
    background-color: #E7DB22;
    font-family: "Poppins", Sans-serif !important;
    font-size: 16px;
    color: #000000 ! IMPORTANT;
    fill: #000000;
    border-style: none;
    border-radius: 34px 34px 34px 34px;
    box-shadow: 1px 2px 0px 0px #517421 ! IMPORTANT;
    height: auto !important;
    line-height: normal ! IMPORTANT;
    padding: 10px 21px !important;
	 -webkit-transition: all .4s ease;
    transition: all .4s ease;
}
.calculate-cost-btn:hover {
	
	
}
   

label#ImageChoice-arialabel {
    text-align: center;
    font-size: 30px;
    margin-bottom: 23px;
    margin-top: 30px;
}

a.l-footer__legal-link {
    font-size: 14px;
}


.side-curve .elementskit-card {
    background: #f9f8f5 !important;
    border-radius: 30px !important;
    border: none !important;
}

.side-curve .elementskit-card i.icon {
    background: #fff;
    border-radius: 50%;
    padding: 6px 10px;
    font-size: 15px;
    font-weight: bold;
}




.dynamic-modal{
  position:fixed;
  inset:0;
  display:flex;
  justify-content:center;
  align-items:center;
  background:rgba(0,0,0,0.5);
  z-index:9999;
}

.modal-box{
  background:#fff;
  padding:40px;
  max-width:600px;
  width:95%;
  border-radius:12px;
  position:relative;
}

.modal-close{
  position:absolute;
  top:15px;
  right:15px;
  background:none;
  border:none;
  font-size:22px;
  cursor:pointer;
}

.modal-box input,
.modal-box select{
  width:100%;
  padding:10px;
  margin-bottom:20px;
}

.calc-btn{
  background:#e55332;
  color:#fff;
  border:none;
  padding:12px 20px;
  cursor:pointer;
}

.caltitle {
    margin-bottom: 30px;
    color: #e55332;
    font-size: 20px ! IMPORTANT;
}

.calculator-box label{
  display:block;
  margin-bottom:8px;
  font-weight:500;
}

.calculator-box input, .calculator-box select{
  width:100%;
  padding:12px;
  margin-bottom:20px;
  border-radius:8px;
  border:1px solid #ccc;
  font-size:16px;
}
.calculator-box .result strong {
    float: left;
    width: 100%;
    margin-top: 6px;
    margin-bottom: 20px;
}
.calculator-box .result{
  margin-top:25px;
  font-size:18px;
  font-weight:500;
}
.calculator-box br {
    display: none;
}

.calculator-box p {
    margin-bottom: 0px;
}

.variation-item p {
    margin-bottom: 8px;
}


