/* ============================================
   ALOBERRY THEME - Main Stylesheet
   ============================================ */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* ---------- CSS Variables ---------- */
:root {
  --color-primary: #044004;
  --color-primary-dark: #044004;
  --color-primary-light: #d4e8d0;
  --color-secondary: #044004;
  --color-accent: #6b9e3a;
  --color-gold: #c9a84c;
  --color-bg-light: #dce8db;
  --color-bg-cream: #f0f4ee;
  --color-bg-mint: #e8f0e6;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-white: #ffffff;
  --color-border: #e0e0e0;
  --color-login-blue: #3b5998;
  --color-feedback-green: #5a8f5a;
  --font-heading: "Inter", "Segoe UI", sans-serif;
  --font-body: "Open Sans", "Segoe UI", sans-serif;
  --font-accent: "Poppins", "Segoe UI", sans-serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}
.text-center {
  text-align: center;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: #fff;
  padding: 1.8rem;
  border-radius: 0.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
  line-height: 1.4;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-login {
  background-color: #599fa0;
  color: var(--color-white);
  padding: 8px 22px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.btn-login:hover {
  background-color: #2d4373;
}

.btn-join {
  background-color: #599fa0;
  color: var(--color-white);
  padding: 8px 22px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.btn-join:hover {
  background-color: var(--color-primary-dark);
}

.btn-feedback {
  background-color: #5a9ca2;
  color: var(--color-white);
  padding: 12px 30px;
  border-radius: 0;
  font-size: 15px;
}

.btn-feedback:hover {
  background-color: var(--color-primary-dark);
}

.btn-readmore {
  background-color: #27a14c;
  color: var(--color-white);
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 14px;
}

.btn-readmore:hover {
  background-color: var(--color-primary-dark);
}

.btn-cart {
  color: var(--color-white);
  padding: 8px;
  border-radius: 9px;
  font-size: 13px;
  width: 100%;
  max-width: max-content;
}

.btn-cart:hover {
  background-color: var(--color-primary-dark);
}

/* ============================================
   HEADER
   ============================================ */
body.home {
  background-color: #d1e3e3;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
}
.site-header .hrader-wrapper {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header-logo .logo-badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  border: 2px solid var(--color-primary-dark);
}

.header-logo .logo-badge sup {
  font-size: 10px;
}

.header-logo .custom-logo {
  max-height: 50px;
  width: auto;
}

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

.header-nav .nav-menu li a {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
  padding-bottom: 8px;
  text-wrap: auto;
}

.header-nav .nav-menu li a:hover,
.header-nav .nav-menu li.current-menu-item a {
  color: var(--color-primary);
}

.header-nav .nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}
.mega-row-prods a {
  padding: 3px 0;
}
.header-nav .nav-menu li a:hover::after,
.header-nav .nav-menu li.current-menu-item a::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions > .desktop-only + .desktop-only {
  margin-left: 2px;
}

/* ---------- Language Dropdown ---------- */
.language-selector {
  position: relative;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-btn {
  display: flex;
  align-items: stretch;
  background: var(--color-white);
  border: 1.5px solid var(--color-primary);
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-primary);
  height: 34px;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}

.lang-btn:hover {
  box-shadow: 0 0 0 2px rgba(74, 124, 89, 0.15);
}

.lang-current {
  display: flex;
  align-items: center;
  padding: 0 12px;
  white-space: nowrap;
  font-weight: 500;
}

.lang-divider {
  width: 1.5px;
  background: var(--color-primary);
  align-self: stretch;
  flex-shrink: 0;
}

.lang-chevron {
  display: flex;
  align-items: center;
  padding: 0 9px;
  font-size: 9px;
  line-height: 1;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--color-white);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-sm);
  list-style: none;
  margin: 0;
  padding: 4px 0;
  display: none;
  min-width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lang-dropdown.open .lang-menu {
  display: block;
}

.lang-item {
  display: block;
  width: 100%;
  padding: 7px 14px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
}

.lang-item:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.lang-item.active {
  color: var(--color-primary);
}

/* ---- Mobile language dropdown ---- */
.mobile-nav-actions .lang-dropdown {
  width: 100%;
}

.mobile-nav-actions .lang-btn {
  width: 100%;
  height: 46px;
  font-size: 14px;
  justify-content: space-between;
}

.mobile-nav-actions .lang-menu {
  width: 100%;
}

.mobile-nav-actions .lang-item {
  padding: 10px 16px;
  font-size: 14px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 18px;
  color: var(--color-text);
}

/* ---------- Mobile Navigation ---------- */
.mobile-nav {
  display: none;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.mobile-nav.active {
  display: block;
  max-height: 600px;
  padding: 16px 20px 20px;
}

.mobile-nav-menu {
  margin-bottom: 16px;
}

.mobile-nav-menu li {
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-menu li:last-child {
  border-bottom: none;
}

.mobile-nav-menu li a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li.current-menu-item a {
  color: var(--color-primary);
}

/* Mobile nav action buttons */
.mobile-nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  align-items: center;
}

.mobile-nav-actions .language-selector {
  width: 100%;
  margin-bottom: 4px;
}

.mobile-nav-actions .btn {
  flex: 1;
  text-align: center;
  min-width: 0;
  padding: 12px 16px;
  font-size: 14px;
}

.mobile-nav-actions .mobile-cart-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}

.mobile-nav-actions .mobile-cart-link:hover {
  color: var(--color-primary);
}

.mobile-nav-actions .mobile-cart-link .cart-count {
  position: static;
  display: inline-flex;
  width: 20px;
  height: 20px;
  font-size: 11px;
}

.btn-logout-mobile {
  background-color: transparent;
  color: #dc3545;
  border: 1px solid #dc3545;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  flex: 1;
}

.btn-logout-mobile:hover {
  background-color: #dc3545;
  color: var(--color-white);
}

/* Desktop-only utility */
.desktop-only {
  display: flex;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  background: #d1e3e3;
}
@media screen and (min-width: 1200px) {
  .home .site-header,
  .hero-section {
    padding: 0 5rem;
  }
}
.hero-slider {
  position: relative;
  width: 100%;
  /* height driven by the image aspect ratio via padding-top trick */
  padding-top: 40.25%; /* 600/1920 = 31.25% — adjust if your images differ */
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Clickable slide wrapper */
.hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-slide-content,
.hero-slide-overlay {
  display: none !important;
}

.hero-slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  z-index: 2;
  background: rgba(0, 0, 0, 0.1); /* Subtle overlay to improve legibility */
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.hero-description {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.hero-btn-wrap {
  margin-top: 20px;
}

.btn-hero {
  background-color: #2c5530; /* Specific green from screenshot */
  color: var(--color-white);
  padding: 12px 30px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.hero-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-nav-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgb(255 255 255 / 28%);
  cursor: pointer;
  transition: var(--transition);
  border: solid 1px #578d68;
}

.hero-nav-dot.active {
  background-color: var(--color-white);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(255 255 255 / 0%);
  color: var(--color-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 37px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-arrow.prev {
  left: 20px;
}

.hero-arrow.next {
  right: 20px;
}

/* ============================================
   TOP SELLING PRODUCTS
   ============================================ */
.top-selling-section {
  background-color: #d1e3e3;
  padding: 33px 0;
}
.hero-section-nav-dot {
  position: relative;
  padding: 33px 0;
  background: #d1e3e3;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-white);
  background-color: var(--color-primary);
  display: inline-block;
  padding: 12px 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 8px;
}

.section-header p {
  font-family: var(--font-accent);
  font-size: 14px;
  color: var(--color-text-light);
  font-style: italic;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.product-card {
  background-color: var(--color-white);
  border-radius: 46px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  padding: 18px;
  /* max-width: 344px; */
}
.product-card.no-bg {
  background: inherit;
  padding: 0;
  box-shadow: inherit;
}
.cat-log-download-img {
  background-color: var(--color-white);
  border-radius: 46px;
  padding: 21px;
}
.product-card h3 a {
  font-weight: 700;
  max-width: 162px;
  display: inline-block;
  color: #000;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}
.product-card .btn-cart {
  background-color: #599fa0;
  box-shadow: 1px 1px 5px #04040433;
}

.product-card:not(.no-bg):hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* "Europe Only" info button next to cart (home page product cards) */
.product-card-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.product-card-actions .btn-cart {
  flex: 0 1 auto;
}
.alo-product-info-btn {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  line-height: 0;
  box-shadow: 0 2px 6px rgba(4, 64, 4, 0.1);
}
.alo-product-info-btn svg {
  display: block;
  width: 18px;
  height: 18px;
}
.alo-product-info-btn:hover,
.alo-product-info-btn:focus-visible {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(4, 64, 4, 0.22);
  outline: none;
}
.alo-product-info-btn::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #1f2421;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 20;
}
.alo-product-info-btn::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 6px solid transparent;
  border-top-color: #1f2421;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 20;
}
.alo-product-info-btn:hover::after,
.alo-product-info-btn:hover::before,
.alo-product-info-btn:focus-visible::after,
.alo-product-info-btn:focus-visible::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Coming Soon corner ribbon (home page product cards) */
.product-card.is-coming-soon {
  position: relative !important;
}
.product-card .alo-coming-soon-ribbon,
.alo-coming-soon-ribbon {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  display: block !important;
  width: 150px !important;
  height: 150px !important;
  /* overflow: hidden !important; */
  pointer-events: none !important;
  z-index: 10 !important;
  animation: alo-ribbon-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
@keyframes alo-ribbon-pop {
  from { transform: scale(0) translate(-30%, -30%); opacity: 0; }
  to   { transform: scale(1) translate(0, 0); opacity: 1; }
}

/* Main red triangle with gradient */
.product-card .alo-coming-soon-ribbon::before,
.alo-coming-soon-ribbon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 150px 150px 0 0;
  border-color: #e02020 transparent transparent transparent;
  filter:
    drop-shadow(0 6px 8px rgba(180, 10, 10, 0.35))
    drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15));
}

/* Subtle highlight stripe along the diagonal edge */
.product-card .alo-coming-soon-ribbon::after,
.alo-coming-soon-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 150px 150px 0 0;
  border-color: transparent transparent transparent transparent;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.08) 35%,
      transparent 50%,
      rgba(0, 0, 0, 0.12) 75%,
      rgba(0, 0, 0, 0.25) 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
}

/* Text container — centered on the diagonal midpoint */
.product-card .alo-coming-soon-ribbon > span,
.alo-coming-soon-ribbon > span {
  position: absolute !important;
  top: 57% !important;
  left: 57% !important;
  width: 200px !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-align: center !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  transform: translate(-50%, -50%) rotate(-45deg) translateY(-46px) !important;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.25) !important;
  z-index: 3 !important;
  background: transparent !important;
  padding: 0 !important;
}


