/*
Theme Name:  Mercantix
Theme URI:   https://mercantix.lt
Author:      Mercantix UAB
Description: Custom B2B theme for Mercantix UAB — frozen & fresh produce importer.
Version:     4.2
License:     GNU General Public License v2 or later
Text Domain: mercantix
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:        #1a2b45;
  --navy-dark:   #111e30;
  --navy-light:  #243554;
  --green:       #2e7d4f;
  --green-dark:  #245f3c;
  --green-light: #3a9f63;
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --light-bg:    #f2f4f7;
  --border:      #dde1e9;
  --text:        #1c2333;
  --text-light:  #4a5568;
  --text-muted:  #718096;
  --accent:      #e8f0eb;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
  --radius:      6px;
  --radius-lg:   10px;
  --shadow:      0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.12);
  --transition:  0.2s ease;
  --container:   1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); color: var(--navy); line-height: 1.25; font-weight: 700; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: 72px 0; }
.section-alt { background: var(--off-white); }
.mt-16{margin-top:16px} .mt-24{margin-top:24px} .mt-32{margin-top:32px} .mt-48{margin-top:48px}
.mb-8{margin-bottom:8px} .mb-16{margin-bottom:16px} .mb-24{margin-bottom:24px} .mb-32{margin-bottom:32px} .mb-48{margin-bottom:48px}
.text-center{text-align:center} .text-muted{color:var(--text-muted)} .italic{font-style:italic}

/* NAV */
.site-nav {
  background: var(--white);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  border-bottom: 1px solid var(--border);
  overflow: visible; /* required so dropdowns aren't clipped */
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 100px;
  overflow: visible; /* required so lang dropdown can overflow */
  position: relative;
}
.nav-logo img { height: 180px; width: auto; display: block; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 4px; overflow: visible; }
.nav-links a {
  color: var(--text-light); padding: 6px 14px; font-size: 0.9rem;
  font-weight: 500; font-family: var(--font-head); letter-spacing: 0.02em;
  border-bottom: 3px solid transparent; transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); border-bottom-color: var(--green); }
.nav-links a.nav-cta {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 10px 22px; margin-left: 10px;
  border-bottom: none; font-weight: 600;
}
.nav-links a.nav-cta:hover { background: var(--green); color: var(--white); border-bottom: none; }

/* HERO
 * PHOTO PLACEMENT: Set background-image on .hero for a hero banner photo
 * Recommended: 1920x900px aerial produce / Egyptian farm harvest shot
 * .hero { background-image: url('your-hero-photo.jpg'); }
 */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  /* PHOTO SLOT — add background-image here */
  background-size: cover; background-position: center;
  color: var(--white); padding: 100px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(18,28,45,0.62); /* overlay keeps text readable over photos */
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.hero h1 {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800; color: var(--white); line-height: 1.15;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero h1 .highlight { color: var(--green-light); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 680px; margin: 0 auto 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary {
  display: inline-block; background: var(--green); color: var(--white);
  font-family: var(--font-head); font-size: 0.92rem; font-weight: 600;
  padding: 13px 28px; border-radius: var(--radius); letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--green-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5); font-family: var(--font-head);
  font-size: 0.92rem; font-weight: 600; padding: 11px 28px;
  border-radius: var(--radius); letter-spacing: 0.02em; transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }
.btn-outline-dark {
  display: inline-block; background: transparent; color: var(--navy);
  border: 2px solid var(--navy); font-family: var(--font-head);
  font-size: 0.92rem; font-weight: 600; padding: 11px 28px;
  border-radius: var(--radius); transition: all var(--transition);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* SECTION TYPOGRAPHY */
.section-label {
  display: inline-block; font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.5rem,2.5vw,2.2rem);
  font-weight: 700; color: var(--navy); margin-bottom: 20px; letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-light); max-width: 680px;
  line-height: 1.7; margin-bottom: 24px;
}
.lead-text { font-size: 1.05rem; color: var(--text-light); line-height: 1.75; margin-bottom: 18px; }

/* PAGE HERO (inner pages)
 * PHOTO PLACEMENT: Set background-image on .page-hero for a section banner photo
 * Recommended: 1920x400px cold storage / product flat-lay
 * .page-hero { background-image: url('your-banner.jpg'); }
 */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  background-size: cover; background-position: center;
  color: var(--white); padding: 64px 32px; position: relative;
}
.page-hero::before { content:''; position:absolute; inset:0; background: rgba(18,28,45,0.72); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 700; color: var(--white); margin-bottom: 14px; letter-spacing: -0.02em;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 640px; line-height: 1.65; }

