/*!
Theme Name: Theobroma
Theme URI: https://theobroma.com.ve
Description: Premium WordPress theme for Chocolates Theobroma artisanal chocolate brand
Author: Moises CacaoWorks
Author URI: https://cacao.works
Version: 1.2.5
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: theobroma
Domain Path: /languages
Requires at least: 6.0
Requires PHP: 7.4
*/

:root {
  /* Primary Colors */
  --primary: #ac2a1f;
  --primary-container: #ff7765;
  --primary-fixed: #ff7765;
  --primary-fixed-dim: #f8614f;
  --on-primary: #ffefed;
  --on-primary-container: #4f0000;

  /* Secondary Colors */
  --secondary: #765600;
  --secondary-container: #ffca52;
  --secondary-fixed: #ffca52;
  --secondary-fixed-dim: #f3bb36;
  --on-secondary: #ffffff;
  --on-secondary-container: #5c4300;
  --on-secondary-fixed: #453100;
  --on-secondary-fixed-variant: #684c00;

  /* Tertiary Colors (WhatsApp green) */
  --tertiary: #006a2e;
  --tertiary-container: #5dfd8a;
  --tertiary-dim: #005d27;
  --tertiary-fixed-dim: #4cee7d;
  --on-tertiary: #ceffd0;
  --on-tertiary-container: #005d27;
  --on-tertiary-fixed: #00481d;
  --on-tertiary-fixed-variant: #00682d;

  /* Surface Colors */
  --surface: #fdf6e5;
  --surface-dim: #dbd4be;
  --surface-bright: #fdf6e5;
  --surface-container: #efe8d5;
  --surface-container-low: #f7f0de;
  --surface-container-high: #e9e2ce;
  --surface-container-lowest: #ffffff;
  --on-surface: #312f24;
  --on-surface-variant: #5f5b4f;

  /* Error Colors */
  --error: #b3261e;
  --error-dim: #a70138;
  --on-error: #ffefef;
  --on-error-container: #510017;

  /* Background */
  --background: #fdf6e5;
  --on-background: #312f24;

  /* Outline & Variants */
  --outline: #7b7769;
  --outline-variant: #b2ad9e;
  --surface-variant: #e4ddc7;
  --inverse-on-surface: #a29d8e;

  /* Typography */
  --font-headline: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Be Vietnam Pro", system-ui, -apple-system, sans-serif;
  --font-label: "Be Vietnam Pro", system-ui, -apple-system, sans-serif;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 2rem;
  --radius-2xl: 2.5rem;
  --radius-3xl: 3rem;
  --radius-full: 9999px;

  /* Spacing */
  --space-unit: 0.25rem;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--on-surface);
  background-color: var(--surface);
  line-height: 1.6;
  font-size: 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 2.25rem;
  font-weight: 800;
}

@media (min-width: 768px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.875rem;
  font-weight: 800;
}

h4 {
  font-size: 1.5rem;
  font-weight: 700;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-container);
}

button,
.button {
  font-family: var(--font-headline);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

/* Material Symbols Outlined */
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  display: inline-block;
  vertical-align: middle;
  font-family: "Material Symbols Outlined";
  font-size: 1.5rem;
}

.material-symbols-outlined.filled {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(172, 42, 31, 0.08);
  transition: all 0.3s ease;
}

.navbar-container {
  max-width: 1344px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .navbar-container {
    padding: 0.5rem 3rem;
  }
}

.navbar-brand {
  flex-shrink: 0;
  display: block;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand img {
  max-height: 4rem;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .navbar-brand img {
    max-height: 6rem;
  }
}

@media (min-width: 1024px) {
  .navbar-brand img {
    max-height: 7rem;
  }
}

.navbar-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
}

.navbar-menu-btn:hover {
  background-color: var(--surface-container-low);
}

@media (min-width: 768px) {
  .navbar-menu-btn {
    display: none;
  }
}

.navbar-nav {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .navbar-nav {
    display: flex;
  }
}

.navbar-nav a {
  color: #4b5563;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  padding-bottom: 0.25rem;
}

.navbar-nav a:hover {
  color: var(--primary);
  transform: scale(1.05);
}

.navbar-nav a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.navbar-btn {
  background-color: var(--tertiary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 106, 46, 0.2);
}

.navbar-btn:hover {
  background-color: var(--tertiary-dim);
  transform: scale(1.05);
}

