/* ==========================================================================
   Sicily Meat - Stili Unificati
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABILI CSS (Custom Properties)
   -------------------------------------------------------------------------- */
:root {
  /* Colori brand */
  --accent-color: #B8860B;
  --accent-hover: #8B6914;
  --accent-light: #D4AF37;
  
  /* Colori base */
  --dark-color: #343a40;
  --light-bg: #f8f9fa;
  --gold-bg: #fffbf0;
  --white-bg: #ffffff;
  
  /* Colori text */
  --text-dark: #1a1a1a;
  --text-muted: #6c757d;
  --text-light: #555;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-pill: 50rem;
  
  /* Shadows */
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
  --shadow-md: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

/* --------------------------------------------------------------------------
   2. RESET E BASE
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
}

p {
  line-height: 1.7;
}

/* Skip to content - Accessibilita */
.visually-hidden-focusable {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.visually-hidden-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAFIA
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.section-title {
  color: var(--text-dark);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.page-content h2 {
  scroll-margin-top: 5rem;
}

.page-content h3 {
  margin-bottom: 1rem;
}

.page-content p {
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.container, .container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
}

.section-padding {
  padding: var(--space-3xl) 0;
}

/* --------------------------------------------------------------------------
   5. BOTTONI
   -------------------------------------------------------------------------- */
.btn-cta-seo {
  background-color: var(--accent-color) !important;
  color: var(--white-bg) !important;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.75rem !important;
  transition: all var(--transition-base);
  font-size: 1rem;
}

.btn-cta-seo:hover {
  background-color: var(--accent-hover) !important;
  transform: scale(1.03);
}

.btn-hero-main {
  background: var(--white-bg);
  color: var(--accent-color);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.btn-hero-main:hover {
  background: var(--light-bg);
  color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  font-weight: 600;
  transition: all var(--transition-base);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

/* --------------------------------------------------------------------------
   6. CARDS E PRODOTTI
   -------------------------------------------------------------------------- */
.product-card {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card img {
  height: 320px;
  object-fit: cover;
  width: 100%;
}

.product-card .card-body {
  padding: var(--space-lg);
}

.product-card .card-title {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.product-card .card-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   7. BADGES E ZONE
   -------------------------------------------------------------------------- */
.zone-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white-bg);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0.15rem;
}

.trust-pill {
  background: var(--white-bg);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--dark-color);
  font-size: 0.9rem;
}

.trust-pill i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   8. FAQ
   -------------------------------------------------------------------------- */
.faq-section {
  background: var(--light-bg);
  padding: var(--space-3xl) 0;
}

.faq-item {
  background: var(--white-bg);
  border-radius: var(--radius-lg);
  margin-bottom: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: var(--white-bg);
  border: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   9. CTA E HERO
   -------------------------------------------------------------------------- */
.hero-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
  color: var(--white-bg);
  padding: var(--space-2xl) 0;
}

.cta-section {
  background: var(--dark-color);
  color: var(--white-bg);
  padding: var(--space-3xl) 0;
}

.cta-section h2,
.cta-section p {
  color: var(--white-bg);
}

.cta-finale {
  background: linear-gradient(135deg, var(--gold-bg) 0%, #fff8e1 100%);
  border: 2px solid var(--accent-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  margin: var(--space-2xl) 0;
}

.cta-finale h3 {
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-finale p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

/* --------------------------------------------------------------------------
   9b. IMAGE CONTAINER
   -------------------------------------------------------------------------- */
.image-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   10. INTRO E HIGHLIGHT
   -------------------------------------------------------------------------- */
.intro-home,
.intro-section {
  background: var(--gold-bg);
  border-left: 5px solid var(--accent-color);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
}

.intro-home p,
.intro-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.article-toc {
  background: var(--gold-bg);
  border: 1px solid #f0e8cc;
  border-left: 4px solid var(--accent-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: var(--space-xl);
}

.article-toc h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}

.article-toc a {
  color: var(--dark-color);
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   11. FEATURE CARDS
   -------------------------------------------------------------------------- */
.feature-card {
  background: var(--gold-bg);
  border: 1px solid rgba(209, 161, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.feature-card h6 {
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   12. SPECS E LISTE
   -------------------------------------------------------------------------- */
.product-specs {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.product-specs li {
  padding: 0.35rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}

.product-specs li:last-child {
  border-bottom: none;
}

.product-specs li::before {
  content: "\2713 ";
  color: var(--accent-color);
  font-weight: 700;
  margin-right: 0.5rem;
}

.icon-list {
  list-style: none;
  padding: 0;
}

.icon-list li {
  display: flex;
  align-items: start;
  margin-bottom: 0.8rem;
}

.icon-list i {
  color: var(--accent-color);
  margin-right: 0.8rem;
  margin-top: 0.3rem;
  width: 20px;
}

.icon-check i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.icon-highlight i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

/* --------------------------------------------------------------------------
   13. GALLERY
   -------------------------------------------------------------------------- */
.gallery-intro {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-img {
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   14. FORM
   -------------------------------------------------------------------------- */
.form-label {
  font-weight: 700;
}

.form-check-label a {
  color: var(--accent-color);
}

/* --------------------------------------------------------------------------
   15. COOKIE BANNER
   -------------------------------------------------------------------------- */
#cookieBanner {
  backdrop-filter: blur(10px);
  background: rgba(33, 37, 41, 0.92);
  color: #fff;
  z-index: 9999;
}

#cookieBanner a {
  color: var(--accent-color);
  text-decoration: underline;
}

#cookieBanner .btn-accept {
  background-color: #28a745;
  color: white;
  border: none;
}

#cookieBanner .btn-visualizza {
  background-color: #6c757d;
  color: white;
  border: none;
}

#cookieBanner .btn:hover {
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   16. HERO CAROUSEL
   -------------------------------------------------------------------------- */
#heroCarousel {
  position: relative;
}

#heroCarousel .carousel-inner {
  overflow: hidden;
}

#heroCarousel .carousel-item img {
  width: 100%;
  height: clamp(400px, 50vw, 700px);
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

#heroCarousel .carousel-caption {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 600px;
}

#heroCarousel .carousel-caption h2 {
  font-size: calc(1.5rem + 1vw);
  margin-bottom: 0.5rem;
}

#heroCarousel .carousel-caption p {
  font-size: 1rem;
  margin: 0;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: auto;
  padding: 1rem;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 0.8;
}

#heroCarousel .carousel-control-prev {
  left: 1rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
}

#heroCarousel .carousel-control-next {
  right: 1rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  opacity: 1;
  background: rgba(184, 134, 11, 0.8);
}

#heroCarousel .carousel-indicators {
  bottom: 1rem;
}

#heroCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 4px;
}

@media (max-width: 768px) {
  #heroCarousel .carousel-caption {
    padding: 1rem;
    bottom: 1rem;
  }
  
  #heroCarousel .carousel-caption h2 {
    font-size: 1.1rem;
  }
  
  #heroCarousel .carousel-caption p {
    font-size: 0.85rem;
  }
  
  #heroCarousel .carousel-item img {
    height: clamp(480px, 78vw, 700px);
  }
}