/* CARDS GRID */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 32px; }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.card:hover { box-shadow: var(--shadow); border-color: var(--green); }
.card-title { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }

/* STATS BAR */
.stats-bar {
  background: var(--navy); padding: 48px 32px;
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
}
.stat {
  flex: 1; min-width: 160px; max-width: 240px; text-align: center;
  padding: 20px 32px; border-right: 1px solid rgba(255,255,255,0.12);
}
.stat:last-child { border-right: none; }
.stat-num { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--green-light); line-height: 1.1; margin-bottom: 6px; }
.stat-label { display: block; font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; text-transform: uppercase; }

/* CTA BANNER */
.cta-banner { background: var(--navy); border-radius: var(--radius-lg); padding: 48px 40px; text-align: center; margin-top: 48px; }
.cta-banner h3 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto 28px; line-height: 1.65; }

/* CHECKLISTS */
.checklist { list-style: none; display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 10px 24px; margin-bottom: 32px; }
.checklist li { font-size: 0.92rem; color: var(--text-light); padding-left: 24px; position: relative; }
.checklist li::before { content:'✓'; position:absolute; left:0; color:var(--green); font-weight:700; }
.check-list { list-style: none; padding: 0; }
.check-list li { padding: 6px 0 6px 28px; position: relative; font-size: 0.95rem; color: var(--text-light); }
.check-list li::before { content:'✓'; position:absolute; left:0; color:var(--green); font-weight:700; }

/* TABS */
.tab-bar {
  display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
  border-bottom: 2px solid var(--border); padding-bottom: 0;
}
.tab-btn {
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 600;
  padding: 12px 24px; border: none; background: transparent;
  color: var(--text-muted); cursor: pointer; border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: all var(--transition); letter-spacing: 0.02em;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--green); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ═══════════════════════════════════════════════════════════════
   PRODUCTS GRID — Large Visual Cards
   PHOTO PLACEMENT: Upload product photos as Featured Images
   in WP Admin > Products > Edit > Featured Image
   Recommended: 700×520px product photo on white/light background
   ═══════════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
  transform: translateY(-3px);
}

