 :root {
     --brand-dark: #0f172a;
     /* title */
     --muted: #000;
     /* kicker */
     --body: #475569;
     /* paragraph */
     --accent: #b7d438;
     /* button / highlight */
     --counter-bg: #b7d438;
     /* counter cards like screenshot */
     --counter-fg: #111827;
     --card-radius: 1.25rem;
     --shadow: 0 12px 30px rgba(0, 0, 0, .08);
 }
 
 

/*Preloader Start*/
/* Lock scroll during preload */
html.skt-preloading,
html.skt-preloading body {
  overflow: hidden;
}

/* Overlay */
.sakata-preloader {
  position: fixed;
  inset: 0;
  background: #000; /* dark background for fullscreen */
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .45s ease, visibility .45s ease;
}
.sakata-preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Fullscreen Video */
.sakata-preloader-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills entire screen, crops if needed */
  object-position: center;
}

/* Skip button */
.sakata-preloader-skip {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  z-index: 100000; /* ensure above video */
  transition: background .3s ease;
}
.sakata-preloader-skip:hover {
  background: rgba(0,0,0,0.85);
}

 body {
     margin: 0;
     font-family: 'Poppins', sans-serif;
 }
 
 
 

 /* Navbar */
 .navbar {
     padding: 1rem 3rem;
 }

 .navbar-brand {
     font-weight: bold;
     font-size: 1.5rem;
 }

 /* Nav Links */
 .navbar-nav .nav-link {
     font-weight: 500;
     display: inline-flex;
     margin-right: 1rem;
     align-items: center;
     gap: .35rem;
     /* space between text and bootstrap caret */
     padding: .5rem 1rem;
     position: relative;
     color: #000;
     text-decoration: none;
 }

 /* underline attached to the text span only */
 .navbar-nav .nav-link>span {
     display: inline-block;
     /* makes width match text */
     position: relative;
 }

 /* the animated underline */
 .navbar-nav .nav-link>span::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: -6px;
     /* tweak so line sits just below letters */
     height: 2px;
     width: 0;
     background: var(--accent);
     transition: width .28s ease;
     border-radius: 2px;
 }

 /* open to full text width on hover/focus */
 .navbar-nav .nav-link:hover>span::after,
 .navbar-nav .nav-link:focus>span::after {
     width: 100%;
 }

 /* ensure bootstrap caret is unchanged */
 .navbar-nav .dropdown-toggle::after {
     margin-left: 0.35rem;
     vertical-align: middle;
 }

 .mob-logo-close {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 /* Desktop Dropdown */
 @media (min-width: 992px) {
     .navbar-nav .dropdown-menu {
         display: block;
         opacity: 0;
         visibility: hidden;
         transform: translateY(25px) scale(0.95);
         transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
         border-radius: 0;
     }

     .navbar-nav .dropdown:hover .dropdown-menu {
         opacity: 1;
         visibility: visible;
         transform: translateY(0) scale(1);
     }

     .dropdown-item {
         color: #000;
         padding: 0.5rem 1rem;
         transition: 0.3s;
         font-size: 14px;
         font-weight: 500;
     }

     .dropdown-item:hover {
         color: #ffc107;
         background: #f8f9fa;
     }
 }

 /* Mobile Menu */
 #mobileMenu {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #111;
     color: #fff;
     transform: translateY(-100%);
     transition: 0.4s;
     z-index: 1050;
     padding: 2rem;
     overflow-y: auto;
 }

 #mobileMenu.active {
     transform: translateY(0);
 }

 #mobileMenu .close-btn {
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: flex-end;
     font-weight: 500;
     font-size: 1rem;
     gap: 0.3rem;
     margin-bottom: 2rem;
 }

 #mobileMenu ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 #mobileMenu ul li {
     margin: 1rem 0;
 }

 #mobileMenu ul li a {
     color: #fff;
     text-decoration: none;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 #mobileMenu ul li a:hover {
     color: #ffc107;
 }

 #mobileMenu ul li ul.submenu {
     max-height: 0;
     overflow: hidden;
     margin-left: 1rem;
     transition: max-height 0.3s ease;
 }

 #mobileMenu ul li a.submenu-toggle i {
     transition: transform 0.3s;
 }

 #mobileMenu ul li a.submenu-toggle.active i {
     transform: rotate(90deg);
 }

 /* Hamburger Icon */
 .hamburger {
     font-size: 1.5rem;
     cursor: pointer;
     color: #000;
 }

 /* Section background without clipping */
 .vf-section {
     /* use HTTP path, not file:/// */
      background-image: url("https://sakata.co.in/wp-content/uploads/2025/09/bg1.png");
     background-repeat: no-repeat;
     background-position: right;
     background-size: contain;
     padding: 3rem 0 4rem;
     margin-top: 30px;
 }

 /* remove any wash/overlay if you used it earlier */
 .vf-section::before {
     content: none !important;
 }

 .vf-title {
     font-weight: 600;
     color: #0f172a;
     font-size: 30px;
 }

 .vf-kicker {
     text-transform: uppercase;
     letter-spacing: .14em;
     font-weight: 600;
     color: #000000;
 }

 .ratio-4x5 {
     --bs-aspect-ratio: calc(5 / 4 * 100%);
 }

 .vf-card .vf-label {
     background: #FACC15;
     color: #111827;
     padding: .9rem 1rem;
     font-weight: 600;
     font-size: 18px;
 }

 .object-fit-cover {
     object-fit: cover;
 }

 .content_abt {
     padding: 0px 30px;
 }


 /* ===== Section with background ===== */
 .about-hero {
      background-image: url("https://sakata.co.in/wp-content/uploads/2025/09/bg2.png");
     background-repeat: no-repeat;
     background-position: center bottom;
     /* waves at bottom */
     background-size: contain;
     /* no clipping */
     padding: clamp(2.5rem, 5vw, 4rem) 0 7rem;
     position: relative;
     overflow: hidden;
 }

 /* ===== Content ===== */
 .kicker {
     color: var(--muted);
     letter-spacing: .16em;
     text-transform: uppercase;
     font-weight: 600;
     font-size: .85rem;
     margin-bottom: .25rem;
 }

 .about-title {
     color: var(--brand-dark);
     line-height: 1.2;
     font-size: 30px;
     margin-bottom: 1rem;
 }

 .about-text {
     margin-top: 20px;
     font-size: 16px;
     text-align: justify;
     line-height: 25px;
 }

 .about-text p {
     color: var(--body);
     margin-bottom: .75rem;
 }

 /* Make the button square */
 .btn-accent {
     --bs-btn-bg: var(--accent);
     --bs-btn-color: #0f172a;
     --bs-btn-border-color: var(--accent);
     --bs-btn-hover-bg: #84cc16;
     --bs-btn-hover-border-color: #84cc16;
     font-weight: 600;
     border-radius: 0;
     /* square button */
     padding: .7rem 1.2rem;
 }

 /* ===== Counters ===== */
 .stats-row {
     margin-top: 1.5rem;
 }

 .stat-card {
     background: var(--counter-bg);
     color: var(--counter-fg);
     border-radius: 0;
     /* Removed border-radius */
     box-shadow: var(--shadow);
     padding: 1rem;
     /* Reduced padding for smaller size */
     display: flex;
     flex-direction: column;
     gap: .35rem;
     min-height: 110px;
     max-width: 220px;
     /* Adjust width to be smaller */
 }

 .stat-label {
     font-size: .9rem;
     font-weight: 600;
     opacity: .9;
 }

 .stat-number {

     font-size: 2.25rem;
     line-height: 1;
 }

 .hero-banner {
     width: 100%;
     overflow: hidden;
     position: relative;
     margin-top: 90px;
 }

 .hero-banner img {
     width: 100%;
     height: 100%;
     object-fit: fill;
     display: block;
 }


