/* ==========================================================================
   HUERTO URBANO GROW - CBD LANDING PAGES PREMIUM (2026)
   Archivo: /wp-content/uploads/css/pages/hug-page-cbd-landing.css
   Wrapper: #hug-cbd-landing (autocontenido)
   ========================================================================== */

/* --- SCOPE & RESET --- */
#hug-cbd-landing {
  --lime: #a3d133;
  --lime-dark: #7ba823;
  --dark: #0b0d0a;
  --dark-2: #1e2419;
  --dark-card: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.06);
  --text: #cbd5e1;
  --text-muted: #94a3b8;

  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}
#hug-cbd-landing * { box-sizing: border-box; }
#hug-cbd-landing img { max-width: 100%; height: auto; display: block; }
#hug-cbd-landing a { text-decoration: none; }
#hug-cbd-landing h1,#hug-cbd-landing h2,#hug-cbd-landing h3,#hug-cbd-landing h4 { margin: 0; }

/* --- CONTENEDORES --- */
#hug-cbd-landing .hug-land-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}
#hug-cbd-landing .hug-land-section { padding: 80px 0; }
#hug-cbd-landing .hug-land-section-alt { background: rgba(255,255,255,0.015); }

/* --- TÍTULOS DE SECCIÓN --- */
#hug-cbd-landing .hug-land-section-title { text-align: center; margin-bottom: 60px; }
#hug-cbd-landing .hug-land-section-title h2 {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
}
#hug-cbd-landing .hug-land-section-title p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* --- BOTONES --- */
#hug-cbd-landing .hug-land-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: var(--dark);
  padding: 14px 30px; border-radius: 12px;
  font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(163,209,51,0.3);
  transition: all 0.3s ease; border: none; cursor: pointer;
}
#hug-cbd-landing .hug-land-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(163,209,51,0.5);
}
#hug-cbd-landing .hug-land-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 14px 30px; border-radius: 12px;
  font-weight: 700; font-size: 15px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease; cursor: pointer;
}
#hug-cbd-landing .hug-land-btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: #fff;
}

/* ==========================================================================
   1. HERO
   ========================================================================== */
#hug-cbd-landing .hug-land-hero {
  background: var(--dark);
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
}
#hug-cbd-landing .hug-land-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 75% 25%, rgba(163,209,51,0.08), transparent 55%);
  pointer-events: none;
}
#hug-cbd-landing .hug-land-grid-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
#hug-cbd-landing .hug-land-badge {
  display: inline-block;
  background: rgba(163,209,51,0.12); color: var(--lime);
  border: 1px solid rgba(163,209,51,0.4);
  padding: 6px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 24px;
}
#hug-cbd-landing .hug-land-hero h1 {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px;
}
#hug-cbd-landing .hug-land-hero-text p {
  color: var(--text-muted); font-size: 17px; margin-bottom: 36px; max-width: 520px;
}
#hug-cbd-landing .hug-land-hero-text p strong { color: #fff; }
#hug-cbd-landing .hug-land-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
#hug-cbd-landing .hug-land-hero-img img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(163,209,51,0.15);
  transition: transform 0.4s ease;
}
#hug-cbd-landing .hug-land-hero-img:hover img { transform: translateY(-8px); }

/* ==========================================================================
   2. TRUST SIGNALS
   ========================================================================== */
#hug-cbd-landing .hug-land-trust {
  background: var(--dark-2);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
#hug-cbd-landing .hug-land-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
#hug-cbd-landing .hug-land-trust-item {
  display: flex; align-items: center; gap: 14px;
}
#hug-cbd-landing .hug-land-trust-icon {
  font-size: 28px; flex-shrink: 0;
}
#hug-cbd-landing .hug-land-trust-item strong {
  display: block; color: #fff; font-size: 14px; margin-bottom: 2px;
}
#hug-cbd-landing .hug-land-trust-item p {
  margin: 0; font-size: 12px; color: var(--text-muted);
}

/* ==========================================================================
   3. CARDS GRID (Cómo usar)
   ========================================================================== */