/* Dashed accent line below text */
.product-card.is-coming-soon::after,
.product-card.is-coming-soon::before {
  /* unused — keep card alone */
}

/* Subtle pulse on the whole ribbon to draw attention */
.product-card.is-coming-soon:hover .alo-coming-soon-ribbon::before {
  filter:
    drop-shadow(0 8px 14px rgba(180, 10, 10, 0.5))
    drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

@media (max-width: 480px) {
  .product-card .alo-coming-soon-ribbon,
  .alo-coming-soon-ribbon {
    width: 120px !important;
    height: 120px !important;
  }
  .product-card .alo-coming-soon-ribbon::before,
  .alo-coming-soon-ribbon::before,
  .product-card .alo-coming-soon-ribbon::after,
  .alo-coming-soon-ribbon::after {
    border-width: 120px 120px 0 0;
  }
  .product-card .alo-coming-soon-ribbon > span,
  .alo-coming-soon-ribbon > span {
    width: 160px !important;
    font-size: 11px !important;
    letter-spacing: 0.08em !important;
    transform: translate(-50%, -50%) rotate(-45deg) translateY(-36px) !important;
  }
}

.product-card-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  /* background-color: var(--color-bg-cream); */
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-image img {
  max-height: 100%;
  max-width: 300px;
  width: 100%;
  object-fit: contain;
}

.product-card h3 {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  /*   text-transform: uppercase; */
  line-height: 1.4;
}

.product-card .product-meta {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.product-card .product-meta > span {
  background-color: #edffd7;
  border: solid 1px #858585;
  padding: 5px 6px;
  border-radius: 128px;
  font-size: 14px;
  color: #1c1c1c;
  font-weight: 600;
  text-align: center;
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}

/* Reset all inner WooCommerce price spans — no extra borders or backgrounds */
.product-card .product-meta > span span,
.product-card .product-meta > span bdi {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  width: auto;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  display: inline;
  flex: none;
}

.product-card .product-rating {
  color: #b5b5b5;
  font-size: 12px;
  margin-bottom: 12px;
  text-align: center;
}

.product-card .product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

/* ============================================
   PRODUCT FEATURES SECTION (Homepage)
   ============================================ */
.product-features-section {
  padding: 60px 0;
  background-color: #d1e3e3;
}

.product-features-section .section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--color-text);
  margin-bottom: 1px;
}

.features-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.features-list {
  flex: 1;
}

.features-list .feature-item {
  padding: 5px 0;
  font-size: 15px;
  color: #212121;
  font-weight: 600;
  border-bottom: 0;
}

.features-list .feature-item:last-child {
  border-bottom: none;
}

.features-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.features-images img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* ============================================
   NUTRITION FACTS SECTION (Homepage)
   ============================================ */
.nutrition-section {
  padding: 60px 0;
  background-color: #d1e3e3;
}

.nutrition-section .section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  text-align: center;
  color: #5b97a0;
  margin-bottom: 40px;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.nutrition-card {
  text-align: center;
  padding: 27px;
  background-color: var(--color-white);
  border-radius: 30px;
}
.nutrition-card .btn-readmore {
  background-color: #5a9ca2;
}

.nutrition-card-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto 16px;
  background-color: var(--color-white);
  box-shadow: 6px 5px 0 #5a9ca2b0;
}

.nutrition-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nutrition-card h3 {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0px;
  text-transform: lowercase;
}

.nutrition-card .scientific-name {
  font-size: 14px;
  font-style: italic;
  color: #000000;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: "Playfair Display", Georgia, serif;
}

/* ============================================
   ABOUT US PAGE
   ============================================ */
.about-page {
  padding: 0;
}

.about-header {
  background-color: #d1e3e3;
  padding: 22px 0px 50px 0;
}

.about-header h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 39px;
  color: #2a5c0c;
  margin-bottom: 0;
  font-weight: 500;
}

.about-header p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  color: #212121;
  max-width: 100%;
}

.about-mission {
  padding: 10px 0;
  background-color: var(--color-white);
}

.about-mission h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  margin-bottom: 0;
  font-weight: 500;
  color: #000;
}

.about-mission p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  color: #212121;
  max-width: 100%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 30px;
}
.benefits-grid .benefit-card:nth-child(even) {
  background-color: #f5eed6;
}
.benefits-grid .benefit-card:nth-child(odd) {
  background-color: #f9f5e5;
}

.benefit-card h3 {
  max-width: 126px;
}
.benefit-card {
  padding: 18px 20px;
  border-radius: 23px;
}

.benefit-card h3 {
  font-family: var(--font-accent);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 2px;
  display: inline;
  text-wrap: auto;
}

.benefit-card p {
  font-size: 15px;
  color: #000000c5;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 210px;
}
.about-vision {
  padding: 30px 0;
  padding-top: 12px !important;
  margin-top: 14px;
  border-top: solid 1px var(--color-border);
}

.about-vision h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  margin-bottom: 0;
  font-weight: 500;
  color: #000;
}

.about-vision p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  color: #212121;
  max-width: 100%;
}

.about-banner {
  width: 100%;
}

.about-banner img {
  width: 100%;
  border-radius: 0;
  display: block;
}

.about-banner-fallback {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
}

.about-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
}

.about-banner-subtitle {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
  color: var(--color-white);
}

/* ============================================
   PRODUCT FEATURES PAGE
   ============================================ */
.features-page-header {
  background-color: #d1e3e3;
  padding: 40px 0;
  text-align: center;
}

.features-page-header h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  color: #19640c;
  font-weight: 400;
  letter-spacing: 1px;
}

.features-section {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.features-section:last-child {
  border-bottom: none;
}
.text-bold {
  font-weight: 600;
  color: #000;
}
.features-section h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  margin-bottom: 0;
  color: var(--color-text);
  text-underline-offset: 6px;
  font-weight: 200;
}

.features-section .title {
  font-size: 14px;
  line-height: 1.8;
  color: #181818;
  font-weight: 600;
  margin-bottom: 3px;
  font-family: var(--font-heading);
}
.features-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #181818;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  text-align: justify;
}
.features-section {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.progress-box {
  width: 130px;
  height: 20px;
  background: #e5e5e5;
  box-sizing: border-box;
  display: flex;
}
.progress-fill,
.progress-fill-sm {
  height: 100%;
  background: #3b3b3b;
  border-right: solid 1px #626262;
}
.progress-fill-sm {
  width: 13px;
}
.progress-fill {
  width: 24px;
}
.features-section ul {
  margin-top: 7px;
}

.features-section ul li {
  font-size: 14px;
  padding: 1px 0;
  color: #242424;
  font-weight: 500;
  position: relative;
}

.features-section-image {
  margin: 20px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 400px;
}

.features-section-image img {
  width: 100%;
  max-width: 280px;
  height: 250px;
  object-fit: cover;
}
.features-two-col {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.features-two-col > * {
  flex: 1;
}

.lab-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.lab-table th,
.lab-table td {
  padding: 10px 16px;
  text-align: left;
  border: 1px solid var(--color-border);
  font-size: 14px;
}

.lab-table th {
  /*   background-color: var(--color-bg-light); */
  font-weight: 600;
}

/* ============================================
   COMPENSATION PLAN PAGE
   ============================================ */
.compensation-page {
  padding: 0;
}

/* Banner */
.compensation-header {
  background-color: #a5d6b2;
  padding: 58px 0 0;
  position: relative;
}
.compensation-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 50%;
  z-index: 0;
  background-color: var(--color-white);
  border-radius: 0;
}

.compensation-header h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin-bottom: 35px;
  text-transform: uppercase;
  margin-left: 50px;
}
.compensation-banner-img,
.compensation-header h1 {
  position: relative;
  z-index: 1;
}
.compensation-banner-img-wrap {
  width: 100%;
  max-width: calc(100% - 20px);
  margin: 0 auto;
}

.compensation-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Intro */
.compensation-intro {
  padding: 26px 0 18px;
  background-color: var(--color-white);
}

.compensation-intro > .container > p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: #212121;
  margin-bottom: 10px;
}

.compensation-benefits {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.compensation-benefits li {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.6;
  color: #212121;
  font-size: 15px;
  padding: 0;
  position: relative;
  margin-bottom: 0.7rem;
}

.compensation-benefits li::before {
  /* content: "•"; */
  position: absolute;
  left: 2px;
  color: #212121;
  font-size: 15px;
  line-height: 1.6;
}

/* Career Ladder */
.compensation-ladder {
  background-color: var(--color-white);
  padding: 36px 0 40px;
}

.compensation-ladder h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #7aaa20;
  line-height: 1.1;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.ladder-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #333;
  margin-bottom: 22px;
  max-width: 560px;
}

.ladder-subtitle strong {
  font-weight: 700;
}

.ladder-image-wrap {
  width: 100%;
}

.ladder-chart-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Closing */
.compensation-closing {
  background-color: var(--color-white);
  padding: 8px 0 50px;
}

.compensation-closing p {
  font-family: var(--font-body);
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.6;
  color: #212121;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .compensation-header h1 {
    font-size: 28px;
  }
  .compensation-ladder h2 {
    font-size: 22px;
  }
}

/* Logo partner sections */
.link-partners-logos {
  padding: 60px 0 80px;
  background: #fff;
}

.logo-section {
  margin-bottom: 56px;
}
.logo-section:last-child {
  margin-bottom: 0;
}

.logo-section-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: #19640c;
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 2px solid #a5d6b2;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Logo card */
.logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #f4f8f4;
  border: 2px solid #d4ecd8;
  border-radius: 12px;
  padding: 20px 16px 18px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.logo-card:hover {
  border-color: #19640c;
  box-shadow: 0 4px 16px rgba(25, 100, 12, 0.1);
}

.logo-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 2px dashed #a5d6b2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.logo-card-name {
  font-family: var(--font-body, sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: #2d4a2d;
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

.logo-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body, sans-serif);
  text-decoration: none;
  background: #19640c;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}
.logo-card-btn:hover {
  background: #0f4207;
  color: #fff;
}
.logo-card-btn--disabled {
  background: #c8deca;
  color: #7a9e7a;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 900px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .logo-section-title {
    font-size: 20px;
  }
}

/* ============================================
   INGREDIENTS / NUTRITION PAGE
   ============================================ */
.ingredients-page-header {
  background: #d1e3e3;
  padding: 40px 0;
  text-align: center;
}

.ingredients-page-header h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  color: #19640c;
  font-weight: 400;
  letter-spacing: 1px;
}

.ingredients-nav {
  background-color: #ffffff;
  padding: 12px 0;
  text-align: center;
  border-bottom: 0;
  max-width: 730px;
  margin: 0 auto;
}