/* Photo zone — tall, full-width */
.product-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--light-bg);
  display: block;
}
.product-card-img-placeholder {
  width: 100%;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.product-card-img-placeholder.cat-fruit {
  background: linear-gradient(145deg, #fdf3e7 0%, #fce8ca 100%);
}
.product-card-img-placeholder.cat-vegetable {
  background: linear-gradient(145deg, #e8f5ec 0%, #d0ecda 100%);
}
.product-card-img-placeholder.cat-mixed {
  background: linear-gradient(145deg, #eef2f7 0%, #dde6f0 100%);
}
.product-card-img-placeholder .ph-icon {
  font-size: 3.8rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08));
}
.product-card-img-placeholder .ph-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Hover overlay to prompt photo upload */
.product-card:hover .product-card-img-placeholder::after {
  content: 'Add Photo';
  position: absolute;
  inset: 0;
  background: rgba(26,43,69,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card body */
.product-card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-cat-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.product-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-info-rows { flex: 1; }
.product-info-row {
  display: flex;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.product-info-row:last-child { border-bottom: none; }
.product-info-key {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 90px;
  flex-shrink: 0;
}
.product-info-val {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.45;
}
.product-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}
.product-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-card-cta a.btn-quote {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  transition: background var(--transition);
  white-space: nowrap;
}
.product-card-cta a.btn-quote:hover { background: var(--green); color: var(--white); }
.product-card-cta a.btn-spec {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.product-card-cta a.btn-spec:hover { color: var(--navy); }

/* BRC badge on cards */
.brc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  background: rgba(46,125,79,0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

/* DATA TABLES */
.data-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; font-size: 0.91rem; }
.data-table thead th {
  background: var(--navy); color: var(--white); font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 16px; text-align: left;
}
.data-table tbody tr { border-bottom: 1px solid var(--border); }
.data-table tbody tr:hover { background: var(--off-white); }
.data-table tbody td { padding: 11px 16px; color: var(--text-light); }
.data-table tbody td:first-child { color: var(--navy); font-weight: 600; }

.info-table { width: 100%; border-collapse: collapse; font-size: 0.91rem; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table td { padding: 13px 0; color: var(--text-light); vertical-align: top; }
.info-table td:first-child { color: var(--navy); font-weight: 600; font-family: var(--font-head); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; width: 220px; }

.sub-title {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--green);
  margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 11px 14px; font-family: var(--font-body); font-size: 0.92rem;
  color: var(--text); background: var(--white); transition: border-color var(--transition); outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  display: inline-block; background: var(--navy); color: var(--white);
  font-family: var(--font-head); font-size: 0.92rem; font-weight: 700;
  padding: 14px 36px; border: none; border-radius: var(--radius);
  cursor: pointer; letter-spacing: 0.04em; transition: background var(--transition); margin-top: 8px;
}
.form-submit:hover { background: var(--green); }

.contact-details-box { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.contact-details-box h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.contact-row { display: flex; flex-direction: column; gap: 4px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.c-label { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.c-value { font-size: 0.92rem; color: var(--text); }
.c-value a { color: var(--green); }
.c-value a:hover { color: var(--navy); }

.steps-list { counter-reset: steps; list-style: none; padding: 0; margin-top: 16px; }
.steps-list li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); counter-increment: steps; align-items: flex-start; }
.steps-list li::before { content: counter(steps); display:flex; align-items:center; justify-content:center; width:28px; height:28px; min-width:28px; background:var(--navy); color:var(--white); font-family:var(--font-head); font-size:0.78rem; font-weight:700; border-radius:50%; margin-top:2px; }
.steps-list li span { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

.form-notice { padding: 14px 20px; border-radius: var(--radius); font-size: 0.92rem; margin-bottom: 20px; }
.form-notice.success { background: #e6f4ec; border: 1px solid #a8d5b8; color: #1a5c35; }
.form-notice.error { background: #fdecea; border: 1px solid #f5c0bb; color: #8b2018; }

/* ABOUT PAGE
 * PHOTO PLACEMENT: Add team/facility photo inside .about-photo-slot
 * Recommended: 700x500px production facility or team photo
 */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
/* About slider fills its column correctly */
.about-grid > div:last-child { align-self: center; }
.about-photo-slot {
  background: var(--light-bg); border-radius: var(--radius-lg);
  height: 380px; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-family: var(--font-head); font-size: 0.82rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 2px dashed var(--border); overflow: hidden;
}
.about-photo-slot img { width: 100%; height: 100%; object-fit: cover; }

.value-list { list-style: none; padding: 0; margin-top: 20px; }
.value-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.value-item:last-child { border-bottom: none; }
.value-icon { width: 38px; height: 38px; min-width: 38px; background: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--green); font-weight: 700; }
.value-text strong { display: block; font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.value-text p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* NEWSLETTER */
.newsletter-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.newsletter-feature { background: var(--off-white); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; border-left: 3px solid var(--green); }
.newsletter-feature h4 { font-family: var(--font-head); font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.newsletter-feature p { font-size: 0.85rem; color: var(--text-light); }
.subscribe-box { background: var(--navy); border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.subscribe-box h3 { color: var(--white); font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 8px; }
.subscribe-box p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 20px; }
.subscribe-box a { display: inline-block; background: var(--green); color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; padding: 12px 24px; border-radius: var(--radius); width: 100%; text-align: center; }
.subscribe-box a:hover { background: var(--green-dark); color: var(--white); }

/* SINGLE PRODUCT
 * PHOTO PLACEMENT: Set Featured Image in WP Admin > Products > Edit
 * Recommended: 600x500px product photo on white/light background
 */
.product-detail-grid { display: grid; grid-template-columns: 420px 1fr; gap: 48px; align-items: start; }
.product-detail-img { border-radius: var(--radius-lg); overflow: hidden; background: var(--light-bg); min-height: 320px; display: flex; align-items: center; justify-content: center; }
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-specs-table { width: 100%; border-collapse: collapse; }
.product-specs-table tr { border-bottom: 1px solid var(--border); }
.product-specs-table td { padding: 11px 0; font-size: 0.9rem; }
.product-specs-table td:first-child { color: var(--text-muted); font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; width: 180px; }
.product-specs-table td:last-child { color: var(--navy); font-weight: 500; }

/* FOOTER */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 48px 32px 32px; text-align: center; }
.footer-logo { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: 0.06em; margin-bottom: 6px; }
.footer-logo span { color: var(--green-light); }
.footer-tagline { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.footer-services { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.footer-nav { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-nav a { font-family: var(--font-head); font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.65); letter-spacing: 0.04em; transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }
.footer-contact { font-size: 0.82rem; margin-bottom: 20px; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--green-light); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; margin-top: 8px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .newsletter-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 48px 0; }
  .hero { padding: 72px 20px; }
  .page-hero { padding: 48px 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .nav-inner { min-height: 72px; }
  .nav-links { display: none; }
  .nav-logo img { height: 130px; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .product-card-img, .product-card-img-placeholder { height: 210px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; align-items: center; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); width: 100%; max-width: 100%; }
  .stat:last-child { border-bottom: none; }
}
@media (max-width: 540px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card-img, .product-card-img-placeholder { height: 240px; }
  .hero h1 { font-size: 1.7rem; }
}


/* ════════════════════════════════════════════════════════════════
   HERO SLIDER
   ════════════════════════════════════════════════════════════════ */


/* ════════════════════════════════════════════════════════════════
   HERO V3 — Full-width with large logo
   PHOTO: .hero-v3 { background-image: url('your-photo.jpg'); }
   ════════════════════════════════════════════════════════════════ */
.hero-v3 {
  position: relative;
  width: 100%;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #0c1c30 0%, #122b1e 45%, #0a1a28 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-v3-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 32, 0.52);
  z-index: 1;
}
.hero-v3-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 80px 40px;
  color: #fff;
}
.hero-logo-wrap {
  margin-bottom: 32px;
}
.hero-logo-img {
  width: clamp(180px, 22vw, 300px);
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero-primary {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 15px 36px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-hero-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-hero-outline {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 34px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════════════
   TRUST STRIP
   ════════════════════════════════════════════════════════════════ */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--navy);
  border-bottom: 3px solid var(--green);
  padding: 0;
}
.trust-item {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   WHO WE ARE — 2-column with stats
   ════════════════════════════════════════════════════════════════ */
.two-col-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 8px;
}
.stat-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-card .stat-num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-card .stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.3;
}

/* LinkedIn buttons */
.btn-linkedin {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  background: #0077B5;
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-linkedin:hover { background: #005f91; transform: translateY(-1px); }

/* ════════════════════════════════════════════════════════════════
   FEATURED CATEGORIES
   ════════════════════════════════════════════════════════════════ */
.feat-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.feat-cat {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s;
  background-size: cover;
  background-position: center;
}
.feat-cat:hover { transform: translateY(-4px); }
.feat-cat--fruit  { background: linear-gradient(145deg, #1a3a22 0%, #0e2415 100%); }
.feat-cat--veg    { background: linear-gradient(145deg, #14321e 0%, #0a2010 100%); }
.feat-cat--label  { background: linear-gradient(145deg, #1a2b45 0%, #0d1c30 100%); }
.feat-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  z-index: 1;
}
.feat-cat-body {
  position: relative;
  z-index: 2;
  padding: 28px;
}
.feat-cat-chip {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--green);
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.feat-cat h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}
.feat-cat p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  margin: 0 0 12px;
}
.feat-cat-cta {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════════
   WHY MERCANTIX — cards with numbered icons
   ════════════════════════════════════════════════════════════════ */
.card-icon {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--green);
  background: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* ════════════════════════════════════════════════════════════════
   BUYERS SECTION
   ════════════════════════════════════════════════════════════════ */
.buyers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.buyer-item {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  padding: 18px 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
}
.buyer-num {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   INNER PAGE BANNER SYSTEM
   ════════════════════════════════════════════════════════════════ */
.inner-banner {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d1f35 0%, #122b1e 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
/* Per-page photo hooks — add background-image via Customizer > Additional CSS:
   .inner-banner--products { background-image: url('your-photo.jpg'); }
   .inner-banner--about    { background-image: url('your-photo.jpg'); }
   .inner-banner--contact  { background-image: url('your-photo.jpg'); }
   .inner-banner--newsletter { background-image: url('your-photo.jpg'); }
*/
.inner-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 35, 0.62);
  z-index: 1;
}
.inner-banner-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 48px;
  color: #fff;
}
.inner-banner-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}
.inner-banner-content h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}
.inner-banner-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   PRODUCT CARDS V3 — redesigned
   ════════════════════════════════════════════════════════════════ */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(26,43,69,0.12);
  transform: translateY(-3px);
}

/* Media area */
.product-card-media {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.product-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-photo-placeholder {
  width: 100%;
  height: 100%;
}
.product-card-photo-placeholder.cat-fruit {
  background: linear-gradient(145deg, #fef5e7 0%, #fde8c8 100%);
}
.product-card-photo-placeholder.cat-vegetable {
  background: linear-gradient(145deg, #eaf5ee 0%, #d0ecda 100%);
}
.product-card-photo-placeholder.cat-mixed {
  background: linear-gradient(145deg, #eef4f0 0%, #dce8e0 100%);
}

/* Category chip */
.product-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 2;
}
.chip--fruit   { background: #e87b2e; color: #fff; }
.chip--veg     { background: var(--green); color: #fff; }
.chip--mixed   { background: var(--navy); color: #fff; }

/* Card body */
.product-card-body {
  padding: 20px 20px 16px;
  flex: 1;
}
.product-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  line-height: 1.25;
}

/* Specs */
.product-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.spec-row:last-child { border-bottom: none; padding-bottom: 0; }
.spec-key {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.spec-val {
  color: var(--text);
  font-weight: 500;
  text-align: right;
}

/* Card actions */
.product-card-actions {
  padding: 14px 20px 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--border);
  background: var(--off-white);
  flex-wrap: wrap;
}
.btn-quote-main {
  flex: 1;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 16px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-quote-main:hover { background: var(--green-dark); }
.btn-spec-link {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 4px;
  border-bottom: 1px solid var(--navy);
  line-height: 1;
  transition: color 0.2s, border-color 0.2s;
}
.btn-spec-link:hover { color: var(--green); border-color: var(--green); }

/* ════════════════════════════════════════════════════════════════
   FOOTER V2 — 3-column layout with LinkedIn
   ════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 40px;
}
.footer-brand .footer-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.footer-brand .footer-logo span { color: var(--green-light); }
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 18px;
  background: rgba(0,119,181,0.85);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
}
.footer-linkedin:hover { background: #0077B5; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col a,
.footer-col span {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: #0077B5; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE UPDATES
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .two-col-intro  { grid-template-columns: 1fr; gap: 40px; }
  .feat-cats-grid { grid-template-columns: 1fr 1fr; }
  .feat-cat--label { grid-column: span 2; min-height: 240px; }
  .footer-inner   { grid-template-columns: 1fr; gap: 40px; }
  .footer-links   { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hero-v3-content { padding: 60px 24px; }
  .trust-strip     { flex-wrap: wrap; }
  .trust-item      { padding: 12px 16px; font-size: 0.7rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .feat-cats-grid  { grid-template-columns: 1fr; }
  .feat-cat--label { grid-column: span 1; }
  .buyers-grid     { grid-template-columns: 1fr; }
  .inner-banner    { min-height: 220px; }
  .inner-banner-content { padding: 40px 24px; }
  .footer-inner    { padding: 40px 20px 32px; }
  .footer-links    { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom   { padding: 16px 20px; flex-direction: column; gap: 10px; text-align: center; }
  .intro-stats     { grid-template-columns: 1fr 1fr; }
}

/* Fresh produce chip */
.chip--fresh { background: #1a6b3c; color: #fff; }

/* Sub-title headers for product sections */
.sub-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin: 32px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════════
   GALLERY STRIP  (thumbnail row on product cards)
═══════════════════════════════════════════════════════════════════ */
.gallery-strip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 16px 10px;
  background: #fff;
}

.g-thumb {
  width: 66px;
  height: 50px;
  flex-shrink: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #eee;
  transition: border-color .2s, transform .2s;
}
.g-thumb:hover,
.g-thumb:focus-visible {
  border-color: var(--green);
  transform: scale(1.06);
  outline: none;
}
.g-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.g-more {
  font-size: 11px;
  font-weight: 700;
  color: #22843a;
  white-space: nowrap;
  margin-left: 2px;
  flex-shrink: 0;
}

/* "View Gallery" button — sits below the strip */
.btn-view-gallery {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 16px 14px;
  padding: 7px 14px;
  border: 1.5px solid #22843a;
  border-radius: 7px;
  background: #f5fbf6;
  color: #22843a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .2s, color .2s;
  width: calc(100% - 32px);
  text-align: left;
}
.btn-view-gallery:hover,
.btn-view-gallery:focus-visible {
  background: #22843a;
  color: #fff;
  outline: none;
}
.btn-view-gallery svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: stroke .2s;
}

/* ═══════════════════════════════════════════════════════════════════
   LIGHTBOX  OVERLAY
═══════════════════════════════════════════════════════════════════ */
#mx-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 10, 20, .94);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#mx-lightbox.is-open {
  display: flex;
}
#mx-lightbox:focus { outline: none; }

/* Inner panel */
.mx-lb-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(900px, 92vw);
  width: 100%;
}

/* Close button — top right of panel */
.mx-lb-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background .2s, border-color .2s;
  padding: 0;
  backdrop-filter: blur(6px);
}
.mx-lb-close:hover,
.mx-lb-close:focus-visible {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
  outline: none;
}
.mx-lb-close svg { width: 16px; height: 16px; }

/* Image wrapper with side-nav arrows */
.mx-lb-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.mx-lb-photo {
  display: block;
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 6px;
  transition: opacity .25s ease;
}

/* Nav arrows */
.mx-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  padding: 0;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s;
  z-index: 2;
}
.mx-lb-nav:hover,
.mx-lb-nav:focus-visible {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.6);
  outline: none;
}
.mx-lb-nav svg { width: 20px; height: 20px; }
.mx-lb-prev { left: -62px; }
.mx-lb-next { right: -62px; }

/* Caption: "2 / 6" */
.mx-lb-caption {
  margin-top: 14px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  letter-spacing: .04em;
}

/* Dot pagination */
.mx-lb-dots {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.mx-lb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.mx-lb-dot.active {
  background: #fff;
  transform: scale(1.4);
}
.mx-lb-dot:focus-visible { outline: 2px solid #4caf50; outline-offset: 2px; }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 700px) {
  .mx-lb-prev { left: 4px; }
  .mx-lb-next { right: 4px; }
  .mx-lb-nav  { width: 38px; height: 38px; }
  .mx-lb-close { top: -44px; }
  .mx-lb-photo { max-height: 60vh; }
}

@media (max-width: 420px) {
  .g-thumb { width: 58px; height: 44px; }
  .btn-view-gallery { font-size: 11px; padding: 6px 10px; }
}

/* ─── Contact form – required asterisk ─────────────────────── */
.req { color: #e53e3e; margin-left: 2px; }


/* ════════════════════════════════════════════════════════════════
   HERO SLIDER — v2 (.hslide / .hslide-dot)
   ════════════════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 82vh;
  overflow: hidden;
  background: var(--navy-dark);
}
.hslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
  background-color: var(--navy-dark);                              /* fallback when image missing */
  background-size: cover;
  background-position: center center;
  background-image: var(--slide-bg), linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hslide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  min-height: 82vh;
  display: flex;
}
.hslide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,18,32,0.72) 0%,
    rgba(10,30,22,0.58) 60%,
    rgba(8,18,32,0.45) 100%
  );
  z-index: 1;
}
.hslide-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 40px;
  color: #fff;
  text-align: left;
}
.hslide-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(46,125,79,0.18);
  border: 1px solid rgba(58,159,99,0.4);
  border-radius: 40px;
  padding: 5px 16px;
  margin-bottom: 22px;
}
.hslide-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.hslide-title span { color: var(--green-light); }
.hslide-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.72;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 36px;
}
.hslide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Slider Arrows ─ */
.hslide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
}
.hslide-arrow svg { width: 22px; height: 22px; }
.hslide-arrow:hover { background: rgba(46,125,79,0.6); border-color: var(--green-light); }
.hslide-prev { left: 24px; }
.hslide-next { right: 24px; }

/* ── Slider Dots ─ */
.hslide-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hslide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hslide-dot.is-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.35);
}
.hslide-dot:hover:not(.is-active) { background: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.8); }

@media (max-width: 768px) {
  .hero-slider { min-height: 70vw; }
  .hslide.is-active { min-height: 70vw; }
  .hslide-content { padding: 48px 24px; max-width: 100%; }
  .hslide-arrow { width: 40px; height: 40px; }
  .hslide-arrow svg { width: 18px; height: 18px; }
  .hslide-prev { left: 12px; }
  .hslide-next { right: 12px; }
  .hslide-dots { bottom: 16px; }
}
@media (max-width: 480px) {
  .hslide-title { font-size: 1.55rem; }
  .hslide-sub { font-size: 0.9rem; }
  .hslide-content { padding: 36px 20px; }
  .hslide-arrow { display: none; }
}


/* ════════════════════════════════════════════════════════════════
   MOBILE NAV — Hamburger + Drawer
   ════════════════════════════════════════════════════════════════ */
.nav-mobile-controls {
  display: none;
  align-items: center;
  gap: 6px;
}

/* Hamburger button */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.nav-hamburger:hover { border-color: var(--green); }
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* Hamburger → X when open */
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 12px 24px 20px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 199;
  animation: drawerSlideIn 0.2s ease;
}
.nav-drawer.is-open { display: flex; }
@keyframes drawerSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-drawer a {
  display: block;
  padding: 12px 4px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-drawer a:hover, .nav-drawer a.active { color: var(--green); }
.nav-drawer a:last-of-type:not(.drawer-cta) { border-bottom: none; }
.drawer-cta {
  display: block;
  margin-top: 14px;
  padding: 13px 24px !important;
  background: var(--green);
  color: #fff !important;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700 !important;
  border-bottom: none !important;
  font-family: var(--font-head);
}
.drawer-cta:hover { background: var(--green-dark) !important; color: #fff !important; }

/* Show mobile controls on ≤ 768px, hide desktop nav */
@media (max-width: 768px) {
  .nav-mobile-controls { display: flex; }
  .nav-links { display: none !important; }
}


/* ════════════════════════════════════════════════════════════════
   LANGUAGE SELECTOR — Desktop + Mobile (fixed)
   ════════════════════════════════════════════════════════════════ */

/* Wrapper — must be relative so dropdown positions correctly */
.lang-selector {
  position: relative;
  display: inline-block;
}

/* Toggle button */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}
.lang-toggle:hover,
.lang-selector.is-open .lang-toggle {
  border-color: var(--green);
  background: var(--off-white);
}
.lang-toggle svg:first-child  { width: 15px; height: 15px; color: var(--text-light); flex-shrink: 0; }
.lang-chevron                  { width: 13px; height: 13px; flex-shrink: 0; transition: transform 0.22s ease; }
.lang-selector.is-open .lang-chevron { transform: rotate(180deg); }

/* Dropdown panel — uses fixed positioning to escape any overflow:hidden parent */
.lang-dropdown {
  display: none;
  position: fixed; /* fixed so it escapes nav overflow */
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  min-width: 168px;
  z-index: 99999;
  padding: 6px 0;
  list-style: none;
  /* top/left are set dynamically by JS */
}
.lang-selector.is-open .lang-dropdown { display: block; }

/* Options */
.lang-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 9px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: background 0.15s;
  white-space: nowrap;
}
.lang-opt:hover  { background: var(--off-white); color: var(--navy); }
.lang-opt.active { color: var(--green); font-weight: 700; }
.lang-opt .flag  { font-size: 1rem; line-height: 1; flex-shrink: 0; }

/* Desktop selector inside nav-links */
.nav-links .lang-selector { margin-left: 6px; }

/* Mobile selector — smaller toggle */
.lang-selector--mobile .lang-toggle {
  padding: 6px 9px;
  font-size: 0.78rem;
  border-color: rgba(0,0,0,0.15);
}
.lang-selector--mobile .lang-toggle svg:first-child { width: 14px; height: 14px; }
/* hide chevron on mobile toggle to save space */
.lang-selector--mobile .lang-chevron { display: none; }

/* Visibility: hide mobile on desktop, hide desktop on mobile */
.lang-selector--mobile { display: none; }

@media (max-width: 768px) {
  .lang-selector--mobile   { display: inline-block; }
  .nav-links .lang-selector { display: none !important; }
}


/* ════════════════════════════════════════════════════════════════
   SUB-PRODUCT PAGES — Fresh Citrus, Fresh Onions, etc.
   ════════════════════════════════════════════════════════════════ */
.sub-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.sub-products-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
  .sub-products-grid,
  .sub-products-grid--2col {
    grid-template-columns: 1fr;
  }
}