/* Mobile Menu */
.navbar-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--surface-container-low);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--surface-variant);
  z-index: 40;
}

.navbar-mobile-menu.active {
  display: flex;
  flex-direction: column;
}

.navbar-mobile-menu a {
  padding: 1rem 1.5rem;
  color: #4b5563;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--surface-variant);
}

.navbar-mobile-menu a:hover {
  color: var(--primary);
  background-color: var(--surface);
}

.navbar-mobile-menu a.active {
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 921px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(49, 47, 36, 0.8), rgba(49, 47, 36, 0.4), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1344px;
  margin: 0 auto;
  padding: 1.5rem;
  width: 100%;
  color: white;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0 3rem;
  }
}

.hero-content > * {
  max-width: 32rem;
}

.hero-badge {
  display: inline-block;
  background-color: var(--secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: white;
  margin-bottom: 1.5rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 28rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--tertiary);
  color: white;
  box-shadow: 0 12px 32px rgba(0, 106, 46, 0.2);
}

.btn-primary:hover {
  background-color: var(--tertiary-dim);
  transform: scale(1.05);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  backdrop-filter: blur(4px);
}

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

.btn-default {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(172, 42, 31, 0.12);
}

.btn-default:hover {
  background-color: var(--on-primary-container);
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
}

/* Sections */
.section {
  padding: 6rem 0;
  max-width: 1344px;
  margin: 0 auto;
}

.section-with-bg {
  width: 100%;
  padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 3rem;
  }

  .section-with-bg {
    padding: 6rem 3rem;
  }
}

.section-light {
  background-color: var(--surface-container-low);
}

.section-white {
  background-color: var(--surface-container-lowest);
}