.ingredients-nav a {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #212121;
  background: none;
  border: none;
  border-radius: 0;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ingredients-nav a:hover {
  color: var(--color-primary);
}

.ingredients-nav .nav-sep {
  color: #bbb;
  font-size: 12px;
  user-select: none;
}

.ingredients-wrapper {
  background: #fff;
}

.ingredient-section {
  padding: 48px 0;
  text-align: center;
  position: relative;
}
.ingredient-section::after {
  content: "";
  border-bottom: 1px solid var(--color-border);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 970px;
  height: 2px;
}
.ingredient-image {
  max-width: 320px;
  margin: 0 auto 20px;
}

.ingredient-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.ingredient-img-placeholder {
  width: 320px;
  height: 220px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #888;
  font-style: italic;
}

.ingredient-section h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0;
  line-height: 1;
  margin-bottom: 2px;
}

.ingredient-section .scientific-name {
  font-size: 13px;
  color: #292929;
  font-style: normal;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
}
.ingredient-section .scientific-name::after {
  content: "";
  width: 27px;
  height: 3px;
  border-radius: 4px;
  background-color: #212121;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.ingredient-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  max-width: 600px;
  margin: 0 auto 20px;
}

.ingredient-section p {
  font-size: 15px;
  line-height: 1.85;
  color: #1c1c1c;
  max-width: 990px;
  margin: 0 auto;
  text-align: left;
  font-weight: 600;
}

/* ============================================
   SHOP / E-SHOP PAGE
   ============================================ */
.shop-banner {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
}

.shop-banner img {
  width: 100%;
}

.shop-layout {
  display: flex;
  gap: 30px;
  padding: 30px 0;
}

.shop-sidebar {
  width: 260px;
  flex-shrink: 0;
}

.shop-sidebar .widget {
  margin-bottom: 30px;
}

.shop-sidebar .widget-title {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--color-primary);
  display: inline-block;
}

.categories-widget {
  background-color: var(--color-primary);
  border-radius: 0;
  overflow: hidden;
  border: solid 1px #dedede;
}

.categories-widget .widget-title {
  color: var(--color-white);
  padding: 12px 16px;
  margin-bottom: 0;
  border-bottom: none;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.categories-widget .widget-title i {
  font-size: 16px;
}

.categories-widget ul {
  background-color: var(--color-white);
}

.categories-widget ul li {
  border-bottom: 1px solid var(--color-border);
}

.categories-widget ul li a {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--color-text);
}

.categories-widget ul li a:hover {
  background-color: var(--color-bg-cream);
  color: var(--color-primary);
}

.categories-widget ul li .count {
  color: var(--color-text-muted);
  font-size: 13px;
}

.sidebar-category-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.sidebar-category-list li a {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--color-text);
}

.sidebar-category-list li a:hover {
  color: var(--color-primary);
}

.sidebar-category-list li a .count {
  color: var(--color-text-muted);
}

.price-filter {
  margin-bottom: 24px;
}

.price-filter .price-slider {
  width: 100%;
  height: 4px;
  background-color: var(--color-border);
  border-radius: 2px;
  position: relative;
  margin-bottom: 16px;
}

.price-filter .price-slider .active-range {
  position: absolute;
  height: 100%;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.price-filter .price-values {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-light);
}

.tags-widget .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags-widget .tag-cloud a {
  display: inline-block;
  padding: 6px 14px;
  background-color: var(--color-bg-cream);
  border-radius: 4px;
  font-size: 13px;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.tags-widget .tag-cloud a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.shop-content {
  flex: 1;
}

.shop-content--full {
  width: 100%;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: solid 1px #dedede;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .shop-toolbar {
    flex-wrap: wrap;
    gap: 12px;
  }
  .woocommerce-ordering select.orderby,
  .toolbar-right select {
    padding: 7px 10px;
  }
  .wrap-scn-mob {
    flex-wrap: wrap;
  }
}
.shop-toolbar .view-toggle {
  display: flex;
  gap: 8px;
}

.shop-toolbar .view-toggle button {
  width: 36px;
  height: 36px;
  color: #fff;
  border: 1px solid #ffffff;
  background-color: #585858;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.shop-toolbar .view-toggle button.active,
.shop-toolbar .view-toggle button:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.shop-toolbar .results-count {
  font-size: 14px;
  color: #000000;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .shop-toolbar .results-count {
    margin-left: 5rem;
  }
}
.shop-toolbar .sort-select {
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background-color: var(--color-white);
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.shop-product-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  text-align: start;
  padding: 0;
}

.shop-product-card .product-thumb {
  height: auto;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.shop-product-card .product-thumb img {
  max-height: 100%;
  object-fit: contain;
}

.shop-product-card h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.4;
  min-height: 36px;
}

.shop-product-card .price {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.shop-product-card .rating {
  color: var(--color-gold);
  font-size: 12px;
  margin-bottom: 4px;
}

.shop-product-card .review-count {
  font-size: 12px;
  color: var(--color-text-muted);
}

.shop-pagination-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
  border-top: solid 1px #dedede;
  padding-top: 1.5rem;
}

.shop-pagination-nav .page-nav,
.shop-pagination-nav .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 14px;
  /* border: 1px solid var(--color-border); */
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #141414;
  background-color: var(--color-white);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.shop-pagination-nav .page-nav:hover,
.shop-pagination-nav .page-numbers:not(.current):not(.dots):hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.shop-pagination-nav .page-numbers.current {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.shop-pagination-nav .page-numbers.dots {
  border-color: transparent;
  background: none;
  cursor: default;
}

.shop-pagination-nav .page-nav.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================
   DISTRIBUTOR APPLICATION PAGE
   ============================================ */

/* ---- Distributor register checkbox highlight ---- */
.dist-reg-checkbox {
  margin-top: 8px;
  padding: 14px 16px;
  background-color: var(--color-bg-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.dist-reg-checkbox label {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-primary);
}

/* ---- Selectable product cards (radio) ---- */
.reg-product-selectable {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.reg-product-selectable input[type="radio"] {
  display: none;
}

.reg-product-select-indicator {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--color-primary);
  font-size: 20px;
}

.reg-product-selectable.selected {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(74, 124, 89, 0.25);
}

.reg-product-selectable.selected .reg-product-select-indicator {
  display: block;
}

/* ---- Normal user subtitle ---- */
.join-user-subtitle {
  color: var(--color-text-light);
  margin-bottom: 28px;
  font-size: 15px;
}

.join-no-products {
  color: var(--color-text-muted);
  text-align: center;
  padding: 40px 0;
  font-size: 15px;
}

/* ---- Registration product grid ---- */
.reg-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.reg-product-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  transition: var(--transition);
}

.reg-product-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.reg-product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--color-bg-cream);
}

.reg-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reg-product-info {
  padding: 14px 14px 8px;
  flex: 1;
}

.reg-product-info h3 {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.reg-product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}

.reg-product-btn {
  display: block;
  margin: 8px 14px 14px;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
}