#hug-cbd-landing .hug-land-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
#hug-cbd-landing .hug-land-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  transition: transform 0.3s ease, border-color 0.3s;
}
#hug-cbd-landing .hug-land-card:hover {
  transform: translateY(-4px);
  border-color: rgba(163,209,51,0.3);
}
#hug-cbd-landing .hug-land-card-icon {
  display: block; font-size: 36px; margin-bottom: 18px;
}
#hug-cbd-landing .hug-land-card h3 {
  color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px;
}
#hug-cbd-landing .hug-land-card p {
  color: var(--text-muted); font-size: 0.95rem; margin: 0; line-height: 1.6;
}

/* ==========================================================================
   4. TABLA ESTILO ROCK
   ========================================================================== */
#hug-cbd-landing .hug-land-table-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
#hug-cbd-landing .hug-land-table-wrap table {
  width: 100%; border-collapse: separate; border-spacing: 0; font-size: 15px;
}
#hug-cbd-landing .hug-land-table-wrap table thead {
  background: linear-gradient(135deg, #1e293b, #334155);
}
#hug-cbd-landing .hug-land-table-wrap table th {
  padding: 16px 18px; text-align: left; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--lime); border-bottom: 2px solid var(--lime); font-weight: 800;
}
#hug-cbd-landing .hug-land-table-wrap table td {
  padding: 14px 18px; color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
#hug-cbd-landing .hug-land-table-wrap table td:first-child {
  font-weight: 700; color: #fff;
}
#hug-cbd-landing .hug-land-table-wrap table tbody tr { transition: background 0.2s; }
#hug-cbd-landing .hug-land-table-wrap table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
#hug-cbd-landing .hug-land-table-wrap table tbody tr:hover { background: rgba(163,209,51,0.06); }

/* Pills de precio */
#hug-cbd-landing .hug-land-pill {
  padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 700;
}
#hug-cbd-landing .hug-land-pill.green {
  background: rgba(163,209,51,0.12); color: var(--lime); border: 1px solid rgba(163,209,51,0.3);
}
#hug-cbd-landing .hug-land-pill.blue {
  background: rgba(99,102,241,0.12); color: #818cf8; border: 1px solid rgba(99,102,241,0.3);
}

/* Tabla mobile card layout */
@media (max-width: 768px) {
  #hug-cbd-landing .hug-land-table-wrap { border: none; border-radius: 0; overflow: visible; }
  #hug-cbd-landing .hug-land-table-wrap table { display: flex !important; flex-direction: column; }
  #hug-cbd-landing .hug-land-table-wrap table thead { display: none !important; }
  #hug-cbd-landing .hug-land-table-wrap table tbody { display: flex; flex-direction: column; gap: 12px; }
  #hug-cbd-landing .hug-land-table-wrap table tr {
    display: flex; flex-direction: column;
    background: rgba(30,41,59,0.5); border: 1px solid var(--border);
    border-radius: 16px; padding: 16px 20px;
  }
  #hug-cbd-landing .hug-land-table-wrap table td { display: block; border: none; padding: 2px 0; }
  #hug-cbd-landing .hug-land-table-wrap table tr td:first-child {
    color: var(--lime); font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 4px; font-weight: 800;
  }
  #hug-cbd-landing .hug-land-table-wrap table tr td:nth-child(2) {
    color: #f8fafc; font-size: 1.1rem; font-weight: 600;
  }
}

/* ==========================================================================
   5. MARCAS
   ========================================================================== */
#hug-cbd-landing .hug-land-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
#hug-cbd-landing .hug-land-brand {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.3s;
}
#hug-cbd-landing .hug-land-brand:hover { border-color: rgba(163,209,51,0.3); }
#hug-cbd-landing .hug-land-brand h3 {
  color: var(--lime); font-size: 1.15rem; font-weight: 800; margin-bottom: 10px;
}
#hug-cbd-landing .hug-land-brand p {
  color: var(--text-muted); font-size: 0.95rem; margin: 0; line-height: 1.6;
}
#hug-cbd-landing .hug-land-brand p strong { color: #fff; }