button#heroPrev {
    left: 5%;
}

button#heroNext {
    right: 5%;
}
 /* Responsive adjustment for smaller screens */
 @media (max-width: 992px) {
     .hero-banner {
         height: auto;
     }

     .navbar {
         padding: 1rem 0rem;
     }
 }

 @media (max-width: 576px) {
     .hero-banner {
         height: auto;
     }
     #footer-main{
        padding:0px !important;
    }
 }

.testimonial-slider{
  position: relative;

  /* BG setup */
  background: url("https://sakata.co.in/wp-content/uploads/2025/09/bg3.png")
              no-repeat bottom center;
  background-size: 100% auto;  
  --wave-ratio: 0.19;
  padding-bottom: calc(100% * var(--wave-ratio));
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  overflow: visible; 
  min-height: 100vh;
}


 .carousel-item {
     text-align: center;
 }

 .testimonial-content {
     background: transparent;
     /* White background for content */
     border-radius: 10px;
     max-width: 50%;
     /* Reduced the max-width of the content further */
     margin: 0 auto;
 }

 .testimonial-img {
     width: 100px;
     height: 100px;
     margin-bottom: 20px;
 }

 .testimonial-text p {
     font-size: 14px;
     font-style: italic;
     margin-bottom: 20px;
     line-height: 25px;
     color: black;
     /* Set text color to black */
 }

 .farmer-details {
     text-align: center;
     font-size: 12px;
 }

 h3.farmer-name {
     font-size: 16px;
 }

 .farmer-name h3 {
     margin: 0;
     font-size: 14px;
     font-weight: bold;
     color: black;
     /* Set name color to black */
 }

 .farmer-name p {
     margin: 0;
     font-size: 14px;
     color: black;
     /* Set designation color to black */
 }

 /* Custom arrows for carousel navigation with red background */
 .carousel-control-prev-icon,
 .carousel-control-next-icon {
     border-radius: 50%;
     padding: 10px;
     /* Adjust padding for better visibility */
     width: 30px;
     /* Adjust size of the icon */
     height: 30px;
     /* Adjust size of the icon */
 }

 .carousel-control-prev,
 .carousel-control-next {
     width: 40px;
     height: 40px;
     top: 50%;
     transform: translateY(-50%);
     background-color: red;
     /* Red background for the arrows */
     border: none;
     border-radius: 50%;
     z-index: 1;
 }

 .carousel-control-prev:hover,
 .carousel-control-next:hover {
     background-color: darkred;
     /* Darker red background on hover */
 }

 /* Move arrows closer to the content */
 .carousel-control-prev {
     left: 15%;
     /* Reduce the left margin to bring the left arrow closer */
 }

 .carousel-control-next {
     right: 15%;
     /* Reduce the right margin to bring the right arrow closer */
 }

 /* Responsive design for smaller screens */
 @media (max-width: 768px) {
     .testimonial-content {
         max-width: 80%;
         /* Adjust content width on smaller screens */
     }

     .content_abt {
         padding: 0px;
         font-size: 14px;
     }

     .carousel-control-prev,
     .carousel-control-next {
         width: 35px;
         /* Smaller arrow buttons on smaller screens */
         height: 35px;
     }

     .carousel-control-prev-icon,
     .carousel-control-next-icon {
         width: 20px;
         /* Smaller arrow icons */
         height: 20px;
     }
     
     .ef-gallery .woocommerce-product-gallery__image img{
         margin-top: 0px !important;
     }
 }

 h3.main-title {
     font-size: 30px;
     color: #000000;
     margin-bottom: 30px;
     text-align: center;

 }

 .blog.bg-section {
    background-image: url("https://sakata.co.in/wp-content/uploads/2025/09/bg4.png");
    padding: 150px 0;
    background-size: 100% auto;      /* scale width like 1366 base */
    background-repeat: no-repeat;
    background-position: top center;
    margin-top: -100px;
    min-height: calc(100vw * (768 / 1366)); /* lock ratio 16:9 */
}


 .sakata.card {
     background-color: rgba(255, 255, 255, 0.9);
     border: none;
     border-radius: 0;
     /* remove rounded corners */
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     display: flex;
     flex-direction: column;
     height: 100%;
     margin: auto;
     /* Make the card responsive */
     width: 100%;
 }

 .sakata .card img {
     width: 100%;
     height: auto;
     /* Adjust height to maintain aspect ratio */
     max-height: 250px;
     /* Set a max height for the images */
     object-fit: cover;
     border-radius: 0;
     /* remove rounded corners */
 }

 .sakata .card-body {
     flex-grow: 1;
     padding: 15px 20px;
     background: #f56c6c;
 }

 /* Custom class for meta info */
 .card-meta {
     font-size: 0.875rem;
     color: #fff;
     margin-bottom: 10px;
     font-weight: 500;
 }

 .sakata .card-title {
     font-size: 16px;
     line-height: 25px;
     color: #fff;
 }

 .view-more-btn {
     background-color: #f56c6c;
     color: white;
     padding: 10px 20px;
     border-radius: 0;
     /* square button */
     text-decoration: none;
     display: block;
     width: fit-content;
     margin: 30px auto 0;
 }

 .view-more-btn:hover {
     background-color: #d45c5c;
 }

 /* Custom responsive grid for large and small screens */
 @media (max-width: 1200px) {
     .sakata.card {
         width: 90%;
         /* Cards take up 90% of the row on medium screens */
     }
 }

 @media (max-width: 992px) {
     .sakata.card {
         width: 100%;
         /* Cards take up 100% on small screens */
     }

     .row-cols-md-3 .col {
         margin-bottom: 20px;
         /* Space out the cards for small screens */
     }
 }

 @media (max-width: 576px) {
     .sakata .card-body {
         padding: 10px 15px;
         /* Reduce padding for small devices */
     }

     .view-more-btn {
         padding: 8px 15px;
         /* Smaller padding for mobile */
     }
 }


 .contact-section {
     display: flex;
     justify-content: center;
     align-items: center;
     background-image: url("https://sakata.co.in/wp-content/uploads/2025/09/bg5.png");
     background-size: cover;
     background-position: center;
     padding: 50px 20px;
     color: black;
     min-height: 100vh;
     position: relative;
 }

 .contact-image {
     flex: 1;
     padding: 10px;
     max-width: 40%;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .contact-image img {
     width: 80%;
     height: auto;
     border-radius: 8px;
 }

 .contact-form {
     flex: 1;
     max-width: 50%;
     background: none;
     padding: 30px;
     border-radius: 10px;
 }

 .contact-title {
     text-align: justify;
     margin-bottom: 20px;
 }

 .contact-title .sub_title {
     font-size: 18px;
     color: #000;
     text-transform: uppercase;
 }

 .contact-title h2 {
     font-size: 28px;
     margin-top: 10px;
     font-weight: 600;
     color: black;
 }

 .contact-form form {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
 }

 .contact-form input,
 .contact-form select {
     padding: 15px 0px;
     border: none;
     border-bottom: 2px solid #b695c4;
     font-size: 16px;
     background-color: transparent;
     color: black;
     width: 100%;
 }

 /* Adjust input and select focus styles */
 .contact-form input:focus,
 .contact-form select:focus {
     outline: none;
     border-bottom: 2px solid #b695c4;
 }

 .contact-form button {
     padding: 14px;
     margin-top: 20px;
     background-color: #b695c4;
     color: white;
     border: none;
     width: auto;
     /* Make the button width auto */
     max-width: 200px;
     /* Limit the button width */
     font-size: 16px;
     cursor: pointer;
     transition: background-color 0.3s ease;
     text-align: left;
     /* Align the button text to the left */
 }

 .contact-form button:hover {
     background-color: #ff4a3d;
 }

 /* Media query for responsiveness */
 @media screen and (max-width: 768px) {
     .contact-section {
         flex-direction: column;
         text-align: center;
         padding: 20px;
     }

     .contact-image,
     .contact-form {
         max-width: 100%;
     }

     .contact-form {
         margin-top: 20px;
         padding: 20px;
     }

     .contact-form h2 {
         font-size: 24px;
     }

     .contact-form input,
     .contact-form select {
         width: 100%;
     }

     .contact-form button {
         width: 100%;
         /* Full width on smaller screens */
         text-align: center;
         /* Center the button text on small screens */
     }
 }



 footer {
     background-color: #28a745;
     color: white;
     padding: 20px 20px;
     font-size: 14px;
     box-sizing: border-box;
 }

 .footer-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: flex-start;
     width: 100%;
     margin-bottom: 20px;
 }

 .footer-logo {
     display: flex;
     flex-direction: column;
     align-items: center;
     flex: 1;
     margin-bottom: 20px;
 }

 .footer-logo-img {
     width: 60px;
     height: auto;
     margin-bottom: 10px;
 }

 .footer-logo p {
     text-align: center;
     margin: 0;
 }

 .footer-contact,
 .footer-links,
 .footer-socials {
     flex: 1;
     margin-bottom: 20px;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     /* Change from center to left align */
     text-align: left;
     /* Ensure the text is aligned left */
 }

 .footer-contact p,
 .footer-links a,
 .footer-socials a {
     margin: 5px 0;
 }

 .footer-links ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 8px;
 }

 .footer-links a {
     color: white;
     text-decoration: none;
 }

 .footer-socials {
     display: flex;
     flex-wrap: wrap;
     /* Allow wrapping on small screens */
     justify-content: flex-start;
     /* Align the icons to the start */
     margin: 0;
 }

 .footer-socials a {
     color: white;
     margin: 5px 10px;
     /* Added margin for spacing between icons */
     text-decoration: none;
     font-size: 18px;
     display: flex;
     align-items: center;
 }

 .footer-socials i {
     margin-right: 8px;
 }

 .footer-socials a:hover {
     opacity: 0.8;
 }

 .footer-bottom {
     text-align: center;
     margin-top: 20px;
     font-size: 12px;
 }

 @media (max-width: 480px) {

     .footer-contact,
     .footer-links,
     .footer-socials {
         margin-bottom: 15px;
         text-align: left;
         /* Left-align text */
     }

     .footer-socials {
         display: flex;
         /* Display icons in a row */
         justify-content: flex-start;
         /* Align icons to the left */
         margin: 0;
         flex-wrap: wrap;
         /* Ensure wrapping is allowed if needed */
     }

     .footer-socials a {
         font-size: 18px;
         margin: 0 10px;
         /* Space between the icons */
         display: inline-flex;
         /* Align icons in a row */
         align-items: center;
     }

     .footer-socials i {
         margin-right: 8px;
         /* Space between icon and text */
     }
 }

 @media (max-width: 768px) {

     .footer-contact,
     .footer-links,
     .footer-socials {
         text-align: left;
         /* Ensure left alignment on medium-sized screens */
     }

     .footer-socials a {
         font-size: 20px;
         margin: 0 12px;
     }
 }

 .footer-socials {
     display: flex;
     justify-content: flex-start;
     margin: 0;
 }

 .footer-contact,
 .footer-links,
 .footer-socials {
     text-align: left;
     /* Left-align text */
 }

 /* my css */

 .footer-col-title {
     color: white;
     font-size: 20px;
     font-weight: 600;
 }

 .footer-col {
     padding-top: 30px;
 }
 
 @media screen and (max-width:768px) {
     .footer-col {
         padding-top: 0px;
     }
     /* About Us Page */
 .about-hero {
     padding: 0x 0;
     background-size: cover;
     background-position: center bottom;
     text-align: center;
     color: white;
 }

 }


 /* About Us Page */
 .about-hero {
     padding: 175px 0;
     background-size: cover;
     background-position: center bottom;
     text-align: center;
     color: white;
 }

 .about-content,
 .mission-section,
 .vision-section {
     padding: 80px 0;
 }

 .about-content h2,
 .mission-section h2,
 .vision-section h2 {
     font-size: 2.5rem;
     margin-bottom: 20px;
 }
 
 
 
 /*Shop Page CSS*/
 