.distributor-page {
  background-color: #d1e3e3 !important;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.distributor-form-container {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 50px;
  max-width: 720px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.distributor-form-container h1 {
  font-family: var(--font-accent);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 30px;
}

.distributor-form-container h2 {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
  margin: 30px 0 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row.single {
  display: block;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  transition: var(--transition);
  background-color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group input::placeholder {
  color: var(--color-text-muted);
}

.form-hint {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 14px;
  color: var(--color-text);
  cursor: pointer;
}

.form-submit {
  text-align: center;
}

.form-submit .btn {
  min-width: 160px;
  padding: 12px 40px;
  font-size: 16px;
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ============================================
   LOGIN / SIGNUP PAGE
   ============================================ */
.login-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: var(--color-bg-cream);
}

.login-container {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 442px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.login-container h1 {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: var(--color-text);
}

.login-tabs {
  display: flex;
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.login-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  background-color: var(--color-white);
  color: var(--color-text);
  border: none;
  transition: var(--transition);
}

.login-tab.active {
  background-color: #3b5998;
  color: var(--color-white);
  background: #274482;
  background: linear-gradient(
    90deg,
    rgba(39, 68, 130, 1) 0%,
    rgba(35, 88, 204, 1) 100%
  );
  border-radius: 16px;
}

.login-form,
.signup-form {
  display: none;
}

.login-form.active,
.signup-form.active {
  display: block;
}

.login-form .form-group,
.signup-form .form-group {
  margin-bottom: 16px;
}

.login-form input,
.signup-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  font-size: 14px;
  font-family: var(--font-body);
  box-shadow: 1px 1px #dededebd;
}

.login-form input:focus,
.signup-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.forgot-password {
  display: block;
  font-size: 13px;
  color: #2269ff;
  margin-bottom: 20px;
}

.forgot-password:hover {
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 11px 14px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 15px;
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.login-alt {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--color-text-light);
}

.login-alt a {
  color: #1f58cf;
  font-weight: 600;
}

.login-message {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 13px;
  display: none;
}

.login-message.show {
  display: block;
}

.login-message.error {
  background-color: #f8d7da;
  color: #721c24;
}

.login-message.success {
  background-color: #d4edda;
  color: #155724;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  margin-top: auto;
}

.footer-trust {
  background-color: #d1e3e3;
  padding: 40px 0;
}

.trust-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  gap: 40px;
}

.payment-methods h3,
.contact-support h3 {
  font-family: var(--font-accent);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.payment-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.payment-icons img {
  height: 30px;
  max-width: 70px;
  width: auto;
}

.trust-badges {
  display: flex;
  gap: 30px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .trust-badge:not(:first-child) {
    padding-left: 19px;
    border-left: solid 2px #c3c3c3;
  }
}

.trust-badge i {
  font-size: 28px;
  color: #bfbfbf;
}

.trust-badge strong {
  display: block;
  font-size: 14px;
  color: #959595;
  font-weight: 800;
  line-height: 1;
}

.trust-badge span {
  font-size: 12px;
  color: #959595;
  font-weight: 600;
}

.contact-support {
  text-align: left;
}

.footer-links {
  padding: 40px 0;
  background-color: var(--color-white);
}

.footer-links-title {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
}

.footer-links-row {
  text-align: center;
  margin-bottom: 30px;
}

.footer-important-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-important-links a {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
}

.footer-important-links a:hover {
  color: var(--color-primary);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  font-size: 15px;
  color: #212121;
}

.footer-col ul li a:hover {
  color: var(--color-primary);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-text);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 18px;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--color-primary);
}

.app-buttons {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-badge img {
  height: 40px;
  width: auto;
}

.footer-copyright {
  background-color: #4e9c2e;
  padding: 16px 0;
  text-align: center;
}
.footer-copyright .footer-container {
  padding: 0;
  background-color: transparent;
}

.footer-copyright p {
  color: var(--color-white);
  font-size: 13px;
}

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */
.woocommerce ul.products li.product {
  text-align: center;
}

.woocommerce ul.products li.product a img {
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.woocommerce ul.products li.product .price {
  color: var(--color-primary);
  font-weight: 700;
}

.woocommerce .star-rating {
  color: var(--color-gold);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-accent) !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  transition: var(--transition) !important;
  border: none !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: var(--color-primary-dark) !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* ---------- Tablet: 1024px ---------- */
@media (max-width: 1024px) {
  .header-nav .nav-menu {
    gap: 16px;
  }

  .header-nav .nav-menu li a {
    font-size: 13px;
  }

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

  .nutrition-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Mobile: 768px ---------- */
@media (max-width: 992px) {
  .header-nav {
    display: none;
  }

  .desktop-only {
    display: none !important;
  }

  .header-container {
    height: 60px;
    padding: 0 16px;
  }

  .header-logo .logo-badge {
    font-size: 15px;
    padding: 6px 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cart {
    font-size: 20px;
    padding: 6px;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nutrition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .features-layout {
    flex-direction: column;
  }

  .features-two-col {
    flex-direction: column;
  }

  .shop-layout {
    flex-direction: column;
    gap: 10px;
    padding-top: 0;
  }
  .footer-trust {
    padding: 23px 15px;
  }
  .footer-container {
    padding: 1rem;
  }

  .shop-sidebar {
    width: 100%;
  }

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

  .trust-row {
    flex-direction: column;
  }

  .contact-support {
    text-align: left;
  }

  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  .footer-important-links a,
  .footer-links-title {
    text-align: left;
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-important-links {
    flex-direction: column;
    gap: 12px;
  }

  .distributor-form-container {
    padding: 30px 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 24px;
    padding: 10px 24px;
  }
}

@media (max-width: 650px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    max-width: 335px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 480px) {
  .shop-products-grid {
    grid-template-columns: 1fr;
  }

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

  .payment-icons {
    flex-wrap: wrap;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}
.py-1 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.py-2 {
  padding-top: 16px;
  padding-bottom: 16px;
}
.py-3 {
  padding-top: 24px;
  padding-bottom: 24px;
}
.py-4 {
  padding-top: 32px;
  padding-bottom: 32px;
}

/* ============================================================
   Contact Page – Modern Style
   ============================================================ */
.contact-page-wrap {
  background: #bfd0d0;
  min-height: 70vh;
  padding-bottom: 80px;
  padding-top: 2rem;
}

/* ---- Title ---- */
.contact-page-title {
  text-align: center;
  padding: 27px 16px 32px;
}
.contact-page-title h1 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: #215804;
  margin: 0;
  letter-spacing: -0.5px;
}

/* ---- Company Info ---- */
.contact-company-info {
  border-radius: 20px;
  padding: 0 12px;
  text-align: center;
  /* padding-bottom: 0; */
  margin-left: auto;
  margin-right: auto;
  /* text-align: center; */
  margin-bottom: 20px;
  /* background-color: #fff; */
  max-width: 768px;
}

.contact-form-card .cf7-form-grid {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

@media screen and (min-width: 768px) {
  .contact-form-card .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
    padding: 0 12px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form-card .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
    padding: 0 12px;
  }
}
.contact-form-card .col-12 {
  flex: 0 0 auto;
  width: 100%;
  padding: 0 12px;
}

.contact-company-info h2 {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.contact-company-info p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  color: #000000;
  max-width: 100%;
  margin-bottom: 6px;
}
.contact-company-info a {
  /* color: var(--color-primary); */
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}

/* ---- Form Card ---- */
.contact-form-card {
  background: #fff;
  border-radius: 58px;
  padding: 47px 37px 56px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  max-width: 768px;
}

.contact-form-heading {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  margin: 0 0 36px;
  line-height: 1.6;
}

/* ---- CF7 two-column grid (wrapper-div approach) ---- */
.contact-form-card .wpcf7 form {
  display: block;
}
.contact-form-card .wpcf7-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-bottom: 24px;
}
.contact-form-card .wpcf7-form-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-form-card .wpcf7-form-full {
  margin-bottom: 24px;
}

/* ---- Labels ---- */
.contact-form-card .wpcf7-form-label,
.contact-form-card .wpcf7 label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}

/* ---- Inputs, Select, Textarea ---- */
.contact-form-card .wpcf7 input[type="text"],
.contact-form-card .wpcf7 input[type="email"],
.contact-form-card .wpcf7 input[type="tel"],
.contact-form-card .wpcf7 select,
.contact-form-card .wpcf7 textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid #747474;
  border-radius: 0;
  padding: 16px 18px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-text);
  outline: none;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form-card .wpcf7 input[type="text"]:focus,
.contact-form-card .wpcf7 input[type="email"]:focus,
.contact-form-card .wpcf7 input[type="tel"]:focus,
.contact-form-card .wpcf7 select:focus,
.contact-form-card .wpcf7 textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}
.contact-form-card .wpcf7 textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form-card .wpcf7 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  color: #aaa;
  cursor: pointer;
}
.contact-form-card .wpcf7 select option:not(:first-child) {
  color: var(--color-text);
}

/* Control-wrap spans must not constrain width */
.contact-form-card .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* ---- Submit button ---- */
.contact-form-card .wpcf7 .wpcf7-submit-wrap,
.contact-form-card .wpcf7 [data-name="submit"] {
  text-align: center;
}
.contact-form-card .wpcf7 input[type="submit"] {
  display: inline-block;
  width: auto;
  min-width: 200px;
  background: #4e9c2e;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 17px 48px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 28px;
  transition:
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(74, 124, 89, 0.25);
}
.contact-form-card .wpcf7 input[type="submit"]:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.35);
}
.contact-form-card .wpcf7 input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(74, 124, 89, 0.2);
}

/* ---- Validation & Response ---- */
.contact-form-card .wpcf7-not-valid-tip {
  font-size: 11px;
  color: #d63638;
  margin-top: 5px;
}
.contact-form-card .wpcf7-response-output {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  border: none !important;
  text-align: center;
}
.contact-form-card .wpcf7-mail-sent-ok {
  background: #d4e8d0;
  color: var(--color-primary);
}
.contact-form-card .wpcf7-validation-errors,
.contact-form-card .wpcf7-mail-sent-ng,
.contact-form-card .wpcf7-spam-blocked {
  background: #fde8e8;
  color: #d63638;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .contact-form-card {
    padding: 32px 24px 40px;
  }
  .contact-form-card .wpcf7-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-form-card .wpcf7 input[type="submit"] {
    width: 100%;
    padding: 16px 32px;
  }
}
@media (max-width: 480px) {
  .contact-page-title h1 {
    font-size: 28px;
  }
  .contact-company-info {
    padding: 20px 16px;
  }
  .contact-form-card {
    padding: 24px 16px 32px;
  }
  .contact-form-heading {
    font-size: 16px;
  }
  .contact-form-card .wpcf7-form-row,
  .contact-form-card .wpcf7-form-full {
    margin-bottom: 16px;
  }
}

/* ── A2A Wire Transfer Payment Section ── */
.payment-wire-box {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 24px;
  margin-top: 12px;
}
.payment-wire-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.payment-wire-header i {
  color: #4caf50;
  font-size: 20px;
}
.payment-wire-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}
.payment-wire-amount {
  font-size: 15px;
  color: #333;
  margin-bottom: 18px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}
.payment-wire-amount strong {
  color: #4caf50;
  font-size: 18px;
  margin-left: 6px;
}
.payment-bank-details {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.bank-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}
.bank-detail-row:last-child {
  border-bottom: none;
}
.bank-detail-row span {
  color: #888;
  min-width: 140px;
}
.bank-detail-row strong {
  color: #1a1a2e;
  text-align: right;
  word-break: break-all;
}
.payment-receipt-input {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: 1px dashed #aaa;
  border-radius: 6px;
  background: #fafafa;
  font-size: 13px;
  cursor: pointer;
}
.payment-receipt-input:focus {
  outline: none;
  border-color: #4caf50;
  background: #f0fff0;
}
@media (max-width: 600px) {
  .payment-wire-box {
    padding: 16px;
  }
  .bank-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .bank-detail-row strong {
    text-align: left;
  }
}
.home-product-header {
  background: #8bd7c2;
  background: radial-gradient(
    circle,
    rgb(151 255 226) 0%,
    rgba(112, 173, 155, 1) 100%
  );
  padding: 2rem;
  padding-bottom: 6.7rem;
  border-radius: 56px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.fogger {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #1a1a2e2e;
  pointer-events: none;
  z-index: 1;
}
.home-product-header h2,
.home-product-header p {
  position: relative;
  z-index: 2;
}
.home-product-header::after,
.home-product-header::before {
  opacity: 0.3;
}
.home-product-header::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: -1%;
  max-width: 200px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;

  background-image: url("../../../../../wp-content/uploads/2026/04/alloberry-img-bf.png");
  background-position: left top;
  background-size: contain;
  background-repeat: no-repeat;
}
.home-product-header::after {
  content: "";
  position: absolute;
  top: 0%;
  right: -1%;
  max-width: 200px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url("../../../../../wp-content/uploads/2026/04/alloberry-img-af.png");
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
}
.home-product-header h2 {
  font-size: 2rem;
}
.home-product-header p {
  font-size: 1.4rem;
  font-weight: 400;
}

/* --- Products toolbar (pagination + sort) --- */
.products-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding: 0 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.products-toolbar-left,
.products-toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.products-pagination {
  display: flex;
  align-items: center;
  gap: 4px;
}
.products-pagination .page-num,
.products-pagination .page-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 5px;
  color: #ffffffe3;
  font-size: 17px;
  font-weight: 400 !important;
  border-radius: 4px;
  transition: var(--transition);
}
.products-pagination .page-num:hover,
.products-pagination .page-next:hover {
  background: rgba(255, 255, 255, 0.25);
}
.products-pagination .page-num.active {
  /* background: rgba(255, 255, 255, 0.35); */
  font-weight: 700;
}
.products-count {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  white-space: nowrap;
}
.products-sort-form {
  display: flex;
  align-items: center;
}
.sort-dropdown {
  -webkit-appearance: none;
  appearance: none;
  background-color: rgb(163 199 191);
  border: 1px solid rgb(255 255 255 / 0%);
  color: #fff;
  font-size: 13px;
  font-family: var(--font-body);
  padding: 5px 30px 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23ffffff' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  outline: none;
  transition: var(--transition);
}
.sort-dropdown:hover {
  background-color: rgba(255, 255, 255, 0.28);
}
.sort-dropdown option {
  background-color: #3a7a6a;
  color: #fff;
}