/* ==========================================================================
   6. TIPS (Cómo elegir)
   ========================================================================== */
#hug-cbd-landing .hug-land-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
#hug-cbd-landing .hug-land-tip {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--lime);
  border-radius: 0 16px 16px 0;
  padding: 24px;
  transition: background 0.2s;
}
#hug-cbd-landing .hug-land-tip:hover { background: rgba(163,209,51,0.03); }
#hug-cbd-landing .hug-land-tip-label {
  display: inline-block;
  background: rgba(163,209,51,0.1); color: var(--lime);
  padding: 3px 12px; border-radius: 6px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}
#hug-cbd-landing .hug-land-tip p {
  color: var(--text); font-size: 0.95rem; margin: 0; line-height: 1.6;
}
#hug-cbd-landing .hug-land-tip p strong { color: #fff; }

/* ==========================================================================
   7. CATEGORÍAS RELACIONADAS (V6 Premium)
   ========================================================================== */
#hug-cbd-landing .hug-land-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
#hug-cbd-landing .hug-land-related-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  background: #000;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hug-cbd-landing .hug-land-related-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: all 0.6s ease;
  filter: grayscale(100%);
}
#hug-cbd-landing .hug-land-related-card span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  text-shadow: 0 4px 15px rgba(0,0,0,1);
}
#hug-cbd-landing .hug-land-related-card:hover {
  border-color: #ccff00;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(204, 255, 0, 0.1);
}
#hug-cbd-landing .hug-land-related-card:hover img {
  opacity: 0.7;
  filter: grayscale(0%);
  transform: scale(1.15);
}

/* ==========================================================================
   8. FAQ (V6 Brutalist)
   ========================================================================== */
#hug-cbd-landing .hug-land-faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#hug-cbd-landing .hug-land-faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}
#hug-cbd-landing .hug-land-faq-q {
  width: 100%;
  text-align: left;
  padding: 35px;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  position: relative;
}
#hug-cbd-landing .hug-land-faq-q::after {
  content: '+';
  font-size: 32px;
  color: #ccff00;
  transition: all 0.4s ease;
  font-family: 'Space Grotesk', sans-serif;
}
#hug-cbd-landing .hug-land-faq-item.active {
  border-color: #ccff00;
  background: rgba(204, 255, 0, 0.04);
}
#hug-cbd-landing .hug-land-faq-item.active .hug-land-faq-q {
  color: #ccff00;
}
#hug-cbd-landing .hug-land-faq-item.active .hug-land-faq-q::after {
  content: '−';
  transform: rotate(180deg);
}
#hug-cbd-landing .hug-land-faq-a {
  max-height: 0;
  padding: 0 35px;
  color: #dfdfdf;
  transition: all 0.4s ease;
  overflow: hidden;
}
#hug-cbd-landing .hug-land-faq-item.active .hug-land-faq-a {
  max-height: 600px;
  padding: 0 35px 35px;
}
#hug-cbd-landing .hug-land-faq-a p {
  margin: 0;
  line-height: 1.8;
  font-size: 17px;
}

/* ==========================================================================
   9. CTA FINAL (V6 High-Conversion)
   ========================================================================== */
#hug-cbd-landing .hug-land-cta {
  background: #050806;
  color: #fff;
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(204, 255, 0, 0.1);
  background: radial-gradient(circle at bottom, rgba(204, 255, 0, 0.1) 0%, #050806 70%);
}
#hug-cbd-landing .hug-land-cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  color: #fff;
  margin-bottom: 24px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}
#hug-cbd-landing .hug-land-cta p {
  color: #8ea396;
  margin-bottom: 40px;
  font-size: 20px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   10. PRODUCTOS WOOCOMMERCE (Dark Mode)
   ========================================================================== */