body.woocommerce-shop {
  background: url("http://localhost/sakata/product_bg1.png") no-repeat center top;
  background-size: cover;
}

.shop-heading {
  text-align: center;
  font-size: 28px;
  margin: 0;
  font-weight: 600;
}

.subtitle {
  text-align: center;
  max-width: 800px;
  margin: 20px auto 40px auto;
  font-size: 14px;
  line-height: 1.6;
  text-transform: uppercase;
}

.products .product {
  text-align: center;
}



.products .product p {
  margin-top: 10px;
}
a {
    text-decoration: none;
    color: #000;
}
.sidebar {
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
}

.sidebar input[type="search"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 4px;
}

.sidebar ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.filter-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: green;
  color: #fff !important;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

/* Shop Page Heading Section */
.woocommerce-shop .shop-main-heading,
.woocommerce-shop .shop-heading,
.woocommerce-shop .subtitle {
  display: block;
  text-align: center;
}

/* Add space from header */
.woocommerce-shop .shop-main-heading {
  margin-top: 100px; /* Increase space below site header */
}

.woocommerce-shop .shop-heading {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0 10px 0; /* top, right, bottom, left */
}

.woocommerce-shop .subtitle {
  max-width: 800px;
  margin: 0 auto 50px auto; /* centered with space below */
  font-size: 14px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #444;
}