.home-product-header ~ .products-grid {
  margin-top: -4rem;
  position: relative;
  z-index: 4;
  max-width: 1088px;
  margin-left: auto;
  margin-right: auto;
}
.cat-log-download {
  background: #8bd7c2;
  background: linear-gradient(
    90deg,
    rgba(139, 215, 194, 1) 0%,
    rgba(112, 173, 155, 1) 100%
  );
  padding: 1rem;
  border-radius: 3rem;
  position: relative;
}
.cat-log-download::after,
.cat-log-download::before {
  content: "";
  position: absolute;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background-color: #fff;
}
.cat-log-download::before {
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}
.cat-log-download::after {
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cat-log-download img {
  max-width: 148px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0.5rem;
}
.cat-log-download p {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  max-width: 250px;
  margin: 0 auto;
}

.cat-log-download .download-btn {
  padding: 9px 18px;
  background-color: #8cc94a;
  color: #fff;
  border-radius: 15px;
  font-size: 20px;
  font-weight: 600;
  display: inline-flex;
  gap: 3px;
  margin-top: 12px;
  line-height: 1.3;
}
.product-card:has(.cat-log-download) {
  max-height: min-content;
  max-height: 293px;
}
.product-features-box {
  background-color: #bbdfdd;
  padding: 2rem;
}
.bg-gray-100 {
  background-color: #f8f8f8;
}
.btn-link {
  background: none;
  border: none;
  color: #0e4bff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}
/* hide menu language flag */
.lang-flag-wrap {
  display: none;
}
.submit-wrap {
  width: 100%;
  text-align: center;
  position: relative;
}
.submit-wrap .wpcf7-spinner {
  position: absolute;
  bottom: -28px;
  left: 46%;
  transform: translateX(-50%);
}
/* ===== Legal Pages (Privacy Policy & T&C) ===== */
.legal-page {
  padding: 60px 0 80px;
}
.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d6a2d;
  text-align: center;
  margin-bottom: 32px;
}
.legal-intro {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #333;
}
.legal-section {
  margin-bottom: 28px;
}
.legal-section h2 {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 9px;
}
.legal-section p,
.legal-section li {
  font-size: 15px;
  line-height: 1.85;
  color: #1c1c1c;
  max-width: 990px;
  margin: 0 auto;
  text-align: left;
  font-weight: 600;
}
.legal-section ul {
  padding-left: 0;
  list-style: none;
}
.legal-closing {
  font-size: 0.9rem;
  color: #333;
  margin-top: 32px;
}

/* ============================================
   NEWS & EVENTS PAGE
   ============================================ */

/* ---------- Column accent colours ---------- */
:root {
  --ne-creative: #e05428;
  --ne-product: #a3b637;
  --ne-sales: #968628;
  --ne-digital: #2e5fa8;
  --ne-quarter: #2c4e6e;
}

.news-events-page {
  background: var(--color-bg-cream);
}

/* ---------- Title ---------- */
.ne-title-section {
  padding: 40px 0 24px;
  background: #fff;
  text-align: center;
}

.ne-title-section h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #006000;
}
/* ---------- Grid section ---------- */
.ne-grid-section {
  padding: 41px 10px;
  background: #d1e3e3;
}

.ne-grid-wrap {
  background: var(--color-white);
  border-radius: 0;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Table layout ---------- */
.ne-table {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.ne-row {
  display: table-row;
}

/* Quarter label column */
.ne-quarter-label {
  display: table-cell;
  width: 52px;
  max-height: 106px;
  vertical-align: middle;
  padding: 6px 4px;
}

.ne-quarter-label span {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  background: var(--ne-quarter);
  color: #fff;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 0;
  height: 100%;
  min-height: 60px;
  padding: 12px 6px;
}

/* Column header cells */
.ne-col-head-cell {
  display: table-cell;
  padding: 8px 10px;
}
.ne-col-head {
  padding: 8px 10px;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

.ne-col-head.ne-creative {
  background: var(--ne-creative);
}
.ne-col-head.ne-product {
  background: var(--ne-product);
}
.ne-col-head.ne-sales {
  background: var(--ne-sales);
}
.ne-col-head.ne-digital {
  background: var(--ne-digital);
}

/* Body cells */
.ne-cell {
  display: table-cell;
  padding: 8px 10px;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}

.ne-body-row:last-child .ne-cell,
.ne-body-row:last-child .ne-quarter-label {
  border-bottom: none;
}

/* ---------- Item bars ---------- */
.ne-item {
  height: 40px;
  padding: 7px 11px;
  background: #dce0e4;
  border-radius: 0;
  margin-bottom: 6px;
  border-top: 3px solid transparent;
}

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

.ne-item-creative {
  border-top-color: var(--ne-creative);
}
.ne-item-product {
  border-top-color: var(--ne-product);
}
.ne-item-sales {
  border-top-color: var(--ne-sales);
}
.ne-item-digital {
  border-top-color: var(--ne-digital);
}

/* ---------- Product Banner ---------- */
.ne-banner {
  background:
    linear-gradient(
      to right,
      rgba(10, 30, 15, 0.82) 45%,
      rgba(10, 30, 15, 0.45) 100%
    ),
    var(--color-secondary);
  background-size: cover;
  background-position: center;
  min-height: 220px;
  display: flex;
  align-items: center;
}

.ne-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.ne-banner-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.ne-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.25;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .ne-title-section h1 {
    font-size: 24px;
  }

  .ne-grid-wrap {
    padding: 12px;
    overflow-x: auto;
  }

  .ne-table {
    min-width: 480px;
  }

  .ne-banner-inner {
    align-items: flex-start;
    text-align: left;
  }

  .ne-banner-title {
    font-size: 20px;
  }
  .nutrition-section .section-title {
    margin-bottom: 1rem;
  }
  .nutrition-section .section-title,
  .product-features-section .section-title,
  .home-product-header h2 {
    font-size: 22px;
  }
  .btn-readmore {
    background-color: #27a14c;
    padding: 7px 20px;
    border-radius: 8px;
    font-size: 13px;
  }
  .home-product-header p {
    font-size: 1.1rem;
  }
  .top-selling-section {
    padding: 2.1rem 0;
  }
  .product-features-section {
    padding: 0;
  }
  .cat-log-download p {
    font-size: 1.1rem;
  }
  .product-features-box {
    padding: 1.2rem;
  }
}

/* ============================================
   HELPDESK PAGE
   ============================================ */
.helpdesk-page {
  background-color: #d1e3e3;
  min-height: 80vh;
}

.helpdesk-title-bar {
  padding: 40px 20px 28px;
  text-align: center;
  background-color: #fff;
}

.helpdesk-title-bar h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #215804;
  margin: 0;
}

.helpdesk-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 45px;
  gap: 40px;
}

.helpdesk-card {
  background: var(--color-white);
  border-radius: 38px;
  padding: 34px 26px 34px;
  width: 100%;
  max-width: 550px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.helpdesk-card-logo {
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
}

.helpdesk-card-logo img,
.helpdesk-card-logo .custom-logo {
  max-height: 60px;
  width: auto;
}

.helpdesk-card-heading {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 3px;
}

.helpdesk-card-sub {
  font-size: 14px;
  color: #000000;
  margin-bottom: 28px;
  font-weight: 600;
}

.helpdesk-error {
  background: #f8d7da;
  color: #721c24;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 18px;
}

.helpdesk-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.helpdesk-field {
  text-align: left;
}

.helpdesk-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.helpdesk-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #c8d8d8;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  box-sizing: border-box;
}

.helpdesk-field input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(4, 64, 4, 0.1);
}

.helpdesk-field input::placeholder {
  color: #aaa;
}

.helpdesk-btn {
  margin-top: 8px;
  padding: 12px 43px;
  background-color: #3e8d16;
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.15s ease;
  align-self: center;
  min-width: 166px;
}

.helpdesk-btn:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.helpdesk-banner {
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.helpdesk-banner img {
  width: 100%;
  display: block;
}

@media (max-width: 480px) {
  .helpdesk-card {
    padding: 28px 20px 36px;
  }
}
.bg-white {
  background-color: #fff;
}
.table-meeter-bg {
  background-color: #dedede;
  max-width: 110px;
  border-radius: 2px;
}
.aloberry-container {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.aloberry-container2 {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
}
.aloberry-container p {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.5;
}

/* ── Nav Dropdown ── */
.header-nav .nav-menu li {
  position: relative;
}

.header-nav .nav-menu li.menu-item-has-children > a::after {
  content: " ▾";
  position: static;
  display: inline;
  width: auto;
  height: auto;
  background: none;
  font-size: 11px;
  line-height: 1;
  transition: none;
}

.header-nav .nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 9999;
  min-width: 190px;
  background: #fff;
  border-top: 3px solid var(--color-accent);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
}

.header-nav .nav-menu li.menu-item-has-children:hover > .sub-menu,
.header-nav .nav-menu li.menu-item-has-children:focus-within > .sub-menu,
.header-nav .nav-menu li.menu-item-has-children:hover > .mega-menu,
.header-nav .nav-menu li.menu-item-has-children:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ── Mega Menu ────────────────────────────────── */
.header-nav .nav-menu .mega-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 9999;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  min-width: 560px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
  overflow: hidden;
  padding: 8px;
}

.mega-row {
  display: flex;
  align-items: flex-start;
  padding: 2px 10px;
  gap: 0;
}

.mega-row-cat {
  min-width: 210px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.4;
  padding-top: 1px;
  flex-shrink: 0;
}

.mega-row-arrow {
  font-size: 10px;
  color: var(--color-primary);
  margin: -4px 10px 0 7px;
  flex-shrink: 0;
  line-height: 1.1;
  font-size: 25px;
}

.mega-row-prods {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-row-prods a {
  display: block;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  /*   text-transform: uppercase; */
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}

.mega-row-prods a:hover {
  color: var(--color-primary-dark, #2c5a20);
}

.mega-row-prods a::after {
  display: none !important;
}

.mega-divider {
  height: 2px;
  background: #afd5bb;
  margin: 0 0 5px 0;
}

.header-nav .nav-menu .sub-menu li {
  display: block;
}

.header-nav .nav-menu .sub-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  white-space: nowrap;
  transition:
    background 0.15s,
    color 0.15s,
    padding-left 0.15s;
}

.header-nav .nav-menu .sub-menu li a::after {
  display: none;
}

.header-nav .nav-menu .sub-menu li a:hover {
  background: var(--color-bg-light);
  color: var(--color-primary);
  padding-left: 24px;
}

/* ── Aloberry Products — Archive ── */
.ap-archive-wrap {
  background: #f8faf8;
  padding: 40px 0 64px;
}

.ap-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.ap-cat-tab {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 24px;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
  transition:
    background 0.2s,
    color 0.2s;
}

.ap-cat-tab:hover,
.ap-cat-tab.active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.ap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ap-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ap-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.ap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ap-card-img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--color-bg-light);
}

