 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

 * {
     font-family: 'Inter', sans-serif;
 }


.carousel-item{
	height:75vh;
}
.carousel-item img{
	height:100%;
	width:100%;
	object-fit:cover;
	background-position:center
}

/* Fade transition */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Ken Burns zoom effect */
.kenburns-wrap {
  overflow: hidden;
  height: 100%;
}
.kenburns-img {
  animation: kenburns 8s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-2%, -2%); }
}

.parallax-img{
	border-radius:25px;
}

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

.wpo-fun-fact-grids .grid{
	background-color: rgb(0 0 0 / 14%);
    padding: 20px;
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.service-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
	min-height: 320px;
    margin-bottom: 30px;
        }

        .service-card::before {
               content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 7px;
    background: linear-gradient(90deg, #f63b3b, #ef8282);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
.action_buttons_map a{
	background-color:#f63b3b !important;
	width:100%;
	border: none;
    padding: 12px;
}

        .service-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: white;
            font-size: 1.5rem;
        }

        .service-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1e293b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-info {
            space-y: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding: 0.75rem;
            background: #f8fafc;
            border-radius: 8px;
            transition: background 0.3s ease;
			min-height:60px;
        }

        .contact-item:hover {
            background: #e2e8f0;
        }

        .contact-icon {
            width: 20px;
            margin-right: 0.75rem;
            color: #3b82f6;
        }

        .contact-text a{
            color:#000
        }

        .phone-number {
            font-weight: 600;
            color: #1e293b;
            text-decoration: none;
            font-size: 1.1rem;
        }

        .phone-number:hover {
            color: #3b82f6;
        }

        .address {
            color: #64748b;
            font-size: 0.9rem;
            margin-top: 0.25rem;
            line-height: 1.4;
        }

        .secondary-phone {
            color: #64748b;
            text-decoration: none;
            font-size: 0.95rem;
        }

 /* container pinned to right center */
    .sticky-buttons {
      position: fixed;
      bottom: 10%;
      right: 18px;
      z-index: 1500;
      /* keep small footprint so nothing else moves */
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    /* wrapper stays the size of the icon only */
    .btn-wrapper {
      width: 50px;
      height: 50px;
      position: relative;           /* panel is positioned relative to this */
      overflow: visible;            /* allow panel to overflow left */
    }

    /* the small visible icon box */
    .btn-icon {
      width: 50px;
      height: 50px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      font-size: 18px;
      box-shadow: 0 2px 6px rgba(0,0,0,.15);
    }

    /* the hidden label panel that expands leftwards */
    .btn-panel {
      position: absolute;
      top: 0;
      right: 100%;               /* start immediately to the left of icon */
      height: 50px;
      width: 0;                  /* start hidden */
      padding: 0;                /* no padding so nothing shows by default */
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 12px;
      white-space: nowrap;
      overflow: hidden;          /* hide the text when width = 0 */
      transition: width .22s ease, padding .22s ease, opacity .22s ease;
      opacity: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,.18);
      color: #fff;
    }

    /* when hovered, expand only this panel */
    .btn-wrapper:hover { z-index: 1600; } /* ensure panel sits above others */
    .btn-wrapper:hover .btn-panel {
      width: 150px;              /* label width when opened */
      padding: 0 14px;          /* reveal padding with transition */
      opacity: 1;
    }
.btn-wrapper:hover a{
	color:#fff !important;
}

    /* small icon inside the panel (left side) */
    .btn-panel i {
      width: 20px;
      text-align: center;
      font-size: 16px;
    }

    .panel-text { font-size: 14px; }

    /* colors */
    .buy .btn-icon { background: #f44336; }
    .buy .btn-panel { background: #f44336; }

    .calc .btn-icon { background: #333; }
    .calc .btn-panel { background: #333; }

    .wa .btn-icon { background: #25D366; }
    .wa .btn-panel { background: #25D366; }

   

 .product-container {
     margin: 0 auto;
     padding: 40px 0px;
 }
.right-menu-toggle-btn{
	height:40px;
	width:40px;
	background:#b62c2b;
	color:#fff;
	border-radius:50px;
	display:flex;
	align-items:center;
	justify-content:center;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.theme-btn-s4 {
    background: #000;
    height: auto;
}

 .product-slider {
     background: #f1f1f1;
     border-radius: 20px;
     padding: 20px;
     position: relative;
     overflow: hidden;
 }

 .swiper {
     width: 100%;
 }
.testimonial_swiper .swiper-wrapper{
	height:400px !important;
}
.testimonial_swiper{
	padding-bottom:0px !important;
}
.testimonial_sec {
	padding-top:50px;
	background-color:#f1f1f1 !important
}
.woocommerce .star-rating::before{
	content:none !important;
}

button.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained {
    border: none;
    background: none;
}
ol.commentlist .review {
    background-color: #fff !important;
    padding: 15px !important;
    border-radius: 10px;
}
ol.commentlist .review .comment_container img{
	position:inherit !important
}
ol.commentlist{
	padding-left:0px !important;
}



.wpgs-nav .slick-slide{
	height:150px !important;
	border:1px solid #ccc !important; 
}
.wpgs-nav .slick-slide img{
	width:100%;
	object-fit:cover;
}
.wpgs-for.slick-initialized.slick-slider{
	height:600px
}
img.woocommerce-product-gallery__image.attachment-shop_single.size-shop_single.wp-post-image{
	width:100% !important;
}

 @media (max-width: 768px) {
	 .wpgs-nav .slick-slide{
		 height:60px !important;
	 }
  

     .product-slider {
         padding: 0 !important
     }

     .product-container {
         padding: 10px
     }
	 .wpgs-for.slick-initialized.slick-slider{
		 height:330px !important;
	 }
 }


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

 .product-title {
     font-size: 18px;
     font-weight: 700;
     color: #2d2d2d;
     margin-bottom: 8px;
     line-height: 1.3;
 }

 .product-subtitle {
     font-size: 14px;
     font-weight: 500;
     color: #666;
     margin-bottom: 20px;
 }

 .product-description {
     font-size: 11px;
     color: #888;
     margin-bottom: 15px;
     line-height: 1.4;
 }

 .spoon-image {
     width: 100%;
     height: 160px;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 120"><ellipse cx="100" cy="30" rx="80" ry="25" fill="%23d4a574"/><rect x="95" y="50" width="10" height="60" fill="%23d4a574"/><circle cx="70" cy="25" r="4" fill="%23654321"/><circle cx="85" cy="35" r="3" fill="%23654321"/><circle cx="115" cy="30" r="3.5" fill="%23654321"/><circle cx="130" cy="20" r="3" fill="%23654321"/><circle cx="100" cy="40" r="3" fill="%23654321"/><circle cx="60" cy="35" r="2.5" fill="%23654321"/></svg>') center/contain no-repeat;
     margin: auto 0;
 }

 .bag-count {
     position: absolute;
     bottom: 20px;
     left: 25px;
     display: flex;
     align-items: center;
     gap: 8px;
     color: #666;
     font-size: 12px;
 }

 .cup-icon {
     width: 20px;
     height: 20px;
     border: 1px solid #ccc;
     border-radius: 3px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 10px;
 }

 .swiper-button-prev,
 .swiper-button-next {
     background: white;
     width: 50px !important;
     height: 50px !important;
     border-radius: 50%;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }
.swiper-button-next:after, .swiper-button-prev:after{
	font-size:20px !important
}

 .swiper-button-prev:after,
 .swiper-button-next:after {
     font-size: 18px;
     color: #666;
     font-weight: bold;
 }


 .swiper-pagination-bullet {
     background: rgba(255, 255, 255, 0.5);
     opacity: 1;
 }

 .swiper-pagination-bullet-active {
     background: white;
 }

 .product-info {
     padding-left: 40px;
 }

 .breadcrumb-text {
     color: #888;
     font-size: 14px;
     margin-bottom: 10px;
 }

 .main-title {
     font-size: 30px;
     font-weight: 700;
     color: #2d2d2d;
     margin-bottom: 10px;
     line-height: 1.2;
 }

 .rating {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 30px;
 }

 .stars {
     color: #b62c2b;
     font-size: 16px;
 }

 .rating-score {
     font-weight: 600;
     color: #2d2d2d;
 }

 .rating-count {
     color: #888;
     font-size: 14px;
 }

 .write-review {
     color: #888;
     font-size: 14px;
     text-decoration: none;
     margin-left: 15px;
 }

 .tagline {
     font-size: 18px;
     font-weight: 600;
     color: #2d2d2d;
     margin-bottom: 15px;
 }

 .description {
     color: #666;
     font-size: 15px;
     line-height: 1.6;
     margin-bottom: 10px;
 }

 .read-more {
     color: #2d2d2d;
     text-decoration: underline;
     font-weight: 500;
     font-size: 16px;
     display: inline-block;
 }

 .pricing {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 30px;
 }

 .current-price {
     font-size: 28px;
     font-weight: 700;
     color: #2d2d2d;
 }

 .original-price {
     font-size: 18px;
     color: #999;
     text-decoration: line-through;
 }

 .discount {
     background: #e8f5e8;
     color: #2d8f2d;
     padding: 4px 8px;
     border-radius: 4px;
     font-size: 14px;
     font-weight: 500;
 }

 .flavor-selector {
     margin-bottom: 30px;
 }

 .dropdown-toggle {
     padding: 7px 10px;
     width: 100%;
     text-align: left;
     font-size: 16px;
     color: #2d2d2d;
 }

 .dropdown-toggle:focus {
     border-color: #a885c4;
     box-shadow: 0 0 0 3px rgba(168, 133, 196, 0.1);
 }

 .pack-options {
     display: flex;
     gap: 15px;
 }

 .pack-option {
     flex: 1;
     border: 2px solid #ddd;
     border-radius: 12px;
     padding: 10px 30px;
     text-align: center;
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
 }

 .pack-option.best-deal::before {
     content: "Best Deal";
     position: absolute;
     top: -10px;
     left: 50%;
     transform: translateX(-50%);
     background: #b62c2b;
     color: white;
     padding: 4px 12px;
     border-radius: 12px;
     font-size: 11px;
     font-weight: 600;
 }

 .pack-option.selected {
     border-color: #b62c2b;
     background: #ffefef;
 }

 .pack-title {
     font-size: 16px;
     font-weight: 600;
     color: #2d2d2d;
 }

 .pack-pricing {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
 }

 .pack-price {
     font-size: 18px;
     font-weight: 700;
     color: #2d2d2d;
 }

 .pack-original {
     font-size: 14px;
     color: #999;
     text-decoration: line-through;
 }

 .action-buttons {
     display: flex;
     gap: 15px;
     margin-bottom: 30px;
 }

 .single_add_to_cart_button, .wc-block-components-button__text, a.button.add-to-cart-loop.add-to-cart  {
        background: #b62c2b !important;
    color: white !important;
    border: none !important;
    padding: 16px 24px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 300px;
    height: auto !important;
    text-align: center;
 }

 .add-to-cart:hover {
     background: #1a1a1a;
 }

 .icon-button {
     width: 56px;
     height: 56px;
     border: 2px solid #ddd;
     background: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .icon-button:hover {
     border-color: #b62c2b;
     background: #f9f7fc;
 }

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

 .offer-card {
     flex: 1;
     border: 1px solid #ddd;
     border-radius: 12px;
     padding: 20px;
 }

 .offer-title {
     font-size: 16px;
     font-weight: 600;
     color: #2d2d2d;
     margin-bottom: 5px;
 }

 .offer-description {
     color: #666;
     font-size: 14px;
     line-height: 1.4;
 }
#review_form_wrapper{
	    padding: 30px;
    background: #fff;
    border-radius: 15px;
}
.form-submit input[type=submit]{
	background-color:#b62c2b !important;
	color:#fff !important;
}
.comment-form-rating p span a{
	color:#b62c2b !important
}

 .promo-code {
     border: 1px solid #ddd;
     border-radius: 12px;
     padding: 20px;
     text-align: center;
     min-width: 140px;
 }

 .code-label {
     color: #666;
     font-size: 12px;
     margin-bottom: 5px;
 }

 .code-value {
     font-size: 18px;
     font-weight: 700;
     color: #2d2d2d;
 }

 .technocal_group h2,
 .benefit_group h2,
 .tech_sec h2 {
     font-size: 35px;
     font-weight: 700;
     margin-bottom: 20px
 }
.faq_sec h2{
     font-size: 35px;
     font-weight: 700;
	padding:0;
	margin:0
}

a.wc-block-components-product-name {
    font-size: 20px;
    color: #b62c2b;
    font-weight: 500;
}

 .benefit_group {
     background-color: #f1f1f1;
     padding: 50px 0
 }

 .tech_sec {
     padding: 50px 0;
     background-color: #f1f1f1;
 }

 /* Benefits Section Styles */
 .benefits-section {
     padding: 40px 0;
     border-top: 1px solid #e0e0e0;
 }

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

 .benefits-title {
     font-size: 24px;
     font-weight: 600;
     color: #2d2d2d;
     margin: 0;
 }

 .accordion-button {
     background: none;
     border: none;
     padding: 20px !important;
     cursor: pointer;
     transition: all 0.3s ease;
     font-size: 18px;
     font-weight: 600;
     color: #2d2d2d;
     border: none
 }

 .collapse-btn i {
     font-size: 18px;
     color: #666;
 }

 .collapse-btn:hover i {
     color: #2d2d2d;
 }

 .benefits-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 20px;
     padding: 20px 0;
 }

 .benefit-card {
     display: flex;
     align-items: flex-start;
     gap: 15px;
 }

 .benefit-icon {
     background: #b62c2b;
     width: 60px;
     height: 60px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .benefit-icon i {
     color: white;
     font-size: 24px;
 }

 .benefit-content h3 {
     font-size: 16px;
     font-weight: 600;
     color: #2d2d2d;
     margin: 0 0 5px 0;
 }

 .benefit-content p {
     font-size: 14px;
     color: #666;
     margin: 0;
     line-height: 1.4;
 }

 .technology-content {
     padding: 20px 0;
 }

 .tech-feature {
     margin-bottom: 25px;
     padding: 30px;
     background-color: #fff;
     border-radius: 10px
 }

 .tech-feature h4 {
     font-size: 18px;
     font-weight: 600;
     color: #2d2d2d;
     margin-bottom: 8px;
 }

 .tech-feature p {
     font-size: 15px;
     color: #666;
     line-height: 1.6;
     margin: 0;
 }

 .steps-content {
     padding: 20px 0;
 }

 .step-card {
     text-align: center;
     padding: 40px 20px;
     background-color: #b62c2b;
     border-radius: 15px
 }

 .step_sec {
     padding: 50px 0
 }

 .step-number {
     width: 50px;
     height: 50px;
     background: #fff;
     color: #b62c2b;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     font-weight: 700;
     margin: 0 auto 15px auto;

 }

 .step-card h4 {
     font-size: 22px;
     font-weight: 600;
     color: #fff;
     margin-bottom: 10px;
 }

 .step-card p {
     font-size: 15px;
     color: #fff;
     line-height: 1.6;
     margin: 0;
 }

 .technical_sp_btn {
     background: #ccc;
     width: 100%;
     display: block;
     padding: 15px;
     border-radius: 10px;
     color: #000;
     text-decoration: none;
     font-size: 18px;
     text-align: center;
     margin-bottom: 10px
 }

 .tech_spe ul li {
     list-style: none
 }

 .tech_spe ul {
     padding-left: 0
 }

 /* Technical Specifications Styles */
 .specifications-section {
     padding: 40px 0;
     border-top: 1px solid #e0e0e0;
 }

 /*
        .specifications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            padding: 20px 0;
        }
        */


 .spec-header {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 10px;
     padding-bottom: 10px;
     border-bottom: 1px solid #f0f0f0;
 }

 .spec-card {
     margin-bottom: 30px
 }

 .spec-icon {
     width: 35px;
     height: 35px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .spec-icon.cooling {
     background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
 }

 .spec-icon.motor {
     background: linear-gradient(135deg, #666 0%, #444 100%);
 }

 .spec-icon.energy {
     background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
 }

 .spec-icon.environmental {
     background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
 }

 .spec-icon.features {
     background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
 }

 .spec-icon.warranty {
     background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
 }

 .spec-icon i {
     color: white;
     font-size: 15px;
 }

 .spec-header h3 {
     font-size: 18px;
     font-weight: 600;
     color: #2d2d2d;
     margin: 0;
 }

 .spec-content {
     display: flex;
     gap: 0px;
     flex-wrap: wrap
 }

 .spec-item {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     padding: 8px 5px;
 }

 .spec-item2 {
     margin-bottom: 10px
 }

 .spec-item:last-child {
     border-bottom: none;
 }

 .spec-label {
     font-size: 14px;
     color: #555;
     flex: 1;
     margin-right: 15px;
     line-height: 1.4;
 }

 .spec-value {
     font-size: 14px;
     font-weight: 500;
     color: #2d2d2d;
     text-align: right;
     flex-shrink: 0;
     line-height: 1.4;
 }

 .spec-note {
     margin-top: 15px;
     padding-top: 15px;
     border-top: 1px solid #f0f0f0;
     text-align: center;
 }

 .spec-note small {
     color: #888;
     font-style: italic;
 }


 /* FAQ Section Styles */
 .faq-section {
     padding: 40px 0;
     border-top: 1px solid #e0e0e0;
 }

 .faq-container {
     padding: 20px 0;
 }

 .accordion-item {
     border: 1px solid #e0e0e0;
     border-radius: 12px !important;
     margin-bottom: 15px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
     overflow: hidden;
 }

 .accordion-item:last-child {
     margin-bottom: 0;
 }

 .accordion-header {
     margin-bottom: 0;
 }

 .accordion-button {
     background: white;
     border: none;
     padding: 20px 25px;
     font-size: 16px;
     font-weight: 600;
     color: #2d2d2d;
     display: flex;
     align-items: center;
     gap: 15px;
     border-radius: 12px !important;
     box-shadow: none;
     transition: all 0.3s ease;
 }

 .accordion-button:not(.collapsed) {
     background: #b62c2b;
     color: white;
     box-shadow: none;
 }

 .accordion-button:hover {
     background: #f8f9fa;
 }

 .accordion-button:not(.collapsed):hover {
     background: #b62c2b;
 }

 .accordion-button:focus {
     box-shadow: 0 0 0 3px rgba(168, 133, 196, 0.25);
     border: none;
 }

 .accordion-button::after {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
     transition: all 0.3s ease;
 }

 .accordion-button:not(.collapsed)::after {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
     transform: rotate(180deg);
 }

 .faq-icon {
     width: 20px;
     height: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .accordion-body {
     padding: 25px;
     background: #fafbfc;
     color: #555;
     font-size: 15px;
     line-height: 1.6;
     border-top: 1px solid #e0e0e0;
 }

 .accordion-collapse {
     border-radius: 0 0 12px 12px;
 }


.wp-block-woocommerce-cart, .wp-block-woocommerce-checkout, .woocommerce-order{
	padding:20px 0 !important;
}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained{
	    border: none !important;
    background: #fff !important;
    text-align: center !important;
}
}


 .testimonial_sec {
     padding: 80px 0
 }

 .testimonial-card {
     border-radius: 0.75rem;
     /* rounded-xl */
     box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
     /* shadow-lg */
     transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
 }

 .testimonial-card:hover {
     transform: scale(1.05);
     /* hover:scale-105 */
     box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
     /* hover:shadow-2xl */
 }


 .product-container{
            max-width: 1500px
        }



        @media (min-width: 1200px) {
        .product-container{
        max-width: 1190px
        }
        }
        @media (min-width: 1400px) {
        .product-container{
        max-width: 1400px
        }
        }
        @media (min-width: 1600px) {
        .product-container{
        max-width: 1600px
        }
        }

.sticky_div{
	position:sticky ;
	top:20px
}

        /* Thumbnail Gallery with Swiper */
        .thumbnail-gallery-wrapper {
            position: relative;
            height: 500px;
            padding: 20px 10px;
        }

        .thumbnail-swiper {
            height: 100%;
        }

        .thumbnail-swiper .swiper-wrapper {
            flex-direction: column;
        }

        .thumbnail-swiper .swiper-slide {
            height: auto !important;
            margin-bottom: 10px;
        }

        .thumbnail-item {
            width: 100%;
            height: 80px;
            border: 2px solid transparent;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .thumbnail-item:hover {
            border-color: #28a745;
            transform: scale(1.05);
        }

        .thumbnail-item.active {
            border-color: #28a745;
            box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
        }

        .thumbnail-item img {
            width: 100%;
            height: 100% !important;
            object-fit: cover;
        }

        /* Swiper Navigation Buttons */
        .swiper-button-prev,
        .swiper-button-next {
            width: 30px !important;
            height: 30px !important;
            background: rgba(255, 255, 255, 0.9) !important;
            border: 1px solid #ddd !important;
            border-radius: 50% !important;
            color: #333 !important;
            font-size: 12px !important;
            transition: all 0.3s ease !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            margin: 0 !important;
        }

        .swiper-button-prev {
            top: 5px !important;
        }

        .swiper-button-next {
            bottom: 5px !important;
            top: auto !important;
        }

        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            background: white !important;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
            color: #28a745 !important;
        }

        .swiper-button-prev.swiper-button-disabled,
        .swiper-button-next.swiper-button-disabled {
            opacity: 0.5 !important;
            cursor: not-allowed !important;
        }

        .swiper-button-prev::after,
        .swiper-button-next::after {
            font-size: 12px !important;
            font-weight: bold !important;
        }

        /* Main Image Container with Swiper */
        .main-image-wrapper {
            position: relative;
            height: 500px;
            background: #f8f9fa;
        }

        .main-image-swiper {
            height: 100%;
            cursor: crosshair;
        }

        .main-image-container {
            position: relative;
            overflow: hidden;
            background: #f8f9fa;
            height: 100%;
            cursor: crosshair;
            border-radius: 20px;
			width:100%;
        }

        .main-image-container .main-image {
            width: 100% !important;
			height:100% !important;
            object-fit: cover;
            transition: transform 0.3s ease;
			max-width: initial !important;
        }

        /* Main Image Navigation */
        .main-nav-prev {
            position: absolute !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            background: rgba(255, 255, 255, 0.9) !important;
            border: 1px solid #ddd !important;
            border-radius: 0% !important;
            width: 40px !important;
            height: 40px !important;
            color: #333 !important;
            font-size: 16px !important;
            transition: all 0.3s ease !important;
            z-index: 10 !important;
            margin: 0 !important;
            left: 0 !important;
        }

        .main-nav-next {
            position: absolute !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            background: rgba(255, 255, 255, 0.9) !important;
            border: 1px solid #ddd !important;
            border-radius: 0% !important;
            width: 40px !important;
            height: 40px !important;
            color: #333 !important;
            font-size: 16px !important;
            transition: all 0.3s ease !important;
            z-index: 10 !important;
            margin: 0 !important;
            right: 0 !important;
            left: inherit !important;
        }

        .main-nav-prev:hover,
        .main-nav-next:hover {
            background: white !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
            color: #28a745 !important;
        }

        .main-nav-prev::after,
        .main-nav-next::after {
            font-size: 16px !important;
            font-weight: bold !important;
        }

        /* Drift.js Zoom Styles */
        .drift-zoom-pane {
            position: absolute;
            top: 0;
            left: 100%;
            width: 700px;
            height: 500px;
            border: 2px solid #b62c2b;
            background: white;
            overflow: hidden;
            z-index: 999999;
            margin-left: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .drift-bounding-box {
            display: none !important;
        }

        /* Main image container for drift */
        .main-image.drift-enabled {
            cursor: crosshair;
        }

        /* Product Indicators */
        .product-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            padding: 15px;
            background: rgba(0, 0, 0, 0.05);
        }

        /* Navigation Arrows */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .nav-arrow:hover {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .nav-arrow.prev {
            left: 15px;
        }

        .nav-arrow.next {
            right: 15px;
        }

        /* Image and Zoom Container */
        .image-zoom-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        @media (max-width: 1400px) {
            .zoom-display {
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(20%, -50%);
                width: 500px;
                height: 380px;
                margin-left: 0;
                z-index: 1500;
            }

            .zoom-display::before {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: -1;
            }
        }

        @media (max-width: 768px) {
            .main-image-container{
                cursor: default;
                height: 300px
            }
            .main-image-wrapper{
                height: auto
            }

            .thumbnail-gallery-wrapper {
                height: auto;
                padding: 15px;
            }

            .thumbnail-swiper {
                height: 100px;
            }

            .thumbnail-swiper .swiper-wrapper {
                flex-direction: row;
            }

            .thumbnail-swiper .swiper-slide {
                height: 80px !important;
                width: 80px !important;
                margin-bottom: 0;
                margin-right: 10px;
            }

            .swiper-button-prev,
            .swiper-button-next {
                top: 50% !important;
                transform: translateY(-50%) !important;
            }

            .swiper-button-prev {
                left: 5px !important;
            }

            .swiper-button-next {
                right: 5px !important;
                left: auto !important;
                bottom: auto !important;
            }

            

            .product-info {
                padding: 20px;
            }

            .magnifying-square {
                display: none !important;
                cursor: pointer
            }

            .zoom-display {
                display: none !important;
                cursor: pointer
            }
        }

        .card-custom {
            border-radius: 1rem;
            /* Rounded-xl approximation */
            border: 1px solid #e5e7eb;
            /* Gray-200 border approximation */
        }

        .btn-custom-yellow {
            background-color: #facc15;
            /* Tailwind's yellow-400 */
            border-color: #facc15;
            color: #000;
            font-size: 1.25rem;
            /* text-lg */
            font-weight: bold;
            padding: 0.75rem 1.5rem;
            /* px-6 py-3 */
            transition: all 0.3s ease;
        }

        .btn-custom-yellow:hover {
            background-color: #eab308;
            /* Tailwind's yellow-500 */
            border-color: #eab308;
            transform: scale(1.05);
            color: #000;
        }

        .price-text {
            font-size: 2rem;
            /* text-4xl approximation */
        }

        .mrp-text {
            font-size: 0.875rem;
            /* text-sm */
        }

        .discount-text {
            font-size: 0.75rem;
            /* text-xs */
        }
        .product_desc_right{
            position: relative;
            z-index: -1
        }

        @media (min-width: 768px) {
            .price-text {
                font-size: 2rem;
                /* md:text-4xl */
            }

            .mrp-text {
                font-size: 1rem;
                /* md:text-base */
            }

            .discount-text {
                font-size: 0.875rem;
                /* md:text-sm */
            }
        }




 @media (max-width: 768px) {
     .faq-section {
         padding: 30px 0;
     }

     .accordion-button {
         padding: 15px 20px;
         font-size: 15px;
     }

     .accordion-body {
         padding: 20px;
         font-size: 14px;
     }
 }

 @media (max-width: 768px) {
     .specifications-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .spec-content {
         flex-direction: column
     }

     .spec-item {
         flex-direction: row;
         align-items: flex-start;
         gap: 5px;
     }

     .spec-label {
         margin-right: 0;
     }

     .spec-value {
         text-align: left;
     }
 }


 @media (max-width: 768px) {
	 .sticky-buttons{
		 right:12px;
	 }
	 .btn-wrapper{
		 height:40px;
		 width:40px;
	 }
	 .btn-icon{
		 height:40px;
		 width:40px;
		 font-size:15px;
	 }
	 .main-image-wrapper .swiper-button-next, .main-image-wrapper .swiper-button-prev{
		 display:none !important
	 }
	 .technocal_group h2, .benefit_group h2, .tech_sec h2, .tech-feature{
		 text-align:center
	 }
	 .dropdown-menu{
		 background-color: #41485c;
	 }

     .product-slider {
         padding: 20px;
     }

     .product-info {
         padding-left: 0;
         margin-top: 30px;
     }

     .main-title {
         font-size: 32px;
     }

     .pack-options {
         flex-direction: row;
		 gap:8px;
     }
	 .pack-option{
		 padding:10px 20px
	 }
	 .pack-options a{
		 width:50%
	 }

     .special-offer {
         flex-direction: column;
     }
	 .step-card{
		 margin-bottom:20px
	 }
	 .testimonial_sec {
		 padding-bottom:50px
	 }
 }