.hug-land-products {
  background: #1e2419 !important;
  padding: 80px 0 !important;
}
.hug-land-products .hug-land-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}
.hug-land-products .hug-land-section-title {
  text-align: center;
  margin-bottom: 50px;
}
.hug-land-products .hug-land-section-title h2 {
  color: #fff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(28px, 3vw, 40px) !important;
  font-weight: 800 !important;
  margin-bottom: 16px !important;
}
.hug-land-products .hug-land-section-title p {
  color: #94a3b8 !important;
  font-size: 17px !important;
  max-width: 600px;
  margin: 0 auto !important;
}

#hug-cbd-landing .woocommerce ul.products,
.hug-land-products .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
#hug-cbd-landing .woocommerce ul.products li.product,
.hug-land-products .woocommerce ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 16px !important;
  padding: 0 !important;
  overflow: hidden !important;
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  transition: transform 0.3s ease, border-color 0.3s;
}
#hug-cbd-landing .woocommerce ul.products li.product:hover,
.hug-land-products .woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: rgba(163,209,51,0.4) !important;
}
#hug-cbd-landing .woocommerce ul.products li.product img,
.hug-land-products .woocommerce ul.products li.product img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  border-radius: 16px 16px 0 0 !important;
  margin: 0 !important;
}
#hug-cbd-landing .woocommerce ul.products li.product .woocommerce-loop-product__title,
.hug-land-products .woocommerce ul.products li.product .woocommerce-loop-product__title,
#hug-cbd-landing .woocommerce ul.products li.product h2,
.hug-land-products .woocommerce ul.products li.product h2 {
  color: #f1f5f9 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  font-family: 'Inter', sans-serif !important;
  padding: 16px 16px 0 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  white-space: normal !important;
  overflow: visible !important;
}
#hug-cbd-landing .woocommerce ul.products li.product .price,
.hug-land-products .woocommerce ul.products li.product .price {
  padding: 8px 16px 0 !important;
  margin: 0 !important;
}
#hug-cbd-landing .woocommerce ul.products li.product .price *,
.hug-land-products .woocommerce ul.products li.product .price * {
  color: #a3d133 !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  background: none !important;
}
#hug-cbd-landing .woocommerce ul.products li.product .price del *,
.hug-land-products .woocommerce ul.products li.product .price del * {
  color: #64748b !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
}
#hug-cbd-landing .woocommerce ul.products li.product .price .woocommerce-price-suffix,
.hug-land-products .woocommerce ul.products li.product .price .woocommerce-price-suffix {
  font-size: 0.75rem !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
  display: block !important;
}
#hug-cbd-landing .woocommerce ul.products li.product a.button,
.hug-land-products .woocommerce ul.products li.product a.button {
  display: block !important;
  width: calc(100% - 32px) !important;
  text-align: center !important;
  background: rgba(163,209,51,0.1) !important;
  color: #a3d133 !important;
  border: 1px solid rgba(163,209,51,0.3) !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px;
  margin: 12px 16px 16px !important;
  transition: all 0.3s ease !important;
  float: none !important;
}
#hug-cbd-landing .woocommerce ul.products li.product a.button:hover,
.hug-land-products .woocommerce ul.products li.product a.button:hover {
  background: #a3d133 !important;
  color: #0b0d0a !important;
}
#hug-cbd-landing .woocommerce ul.products li.product .onsale,
.hug-land-products .woocommerce ul.products li.product .onsale {
  background: #ef4444 !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 5 !important;
}

.hug-land-products-cta {
  text-align: center;
  margin-top: 50px;
  padding: 20px 0 0;
  position: relative;
}
.hug-land-products-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(163,209,51,0.4), transparent);
}
.hug-land-products-cta a,
.hug-land-products-cta button {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: linear-gradient(135deg, #a3d133 0%, #7ba823 100%) !important;
  color: #0b0d0a !important;
  padding: 16px 36px !important;
  border-radius: 14px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow:
    0 6px 20px rgba(163,209,51,0.3),
    0 0 40px rgba(163,209,51,0.08),
    inset 0 1px 0 rgba(255,255,255,0.2) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}
.hug-land-products-cta a::after,
.hug-land-products-cta button::after {
  content: '→';
  display: inline-block;
  font-size: 20px;
  transition: transform 0.3s ease;
}
.hug-land-products-cta a:hover,
.hug-land-products-cta button:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow:
    0 12px 35px rgba(163,209,51,0.45),
    0 0 60px rgba(163,209,51,0.15),
    inset 0 1px 0 rgba(255,255,255,0.3) !important;
}
.hug-land-products-cta a:hover::after,
.hug-land-products-cta button:hover::after {
  transform: translateX(6px);
}