.ap-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ap-card:hover .ap-card-img {
  transform: scale(1.04);
}

.ap-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: var(--color-accent);
  opacity: 0.35;
}

.ap-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ap-card-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: 6px;
  display: block;
}

.ap-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
  line-height: 1.3;
}

.ap-card-title a {
  color: inherit;
  transition: color 0.15s;
}

.ap-card-title a:hover {
  color: var(--color-accent);
}

.ap-card-excerpt {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.ap-card-btn {
  display: inline-block;
  padding: 9px 20px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: auto;
}

.ap-card-btn:hover {
  background: var(--color-primary);
}

.ap-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--color-text-muted);
}

.ap-empty i {
  font-size: 64px;
  opacity: 0.25;
  display: block;
  margin-bottom: 16px;
}

.ap-empty p {
  font-size: 16px;
  margin-bottom: 20px;
}

.ap-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.ap-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ap-pagination .page-numbers {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  border: 2px solid transparent;
  transition: all 0.15s;
}

.ap-pagination .page-numbers.current,
.ap-pagination .page-numbers:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* ── Aloberry Products — Single ── */
.ap-breadcrumb {
  background: var(--color-bg-light);
  padding: 12px 0;
}

.ap-breadcrumb .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-light);
}

.ap-breadcrumb a {
  color: var(--color-text-light);
  transition: color 0.15s;
}

.ap-breadcrumb a:hover {
  color: var(--color-primary);
}

.ap-breadcrumb span {
  color: #aaa;
}

.ap-single-wrap {
  padding: 56px 0 72px;
}

.ap-single-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

.ap-single-img-col {
  position: sticky;
  top: 100px;
}

.ap-single-img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ap-single-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: var(--color-accent);
  opacity: 0.3;
}

.ap-single-content-col {
  padding-top: 8px;
}

.ap-single-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 14px;
  transition:
    background 0.15s,
    color 0.15s;
}

.ap-single-cat:hover {
  background: var(--color-accent);
  color: #fff;
}

.ap-single-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0 0 16px;
}

.ap-single-excerpt {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.ap-single-description {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 36px;
}

.ap-single-description p {
  margin-bottom: 14px;
}

.ap-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
  border-radius: 6px;
  padding: 10px 20px;
  transition:
    background 0.2s,
    color 0.2s;
}

.ap-back-link:hover {
  background: var(--color-accent);
  color: #fff;
}

.ap-related-wrap {
  background: var(--color-bg-light);
  padding: 56px 0 64px;
}

.ap-related-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 32px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ap-grid,
  .ap-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ap-single-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ap-single-img-col {
    position: static;
  }

  .ap-single-title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .ap-grid,
  .ap-grid-3 {
    grid-template-columns: 1fr;
  }

  .ap-cat-tabs {
    gap: 8px;
  }

  .ap-cat-tab {
    padding: 7px 14px;
    font-size: 12px;
  }
}

/* ── Parcel Tracking Page ── */
.parcel-tracking-wrap {
  background: #d1e4e3;
  padding: 48px 0 64px;
}

.parcel-tracking-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  /*   border: 1px solid #88a3c4; */
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  min-height: 400px;
}

.parcel-img-col {
  flex: 0 0 52%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: var(--color-bg-light);
  padding: 40px 32px; */
}

.parcel-img-circle {
  /* width: 300px;
  height: 300px;
  border-radius: 50%; */
  overflow: hidden;
  background: #c8dac8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parcel-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.parcel-img-icon {
  font-size: 90px;
  color: #4a7c59;
  opacity: 0.3;
}

.parcel-form-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9px;
  background: #fff;
}

.parcel-headline {
  font-family: var(--font-heading);
  font-size: 37px;
  font-weight: 800;
  color: #242424;
  line-height: 1.1;
  margin: 0 0 0px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.parcel-headline span {
  color: #509d2f;
}

.parcel-subheadline {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #282828;
  letter-spacing: 0.2px;
  margin: 20px 0 0 0;
  text-transform: uppercase;
}

.parcel-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #000000;
  margin-top: 6px;
}

.parcel-form input[type="text"] {
  display: block;
  width: 100%;
  max-width: 340px;
  border: 2px solid #bbb;
  border-radius: 0;
  padding: 10px 12px;
  font-size: 15px;
  color: #303030;
  outline: none;
  margin-bottom: 12px;
  margin-top: 4px;
  transition: border-color 0.2s;
}

.parcel-form input[type="text"]:focus {
  border-color: var(--color-accent);
}

.parcel-btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.parcel-btn-reset,
.parcel-btn-search {
  border-radius: 5px;
  padding: 10px 28px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  text-transform: uppercase;
}

.parcel-btn-reset {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.parcel-btn-reset:hover {
  background: var(--color-accent);
  color: #fff;
}

.parcel-btn-search {
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
}
.parcel-btn {
  background: #4f9c2e;
  color: #fff;
  border: 2px solid #4f9c2e;
  padding: 5px 10px;
  border-radius: 9px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 12px;
}

.parcel-btn-search:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

@media (max-width: 900px) {
  .parcel-tracking-card {
    flex-direction: column;
  }
  .parcel-img-col {
    flex: none;
    width: 100%;
    padding: 0;
    justify-content: start;
    align-items: start;
  }
  .parcel-img-circle {
    width: 220px;
    height: 220px;
  }
  .parcel-form-col {
    padding: 36px 28px 40px;
  }
  .parcel-headline {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .parcel-tracking-wrap {
    padding: 32px 0 48px;
  }
  .parcel-headline {
    font-size: 30px;
  }
  .parcel-subheadline {
    font-size: 16px;
  }
  .parcel-form input[type="text"] {
    max-width: 100%;
  }
}

/* ════════════════════════════════════════════════
   Aloberry Products — Brochure Single Layout
   ════════════════════════════════════════════════ */

/* ── Hero ── */
.apb-hero {
  width: 100%;
  min-height: 530px;
  background: #ffff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: stretch;
  position: relative;
}
.apb-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  background: white;
  clip-path: polygon(-45% 100%, 100% 3%, 100% 100%);
  z-index: 0;
}

.apb-hero-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  z-index: 3;
  position: relative;
}

.apb-hero-product {
  flex: 0 0 44%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.apb-bottle {
  max-width: 330px;
  max-height: 540px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.apb-bottle-placeholder {
  width: 220px;
  height: 300px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #fff;
  opacity: 0.4;
}

/* ── Hero right image ── */
.apb-hero-right-img {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apb-hero-right-img img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
}

/* ── Content section ── */
.apb-content {
  background: #fff;
  padding: 48px 24px 56px;
}

.apb-content-inner {
  max-width: 820px;
  margin: 0 auto;
}

.apb-title {
  font-family: var(--font-heading);
  font-size: 37px;
  font-weight: 700;
  color: #ce013c;
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: 0.1px;
}

.apb-title sup {
  font-size: 0.45em;
  vertical-align: super;
  font-weight: 700;
}

.apb-subtitle {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 400;
  color: #444;
  letter-spacing: 0.5px;
  /*   text-transform: uppercase; */
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffffff;
}

/* Body content typography */
.apb-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text);
}

.apb-body h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #585858;
  margin: 0;
}
.apb-content {
  position: relative;
}
@media screen and (min-width: 768px) {
  .bottom-left-image {
    position: absolute;
    left: 0;
    bottom: 10%;
  }
  .top-right-image {
    position: absolute;
    right: 0;
    top: 0;
  }
  .bottom-left-image img,
  .top-right-image img {
    max-width: 120px;
    width: 100%;
    opacity: 0.4;
  }
  .bottom-left-image img {
    transform: scaleX(-1);
  }
}
@media screen and (max-width: 767px) {
  .bottom-left-image,
  .top-right-image {
    display: none;
  }
}
.apb-body p {
  margin: 0 0 14px;
}

.apb-body ul {
  margin: 0 0 16px 0;
  padding: 0;
  list-style: none;
}

.apb-body ul li {
  padding: 3px 0 3px 20px;
  position: relative;
}

.apb-body ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  background: var(--color-accent);
  font-weight: 700;
  width: 6px;
  height: auto;
  aspect-ratio: 1/1;
}

.apb-body strong {
  font-weight: 700;
  color: #585858;
}

/* ── Footer bar ── */
.apb-footer-bar {
  background: #c21939;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 2rem;
  max-width: fit-content;
}

.apb-footer-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.apb-footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 4px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.apb-footer-badge sup {
  font-size: 0.6em;
  vertical-align: super;
}
.nv-text {
  max-width: 490px;
  font-size: 15px;
}
.usage-storage-content {
  max-width: 490px;
  font-size: 15px;
}
.usage-storage-content strong {
  font-size: 14px;
}
.product-ingredients-text {
  max-width: 480px;
  text-align: justify;
}
.product-benefits {
  max-width: 480px;
}
.product-benefits p {
  text-align: justify;
}
.product-title {
  text-transform: inherit !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .apb-hero-inner {
    flex-direction: column;
    align-items: center;
    padding: 32px 16px;
  }

  .apb-hero-product {
    flex: none;
    width: 100%;
  }

  .apb-bottle {
    max-height: 240px;
  }

  .apb-hero-right-img {
    flex: none;
    width: 100%;
  }

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

  .apb-footer-bar {
    padding: 16px 20px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .apb-footer-text {
    font-size: 13px;
  }
}
.trp-shortcode-overlay {
  padding: 0 !important;
}
.trp-shortcode-switcher {
  padding: 0 !important;
}
.wc-block-cart__submit-button {
  border: solid 1px #212121;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-name {
  font-size: 14px;
}

/* ============================================
   EVENT DETAIL PAGE (wp-events-manager)
   ============================================ */
.alo-event-page {
  background: var(--color-bg-cream);
  color: var(--color-text);
  padding-bottom: 64px;
}

/* Hero */
.alo-event-hero {
  background: linear-gradient(135deg, #044004 0%, #0a5c0a 55%, #6b9e3a 100%);
  color: var(--color-white);
  padding: 36px 0 56px;
  position: relative;
  overflow: hidden;
}
.alo-event-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 168, 76, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.alo-event-hero > .container {
  position: relative;
  z-index: 1;
}

.alo-event-breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.alo-event-breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
  transition: var(--transition);
}
.alo-event-breadcrumb a:hover {
  color: var(--color-gold);
}
.alo-event-breadcrumb .sep {
  opacity: 0.5;
}
.alo-event-breadcrumb .current {
  color: var(--color-white);
  font-weight: 500;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.alo-event-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.alo-event-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.alo-event-status.is-upcoming {
  background: rgba(201, 168, 76, 0.18);
  color: var(--color-gold);
  border: 1px solid rgba(201, 168, 76, 0.45);
}
.alo-event-status.is-upcoming::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.25);
  animation: alo-pulse 2s infinite;
}
.alo-event-status.is-expired {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
@keyframes alo-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.1); }
}

