/*
Theme Name: Luminexa Custom Theme
Theme URI: https://luminexabiotech.com
Author: Luminexa Dev
Author URI: https://luminexabiotech.com
Description: Custom WooCommerce theme built with ACF. No page builders.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: luminexa
*/


* {
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Mukta', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1e1e1e;
  background: #ffffff;
  font-size: 16px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation ul li a {
    background: #012a79;
    display: inline-block;
    width: 100%;
    padding: 8px;
    text-decoration: blink;
    color: #fff;
    margin: 0 0 10px 0;
}

.woocommerce-MyAccount-content p {
    margin: 0 0 10px 0;
}

a.woocommerce-button.button.view {
    background: #012a7a;
    color: #ffff;
}

/* =========================
   Global Layout
========================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================
   Header
========================= */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
      position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

/* Logo */
.header-left img {
  max-height: 70px;
  width: auto;
}

/* Menu */
.header-right .main-menu {
    list-style: none;
    margin: 0;
    padding: 0px;
    display: flex;
    gap: 24px;
}

.header-right .main-menu li {
  margin: 0;
}

.header-right .main-menu a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
}

.header-right .main-menu a:hover {
  color: #2f3a5a;
}

/* =========================
   Hero Section
========================= */



.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg-video,
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
}


.hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1e1e1e;
  margin-top: 0;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 32px;
}

.hero-button {
  display: inline-block;
  background: #2f3a5a;
  color: #ffffff;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.hero-button:hover {
  background: #1f2942;
}

/* =========================
   Stand Out Section
========================= */

.standout-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Top header row */
.standout-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0px;
  margin-bottom: 48px;
}

.standout-header-left {
  flex: 0.8;
}

.standout-header-right {
  flex: 1;
}

.standout-title {
  font-size: 36px;
  font-weight: 600;
  color: #1e1e1e;
  margin: 0;
}

.standout-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* Cards grid */
.standout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card base */
.standout-card {
  position: relative;
  background: #f7f7f7;
  border-radius: 16px;
  padding: 32px 28px 72px 28px;
  min-height: 320px;
}

/* Card content */
.standout-card-content {
  display: block;
}

/* Title */
.standout-card-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #1e1e1e;
  position: relative;
  padding-bottom: 12px;
}

/* Divider line under title */
.standout-card-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #1e1e1e;
  opacity: 0.6;
}

/* Description */
.standout-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* Icon bottom-right */
.standout-card-icon {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 40px;
  height: 40px;
}

.standout-card-icon img {
  width: 100%;
  height: auto;
}

/* =========================
   Featured Products
========================= */

.featured-products-section {
  padding: 0px 0 80px 0;
  background: #ffffff;
}

.featured-products-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 48px;
  color: #1e1e1e;
  margin-top: 0;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.featured-product-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: box-shadow 0.2s ease;
}

.featured-product-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.featured-product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.featured-product-name {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

.featured-product-name a {
  color: #1e1e1e;
  text-decoration: none;
}

.featured-product-name a:hover {
  color: #2f3a5a;
}



/* =========================
   WooCommerce Layout Fix
========================= */

.woocommerce-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.woocommerce-account .woocommerce {
  display: flex;
  gap: 0px;
  margin-top: 60px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 240px;
}

.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1;
  margin: 0 0 0 40px;
}

.woocommerce-MyAccount-content a {
    color: #012a7a;
    text-decoration: none;
}

.woocommerce-cart table,
.woocommerce-checkout table {
  width: 100%;
}

/* =========================
   EXPANDING ACCESS SECTION
   ========================= */

.impact-section {
  padding: 0px 20px 0 20px;
}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #34406b;
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  color: #ffffff;
}

/* Heading */
.impact-title {
  font-family: 'Mukta', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  margin: 0;
}

/* Description */
.impact-description {
  font-family: 'Mukta', sans-serif;
  font-size: 16px;
  max-width: 760px;
  margin: 0 auto 50px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Cards layout */
.impact-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card */
.impact-card {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 40px 20px;
  width: 280px;
}

/* Number */
.impact-value {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Label */
.impact-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

/* =========================
   Innovation Section
========================= */

.innovation-section {
  padding: 80px 0 80px 0;
  background: #ffffff;
}

.innovation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.innovation-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 70px;
  color: #111;
  margin-top: 0;
}

.innovation-grid {
  display: flex;
  align-items: stretch;
  gap: 60px;
}

/* Left Image */
.innovation-image {
  flex: 0 0 50%;
  position: relative;
}

.innovation-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}