.shop-cat-list li { margin-bottom:10px; font-size:14px; }
.shop-cat-list li a { text-decoration:none; color:#222; }
.shop-cat-list li a:hover { text-decoration:underline; }
.shop-cat-list li.active > a { font-weight:700; }
.shop-cat-list .count { color:#777; margin-left:6px; font-size:12px; }



.single-product-custom .product-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1d1d1d;
}

.single-product-custom .product-price {
  font-size: 1.5rem;
  color: #e63946;
  font-weight: 700;
}

.single-product-custom .btn {
  border-radius: 8px;
  padding: 10px 20px;
  margin-right: 10px;
}

.product-gallery img {

}


/*Product Image CSS*/
  /* ===== Background image for the whole page area ===== */
  .category-bg {
      background-image: url('<?php echo esc_url($bg_url); ?>');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
  }
  .category-overlay { background: rgba(255, 255, 255, 0.9); }


/* Section above the footer with background image */
.section-pad {
    padding: 32px 0;
    margin-top: 100px;
}


  .object-fit-cover { object-fit: cover; }
  .thumb-empty{
      display:flex; align-items:center; justify-content:center;
      border:1px dashed #dee2e6; background:#fafafa; color:#6c757d;
  }
  .page-title-anchor { scroll-margin-top: 90px; }

  /* ===== Sidebar card styling (default layout — top level only) ===== */
  .sidebar-box{
      border:1px solid #00963f; border-radius:5px; padding:18px; background:#fff;
      box-shadow:0 3px 12px rgba(0,0,0,0.06);
          position: sticky;
    top: 100px;
    height: max-content;
  }
  .sidebar-box .widgettitle{
      font-size:16px; font-weight:500; margin:10px 0; border-bottom:1px solid #eee; padding-bottom:6px;
  }
  .sidebar-box input[type="search"],
  .sidebar-box input[type="text"]{
      width:100%; border:1px solid #ddd; border-radius:0px; padding:5px 10px; margin-bottom:10px;
  }
  .sidebar-box input[type="submit"],
  .sidebar-box button{
      background:#00963f; color:#fff; border:none; padding:5px 20px; border-radius:0px; cursor:pointer; transition:all .2s ease;margin-bottom: 10px;
  }
  .sidebar-box input[type="submit"]:hover,
  .sidebar-box button:hover{
      background:#0b1220; transform:translateY(-1px); box-shadow:0 2px 6px rgba(0,0,0,0.15);
  }
  .sidebar-box ul{ list-style:none; padding:0; margin:0; }
  .sidebar-box ul li{ padding:1px 0; }
  .sidebar-box ul li a{ text-decoration:none; color:#111827; }
  .sidebar-box ul li a:hover{ color:#e53935; }

  @media (min-width: 992px){ .sidebar-align { margin-top: 2rem; } }

  /* Child-cat thumbnail grid (fallback case) */
  .fixed-img { width:250px; height:250px; object-fit:cover; }
  .row.close-gap { --bs-gutter-x:12px; --bs-gutter-y:20px; }

  /* ======== CUSTOM HERO for ALL child categories (dynamic) ======== */
  .custom-hero{
    position: relative;
    border-radius: 24px;
    padding: 24px;
    overflow: hidden;
    background: #fff;
  }

  .hero-img-wrap img{ width:100%; height:100%; object-fit:cover; display:block;max-width:350px;    float: right; }

  .eyebrow{
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: .12em;
    color:#111827;
    font-weight: 600;
    margin-bottom:8px;
    text-align:center;
  }
  .custom-hero h2{
    font-weight: 600;
    margin: 0 0 6px;
    text-align:center;
  }
  .custom-hero .lead-desc{
    max-width: 630px;
    color: #4b5563;
    line-height: 1.6;
    float: inline-end;
    text-align: justify;
  }


/* Product Card */
.product-card {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center; /* Ensures text is centered vertically */
}

.product-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px; /* Adjust height of the image */
    padding: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 10px;
    text-align: center;
    flex-grow: 1;
}

.product-title {
    font-size: 16px; /* Default font size for desktop */
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.product-title:hover {
    color: #e53935;
}

.product-price {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    margin-top: 10px;
    transition: color 0.2s ease;
}

.product-price:hover {
    color: #e53935;
}

/* Hover Effect */
.product-card:hover .product-info {
    background-color: #f9fafb;
}

/* Responsive for Mobile */
@media (max-width: 767.98px) {
    .product-title {
        font-size: 12px; /* Title font size for mobile */
    }
    
    .vf-title {
    font-size: 22px;
}
    .product-image{
        height: 150px;
        border-bottom: 1px solid #e5e7eb;
        padding: 15px;
    }
    .product-info {
        padding: 10px 5px 0px 5px;
    }

    .custom-cat-products ul.products {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 items per row on mobile */
    }
    .category-description {
        font-size: 14px!important;
        padding: 0px !important;
    }
    
.fixed-img {
    width: 150px;
}
h4.sp_title {
    font-size: 14px;
}

.hero-img-wrap img{
    max-width: 250px;
    height: auto;
    display: block;
    margin-right: auto;
    float:none;
    margin-left: auto;
}
.custom-hero .lead-desc {
    margin-top: -40px;
    font-size: 14px;
}
.custom-cat-products{
          margin-top: -10px !important;
}
.section-pad {
    padding: 32px 0;
    margin-top: 80px;
}
.custom-hero h2 {
            font-size: 14px;
}
}

/* 2-column grid */
.custom-cat-products ul.products{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px !important;
  padding-left: 0;
  list-style: none;
}

/* Kill theme's floats/widths so grid works properly */
.custom-cat-products ul.products li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}
.custom-cat-products ul.products::before,
.custom-cat-products ul.products::after{
    display: none !important;
}



/* 2-column grid */
.custom-cat-products ul.products{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px !important;
  padding-left: 0;
  list-style: none;
}

/* Kill theme's floats/widths so grid  */
.custom-cat-products ul.products li.product{
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}
.custom-cat-products ul.products::before,
.custom-cat-products ul.products::after{
  display: none !important;
}
.woocommerce ul.products li.product a img {
    width: 100%;
    height: auto;
    display: block;
    display: block;
    margin-right: auto;
    margin-left: auto;
    box-shadow: none;
    max-width: 200px;
    border-bottom: 1px solid #e5e7eb;
    
}
section.tractor_bg {
  margin-bottom: 40px;
}

/* (optional)  1 column */
@media (max-width: 575.98px){
  .custom-cat-products ul.products{
    grid-template-columns: repeat(2, 1fr) !important; /* 2 items per row on mobile */
  }
  .custom-cat-products .woocommerce-loop-product__title {
    font-size: 14px !important;
    font-weight: 700;
    text-align: center;
    margin: 4px 0 2px;
}
}

  @media (max-width: 991.98px){
    .custom-hero{ padding: 12px; }
    .hero-img-wrap{ aspect-ratio: 1 / 1; }
  }
  
  
  .custom-header{
      display:none;
  }


h3.widgettitle_search {
    font-size: 18px;
}


/* Category List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-list li:hover {
  background: #faf9f6;
  transform: translateX(6px);
}

.category-list li:hover a {
  color: #d4af37; /* Luxury gold highlight */
}



/* ====== WOW Gallery (Vertical thumbs + Premium card) ====== */
.ef-gallery .woocommerce-product-gallery {
  /*padding: 14px;           */
}

/* Create two-column layout on large screens */
@media (min-width: 992px) {
  .ef-gallery .woocommerce-product-gallery {
    display: grid;
    grid-template-columns: 110px 1fr;   /* thumbs | main image */
    grid-template-rows: auto;
    column-gap: 12px;
    align-items: start;
  }
}

/* Main image wrapper */
.ef-gallery .woocommerce-product-gallery__wrapper {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

/* Gentle zoom + glassy glint */
.ef-gallery .woocommerce-product-gallery__image img {
  width: 100%; height: auto; display: block;
  transition: transform .35s ease;
  /*object-fit:none;*/
  margin-top:50px;
}
.ef-gallery .woocommerce-product-gallery__wrapper:hover img {
  transform: scale(1.02);
}
.ef-gallery .woocommerce-product-gallery__wrapper::after {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(255,255,255,.0) 40%, rgba(255,255,255,.22) 55%, rgba(255,255,255,0) 70%);
  pointer-events:none;
  mix-blend-mode: screen;
}

/* Zoom/Fullscreen trigger (Woo’s built-in) */
.ef-gallery .woocommerce-product-gallery__trigger {
  right: 12px; top: 12px;
  width: 38px; height: 38px;
  border-radius: 999px !important;
  background: rgba(255,255,255,.92);
  border: 1px solid #e7e2c9;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  display:none;
}
.ef-gallery .woocommerce-product-gallery__trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(212,175,55,.22);
}