.sub-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.sub-product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

/* Media section (image + gallery strip) */
.sub-product-media {
  position: relative;
  flex-shrink: 0;
}
.sub-product-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .sub-product-photo { height: 220px; }
}

/* Body */
.sub-product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sub-product-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.sub-product-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Specs table inside sub-product card */
.product-specs {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.spec-row {
  display: flex;
  align-items: flex-start;
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  gap: 12px;
}
.spec-row:last-child { border-bottom: none; }
.spec-key {
  flex: 0 0 100px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 1px;
}
.spec-val {
  flex: 1;
  color: var(--text-light);
  line-height: 1.55;
}

/* Card action buttons */
.product-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* Back link */
.sub-page-back { display: inline-block; }

/* Card sub-page badge (on products page) */
.card-subpage-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(46,125,79,0.88);
  border-radius: 20px;
  padding: 4px 11px;
  z-index: 3;
  backdrop-filter: blur(2px);
}
.card-photo-link { display: block; }
.card-photo-link img { transition: transform 0.35s ease; }
.card-photo-link:hover img { transform: scale(1.04); }

/* Product chip on sub-product media */
.product-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}
.chip--fresh {
  background: rgba(46,125,79,0.9);
  color: #fff;
}
.chip--frozen {
  background: rgba(26,43,69,0.88);
  color: #fff;
}