/* Decorative shape (matches design) */
.innovation-image::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 80%;
  height: 80%;
  border-radius: 28px;
  background: #2f3b63;
  z-index: -1;
}

/* Right Content */
.innovation-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.innovation-card {
  background: #f7f7f7;
  border-radius: 18px;
  padding: 20px 32px;
  text-align: center;
}

.innovation-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
  margin: 0;
}

.innovation-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* =========================
   Benefits Section
========================= */

.benefits-section {
  background: #ffde59;
  padding: 80px 0;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.benefits-grid {
  display: flex;
  gap: 80px;
}

/* LEFT */
.benefits-left {
  flex: 0 0 45%;
}

.benefits-left h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #000;
  margin: 0;
}

.benefits-list {
  list-style: disc;
  padding-left: 20px;
}

.benefits-list li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #000;
}

/* RIGHT */
.benefits-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefits-block h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
  margin: 0;
}

.benefits-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #000;
  max-width: 520px;
  margin: 0;
}

/* =========================
   FAQ Section
========================= */

.faq-section {
  padding: 80px 0 0;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 50px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 26px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
}

/* =========================
   Contact Section
========================= */

/* =========================
   Contact Section Layout
========================= */

.contact-section {
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: #0a070708;
    margin-top: 80px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  max-width: 1400px;
  margin-left: auto;
}

/* LEFT SIDE */
.contact-left {
    padding: 40px 60px 40px 80px;
}

.contact-left h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  margin: 0;
}

.contact-left p {
  color: #4b5563;
  margin-bottom: 0px;
  padding: 0;
  margin-top: 0;
}

.contact-form {
    margin: 20px 0 0;
}

/* RIGHT SIDE */
.contact-right {
  position: relative;
  background-color: #2f3b63;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  color: #ffffff;
  padding: 60px;
  border-radius: 40px 0 0 40px;

  min-height: 520px;
}

/* Decorative circles */
.contact-right::before,
.contact-right::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.contact-right:before {
    width: 300px;
    height: 300px;
    bottom: 15px;
    right: -57px;
}

.contact-right:after {
    width: 200px;
    height: 200px;
    top: 200px;
    right: -26px;
}

/* Text */
.contact-right h3 {
  font-size: 26px;
  margin-bottom: 8px;
  margin: 0;
}

.contact-info-sub {
  opacity: 0.8;
  margin-bottom: 30px;
  margin: 0;
}

/* Info list */
ul.contact-info {
    margin: 80px 0 0;
    list-style: none;
    padding: 0;
}

ul.contact-info li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
}

.contact-info-list .icon {
  font-size: 18px;
}



/* =========================
   Contact Form 7 Styling
========================= */

.contact-form .wpcf7 {
  width: 100%;
}

.contact-form .cf7-row {
  margin-bottom: 14px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: border 0.2s ease;
}

.contact-form textarea {
  height: 80px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2f3b63;
}

/* Submit button */
.contact-form input[type="submit"] {
  width: 100%;
  background: #2f3b63;
  color: #ffffff;
  border: none;
  padding: 15px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease;
}

.contact-form input[type="submit"]:hover {
  background: #1f2947;
}

/* Validation */
.wpcf7-not-valid {
  border-color: #dc2626;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
}

/* Success / error message */
.wpcf7-response-output {
  margin-top: 15px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
}

/* =========================
   Footer
========================= */

.site-footer {
  background: #f9fafb;
  border-radius: 30px 30px 0 0;
  padding: 40px 0 0;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 60px;
}

/* Brand */
.footer-logo {
  max-width: 190px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 320px;
  color: #4b5563;
  line-height: 1.6;
}

/* Headings */
.site-footer h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

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

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

.footer-menu a {
  text-decoration: none;
  color: #374151;
  font-size: 14px;
}

.footer-menu a:hover {
  text-decoration: underline;
}

/* Contact */
.footer-email {
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111827;
  font-size: 14px;
}

/* Bottom */
.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 13px;
  color: #374151;
}

/* =====================================================
   WOOCOMMERCE SHOP / ARCHIVE (CLEAN & ISOLATED)
   Applies to:
   - Shop page
   - Category pages
   - Tag pages
===================================================== */

/* Wrapper spacing */
.woocommerce-shop .site-main,
.woocommerce-archive .site-main {
  padding: 80px 0;
}

/* Result count + sorting row */
.woocommerce-shop .woocommerce-result-count,
.woocommerce-archive .woocommerce-result-count {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
}