/* Thumbnails — base */
.ef-gallery .flex-control-thumbs {
  margin: 0;
}

/* Desktop: vertical rail on the left */
@media (min-width: 992px) {
  .ef-gallery .flex-control-thumbs {
    display: grid !important;
    grid-auto-rows: min-content;
    grid-row-gap: 8px;
    overflow: auto;
    max-height: 560px;                 /* adjust to your image height */
    padding-right: 2px;
  }
  /* Place the thumbs grid in column 1 */
  .ef-gallery .flex-control-thumbs { grid-column: 1; }
  .ef-gallery .woocommerce-product-gallery__wrapper { grid-column: 2; }
}



.ef-gallery .flex-control-thumbs li { list-style: none; margin: 0 !important; }
.ef-gallery .flex-control-thumbs img {
  width: 100%; height: 72px; object-fit: cover;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #f7f6f2;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
  display: block;
}

/* Active / hovered thumb */
.ef-gallery .flex-control-thumbs img:hover {
  transform: translateY(-1px);
  border-color: #e7e2c9;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}
.ef-gallery .flex-control-thumbs .flex-active,
.ef-gallery .flex-control-thumbs img.is-active {
  outline: none;
  border: 2px solid #d4af37 !important;               /* luxury gold ring */
  box-shadow: 0 8px 18px rgba(212,175,55,.25);
}

/* SALE badge restyle */
.ef-gallery .onsale {
  position: absolute; z-index: 3; top: 12px; left: 12px;
  background: linear-gradient(135deg,#f6e27a,#d4af37);
  color: #1f1f1f; font-weight: 700;
  border-radius: 999px; padding: 6px 10px;
  box-shadow: 0 6px 16px rgba(212,175,55,.25);
  border: 1px solid rgba(0,0,0,.06);
}

/* Aspect ratio helper (if your images vary) */

/* Skeleton shimmer while loading */
.ef-gallery .woocommerce-product-gallery__image img[loading="lazy"],
.ef-gallery .woocommerce-product-gallery__image img.lazyload {
  filter: blur(4px); opacity: .9;
}
.ef-gallery .woocommerce-product-gallery__image::before {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(255,255,255,.35), rgba(0,0,0,0));
  transform: translateX(-100%);
  animation: ef-shimmer 1.3s infinite;
  pointer-events: none;
}
@keyframes ef-shimmer { to { transform: translateX(100%); } }


/* Swiper/Photoswipe arrows (if present) */
.ef-gallery .swiper-button-prev,
.ef-gallery .swiper-button-next {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: 1px solid #e7e2c9;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.ef-gallery .swiper-button-prev:after,
.ef-gallery .swiper-button-next:after { font-size: 16px; color: #222; }

h2.woocommerce-loop-product__title {
    font-size: 18px !important;
    font-weight: 600;
}

.elementor-post__text {
        padding: 0px 10px 0px 15px;
}


/* 404 Page Styling */
.not-found-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  text-align: center;
  background: #f9f9f9;
}

.error-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.error-title {
  font-size: 120px;
  font-weight: 800;
  color: #e63946; /* red accent */
  margin: 0;
  line-height: 1;
}

.error-subtitle {
  font-size: 32px;
  margin: 15px 0;
  font-weight: 600;
  color: #222;
}

.error-message {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

.btn-home {
  display: inline-block;
  padding: 14px 32px;
  background: #0073e6;
  color: #fff !important;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-home:hover {
  background: #005bb5;
  transform: translateY(-2px);
}

.category-description {
    padding: 10px 200px 0px 200px;
    font-size: 18px;
}

/*@media (min-width: 1200px) {*/
/*    .h1, h1 {*/
/*        font-size: 38px;*/
/*        margin-top: 100px;*/
/*        text-align: center;*/
/*    }*/
/*}*/


/* Hide default theme post title */
.single-post h1.entry-title {
  display: none !important;
}



    /* === Blog Cards === */
.sakata-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Image */
.sakata-card .sakata-thumb img {
  width: 100%;
  height: 240px;              /* need: same height feel */
  object-fit: cover;
  display: block;
}

/* Purple content area */
.sakata-card .sakata-content {
  background: #B695C5;        /* lavender/purple like screenshot */
  color: #fff;
  padding: 16px 18px;
}

/* Title two lines max with ellipsis */
.sakata-card .sakata-title {
  margin: 0 0 8px 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sakata-card .sakata-title a {
  color: #fff;
  text-decoration: none;
}

/* Meta (author - date) */
.sakata-card .sakata-meta {
    margin: 0px 0px 5px 0px;
    opacity: 0.85;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    
}

/* Hover */
.sakata-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* Spacing between cards */
.blog .row.g-4 > [class*="col-"] {
  margin-bottom: 12px;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .sakata-card .sakata-thumb img { height: 210px; }
  .sakata-card .sakata-title { font-size: 18px; }
}
@media (max-width: 575.98px) {
  .sakata-card .sakata-thumb img { height: 190px; }
  .sakata-card .sakata-title { font-size: 17px; }
}

/* Hide only Demo category */
.cat-item-18 {
  display: none !important;
}

/* Custom Form Container */
.custom-contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.custom-contact-form h2 {
  font-size: 2em;
  margin-bottom: 0.3em;
  font-weight: bold;
}

.custom-contact-form .subtitle {
  font-size: 1em;
  color: #444;
  margin-bottom: 2em;
}

/* Form field styles */
.custom-contact-form .custom-field {
  display: block;
  margin-bottom: 1em;
  width: 100%;
}

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"],
.custom-contact-form textarea,
.custom-contact-form select,
.custom-contact-form input[type="file"] {
  width: 100%;
  border: none;
  border-bottom: 2px solid #b68acb; /* Purple underline */
  background: transparent;
  padding: 0.5em 0;
  font-size: 1em;
  outline: none;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder,
.custom-contact-form select {
  color: #b68acb;
}

/* Two-column layout */
.custom-contact-form .form-row {
  display: flex;
  gap: 20%;
  /*flex-wrap: wrap;*/
}

.custom-contact-form .half-width {
  width: 48%;
}

/* Submit Button */
.custom-contact-form .form-submit {
  margin-top: 1em;
}

.custom-contact-form input[type="submit"] {
  background-color: #b68acb;
  color: #fff;
  border: none;
  padding: 0.5em 2em;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-contact-form input[type="submit"]:hover {
  background-color: #a273b9;
}

/* File upload placeholder workaround */
.wpcf7 input[type="file"]::file-selector-button {
  background: #b68acb;
  color: #fff;
  border: none;
  padding: 0.4em 1em;
  margin-right: 1em;
  cursor: pointer;
}
.wpcf7-form-control-wrap br {
  display: none;
}
.custom-contact-form br {
  display: none;
}

label.custom-acceptance {
    margin-left: -10px;
}
.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 0.7em;
    font-family: 'Poppins';
}
.wpcf7 form .wpcf7-response-output {
    margin: 0em 0em 0em;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2;
    font-size: 14px;
}
span.wpcf7-not-valid-tip {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
}
main.page-content {
    max-width: 100%;
}
/* ===== Minimal Hero ===== */
.ef-hero-minimal {
  background: #faf7ef; /* soft cream */
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.ef-hero-inner { padding: 64px 16px; }
.ef-hero-title {
  font-size: clamp(36px, 5vw, 50px);
  font-weight: 600;
  color: #0e1209; /* deep greenish black */
  margin: 0 0 10px;
  letter-spacing: 0.2px;
  margin-top: 100px;
}
.ef-hero-down {
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  color: #0e1209; opacity: .8;
  transition: transform .25s ease, opacity .25s ease;
}
.ef-hero-down:hover { transform: translateY(3px); opacity: 1; }

/* ===== EF Woo Tabs: modern pill design (with black active tab) ===== */

.ef-tabs .woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0;
  padding: .5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  background: #fff;
  border: 1px solid #e2e8f0;          /* slate-200 */
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(15,23,42,.06);
}

/* remove default triangles some themes add */
.ef-tabs .woocommerce-tabs ul.tabs:before,
.ef-tabs .woocommerce-tabs ul.tabs:after,
.ef-tabs .woocommerce-tabs ul.tabs li:before {
  display: none !important;
  content: none !important;
}

.ef-tabs .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.ef-tabs .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: .65rem 1rem;
  border-radius: 0px;
  font-weight: 600;
  color: #475569;                     /* slate-600 */
  text-decoration: none;
  transition: all .18s ease;
  outline: none;
}

/* active + hover — now with black background and white text */
.ef-tabs .woocommerce-tabs ul.tabs li.active a,
.ef-tabs .woocommerce-tabs ul.tabs li a:hover {
  color: #ffffff;                     /* white text */
  background: #000000;                /* black background */
  box-shadow: inset 0 0 0 2px #000, 0 4px 14px rgba(0,0,0,.15);
}

/* panel card */
.ef-tabs .woocommerce-tabs .panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-top: .75rem;
  box-shadow: 0 6px 24px rgba(15,23,42,.04);
  animation: ef-fade .22s ease;
}
@keyframes ef-fade { 
  from { opacity: 0; transform: translateY(4px); } 
  to { opacity: 1; transform: translateY(0); } 
}

/* tidy headings and lists inside panels */
.ef-tabs .woocommerce-tabs .panel h2:first-child { margin-top: 0; }
.ef-tabs .woocommerce-tabs .panel ul { padding-left: 1.1rem; }

#footer-main{
    padding:50px;
}

/* mobile: full width tabs */
@media (max-width: 640px) {
  .ef-tabs .woocommerce-tabs ul.tabs { gap: .4rem; }
  .ef-tabs .woocommerce-tabs ul.tabs li a { padding: .55rem .8rem; border-radius: 0px;font-size:14px; }
}




.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.product-table thead tr {
  background-color: #2e8b57;
  color: #fff;
}

.product-table th,
.product-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.product-table tbody tr:nth-child(odd) td:first-child {
  background-color: #f8f8f8;
  font-weight: 600;
}

.product-table tbody tr:hover td {
  background-color: #f2faf5;
}

/* ✅ List alignment inside table cells */
.product-table td ul,
.product-table td ol {
  margin: 8px 0 8px 18px;
  padding: 0;
}

.product-table td li {
  margin-bottom: 4px;
  line-height: 1.5;
}

/* ✅ Handle manual bullet points (•) in text */
.product-table td {
  line-height: 1.6;
}

.product-table td br + br {
  display: none; /* remove extra line breaks if any */
}

/* Responsive Card View (No HTML change needed) */
@media (max-width: 640px) {
  .product-table {
    border: 0;
    box-shadow: none;
  }

  .product-table thead {
    display: none;
  }

  .product-table,
  .product-table tbody,
  .product-table tr,
  .product-table td {
    display: block;
    width: 100%;
  }

  .product-table tr {
    margin-bottom: 14px;
    border: 1px solid #dcdcdc;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }

  .product-table td {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 12px 16px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
  }

  .product-table td:first-child {
    font-weight: 600;
    background-color: #f8f8f8;
  }

  .product-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #444;
    margin-bottom: 4px;
  }

  .product-table td:last-child {
    border-bottom: 0;
  }

  /* ✅ Better alignment for bullets on mobile */
  .product-table td ul,
  .product-table td ol {
    margin-left: 20px;
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .product-table td li {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*Product Details Page Styling*/
tbody {
    font-family: "Poppins", sans-serif;
}


#tab-wpt-1150, #tab-wpt-1150 * { box-sizing: border-box; }
#tab-wpt-1150 {
padding: 0px;
  color: #1a1a1a;
  line-height: 1.6;
  overflow: visible !important;
}

/* ---------------- Top-level table ---------------- */
#tab-wpt-1150 > table{
  width:100%;
  border-collapse: collapse;
  border:1px solid #e5e7eb;
  background:#fff;
  table-layout:auto;              /* allow natural widths */
  font-size:14px;
}

#tab-wpt-1150 > table thead{
  background: #00963f !important;
  color:#fff;
}

#tab-wpt-1150 > table th,
#tab-wpt-1150 > table td{
  text-align:left;
  padding:14px 16px;
  border-bottom:1px solid #e5e7eb;
  vertical-align:top;
  white-space:normal;
  word-break:normal;              /* don't split letters */
  overflow-wrap:break-word;       /* wrap long words safely */
}

#tab-wpt-1150 > table td:first-child{
  font-weight:600;
  background:#f8fafc;
  width:28%;
  min-width:180px;                /* prevent too-narrow label column */
}