/* ==========================================================================
   11. RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  #hug-cbd-landing .hug-land-grid-hero { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  #hug-cbd-landing .hug-land-hero-text p { margin-left: auto; margin-right: auto; }
  #hug-cbd-landing .hug-land-hero-actions { justify-content: center; }
  #hug-cbd-landing .hug-land-trust-grid { grid-template-columns: 1fr 1fr; }
  #hug-cbd-landing .hug-land-cards-grid { grid-template-columns: 1fr 1fr; }
  #hug-cbd-landing .hug-land-related-grid { grid-template-columns: 1fr 1fr; }
  #hug-cbd-landing .hug-land-tips-grid { grid-template-columns: 1fr; }
  #hug-cbd-landing .woocommerce ul.products,
  .hug-land-products .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  #hug-cbd-landing .hug-land-trust-grid { grid-template-columns: 1fr; }
  #hug-cbd-landing .hug-land-cards-grid { grid-template-columns: 1fr; }
  #hug-cbd-landing .hug-land-related-grid { grid-template-columns: 1fr; }
  #hug-cbd-landing .hug-land-section { padding: 50px 0; }
  #hug-cbd-landing .hug-land-hero { padding: 60px 0 50px; }
  #hug-cbd-landing .woocommerce ul.products,
  .hug-land-products .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .hug-land-products { padding: 50px 0 !important; }
}

/* ==========================================================================
   12. CATEGORÍAS – GRID DE TARJETAS CON IMAGEN (Bento Glassmorphism)
   ========================================================================== */
#hug-cbd-landing .hug-land-cat-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Tarjeta base (Soporte dual) */
#hug-cbd-landing .hug-land-cat-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  min-height: 220px;
}
#hug-cbd-landing .hug-land-cat-card.cat-main {
  grid-row: span 2;
  min-height: 460px;
}

#hug-cbd-landing .hug-land-cat-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: #a3d133;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(163,209,51,0.1);
}

#hug-cbd-landing .hug-land-cat-card img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1);
  filter: grayscale(20%);
  border-radius: 0;
  max-width: none;
  z-index: 1;
}
#hug-cbd-landing .hug-land-cat-card:hover img {
  opacity: 0.8;
  transform: scale(1.1);
  filter: grayscale(0%);
}

#hug-cbd-landing .hug-land-cat-content {
  position: absolute;
  bottom: 15px; left: 15px; right: 15px;
  padding: 18px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  z-index: 2;
  transition: all 0.4s ease;
  width: auto;
}
#hug-cbd-landing .hug-land-cat-card:hover .hug-land-cat-content {
  background: rgba(163,209,51,0.1);
  border-color: rgba(163,209,51,0.4);
}

#hug-cbd-landing .hug-land-cat-badge {
  display: inline-block;
  background: #a3d133;
  color: #000;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 8px;
  border: none;
}
#hug-cbd-landing .hug-land-cat-content h3 {
  color: #fff; font-size: 1.15rem; font-weight: 800;
  margin: 0; line-height: 1.3;
  font-family: 'Inter', sans-serif;
}
#hug-cbd-landing .hug-land-cat-content p {
  color: #94a3b8; font-size: 0.85rem; margin-top: 5px; margin-bottom: 0; line-height: 1.4;
}
#hug-cbd-landing .hug-land-cat-card.cat-main .hug-land-cat-content h3 { font-size: 1.4rem; }