.woocommerce-shop .woocommerce-ordering select,
.woocommerce-archive .woocommerce-ordering select {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

/* PRODUCT CARD */
.woocommerce-shop ul.products li.product,
body.single-product ul.products li.product  {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
   display: flex;
  flex-direction: column;
  height: 100%;
}

.woocommerce-shop ul.products li.product:hover,
.woocommerce-archive ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

/* PRODUCT IMAGE */
.woocommerce-shop ul.products li.product img,
.woocommerce-archive ul.products li.product img {
  width: 100%;
  max-width: 140px;
  height: auto;
  margin: 0 auto 18px !important;
  object-fit: contain;
  display: block;
}

/* PRODUCT TITLE */
.woocommerce-shop ul.products li.product h2.woocommerce-loop-product__title,
.woocommerce-archive ul.products li.product h2.woocommerce-loop-product__title,
body.single-product ul.products li.product h2.woocommerce-loop-product__title
{
  font-family: 'Mukta', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1e1e1e;
  margin: 10px 0 6px;
  line-height: 1.4;
  min-height: 85px;
}

/* PRICE */
.woocommerce-shop ul.products li.product .price,
.woocommerce-archive ul.products li.product .price,
body.single-product ul.products li.product .price
{
  font-size: 16px;
  font-weight: 700;
  color: #1d2b5a;
  margin-bottom: 18px;
}

/* ADD TO CART BUTTON */
.woocommerce-shop ul.products li.product a.button,
.woocommerce-archive ul.products li.product a.button,
body.single-product ul.products li.product a.button
{
  display: inline-block;
  width: 100%;
  padding: 14px 0;
  border-radius: 999px;
  background: #2f3b63;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: background 0.25s ease;
  margin-top: auto;
}

.woocommerce-shop ul.products li.product a.button:hover,
.woocommerce-archive ul.products li.product a.button:hover {
  background: #1f2947;
}

/* REMOVE UNWANTED DEFAULT ELEMENTS */
.woocommerce-shop .star-rating,
.woocommerce-archive .star-rating,
.woocommerce-shop span.onsale,
.woocommerce-archive span.onsale {
  display: none;
}

/* =====================================
   SINGLE PRODUCT – PREMIUM DESIGN
===================================== */

/* Wrapper */
.single-product-page {
  padding: 80px 0 40px;
}

/* LEFT – Image */
.woocommerce div.product div.images {
  background: #f6f7f9;
  border-radius: 28px;
  padding: 40px;
}

.woocommerce div.product div.images img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 20px;
}

/* Zoom icon */
.woocommerce-product-gallery__trigger {
  top: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* RIGHT – Summary */
.woocommerce div.product div.summary {
  padding-top: 10px;
}

/* Breadcrumb */
.woocommerce-breadcrumb {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 18px;
}

/* Title */
.woocommerce div.product .product_title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
      color: #03336f;
}

/* Price */
.woocommerce div.product p.price {
  font-size: 26px;
  font-weight: 700;
  color: #1d4ed8;
  margin-bottom: 0px;
  margin-top: 0;
}

/* Description */
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 30px;
}

/* Quantity + Cart */
.woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.woocommerce div.product form.cart input.qty {
  width: 70px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  text-align: center;
  font-size: 15px;
}

/* Add to cart button */
.woocommerce div.product form.cart button {
  background: #2f3b63;
  color: #ffffff;
  padding: 14px 42px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: all 0.25s ease;
}

.woocommerce div.product form.cart button:hover {
  background: #1f2947;
  transform: translateY(-1px);
}

/* Category */
.woocommerce div.product .product_meta {
  font-size: 14px;
  color: #6b7280;
  margin-top: 12px;
  display: none;
}

.woocommerce div.product .product_meta a {
  color: #2563eb;
  text-decoration: none;
}

/* =====================================
   RELATED PRODUCTS – CLEAN GRID
===================================== */

.related.products {
  margin-top: 20px;
  display: inline-block;
  width: 100%;
}

.related.products h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.woocommerce-tabs.wc-tabs-wrapper {
  display: none;
}

body.single-product section.related.products ul.products li.product {
  margin-bottom: 0;
}

.woocommerce-shop .site-main, .woocommerce-archive .site-main {
    padding: 80px 0 0;
}


.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
    font-size: .92em;
    color: #767676;
    max-width: 1200px;
    margin: 0 135px auto;
    display: none;
    margin-bottom: 40px;
}

/* ===============================
   SINGLE PRODUCT – VARIATIONS UI
================================ */

