* { box-sizing: border-box; }
body {
 margin: 0;
 font-family: Arial, sans-serif;
 color: #0f172a;
 background: #f8fafc;
 line-height: 1.6;
}

header {
 background: #14532d;
 color: #fff;
 position: sticky;
 top: 0;
 z-index: 10;
}

.nav {
 max-width: 1100px;
 margin: 0 auto;
 padding: 14px 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 16px;
 flex-wrap: wrap;
}

.nav strong { font-size: 18px; }

.nav a {
 color: #fff;
 text-decoration: none;
 margin-left: 14px;
 font-weight: 600;
 opacity: 0.95;
}

.nav a:hover { opacity: 1; }

.hero {
 max-width: 1100px;
 margin: 18px auto 0;
 padding: 0 20px;
}

.hero-banner {
 border-radius: 18px;
 overflow: hidden;
 background: #dcfce7;
 box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.hero-banner img {
 width: 100%;
 height: 360px;
 object-fit: cover;
 display: block;
}

.hero-content {
 padding: 22px;
 background: linear-gradient(180deg, rgba(20,83,45,0.0), rgba(20,83,45,0.08));
 margin-top: -90px;
}

.badge {
 display: inline-block;
 background: #dcfce7;
 color: #166534;
 padding: 6px 10px;
 border-radius: 999px;
 font-size: 14px;
 font-weight: 700;
}

h1 { margin: 10px 0 8px; }
p { margin: 8px 0; }

.cta-row {
 display: flex;
 gap: 12px;
 flex-wrap: wrap;
 margin-top: 14px;
}

.btn {
 display: inline-block;
 padding: 12px 18px;
 background: #16a34a;
 color: #fff;
 text-decoration: none;
 border-radius: 12px;
 font-weight: 800;
}

.btn.secondary {
 background: #2563eb;
}

.section {
 max-width: 1100px;
 margin: 0 auto;
 padding: 34px 20px;
}

.section h2 {
 margin: 0 0 18px;
}

.grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 16px;
}

.card {
 background: #fff;
 border-radius: 16px;
 box-shadow: 0 2px 10px rgba(0,0,0,0.06);
 overflow: hidden;
}

.card img {
 width: 100%;
 height: 160px;
 object-fit: cover;
 display: block;
}

.card .inner {
 padding: 16px;
}

.card h3 {
 margin: 0 0 6px;
}

.image-full {
 border-radius: 18px;
 overflow: hidden;
 box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.image-full img {
 width: 100%;
 height: 320px;
 object-fit: cover;
 display: block;
}

.contact-box {
 background: #fff;
 padding: 20px;
 border-radius: 16px;
 box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.two-col {
 display: grid;
 grid-template-columns: 1.1fr 0.9fr;
 gap: 18px;
 align-items: start;
}

@media (max-width: 900px) {
 .two-col { grid-template-columns: 1fr; }
 .hero-banner img { height: 280px; }
 .hero-content { margin-top: -70px; }
}

.gallery-grid {
 display: grid;
 grid-template-columns: repeat(12, 1fr);
 gap: 14px;
}

.gallery-item {
 grid-column: span 6;
 border-radius: 16px;
 overflow: hidden;
 background: #fff;
 box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.gallery-item img {
 width: 100%;
 height: 240px;
 object-fit: cover;
 display: block;
}

@media (max-width: 900px) {
 .gallery-item { grid-column: span 12; }
 .gallery-item img { height: 220px; }
}

footer {
 text-align: center;
 padding: 26px 20px;
 color: #6b7280;
}

/* ==========================================================================
   Ley Farms - Premium Editorial Fig Guide Layout
   ========================================================================== */

:root {
    --primary-dark: #2d1b4e;       /* Deep rich fig purple */
    --primary-accent: #6b4c9a;     /* Bright vibrant fig purple */
    --pro-green: #1b5e20;          /* Deep organic green */
    --con-red: #b71c1c;            /* Deep muted red */
    --text-main: #2d3748;          /* Slate charcoal for premium readability */
    --text-muted: #718096;         /* Cool gray for meta info */
    --bg-light: #f9f8fc;           /* Super soft tint for structural variance */
    --border-color: #e2e8f0;       /* Crisp divider lines */
}

/* Master Article Wrapper */
.ley-farms-article {
    max-width: 950px;
    margin: 0 auto;
    padding: 60px 24px;
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.75;
}

/* Elegant Header Layout */
.article-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px dashed var(--border-color);
}
.site-badge {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-accent);
    font-weight: 800;
    background: var(--bg-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}
.article-title {
    font-size: 2.75rem;
    color: var(--primary-dark);
    margin: 0 0 16px 0;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.article-meta {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* Intro Text Focus style */
.intro-section p:first-of-type {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--primary-dark);
    font-weight: 500;
}
.intro-section p {
    margin-bottom: 24px;
}

/* Side-by-Side Split Flex Grid for Pros & Cons */
.pros-cons-grid {
    display: flex;
    gap: 32px;
    margin: 50px 0;
}
.column-half {
    flex: 1;
    min-width: 0;
}

/* High Contrast Section Headings */
.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
}
.section-title.pros {
    color: var(--pro-green);
    border-bottom: 3px solid var(--pro-green);
}
.section-title.cons {
    color: var(--con-red);
    border-bottom: 3px solid var(--con-red);
}

/* Beautiful Card Layouts for Points */
.points-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.point-card {
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
}
.point-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 27, 78, 0.05);
}
.point-card.pro-item {
    border-left: 5px solid var(--pro-green);
}
.point-card.con-item {
    border-left: 5px solid var(--con-red);
}