.alo-event-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.alo-event-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.alo-event-meta li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}
.alo-meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--color-gold);
  flex-shrink: 0;
}
.alo-meta-icon svg {
  width: 18px;
  height: 18px;
}

/* Hero countdown card */
.alo-event-hero-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(4, 64, 4, 0.25);
  color: var(--color-text);
}
.alo-countdown-card {
  text-align: center;
}
.alo-countdown-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.alo-countdown-timer.tp_event_counter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  background: transparent !important;
  padding: 0 !important;
}
.alo-countdown-timer .countdown-row,
.alo-countdown-timer .countdown-section,
.alo-countdown-timer > div {
  display: contents;
}
.alo-countdown-timer .countdown-section,
.alo-event-hero-card .countdown-section {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--color-bg-mint), var(--color-bg-cream));
  border: 1px solid var(--color-primary-light);
  border-radius: var(--radius-md);
  padding: 14px 8px;
  min-width: 70px;
  flex: 1 1 70px;
}
.alo-event-hero-card .countdown-amount {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.alo-event-hero-card .countdown-period {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-top: 6px;
  font-weight: 600;
}
.alo-countdown-expired {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #b54b4b;
  padding: 16px 0;
}
.alo-countdown-expired p {
  margin: 0;
  font-weight: 600;
}

/* Main layout */
.alo-event-main {
  margin-top: -32px;
  position: relative;
  z-index: 2;
}
.alo-event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: flex-start;
}

/* Body card */
.alo-event-body {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.alo-event-thumb {
  position: relative;
}
.alo-event-thumb img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: cover;
}
.alo-event-thumb-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}
.alo-thumb-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.alo-thumb-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.alo-event-thumb-fallback {
  height: 200px;
  background: linear-gradient(135deg, var(--color-bg-mint), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.alo-thumb-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--color-primary) 1px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.1;
}
.alo-thumb-fallback-icon {
  color: var(--color-primary);
  opacity: 0.4;
  position: relative;
}

/* Tabs */
.alo-event-tabs {
  padding: 0 32px 32px;
}
.alo-tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--color-border);
  margin: 8px 0 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
.alo-tab-nav::-webkit-scrollbar {
  display: none;
}
.alo-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  padding: 16px 18px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-light);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: var(--transition);
}
.alo-tab-btn svg {
  opacity: 0.7;
  transition: var(--transition);
}
.alo-tab-btn.is-active svg,
.alo-tab-btn:hover svg {
  opacity: 1;
}
.alo-tab-btn:hover {
  color: var(--color-primary);
}
.alo-tab-btn.is-active {
  color: var(--color-primary);
}
.alo-tab-btn.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px 3px 0 0;
}
.alo-tab-panel {
  display: none;
  animation: alo-fade 0.25s ease;
}
.alo-tab-panel.is-active {
  display: block;
}
@keyframes alo-fade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Content */
.alo-event-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
}
.alo-event-content p {
  margin: 0 0 16px;
}
.alo-event-content h2,
.alo-event-content h3 {
  color: var(--color-primary);
  margin: 28px 0 12px;
}
.alo-event-content ul,
.alo-event-content ol {
  margin: 0 0 16px 24px;
  list-style: disc;
}
.alo-event-content ol {
  list-style: decimal;
}
.alo-event-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Details list */
.alo-event-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.alo-event-details li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
}
.alo-event-details li:last-child {
  border-bottom: 0;
}
.alo-event-details li:nth-child(odd) {
  background: var(--color-bg-cream);
}
.alo-event-details .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.alo-event-details .label svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
.alo-event-details .value {
  color: var(--color-text);
  font-size: 15px;
}
.alo-event-details .alo-price {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 18px;
}
.alo-event-details a {
  color: var(--color-accent);
}

/* Location */
.alo-event-location .alo-location-address {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--color-bg-mint);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--color-primary);
  font-weight: 600;
}
.alo-event-location .event-google-map-canvas {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

/* Sidebar / Register card */
.alo-event-sidebar {
  position: sticky;
  top: 100px;
}
.alo-register-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.alo-register-price {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--color-border);
}
.alo-price-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
}
.alo-price-meta {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.alo-register-slots {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.alo-slots-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.alo-slots-count {
  color: var(--color-text-light);
  font-weight: 500;
}
.alo-slots-bar {
  height: 8px;
  background: var(--color-bg-mint);
  border-radius: 999px;
  overflow: hidden;
}
.alo-slots-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  border-radius: 999px;
  transition: width 0.4s ease;
}
.alo-slots-remaining {
  font-size: 13px;
  color: var(--color-text-light);
}
.alo-slots-remaining strong {
  color: var(--color-primary);
  font-weight: 700;
}

.alo-register-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.alo-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--color-primary);
  color: var(--color-white) !important;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-md);
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(4, 64, 4, 0.2);
}
.alo-btn-primary:hover {
  background: #033303;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(4, 64, 4, 0.28);
}
.alo-btn-calendar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: transparent;
  color: var(--color-primary) !important;
  border: 1.5px solid var(--color-primary-light);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}
.alo-btn-calendar:hover {
  background: var(--color-bg-mint);
  border-color: var(--color-primary);
}
.alo-btn-calendar img {
  display: none;
}
.alo-register-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: var(--color-bg-mint);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
}
.alo-register-hint {
  font-size: 13px;
  color: var(--color-text-light);
  text-align: center;
  margin: 0;
}
.alo-register-perks {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.alo-register-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-light);
}
.alo-register-perks svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Hide legacy register markup if plugin emits old structure elsewhere */
.alo-register-card .event-info,
.alo-register-card .wpems_g_calendar_url img {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .alo-event-layout {
    grid-template-columns: 1fr;
  }
  .alo-event-sidebar {
    position: static;
  }
  .alo-event-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .alo-event-hero {
    padding: 24px 0 48px;
  }
  .alo-event-tabs {
    padding: 0 20px 24px;
  }
  .alo-event-details li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .alo-event-thumb img {
    max-height: 260px;
  }
  .alo-register-card {
    padding: 22px 18px;
  }
  .alo-price-amount {
    font-size: 30px;
  }
  .alo-event-hero-card .countdown-amount {
    font-size: 26px;
  }
  .alo-event-hero-card .countdown-section {
    min-width: 60px;
    padding: 10px 6px;
  }
}

/* ---------- Event body extras ---------- */
.alo-event-highlights {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}
.alo-highlights-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 20px;
}
.alo-highlights-title svg {
  color: var(--color-gold);
  fill: var(--color-gold);
}
.alo-highlights-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.alo-highlights-grid li {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--color-bg-cream);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
}
.alo-highlights-grid li:hover {
  border-color: var(--color-primary-light);
  background: var(--color-bg-mint);
  transform: translateY(-2px);
}
.alo-highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(4, 64, 4, 0.08);
}
.alo-highlights-grid li > div strong {
  display: block;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.alo-highlights-grid li > div p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-text-light);
}

/* Location: directions button */
.alo-location-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  background: var(--color-primary);
  color: var(--color-white) !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.alo-location-directions:hover {
  background: #033303;
  transform: translateY(-2px);
}

/* Share bar */
.alo-event-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 32px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-cream);
}
.alo-share-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.alo-share-label svg {
  color: var(--color-primary);
}
.alo-share-buttons {
  display: flex;
  gap: 8px;
}
.alo-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.alo-share-btn:hover {
  transform: translateY(-2px);
  border-color: transparent;
  color: var(--color-white);
}
.alo-share-fb:hover { background: #1877f2; }
.alo-share-tw:hover { background: #000000; }
.alo-share-in:hover { background: #0a66c2; }
.alo-share-wa:hover { background: #25d366; }
.alo-share-copy:hover { background: var(--color-primary); }
.alo-share-copy.is-copied {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: transparent;
}

/* Sidebar section headings & extras */
.alo-side-heading {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
}
.alo-organizer-card,
.alo-help-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 22px 22px;
  margin-top: 18px;
}
.alo-organizer-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.alo-organizer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.alo-organizer-info strong {
  display: block;
  font-size: 15px;
  color: var(--color-text);
  font-weight: 700;
}
.alo-organizer-info span {
  font-size: 12px;
  color: var(--color-text-light);
}
.alo-organizer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--color-border);
}
.alo-organizer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-light);
  transition: var(--transition);
}
.alo-organizer-contact a:hover {
  color: var(--color-primary);
}
.alo-organizer-contact a svg {
  color: var(--color-primary);
}

.alo-help-card {
  text-align: center;
  background: linear-gradient(135deg, #044004 0%, #0a5c0a 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.alo-help-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.25), transparent 70%);
  border-radius: 50%;
}
.alo-help-card > * {
  position: relative;
  z-index: 1;
}
.alo-help-card svg {
  color: var(--color-gold);
  margin-bottom: 8px;
}
.alo-help-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--color-white);
}
.alo-help-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 14px;
  line-height: 1.55;
}
.alo-help-card a {
  display: inline-block;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 14px;
}
.alo-help-card a:hover {
  color: #ffd86b;
}

/* Related events */
.alo-related-events {
  margin-top: 56px;
}
.alo-related-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.alo-section-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.alo-related-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  letter-spacing: -0.01em;
}
.alo-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  transition: var(--transition);
}
.alo-view-all:hover {
  color: var(--color-accent);
}
.alo-view-all svg {
  transition: transform 0.3s ease;
}
.alo-view-all:hover svg {
  transform: translateX(4px);
}
.alo-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.alo-related-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(4, 64, 4, 0.06);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  color: inherit;
}
.alo-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(4, 64, 4, 0.14);
  border-color: var(--color-primary-light);
}
.alo-related-thumb {
  position: relative;
  height: 160px;
  background-color: var(--color-bg-mint);
  background-size: cover;
  background-position: center;
}
.alo-related-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 64, 4, 0.4), transparent 50%);
}
.alo-related-date {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  width: 52px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 8px 4px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.alo-related-date strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.alo-related-date small {
  font-size: 10px;
  color: var(--color-text-light);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.alo-related-info {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.alo-related-info h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.alo-related-info p {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-light);
  margin: 0;
}
.alo-related-cta {
  margin-top: auto;
  padding-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  transition: var(--transition);
}
.alo-related-card:hover .alo-related-cta {
  color: var(--color-primary);
}

@media (max-width: 640px) {
  .alo-highlights-grid {
    grid-template-columns: 1fr;
  }
  .alo-event-share {
    padding: 16px 20px;
  }
  .alo-related-head {
    align-items: flex-start;
  }
}

/* ============================================
   BOOKING MODAL (Personal Details + Free Entry)
   ============================================ */
.alo-booking-modal {
  width: 100%;
  max-width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  box-sizing: border-box;
  overflow: hidden;
}
.alo-booking-modal *,
.alo-booking-modal *::before,
.alo-booking-modal *::after {
  box-sizing: border-box;
}

/* Magnific Popup container override — plugin uses mainClass: 'event-lightbox-wrap' */
.event-lightbox-wrap .mfp-content {
  max-width: 720px !important;
  width: 100% !important;
  margin: 40px auto !important;
  background: transparent;
  padding: 0 !important;
}
.event-lightbox-wrap #event-lightbox {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}
.event-lightbox-wrap .mfp-close {
  color: var(--color-white) !important;
  font-size: 32px;
  opacity: 0.9;
  top: 4px;
  right: 8px;
  z-index: 10;
  width: 40px;
  height: 40px;
}
.event-lightbox-wrap .mfp-close:hover {
  opacity: 1;
}

.alo-booking-head {
  padding: 26px 28px 20px;
  background: linear-gradient(135deg, #044004 0%, #0a5c0a 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  overflow: hidden;
}
.alo-booking-head::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.3), transparent 70%);
  border-radius: 50%;
}
.alo-booking-head h2 {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--color-white);
  letter-spacing: -0.01em;
}
.alo-booking-sub {
  position: relative;
  z-index: 1;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.alo-booking-form {
  padding: 24px 28px 26px;
  max-height: 70vh;
  overflow-y: auto;
}
.alo-booking-form::-webkit-scrollbar {
  width: 6px;
}
.alo-booking-form::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
  border-radius: 3px;
}