/* Price */
.single-product .woocommerce div.product p.price,
.single-product .woocommerce div.product span.price {
  font-size: 28px;
  font-weight: 700;
  color: #1d4ed8;
  margin-bottom: 24px;
}

/* Variations wrapper */
.single-product form.variations_form {
  margin-top: 10px;
}

/* Each variation row */
.single-product table.variations {
  border: none;
  margin-bottom: 20px;
}

.single-product table.variations tr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

/* Label (Strength) */
.single-product table.variations label {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  background: #eef2ff;
  padding: 6px 10px;
  border-radius: 8px;
}

/* Select dropdown */
.single-product table.variations select {
  min-width: 220px;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  background: #ffffff;
  cursor: pointer;
}

/* Clear link */
.single-product .reset_variations {
  font-size: 13px;
  color: #2563eb;
  margin-left: 10px;
  text-decoration: none;
}

.single-product .reset_variations:hover {
  text-decoration: underline;
}

/* Quantity + Button row */
.single-product .woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

/* Quantity input */
.single-product .woocommerce div.product form.cart input.qty {
  width: 70px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  text-align: center;
  font-size: 15px;
}

/* Add to cart button */
.single-product .woocommerce div.product form.cart button.single_add_to_cart_button {
  background: #2f3b63;
  color: #ffffff;
  padding: 14px 42px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: all 0.25s ease;
}

.single-product .woocommerce div.product form.cart button.single_add_to_cart_button:hover {
  background: #1f2947;
  transform: translateY(-1px);
}

/* Hide "Choose an option" price flicker spacing */
.single-product .woocommerce-variation {
  margin-bottom: 12px;
}

.single-product div.product form.cart {
    display: block;
  
}


.product-research-content {
  padding: 80px 0;
  border-top: 1px solid #e5e7eb;
}

.product-research-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.research-block {
  margin-bottom: 40px;
}

.spec-list,
.research-notes {
  padding-left: 20px;
}

.spec-list li,
.research-notes li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.research-block.regulatory {
  background: #f9fafb;
  padding: 24px;
  border-radius: 12px;
  font-size: 14px;
}

.product-acf-description {
  margin: 10px 0 0 0;
}

.product-acf-description h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0px;
  margin-top: 0;
      color: #001f67;
}

.acf-block p {
    margin: 0;
    font-size: 16px;
}

.acf-block ul li {
  font-size: 16px;
}

.acf-block strong {
    font-size: 16px;
}

.product-acf-description .acf-block {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.7;
}

.product-acf-description ul {
  padding-left: 18px;
  margin: 0;
}

.product-acf-description li {
  margin-bottom: 6px;
}

.product-acf-description .regulatory {
  background: #f9fafb;
  padding: 16px;
  border-radius: 10px;
  font-size: 13px;
}

/* ==============================
   CLASSIC CART – FIXED LAYOUT
============================== */