/* Soporte fallback si no hay imágenes en alguna tarjeta de CBD */
#hug-cbd-landing .hug-land-cat-card:not(:has(img)) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
}
#hug-cbd-landing .hug-land-cat-card:not(:has(img)) .hug-land-cat-content {
  position: relative;
  bottom: auto; left: auto; right: auto;
  width: 100%;
  background: transparent;
  border: none;
  backdrop-filter: none;
  padding: 0;
}

@media (max-width: 900px) {
  #hug-cbd-landing .hug-land-cat-grid { grid-template-columns: 1fr 1fr; }
  #hug-cbd-landing .hug-land-cat-card.cat-main { grid-column: span 2; grid-row: span 1; min-height: 280px; }
}
@media (max-width: 600px) {
  #hug-cbd-landing .hug-land-cat-grid { grid-template-columns: 1fr; }
  #hug-cbd-landing .hug-land-cat-card.cat-main { grid-column: span 1; }
}

/* ==========================================================================
   13. ESTILOS GLOBALES DE COLOR / E-E-A-T
   ========================================================================== */
#hug-cbd-landing,
#hug-cbd-landing p,
.entry-content #hug-cbd-landing p {
  color: #cbd5e1 !important;
}
#hug-cbd-landing li,
.entry-content #hug-cbd-landing li {
  color: #cbd5e1 !important;
}
#hug-cbd-landing h1,
#hug-cbd-landing h2,
#hug-cbd-landing h3,
#hug-cbd-landing h4,
#hug-cbd-landing h5,
#hug-cbd-landing h6,
.entry-content #hug-cbd-landing h1,
.entry-content #hug-cbd-landing h2,
.entry-content #hug-cbd-landing h3,
.entry-content #hug-cbd-landing h4,
.entry-content #hug-cbd-landing h5,
.entry-content #hug-cbd-landing h6 {
  color: #ffffff !important;
}
#hug-cbd-landing strong,
.entry-content #hug-cbd-landing strong {
  color: #ffffff !important;
}
#hug-cbd-landing a:not(.hug-land-btn-primary):not(.hug-land-btn-outline):not(.hug-land-related-card),
.entry-content #hug-cbd-landing a:not(.hug-land-btn-primary):not(.hug-land-btn-outline):not(.hug-land-related-card) {
  color: #a3d133 !important;
  text-decoration: underline;
}
#hug-cbd-landing a:not(.hug-land-btn-primary):not(.hug-land-btn-outline):not(.hug-land-related-card):hover,
.entry-content #hug-cbd-landing a:not(.hug-land-btn-primary):not(.hug-land-btn-outline):not(.hug-land-related-card):hover {
  color: #ffffff !important;
}

#hug-cbd-landing .hug-pet-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin: 20px auto;
  display: block;
}

.entry-content #hug-cbd-landing .woocommerce ul.products li.product .woocommerce-loop-product__title,
.entry-content #hug-cbd-landing .woocommerce ul.products li.product .price,
.entry-content #hug-cbd-landing .woocommerce ul.products li.product .price ins,
.entry-content #hug-cbd-landing .woocommerce ul.products li.product .price del {
  color: inherit !important;
}

/* ==========================================================================
   14. EXTRA LANDING BLOCKS (SELECTORS, HIGHLIGHTS, FAQS) FOR CBD
   ========================================================================== */
#hug-cbd-landing .hug-selectors-section {
    padding: 60px 0 20px;
    background: var(--dark) !important;
}
#hug-cbd-landing .hug-selectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
#hug-cbd-landing .hug-selector-card {
    background: var(--dark-2) !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}
#hug-cbd-landing .hug-selector-card:hover {
    border-color: #ccff00 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(204,255,0,0.05);
}
#hug-cbd-landing .hug-selector-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff !important;
}
#hug-cbd-landing .hug-selector-card p {
    font-size: 0.95rem;
    color: var(--text-muted) !important;
    margin-bottom: 20px;
}
#hug-cbd-landing .hug-selector-link {
    color: #ccff00 !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}