.section-primary {
  background-color: rgba(172, 42, 31, 0.05);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  color: var(--primary);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(49, 47, 36, 0.6);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  background-color: var(--surface-container-lowest);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card:hover {
  box-shadow: 0 20px 40px rgba(172, 42, 31, 0.12);
  transform: translateY(-0.5rem);
}

.card-image {
  width: 100%;
  height: 16rem;
  overflow: hidden;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-body {
  padding: 2.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--on-surface);
}

.card-text {
  color: rgba(49, 47, 36, 0.7);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.chip {
  background-color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(49, 47, 36, 0.6);
  display: inline-block;
}

.card-action {
  width: 100%;
  background-color: var(--tertiary);
  color: white;
  padding: 0.75rem;
  border-radius: var(--radius-full);
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.card-action:hover {
  background-color: var(--tertiary-dim);
}

/* Recipe Cards */
.recipe-card {
  background-color: var(--surface-container-lowest);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.recipe-card-image {
  width: 100%;
  height: 16rem;
  overflow: hidden;
}

.recipe-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.recipe-card:hover .recipe-card-image img {
  transform: scale(1.1);
}

.recipe-card-body {
  padding: 2.5rem;
}

.recipe-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--on-surface);
  margin-bottom: 1rem;
}

.recipe-card-text {
  color: rgba(49, 47, 36, 0.7);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.recipe-card-link {
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.recipe-card-link:hover {
  gap: 1rem;
}

/* Grids — mobile-first (was inverted; fixed in v1.2.0) */
.grid {
  display: grid;
  gap: 2rem;
}

/* Mobile defaults: 1 column */
.grid-cols-2,
.grid-cols-3 {
  grid-template-columns: 1fr;
}

/* Tablet: 2 columns for both grid-cols-2 and grid-cols-3 */
@media (min-width: 640px) {
  .grid-cols-2,
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: grid-cols-3 expands to 3 columns */
@media (min-width: 1024px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Footer */
footer {
  background-color: #3b1f0b;
  color: white;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

footer a {
  color: #d1d5db;
  transition: all 0.3s ease;
}

footer a:hover {
  color: white;
  transform: translateX(0.25rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 1.5rem;
  max-width: 1344px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 4rem 3rem;
  }
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--font-headline);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-title.highlight {
  color: #fbbf24;
}

.footer-text {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 1rem;
}

.footer-list a {
  font-size: 0.875rem;
  color: #d1d5db;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-list a:hover {
  color: white;
  transform: translateX(0.25rem);
}

.footer-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 8rem;
  margin-top: 1rem;
}

.footer-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  text-align: center;
}

.footer-divider p {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  background-color: var(--tertiary);
  color: white;
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0, 106, 46, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

/* Responsive */
@media (max-width: 640px) {
  body {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .whatsapp-float,
  .btn-print-hide {
    display: none;
  }

  body {
    background-color: white;
  }
}

/* Force light color scheme — Theobroma's brand identity is warm cream
 * + cocoa + gold, designed to be presented in light mode only. The
 * previous @media (prefers-color-scheme: dark) block (removed in v1.2.5)
 * was incomplete and produced unreadable text/background combinations
 * for users with dark-mode OS. We explicitly declare light-only to
 * prevent browser auto-dark-mode (Chrome's experimental feature) too. */
:root {
  color-scheme: light only;
}

/* WordPress Specific */
.wp-caption {
  max-width: 100%;
}

.wp-caption img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.wp-caption-text {
  margin: 0.5rem 0;
  font-size: 0.875rem;
  color: rgba(49, 47, 36, 0.6);
}

.aligncenter {
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Post & Page Content */
.post-content,
.page-content {
  max-width: 48rem;
  margin: 0 auto;
  color: var(--on-surface);
  line-height: 1.8;
}

.post-content h2,
.page-content h2 {
  margin: 2rem 0 1rem;
  color: var(--primary);
}

.post-content h3,
.page-content h3 {
  margin: 1.5rem 0 0.75rem;
  color: var(--on-surface);
}

.post-content p,
.page-content p {
  margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol,
.page-content ul,
.page-content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.post-content li,
.page-content li {
  margin-bottom: 0.5rem;
}

.post-content strong,
.page-content strong {
  font-weight: 700;
  color: var(--on-surface);
}

.post-content em,
.page-content em {
  font-style: italic;
  color: var(--on-surface);
}

.post-content blockquote,
.page-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: rgba(49, 47, 36, 0.7);
  font-style: italic;
}

.post-content code,
.page-content code {
  background-color: var(--surface-container-low);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}

/* Featured Image */
.featured-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin-bottom: 2rem;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}

.pagination a,
.pagination span {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--outline-variant);
  color: var(--on-surface);
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

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

/* ====================================================================
 * Front Page additions (v1.2.0) — for the homepage one-pager template.
 * Section container, historia layout, card chips/subtitle, CTA banner,
 * section-header row variant, large button.
 * ==================================================================== */

.section-container {
  max-width: 1344px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .section-container {
    padding: 0 3rem;
  }
}

/* Section-header row variant (title left, link right) */
.section-header-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-header-row {
    flex-direction: row;
    align-items: flex-end;
  }
}

.section-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease;
}

@media (min-width: 768px) {
  .section-link {
    display: inline-flex;
  }
}

.section-link:hover {
  gap: 1rem;
  color: var(--primary);
}

.section-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* Historia (about) section grid */
.historia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .historia-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.historia-image {
  position: relative;
}

.historia-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.historia-image img:hover {
  transform: rotate(0deg);
}

.historia-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(49, 47, 36, 0.85);
  margin-bottom: 1.5rem;
}

.historia-text p strong {
  color: var(--on-surface);
  font-weight: 700;
}

.historia-features {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature .material-symbols-outlined {
  font-size: 2.5rem;
  color: var(--primary);
}

.feature span:last-child {
  font-weight: 700;
  font-family: var(--font-headline);
  font-size: 0.95rem;
}

/* Card subtitle (e.g. "(56% min cacao)" inside product title) */
.card-subtitle {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(49, 47, 36, 0.6);
  margin-top: 0.25rem;
}

.card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

/* Large button variant (CTA) */
.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 800;
}

/* CTA banner inside section-primary */
.section-primary {
  padding: 5rem 1.5rem;
  background-color: transparent;
}

.cta-banner {
  background-color: var(--primary);
  color: white;
  border-radius: var(--radius-3xl);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 5rem 3rem;
  }
}

.cta-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3.75rem;
  }
}

.cta-subtitle {
  color: rgba(255, 239, 237, 0.95);
  font-size: 1.25rem;
  max-width: 36rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .cta-subtitle {
    font-size: 1.5rem;
  }
}

.cta-banner .btn-primary {
  background-color: var(--tertiary);
}

.cta-banner .btn-primary:hover {
  background-color: var(--tertiary-dim);
  transform: scale(1.1);
}