/* section headers inside body */
#tab-wpt-1150 > table td[align="center"]{
  text-align:left !important;
  background:#eef2ff;
  border-left:2px solid #00963f;
  letter-spacing:.3px;
  font-weight:500;
}

/* ---------------- Nested tables (fertilizers/diseases/pests) ---------------- */
#tab-wpt-1150 table table{
  width:100%;
  border-collapse:collapse;
  margin-top:8px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,.05);
  table-layout:auto;
}

#tab-wpt-1150 table table thead{ background:#f3f4f6; font-weight:600; }

#tab-wpt-1150 table table th,
#tab-wpt-1150 table table td{
  border:1px solid #e5e7eb;
  padding:10px 12px;
  font-size:13px;
  vertical-align:top;
  white-space:normal;
  word-break:normal;
  overflow-wrap:break-word;
}

/* CRITICAL FIX: left column must not wrap vertically */
#tab-wpt-1150 table table th:first-child,
#tab-wpt-1150 table table td:first-child{
  white-space:nowrap;             /* keep terms on one line */
  overflow-wrap:normal;
  word-break:normal;
  min-width:180px;                /* give breathing room */
}

/* lists spacing */
#tab-wpt-1150 td ul, #tab-wpt-1150 td ol{ margin:6px 0 6px 18px; }
#tab-wpt-1150 td li{ margin:4px 0; }