/* --------------------------------------------------------------------------
   17. TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  margin-top: -1.5rem;
  position: relative;
  z-index: 10;
}

/* --------------------------------------------------------------------------
   18. CARD LINK (hover effect)
   -------------------------------------------------------------------------- */
.card-link {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* --------------------------------------------------------------------------
   19. ARTICLE CONTENT
   -------------------------------------------------------------------------- */
.article-content h2 {
  scroll-margin-top: 5rem;
}

/* --------------------------------------------------------------------------
   20. BREADCRUMB
   -------------------------------------------------------------------------- */
.breadcrumb-custom a {
  color: var(--accent-color);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   21. ARTICLE CATEGORY
   -------------------------------------------------------------------------- */
.article-category {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white-bg);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
border-radius: var(--radius-pill);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
  22. RELATED CARD
  -------------------------------------------------------------------------- */
.related-card {
  text-decoration: none;
  display: block;
  border: 1px solid var(--accent-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: all var(--transition-base);
  height: 100%;
}

.related-card:hover {
  border-color: var(--accent-hover);
}

/* --------------------------------------------------------------------------
   23. ARTICLE HIGHLIGHT BOX
   -------------------------------------------------------------------------- */
.article-highlight {
  background: var(--gold-bg);
  border-left: 4px solid var(--accent-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

.article-highlight h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   24. ARTICLE META
   -------------------------------------------------------------------------- */
.article-meta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

/* --------------------------------------------------------------------------
   25. NEWS BUTTON
   -------------------------------------------------------------------------- */
.btn-news {
  background: var(--accent-color);
  color: var(--white-bg);
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

/* --------------------------------------------------------------------------
   26. SERVICE CARD / STEP CARD
   -------------------------------------------------------------------------- */
.step-card .step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--white-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* --------------------------------------------------------------------------
   27. WHATSAPP BUTTON
   -------------------------------------------------------------------------- */
.btn-whatsapp-seo {
  background-color: #25D366 !important;
  color: var(--white-bg) !important;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.75rem !important;
  transition: all var(--transition-base);
  font-size: 1.05rem;
}

.btn-whatsapp-seo:hover {
  background-color: #1fb855 !important;
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   28. PRODUCT SECTION
   -------------------------------------------------------------------------- */
.product-section {
  padding: var(--space-3xl) 0;
}

.product-section img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .product-section img {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .product-section img {
    height: 300px;
  }
}

/* --------------------------------------------------------------------------
   29. HERO PORCHE (Page-specific)
   -------------------------------------------------------------------------- */
.hero-porche {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/immagini/prodotti/11.webp");
  background-size: cover;
  background-position: center center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white-bg);
}

.hero-porche h1,
.hero-agrumata h1,
.hero-consegna h1,
.hero-fornitura h1 {
  font-size: calc(2.8rem + 1.5vw);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-porche p,
.hero-agrumata p,
.hero-consegna p,
.hero-fornitura p {
  font-size: calc(1.2rem + 0.5vw);
}

.hero-agrumata {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/immagini/slide/4.webp");
  background-size: cover;
  background-position: center center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white-bg);
}

.hero-consegna {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/immagini/prodotti/13.webp");
  background-size: cover;
  background-position: center center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white-bg);
}

.hero-fornitura {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/immagini/prodotti/13.webp");
  background-size: cover;
  background-position: center center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white-bg);
}

@media (max-width: 576px) {
  .hero-porche,
  .hero-agrumata,
  .hero-consegna,
  .hero-fornitura {
    height: 50vh;
  }
}

/* --------------------------------------------------------------------------
   30. RESPONSIVE (Mobile-First)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .product-card img {
    height: 250px;
  }
  
  .cta-finale {
    padding: var(--space-lg);
  }
}

/* --------------------------------------------------------------------------
   14. NEWS INDEX (news/index.php)
   -------------------------------------------------------------------------- */
.news-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid #eee;
}
.news-card {
  border: 1px solid #eee;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
}
.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-card-body {
  padding: 1.5rem;
}
.news-card-category {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.news-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.news-card-title a {
  text-decoration: none;
  color: inherit;
}
.news-card-title a:hover {
  color: var(--accent-color);
}
.news-card-excerpt {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.news-card-meta {
  font-size: 0.8rem;
  color: #adb5bd;
  margin-bottom: 1rem;
}
.news-card-meta span {
  margin-right: 0.75rem;
}
.news-card .btn {
  background-color: var(--accent-color) !important;
  color: #fff !important;
  font-weight: 700;
  border-radius: 50rem;
  padding: 0.5rem 1.25rem !important;
  font-size: 0.85rem;
}
.news-card .btn:hover {
  background-color: var(--accent-hover) !important;
}
.page-item.active .page-link {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.page-link {
  color: var(--accent-color);
}
.page-link:hover {
  color: var(--accent-hover);
}
.no-news {
  text-align: center;
  padding: 4rem 2rem;
  background: #f8f9fa;
  border-radius: 0.75rem;
  color: #6c757d;
}

/* --------------------------------------------------------------------------
   15. NEWS ARTICLE (news/articolo-template.php)
   -------------------------------------------------------------------------- */
.article-header {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.article-meta {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
}
.article-category {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}
.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f0f0f0;
}
.article-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #343a40;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.article-content p {
  margin-bottom: 1.25rem;
}
.article-content ul,
.article-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.article-content li {
  margin-bottom: 0.5rem;
}
.breadcrumb-custom {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}
.breadcrumb-custom a {
  color: var(--accent-color);
  text-decoration: none;
}
.breadcrumb-custom a:hover {
  text-decoration: underline;
}
.cta-finale {
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 0.75rem;
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
}
.cta-finale h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.cta-finale p {
  color: #6c757d;
  margin-bottom: 1.25rem;
}
.btn-porchetta {
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  border-radius: 50rem;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  display: inline-block;
}
.btn-porchetta:hover {
  background: var(--accent-hover);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 700;
  border-radius: 50rem;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  display: inline-block;
  margin-left: 0.5rem;
}
.faq-section {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--gold-bg);
  border-left: 5px solid var(--accent-color);
  border-radius: 0.5rem;
}
.faq-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #212529;
}
.faq-item {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
}
.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.faq-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.5rem;
}
.faq-item p {
  color: #555;
  font-size: 0.95rem;
  margin: 0;
}
.article-related h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #212529;
}
.related-card {
  text-decoration: none;
  display: block;
  border: 1px solid var(--accent-color);
  border-radius: 0.5rem;
  padding: 1rem;
  transition: all 0.3s ease;
  height: 100%;
}
.related-card:hover {
  background: var(--gold-bg);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}
.related-card small {
  font-size: 0.75rem;
  color: #6c757d;
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   16. CONTACT PAGE (contatti-sicily-meat-porche.php)
   -------------------------------------------------------------------------- */
.page-content p {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #555;
}
.page-content .list-unstyled a {
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .news-card img {
    height: 180px;
  }
  .news-hero {
    padding: 2rem 0;
  }
  .article-header {
    padding: 2rem 0 1.5rem;
  }
  .article-content h2 {
    font-size: 1.3rem;
  }
  .article-content h3 {
    font-size: 1.1rem;
  }
  .cta-finale {
    padding: var(--space-lg);
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 1140px;
  }
}