#hug-cbd-landing .hug-block-highlight {
    background: var(--dark-2) !important;
    padding: 40px;
    border-left: 4px solid #ccff00;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}
#hug-cbd-landing .hug-block-highlight h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #fff !important;
}
#hug-cbd-landing .hug-block-highlight p {
    margin: 0;
    color: #ccc !important;
}
#hug-cbd-landing .hug-seo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
#hug-cbd-landing .hug-seo-card {
    background: var(--dark) !important;
    padding: 30px;
    border: 1px solid var(--border) !important;
    border-radius: 8px;
    height: 100%;
    box-sizing: border-box;
}
#hug-cbd-landing .hug-seo-card h4 {
    color: #ccff00 !important;
    margin-top: 0;
    font-size: 1.3rem;
    margin-bottom: 15px;
}
#hug-cbd-landing .hug-seo-card p {
    color: var(--text-muted) !important;
}
#hug-cbd-landing .hug-faq-section {
    padding: 80px 0;
    background: var(--dark) !important;
}
#hug-cbd-landing .hug-faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#hug-cbd-landing .hug-faq-item {
    background: var(--dark-2) !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px;
    padding: 24px 30px;
}
#hug-cbd-landing .hug-faq-item h3 {
    font-size: 1.25rem;
    color: #fff !important;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}
#hug-cbd-landing .hug-faq-item p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted) !important;
}

/* ==========================================================================
   15. SECCIÓN MASCOTAS (Mascotas Landing Theme - Improved Bento & Backgrounds)
   ========================================================================== */
#hug-cbd-landing.hug-theme-mascotas {
  --masc-primary: #f59e0b;
  --masc-bg: #070907;
  --masc-bg-2: #0e120e;
  --border: rgba(255, 255, 255, 0.08);
  background-color: var(--masc-bg) !important;
  color: #cbd5e1 !important;
  display: block;
}

#hug-cbd-landing.hug-theme-mascotas .hug-masc-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

#hug-cbd-landing.hug-theme-mascotas .hug-masc-section {
  padding: 80px 0;
  background-color: var(--masc-bg);
  position: relative;
}

#hug-cbd-landing.hug-theme-mascotas .hug-masc-section:nth-of-type(even),
#hug-cbd-landing.hug-theme-mascotas .hug-masc-section.hug-land-section-alt {
  background-color: var(--masc-bg-2) !important;
}

/* Hero Section */
#hug-cbd-landing.hug-theme-mascotas .hug-masc-section.hero {
  padding: 120px 0 80px;
  background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 50%), var(--masc-bg) !important;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
#hug-cbd-landing.hug-theme-mascotas .hug-masc-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
#hug-cbd-landing.hug-theme-mascotas .hug-masc-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
#hug-cbd-landing.hug-theme-mascotas h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  margin-bottom: 24px !important;
  color: #ffffff !important;
  text-transform: uppercase;
}
#hug-cbd-landing.hug-theme-mascotas .hug-intro-text {
  font-size: 1.2rem !important;
  color: #cccccc !important;
  margin-bottom: 0 !important;
  line-height: 1.7;
}

/* Bento Navigation (Fixed grid) */
#hug-cbd-landing.hug-theme-mascotas .hug-masc-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
  margin-top: 40px;
}
#hug-cbd-landing.hug-theme-mascotas .hug-masc-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  padding: 30px;
  box-sizing: border-box;
}

/* Card especial Perros (Doble alto y doble ancho para balancear la rejilla de 3 elementos) */
#hug-cbd-landing.hug-theme-mascotas .hug-masc-card.bento-perros {
  grid-column: span 2;
  grid-row: span 2;
  background-image: url('/wp-content/uploads/2026/05/cbd-mascotas-productos-perro-gato-huerto-urbano-grow.webp');
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