.vegetable-text{
    line-height:25px;
}

/*footer upper image css*/

.full-width-image {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow-x: hidden;
}

.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------------- Responsive ---------------- */
@media (max-width:1024px){
  /* scroll instead of squeezing: never cut content */
  #tab-wpt-1150 > table,
  #tab-wpt-1150 table table{
    display:block;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
}

/* Mobile tweaks */
@media (max-width:640px){
  #tab-wpt-1150 > table{
    display:block;
    overflow-x:auto;              /* top table scrolls if needed */
  }
  /* nested tables need a safe minimum width so columns don't crush */
  #tab-wpt-1150 table table{ min-width:700px; }
}

/* Never clip rows */
#tab-wpt-1150 table tr{ transform:none !important; box-shadow:none !important; }

/* responsive css for small devices start*/

@media screen and (max-width:768px){
    .vf-section{
        padding: 1rem 0 4rem;
    }
    .about-hero{
        padding:0px;
    }
    h3.main-title{
        font-size:24px;
    }
    .about-title{
        font-size:24px;
    }
    .about-text {
        font-size: 14px;
    }
    .vegetable-text{
        text-align:justify;
    }
    .content_abt_head{
        font-size:18px;
    }
    section.blog.bg-section {
        padding-bottom: 50px;
    }
    .stat-card{
        padding:25px;
    }
}

/* responsive css for small devices end*/