.point-card strong {
    color: var(--primary-dark);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

/* Nested lists inside cards */
.point-card ul {
    margin: 12px 0 0 0;
    padding-left: 20px;
}
.point-card li {
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Clean, Readable Data Table Layout */
.table-section {
    margin: 60px 0;
}
.table-section .section-title {
    color: var(--primary-dark);
    border-bottom: 3px solid var(--primary-dark);
    text-transform: none;
    font-size: 1.6rem;
    letter-spacing: 0;
}
.table-container {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1.05rem;
}
.comparison-table th {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 18px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}
.comparison-table tr:last-child td {
    border-bottom: none;
}
.comparison-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

/* Editorial Callout Box */
.premium-callout {
    background: linear-gradient(135deg, #fbfaff 0%, #f4effa 100%);
    border: 1px solid #e1d7f1;
    border-left: 6px solid var(--primary-accent);
    padding: 32px;
    border-radius: 16px;
    margin: 50px 0 20px 0;
    position: relative;
}
.callout-label {
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.premium-callout p {
    margin: 0;
    color: #4a3768;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Responsive Structural Collapse */
@media (max-width: 800px) {
    .pros-cons-grid {
        flex-direction: column;
        gap: 40px;
    }
    .article-title {
        font-size: 2.2rem;
    }
    .ley-farms-article {
        padding: 40px 16px;
    }
    .comparison-table th, .comparison-table td {
        padding: 14px 16px;
        font-size: 1rem;
    }
}

.whatsapp-float{
      position:fixed;
      right:18px;
      bottom:18px;
      width:56px;
      height:56px;
      border-radius:50%;
      background:#25D366;
      color:#fff;
      display:grid;
      place-items:center;
      box-shadow:0 10px 24px rgba(0,0,0,.22);
      z-index:999;
      font-size:28px;
      border:none;
    }

a{text-decoration:none}
    .wrap{width:min(var(--max), calc(100% - 32px)); margin:auto}



	
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  color: #1f4d2e;
}

.site-nav .menu {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: #2b2b2b;
  padding: 10px 14px;
  border-radius: 8px;
  display: inline-block;
}

.site-nav a:hover {
  background: #f2f6f1;
  color: #1f4d2e;
}

.dropdown {
  position: relative;
}

.submenu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.dropdown:hover .submenu,
.dropdown:focus-within .submenu {
  display: block;
}

.submenu li a {
  display: block;
  padding: 10px 14px;
  white-space: nowrap;
}

.submenu li a:hover {
  background: #f7faf6;
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav .menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    width: max-content;
    min-width: 100%;
  }

  .site-nav a {
    white-space: nowrap;
    padding: 10px 12px;
    font-size: 14px;
  }

  .dropdown {
    position: relative;
  }

  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    z-index: 1000;
  }
}