/* Form sections */
.alo-form-section {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--color-border);
}
.alo-form-section:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.alo-form-section-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin: 0 0 16px;
}
.alo-form-section-title svg {
  color: var(--color-accent);
}

/* Form grid */
.alo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.alo-form-field {
  display: flex;
  flex-direction: column;
}
.alo-form-field-full {
  grid-column: 1 / -1;
}
.alo-form-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.alo-form-field .req {
  color: #b54b4b;
  margin-left: 2px;
}
.alo-form-field input[type="text"],
.alo-form-field input[type="email"],
.alo-form-field input[type="tel"],
.alo-form-field input[type="number"],
.alo-form-field textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.alo-form-field input:focus,
.alo-form-field textarea:focus {
  outline: 0;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(4, 64, 4, 0.1);
}
.alo-form-field textarea {
  resize: vertical;
  min-height: 70px;
  font-family: var(--font-body);
}
.alo-form-field-qty {
  max-width: 220px;
}
.alo-form-field-qty small {
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Free entry toggle card */
.alo-test-mode-section {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(107, 158, 58, 0.05));
  border: 1.5px dashed var(--color-gold);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 22px;
  padding-bottom: 14px;
}
.alo-test-mode-section:last-of-type {
  margin-bottom: 22px;
}
.alo-free-entry-toggle {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  margin: 0;
}
.alo-free-entry-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.alo-toggle-visual {
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  background: var(--color-border);
  border-radius: 999px;
  position: relative;
  transition: var(--transition);
  margin-top: 2px;
}
.alo-toggle-visual::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--color-white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.alo-free-entry-toggle input:checked ~ .alo-toggle-visual {
  background: var(--color-gold);
}
.alo-free-entry-toggle input:checked ~ .alo-toggle-visual::after {
  transform: translateX(20px);
}
.alo-toggle-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.alo-toggle-content strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #8a7a3a;
}
.alo-toggle-content strong svg {
  color: var(--color-gold);
}
.alo-toggle-content small {
  font-size: 12.5px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* Payment methods */
.alo-payment-methods {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}
.alo-payment-methods li {
  position: relative;
  margin: 0;
}
.alo-payment-methods input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.alo-payment-methods label {
  display: block;
  padding: 10px 14px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}
.alo-payment-methods label:hover {
  border-color: var(--color-primary-light);
}
.alo-payment-methods input[type="radio"]:checked + label {
  border-color: var(--color-primary);
  background: var(--color-bg-mint);
  color: var(--color-primary);
}

.alo-no-gateway-notice {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(181, 75, 75, 0.08);
  border: 1px solid rgba(181, 75, 75, 0.2);
  border-radius: var(--radius-sm);
  color: #8a3a3a;
}
.alo-no-gateway-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.alo-no-gateway-notice strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.alo-no-gateway-notice p {
  margin: 0;
  font-size: 13px;
  color: #8a3a3a;
  opacity: 0.85;
}

/* Consent */
.alo-form-consent {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}
.alo-form-consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--color-text-light);
  line-height: 1.5;
}
.alo-form-consent input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.alo-form-consent a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Submit */
.alo-booking-foot {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}
.alo-booking-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--color-primary);
  color: var(--color-white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(4, 64, 4, 0.25);
}
.alo-booking-submit:hover:not(:disabled) {
  background: #033303;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(4, 64, 4, 0.32);
}
.alo-booking-submit:disabled {
  background: var(--color-text-muted);
  cursor: not-allowed;
  box-shadow: none;
}
.alo-booking-submit svg {
  transition: transform 0.3s ease;
}
.alo-booking-submit:hover:not(:disabled) svg {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 560px) {
  .alo-booking-head {
    padding: 22px 20px 18px;
  }
  .alo-booking-head h2 {
    font-size: 18px;
  }
  .alo-booking-form {
    padding: 20px 20px 22px;
  }
  .alo-form-grid {
    grid-template-columns: 1fr;
  }
  .alo-booking-submit {
    width: 100%;
  }
}
.is-countdown{
  border: none !important;
}

/* ============================================
   USER ACCOUNT / BOOKINGS DASHBOARD
   ============================================ */
.alo-account-dashboard {
  background: var(--color-bg-cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 24px 0 48px;
}

.alo-account-guest,
.alo-account-empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.alo-account-guest svg {
  color: var(--color-primary);
  opacity: 0.4;
  margin-bottom: 16px;
}
.alo-account-guest h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 20px;
  margin: 0 0 20px;
}
.alo-account-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-primary);
  color: var(--color-white) !important;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(4, 64, 4, 0.2);
}
.alo-account-login-btn:hover {
  background: #033303;
  transform: translateY(-2px);
}

.alo-account-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #044004 0%, #0a5c0a 100%);
  color: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(4, 64, 4, 0.2);
}
.alo-account-header::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.25), transparent 70%);
  border-radius: 50%;
}
.alo-account-greeting {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.alo-account-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), #dcb95c);
  color: #2a2106;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.alo-account-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 2px;
}
.alo-account-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.alo-account-email {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}
.alo-account-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}
.alo-stat-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.alo-stat-card-accent {
  background: rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.45);
}
.alo-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.alo-stat-card-accent .alo-stat-num {
  color: var(--color-gold);
}
.alo-stat-lbl {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}

.alo-account-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.alo-account-toolbar h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}
.alo-account-browse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  transition: var(--transition);
}
.alo-account-browse:hover {
  color: var(--color-accent);
}
.alo-account-browse svg {
  transition: transform 0.3s ease;
}
.alo-account-browse:hover svg {
  transform: translateX(3px);
}

.alo-bookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}
.alo-booking-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(4, 64, 4, 0.06);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.alo-booking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(4, 64, 4, 0.14);
  border-color: var(--color-primary-light);
}
.alo-booking-thumb {
  position: relative;
  height: 140px;
  background-color: var(--color-bg-mint);
  background-size: cover;
  background-position: center;
}
.alo-booking-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(4, 64, 4, 0.55));
}
.alo-booking-datebox {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 54px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 8px 4px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  z-index: 1;
}
.alo-booking-datebox strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.alo-booking-datebox small {
  font-size: 10px;
  color: var(--color-text-light);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.alo-booking-status-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 1;
  backdrop-filter: blur(8px);
}
.alo-status-completed { background: rgba(212, 240, 212, 0.95); color: #0a5c0a; }
.alo-status-pending   { background: rgba(255, 243, 205, 0.95); color: #856404; }
.alo-status-processing { background: rgba(207, 226, 255, 0.95); color: #0b5394; }
.alo-status-cancelled { background: rgba(250, 219, 216, 0.95); color: #8a3a3a; }

.alo-booking-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.alo-booking-meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.alo-booking-id {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}
.alo-booking-flag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.alo-flag-test {
  background: rgba(201, 168, 76, 0.15);
  color: #8a7a3a;
  border: 1px solid rgba(201, 168, 76, 0.4);
}
.alo-flag-upcoming {
  background: var(--color-bg-mint);
  color: var(--color-primary);
  border: 1px solid var(--color-primary-light);
}
.alo-booking-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.alo-booking-title a {
  color: var(--color-primary);
  transition: var(--transition);
}
.alo-booking-title a:hover {
  color: var(--color-accent);
}
.alo-booking-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.alo-booking-info li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--color-text-light);
}
.alo-booking-info svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
.alo-booking-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
  background: var(--color-bg-cream);
  border-radius: var(--radius-sm);
  margin-top: 4px;
}
.alo-booking-summary > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.alo-booking-summary .lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}
.alo-booking-summary .val {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}
.alo-booking-cost {
  color: var(--color-primary) !important;
}
.alo-booking-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.alo-booking-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-align: center;
}
.alo-booking-btn-primary {
  background: var(--color-primary);
  color: var(--color-white) !important;
  box-shadow: 0 4px 12px rgba(4, 64, 4, 0.18);
}
.alo-booking-btn-primary:hover {
  background: #033303;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(4, 64, 4, 0.25);
}
.alo-booking-btn-ghost {
  background: var(--color-bg-cream);
  color: var(--color-primary) !important;
  border: 1px solid var(--color-border);
}
.alo-booking-btn-ghost:hover {
  background: var(--color-bg-mint);
  border-color: var(--color-primary-light);
}

.alo-account-pagination {
  margin-top: 28px;
  text-align: center;
}
.alo-account-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  margin: 0 3px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-light);
  transition: var(--transition);
}
.alo-account-pagination .page-numbers:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.alo-account-pagination .page-numbers.current {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.alo-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--color-bg-mint);
  color: var(--color-primary);
  margin-bottom: 18px;
}
.alo-account-empty h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-primary);
  margin: 0 0 8px;
}
.alo-account-empty p {
  font-size: 14.5px;
  color: var(--color-text-light);
  max-width: 420px;
  margin: 0 auto 22px;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .alo-account-dashboard { padding: 18px; }
  .alo-account-header {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}
@media (max-width: 480px) {
  .alo-account-greeting {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .alo-account-name { font-size: 22px; }
  .alo-stat-num { font-size: 20px; }
  .alo-bookings-grid { grid-template-columns: 1fr; }
  .alo-booking-actions { flex-direction: column; }
}
#event-lightbox.event-fade.event-in{
  
}