.woocommerce-cart .woocommerce {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT: Cart table */
.woocommerce-cart form.woocommerce-cart-form {
  flex: 0 0 65%;
}

/* RIGHT: Cart totals */
.woocommerce-cart .cart-collaterals {
  flex: 0 0 35%;
}

/* Remove old float behavior */
.woocommerce-cart .cart-collaterals,
.woocommerce-cart .cart_totals {
  float: none !important;
  width: 100% !important;
}

/* Cart table cleanup */
.woocommerce-cart table.shop_table {
  border: none;
  border-collapse: separate;
  border-spacing: 0 20px;
}

/* Each row as card */
.woocommerce-cart table.shop_table tr.cart_item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Cell padding */
.woocommerce-cart table.shop_table td,
.woocommerce-cart table.shop_table th {
  padding: 20px;
  vertical-align: middle;
}

/* Product image */
.woocommerce-cart .product-thumbnail img {
  width: 80px;
  border-radius: 12px;
}

/* Product name */
.woocommerce-cart .product-name a {
  font-weight: 600;
  color: #111827;
  text-decoration: none;
}

/* Price + subtotal */
.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal {
  font-weight: 600;
  color: #1d2b5a;
}

/* Quantity */
.woocommerce-cart input.qty {
  width: 70px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  text-align: center;
}

/* Remove (X) */
.woocommerce-cart a.remove {
  color: #dc2626 !important;
  font-size: 18px;
}

/* Coupon row */
.woocommerce-cart .coupon {
  display: flex;
  gap: 12px;
  align-items: center;
}

.woocommerce-cart .coupon input {
  flex: 1;
  height: 42px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

/* Update cart button */
.woocommerce-cart button[name="update_cart"] {
  background: #2f3b63;
  color: #fff;
  border-radius: 999px;
  padding: 12px 28px;
  border: none;
}

/* ==============================
   CART TOTALS BOX
============================== */

.woocommerce-cart .cart_totals {
  background: #f9fafb;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.woocommerce-cart .cart_totals h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.woocommerce-cart .cart_totals table {
  width: 100%;
  border: none;
}

.woocommerce-cart .cart_totals th,
.woocommerce-cart .cart_totals td {
  padding: 12px 0;
  border: none;
}

/* Checkout button */
.woocommerce-cart .wc-proceed-to-checkout a {
  display: block;
  background: #2f3b63;
  color: #fff;
  padding: 16px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.wpcf7-not-valid-tip {
    font-size: 12px;
    color: #dc2626;
    margin-top: 4px;
    position: absolute;
    top: -14px;
    right: 0;
    background: red;
    color: #fff;
    padding: 0 20px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.header-cart {
  position: relative;
}

.cart-link {
  position: relative;
  text-decoration: none;
  font-size: 22px;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #e63946;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  line-height: 1;
  min-width: 18px;
  text-align: center;
}

/* =========================
   HEADER BASE
========================= */
.site-header {
  position: relative;
  z-index: 999;
}

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

/* =========================
   HAMBURGER BUTTON
========================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
  display: block;
  transition: all 0.3s ease;
}





/* Mobile */
@media (max-width: 768px) {
  .hero-section {
    background-position: center top;
    background-size: contain;
    padding: 40px 0;
  }

  .hero-title {
    font-size: 36px;
  }

    .standout-header {
    flex-direction: column;
  }

  .standout-grid {
    grid-template-columns: 1fr;
  }

    .featured-products-grid {
    grid-template-columns: repeat(1, 1fr);
  }

    .impact-container {
    padding: 40px 20px;
  }

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

  .impact-card {
    width: 100%;
    max-width: 320px;
  }

   .innovation-grid {
    flex-direction: column;
  }

  .innovation-image::before {
    display: none;
  }

  .innovation-heading {
    font-size: 32px;
  }

  .benefits-grid {
    flex-direction: column;
    gap: 40px;
  }

  .benefits-left h2 {
    font-size: 32px;
  }

    .contact-wrapper {
    grid-template-columns: 1fr;
  }

   .woocommerce-shop ul.products,
  .woocommerce-archive ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .woocommerce-shop ul.products li.product,
  .woocommerce-archive ul.products li.product {
    padding: 18px;
  }

    .single-product .woocommerce div.product {
    flex-direction: column;
    gap: 40px;
  }

  .single-product .woocommerce div.product div.images,
  .single-product .woocommerce div.product div.summary {
    max-width: 100%;
  }

  .single-product .woocommerce div.product .product_title {
    font-size: 28px;
  }

  .single-product .woocommerce div.product p.price {
    font-size: 20px;
  }
    .woocommerce-cart .woocommerce {
    flex-direction: column;
  }

  .woocommerce-cart form.woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals {
    flex: 100%;
  }

    .single-product table.variations tr {
    flex-direction: column;
    align-items: flex-start;
  }

  .single-product table.variations select {
    width: 100%;
  }

  .single-product .woocommerce div.product form.cart {
    flex-direction: column;
    align-items: stretch;
  }

  .single-product .woocommerce div.product form.cart button {
    width: 100%;
  }


  /* Reset slick dots container */
  .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
  }

  /* Each dot */
  .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
  }

  /* Hide default number text */
  .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
  }

  /* Active dot */
  .slick-dots li.slick-active button {
    background: #000;
  }
	
	
	
	.footer-inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}




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

  .menu-toggle {
    display: flex;
  }

  .main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .main-navigation.active {
    display: block;
  }

  .main-menu {
    list-style: none;
    margin: 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .main-menu li a {
    text-decoration: none;
    font-size: 16px;
  }
}

/* ==============================
   MOBILE FIX
============================== */

@media (max-width: 992px) {
  .woocommerce-cart .woocommerce {
    flex-direction: column;
  }

  .woocommerce-cart form.woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals {
    flex: 100%;
  }
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 992px) {
  .main-navigation {
    display: block !important;
  }
}


@media (max-width: 1024px) {
  .featured-products-grid {
    grid-template-columns: 1fr !important;
  }

   .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .woocommerce-shop ul.products,
  .woocommerce-archive ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}