#hug-cbd-landing.hug-theme-mascotas .hug-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.2) 100%);
  z-index: 1;
  transition: opacity 0.5s ease;
}
#hug-cbd-landing.hug-theme-mascotas .hug-masc-card.bento-perros:hover .hug-card-overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(245, 158, 11, 0.15) 100%);
}
#hug-cbd-landing.hug-theme-mascotas .hug-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left;
}
#hug-cbd-landing.hug-theme-mascotas .hug-masc-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: #f59e0b;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(245, 158, 11, 0.1);
}
#hug-cbd-landing.hug-theme-mascotas .hug-card-tag {
  display: inline-block;
  background: #f59e0b;
  color: #000;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
#hug-cbd-landing.hug-theme-mascotas .hug-card-content h3 {
  color: #fff !important;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 8px;
  font-family: 'Space Grotesk', sans-serif;
  transition: color 0.3s;
}
#hug-cbd-landing.hug-theme-mascotas .hug-masc-card:hover .hug-card-content h3 {
  color: #f59e0b !important;
}
#hug-cbd-landing.hug-theme-mascotas .hug-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* SEO Section */
#hug-cbd-landing.hug-theme-mascotas .hug-seo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
#hug-cbd-landing.hug-theme-mascotas .hug-masc-section .hug-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
#hug-cbd-landing.hug-theme-mascotas .hug-seo-block h2 {
  color: #fff !important;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 24px;
}
#hug-cbd-landing.hug-theme-mascotas .hug-seo-block h3 {
  color: #f59e0b !important;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 24px 0 10px;
}
#hug-cbd-landing.hug-theme-mascotas .hug-seo-block p {
  color: var(--text) !important;
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
#hug-cbd-landing.hug-theme-mascotas .hug-tip {
  background: rgba(245, 158, 11, 0.05) !important;
  border-left: 4px solid #f59e0b !important;
  border-radius: 0 16px 16px 0;
  padding: 30px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Warning block */
#hug-cbd-landing.hug-theme-mascotas .hug-warning-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(239, 68, 68, 0.05) !important;
  border: 1px solid rgba(239, 68, 68, 0.15) !important;
  border-left: 5px solid #ef4444 !important;
  border-radius: 20px;
  padding: 40px;
  margin: 60px 0;
}
#hug-cbd-landing.hug-theme-mascotas .hug-warning-icon {
  font-size: 50px;
  flex-shrink: 0;
}
#hug-cbd-landing.hug-theme-mascotas .hug-warning-text h2 {
  color: #fff !important;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 10px !important;
}
#hug-cbd-landing.hug-theme-mascotas .hug-warning-text p {
  color: #cbd5e1 !important;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Enlaces relacionados */
#hug-cbd-landing.hug-theme-mascotas .hug-rel-nav {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
#hug-cbd-landing.hug-theme-mascotas .hug-rel-nav h3 {
  font-size: 1.2rem;
  color: #fff !important;
  margin-bottom: 24px;
}
#hug-cbd-landing.hug-theme-mascotas .hug-rel-grid {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
#hug-cbd-landing.hug-theme-mascotas .hug-rel-grid a {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--border) !important;
  color: #f59e0b !important;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
}
#hug-cbd-landing.hug-theme-mascotas .hug-rel-grid a:hover {
  background: #f59e0b !important;
  color: #000 !important;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  #hug-cbd-landing.hug-theme-mascotas .hug-masc-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #hug-cbd-landing.hug-theme-mascotas .hug-masc-card.bento-perros {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 280px;
  }
  #hug-cbd-landing.hug-theme-mascotas .hug-seo-grid {
    grid-template-columns: 1fr;
  }
  #hug-cbd-landing.hug-theme-mascotas .hug-masc-section .hug-seo-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  #hug-cbd-landing.hug-theme-mascotas .hug-masc-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  #hug-cbd-landing.hug-theme-mascotas .hug-masc-card {
    height: auto;
    min-height: 200px;
  }
  #hug-cbd-landing.hug-theme-mascotas .hug-masc-card.bento-perros {
    grid-column: span 1;
    min-height: 240px;
  }
  #hug-cbd-landing.hug-theme-mascotas .hug-warning-inner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
}