/* "View Varieties" button on main products page */
.btn-varieties {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  border: 1.5px solid var(--green);
  border-radius: var(--radius);
  padding: 7px 16px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  margin-top: 8px;
  width: fit-content;
}
.btn-varieties:hover { background: var(--green); color: #fff; }


/* ════════════════════════════════════════════════════════════════
   v4.0 NICHE REFINEMENTS — polish, WhatsApp button, animations
   ════════════════════════════════════════════════════════════════ */

/* ── Scroll-reveal animation (adds via JS class .mx-reveal) ── */
.mx-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.mx-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── WhatsApp Floating Button ─────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 3s infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  color: #fff;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}
@media (max-width: 480px) {
  .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ── Section heading with accent underline ─────────────────── */
.section-heading-accent {
  display: inline-block;
  font-family: var(--font-head);
  font-size: clamp(1.5rem,2.5vw,2.1rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 12px;
}
.section-heading-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

/* ── Product card image zoom effect ──────────────────────── */
.product-card-media { overflow: hidden; }
.product-card-photo {
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-photo {
  transform: scale(1.06);
}

/* ── Card hover: left border accent ─────────────────────── */
.card {
  border-left: 3px solid transparent;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.card:hover {
  border-left-color: var(--green);
  transform: translateY(-2px);
}

/* ── Better form submit button ──────────────────────────── */
.form-submit {
  position: relative;
  overflow: hidden;
}
.form-submit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.4s ease, height 0.4s ease;
}
.form-submit:active::after {
  width: 200px;
  height: 200px;
}

/* ── Trust strip: subtle item hover ─────────────────────── */
.trust-item {
  transition: background 0.18s;
  cursor: default;
}
.trust-item:hover {
  background: rgba(255,255,255,0.05);
}

/* ── Nav: subtle progress indicator on active link ──────── */
.nav-links a.active {
  position: relative;
}

/* ── Stats bar: number color pop ─────────────────────────── */
.stat-card .stat-num {
  transition: color 0.2s;
}
.stat-card:hover .stat-num {
  color: var(--green);
}

/* ── Featured category cards: text scale ──────────────────── */
.feat-cat h3 {
  transition: transform 0.3s ease;
}
.feat-cat:hover h3 {
  transform: translateX(4px);
}

/* ── Buyer items: hover highlight ─────────────────────────── */
.buyer-item {
  transition: border-left-color 0.2s, background 0.2s;
  cursor: default;
}
.buyer-item:hover {
  background: var(--accent);
  border-left-color: var(--green-dark);
}

/* ── Steps list: hover highlight ─────────────────────────── */
.steps-list li {
  transition: background 0.15s;
  border-radius: var(--radius);
  padding: 12px 6px;
}
.steps-list li:hover {
  background: var(--off-white);
}

/* ── Newsletter feature: hover ──────────────────────────── */
.newsletter-feature {
  transition: border-left-color 0.2s, box-shadow 0.2s;
}
.newsletter-feature:hover {
  border-left-color: var(--green-dark);
  box-shadow: var(--shadow);
}

/* ── Page scroll progress bar (top of viewport) ─────────── */
#mx-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--green);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── Admin bar compatibility ─────────────────────────────── */
.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-nav { top: 46px; }
}

/* ── Smooth page fade-in ─────────────────────────────────── */
body {
  animation: pageIn 0.35s ease;
}
@keyframes pageIn {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}

/* ── Print styles ─────────────────────────────────────────── */
@media print {
  .site-nav, .hero-slider, .trust-strip, .wa-float,
  .hslide-arrow, .hslide-dots, #mx-progress { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .section { padding: 20pt 0; }
  a { color: #000; }
}

/* ── Contact form: product pre-fill notice ───────────────── */
.form-notice--info {
  background: #e8f4ed;
  border-left: 4px solid var(--green);
  color: #1a4a2e;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE — SQUARE PHOTO SLIDER
   ════════════════════════════════════════════════════════════ */

/* Container — fills the right column of about-grid */
.about-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;          /* Always square */
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  flex-shrink: 0;
}

/* Individual slides */
.aslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}
.aslide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.aslide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrow buttons */
.aslide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
  color: var(--navy);
}
.aslide-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
.aslide-prev { left: 12px; }
.aslide-next { right: 12px; }
.aslide-arrow svg { width: 20px; height: 20px; }

/* Dot indicators */
.aslide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.aslide-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.aslide-dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

/* Responsive — on mobile slider sits below text, full width */
@media (max-width: 768px) {
  .about-slider {
    max-width: 400px;
    margin: 0 auto;
  }
}


/* ═══════════════════════════════════════════════════════
   IMAGE PROTECTION — Prevent drag-to-save on all images
   ═══════════════════════════════════════════════════════ */
img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* ═══════════════════════════════════════════════════════
   GALLERY WATERMARK — thumbnail strip + lightbox only
   (NOT on hero slides, banners, or product card images)
   ═══════════════════════════════════════════════════════ */
.g-thumb {
  position: relative;
}
.g-thumb::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 60px;
  height: 48px;
  background: url('/wp-content/themes/mercantix-theme/images/watermark.png') no-repeat center / contain;
  opacity: 0.22;
  pointer-events: none;
  z-index: 3;
}

/* Lightbox full-size image watermark */
.mx-lb-watermark {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 120px;
  height: 96px;
  background: url('/wp-content/themes/mercantix-theme/images/watermark.png') no-repeat center / contain;
  opacity: 0.18;
  pointer-events: none;
  z-index: 10;
}