/* ==========================================================================
   EspressoVista — Master Mobile-First Design System
   "Better Coffee, Better Choices."
   ========================================================================== */

:root {
  /* Core Standard Theme Tokens (Light Mode Default) */
  --bg: #F7F1E8;
  --surface: #FFFFFF;
  --surface-elevated: #FAF6F0;
  --surface-subtle: #F5EFE6;
  --surface-card: #FFFFFF;
  --surface-warm: #FAF6F0;
  --text: #241815;
  --text-primary: #241815;
  --text-secondary: #4A3A34;
  --text-muted: #66554E;
  --border: rgba(58, 38, 32, 0.12);
  --border-light: rgba(58, 38, 32, 0.1);
  --border-subtle: rgba(184, 107, 62, 0.18);
  --accent: #B86B3E;
  --accent-hover: #9E582E;
  --accent-light: rgba(184, 107, 62, 0.12);

  /* Official EspressoVista Color Palette & Semantic Aliases */
  --ev-bg: var(--bg);
  --ev-surface: var(--surface);
  --ev-surface-elevated: var(--surface-elevated);
  --ev-surface-subtle: var(--surface-subtle);
  --ev-surface-card: var(--surface-card);
  --ev-surface-warm: var(--surface-warm);
  --ev-cream: #F7F1E8;
  --ev-white: #FFFFFF;
  --ev-card-bg: #FFFFFF;
  --ev-deep-espresso: #241815;
  --ev-dark-coffee: #3A2620;
  --ev-soft-brown: #70564A;
  --ev-text: #211A17;
  --ev-text-primary: #241815;
  --ev-text-secondary: #4A3A34;
  --ev-text-muted: #66554E;
  --ev-border: rgba(58, 38, 32, 0.12);
  --ev-border-light: rgba(58, 38, 32, 0.1);
  --ev-border-subtle: rgba(184, 107, 62, 0.2);
  --ev-copper: #B86B3E;
  --ev-copper-hover: #9E582E;
  --ev-copper-light: rgba(184, 107, 62, 0.12);
  --ev-warm-beige: #E9DED0;

  /* Elevation Shadows */
  --ev-shadow-xs: 0 1px 3px rgba(36, 24, 21, 0.05);
  --ev-shadow-sm: 0 4px 12px rgba(36, 24, 21, 0.06);
  --ev-shadow-md: 0 10px 28px rgba(36, 24, 21, 0.08);
  --ev-shadow-lg: 0 18px 45px rgba(36, 24, 21, 0.12);

  /* Typography */
  --ev-font-serif: 'Playfair Display', Georgia, serif;
  --ev-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions & Border Radii */
  --ev-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --ev-radius-sm: 6px;
  --ev-radius-md: 12px;
  --ev-radius-lg: 18px;
  --ev-radius-full: 9999px;

  /* Max Width */
  --ev-container-width: 1240px;
}

/* ==========================================================================
   Zero Horizontal Overflow & Base Resets
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body.espressovista-page,
.espressovista-root {
  background-color: var(--ev-cream);
  color: var(--ev-text);
  font-family: var(--ev-font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.espressovista-root img {
  max-width: 100%;
  height: auto;
  display: block;
}

.espressovista-root a {
  color: inherit;
  text-decoration: none;
  transition: var(--ev-transition);
}

.ev-container {
  width: 100%;
  max-width: var(--ev-container-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .ev-container {
    padding: 0 28px;
  }
}

/* ==========================================================================
   Typography Hierarchy (Responsive Clamping)
   ========================================================================== */
.ev-h1,
.ev-h2,
.ev-h3,
.ev-h4 {
  font-family: var(--ev-font-serif);
  font-weight: 700;
  color: var(--ev-deep-espresso);
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ev-h1 {
  font-size: clamp(1.85rem, 5.5vw, 3.2rem);
  letter-spacing: -0.02em;
}

.ev-h2 {
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.ev-h3 {
  font-size: clamp(1.15rem, 3vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.ev-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  font-family: var(--ev-font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ev-copper);
  margin-bottom: 12px;
}

.ev-eyebrow::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 2px;
  background: var(--ev-copper);
  border-radius: 2px;
  margin-right: 2px;
}

.ev-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.ev-section-desc {
  color: var(--ev-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ==========================================================================
   Buttons & Touch Targets (WCAG 2.1 Compliant >= 44x44px)
   ========================================================================== */
.ev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--ev-radius-md);
  font-family: var(--ev-font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--ev-transition);
  text-align: center;
  min-height: 44px;
  min-width: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.ev-btn-primary {
  background-color: var(--ev-copper);
  color: var(--ev-white) !important;
  box-shadow: 0 4px 12px rgba(184, 107, 62, 0.3);
}

.ev-btn-primary:hover {
  background-color: var(--ev-copper-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(184, 107, 62, 0.4);
  color: var(--ev-white) !important;
}

.ev-btn-secondary {
  background-color: transparent;
  color: var(--ev-deep-espresso);
  border-color: var(--ev-deep-espresso);
}

.ev-btn-secondary:hover {
  background-color: var(--ev-deep-espresso);
  color: var(--ev-white) !important;
  transform: translateY(-2px);
}

.ev-btn-sm {
  padding: 8px 16px;
  font-size: 0.86rem;
  min-height: 40px;
  border-radius: var(--ev-radius-sm);
}

/* ==========================================================================
   Top Utility Trust Bar (Single-Line, Responsive)
   ========================================================================== */
.ev-top-bar {
  background-color: #1A110E;
  color: #C9B9B3;
  font-size: 0.74rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.02em;
}

.ev-top-bar-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

@media (max-width: 600px) {
  .ev-top-bar {
    font-size: 0.68rem;
    padding: 5px 0;
  }
}



/* ==========================================================================
   Visually Hidden Accessibility Utility
   ========================================================================== */
.ev-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ==========================================================================
   Definitive Global Header (Logo | Compact Search | Dedicated Mobile Drawer)
   ========================================================================== */
.ev-site-header {
  background-color: rgba(247, 241, 232, 0.97);
  border-bottom: 1px solid var(--ev-border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.ev-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
  width: 100%;
}

.ev-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
  text-decoration: none;
}

.ev-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--ev-shadow-xs);
}

.ev-brand-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.ev-brand-name {
  font-family: var(--ev-font-serif);
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  font-weight: 700;
  color: var(--ev-deep-espresso);
  line-height: 1.15;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.ev-brand-name span {
  color: var(--ev-copper);
}

.ev-brand-tagline {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--ev-soft-brown);
  margin-top: 1px;
  white-space: nowrap;
}

/* Desktop Main Navigation */
.ev-main-nav {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.ev-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
  list-style: none;
}

.ev-nav-link {
  font-size: clamp(0.84rem, 0.95vw, 0.90rem);
  font-weight: 600;
  color: var(--ev-dark-coffee, #3D2D24);
  padding: 8px 4px;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
  text-decoration: none;
}

.ev-nav-link::after {
  display: none !important;
  content: '';
}

.ev-nav-link:hover {
  color: var(--ev-copper, #C06A2E);
}

.ev-nav-link.active,
.ev-nav-link[aria-current="page"] {
  color: var(--ev-copper, #C06A2E);
}

.ev-nav-link.active::after,
.ev-nav-link[aria-current="page"]::after {
  display: block !important;
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2.5px !important;
  background-color: var(--ev-copper, #C06A2E) !important;
  border-radius: 2px !important;
}

@keyframes evNavFadeIn {
  from {
    opacity: 0;
    transform: scaleX(0.7);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Header Actions & Desktop Search */
.ev-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.ev-search-form.ev-desktop-search {
  position: relative;
  display: flex;
  align-items: center;
}

.ev-search-submit-btn {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c7a72;
  transition: color 0.2s ease;
  z-index: 2;
  line-height: 1;
}

.ev-search-submit-btn:hover {
  color: var(--ev-copper);
}

.ev-search-submit-btn .ev-search-icon {
  width: 14px;
  height: 14px;
  display: block;
  pointer-events: none;
}

.ev-search-form.ev-desktop-search .ev-search-input,
.ev-search-input {
  width: 150px !important;
  max-width: 195px;
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 12px 0 32px !important;
  border-radius: var(--ev-radius-full) !important;
  border: 1px solid rgba(58, 38, 32, 0.14) !important;
  background-color: rgba(255, 255, 255, 0.85) !important;
  font-family: var(--ev-font-sans) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  line-height: 36px !important;
  color: var(--ev-text) !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.ev-search-form.ev-desktop-search .ev-search-input::placeholder,
.ev-search-input::placeholder {
  color: #9c8a82;
  font-size: 0.80rem;
  font-weight: 400;
  opacity: 1;
}

.ev-search-form.ev-desktop-search .ev-search-input:hover,
.ev-search-input:hover {
  border-color: rgba(184, 107, 62, 0.35) !important;
  background-color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(36, 24, 21, 0.04) !important;
}

.ev-search-form.ev-desktop-search .ev-search-input:focus,
.ev-search-input:focus {
  outline: none !important;
  width: 195px !important;
  border-color: var(--ev-copper) !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px var(--ev-copper-light) !important;
}

/* Header Mobile Icon Toggles (Matching Pair: Search & Hamburger) */
.ev-header-icon-btn,
.ev-search-toggle,
.ev-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--ev-border-light);
  border-radius: var(--ev-radius-md);
  background-color: rgba(255, 255, 255, 0.85);
  color: var(--ev-deep-espresso);
  cursor: pointer;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
  transition: var(--ev-transition);
  position: relative;
  box-shadow: var(--ev-shadow-xs);
}

.ev-header-icon-btn:hover,
.ev-search-toggle:hover,
.ev-mobile-toggle:hover,
.ev-header-icon-btn:active,
.ev-search-toggle:active,
.ev-mobile-toggle:active {
  background-color: var(--ev-warm-beige);
  color: var(--ev-copper);
  border-color: var(--ev-border-subtle);
}

.ev-header-icon-btn:focus-visible,
.ev-search-toggle:focus-visible,
.ev-mobile-toggle:focus-visible {
  outline: none;
  border-color: var(--ev-copper);
  box-shadow: 0 0 0 3px var(--ev-copper-light);
}

.ev-header-icon-btn .ev-btn-icon,
.ev-header-icon-btn svg,
.ev-search-toggle svg,
.ev-mobile-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
  margin: auto;
  flex-shrink: 0;
  pointer-events: none;
  color: currentColor;
}

/* Mobile Search Dropdown */
.ev-mobile-search-dropdown {
  display: none;
  width: 100%;
  padding: 10px 0 14px;
  border-top: 1px solid var(--ev-border-light);
  animation: evSlideDown 0.2s ease;
}

@keyframes evSlideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ev-mobile-search-dropdown.ev-search-open {
  display: block;
}

.ev-mobile-search-form {
  display: flex;
  gap: 8px;
  width: 100%;
}

.ev-mobile-search-input {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  border-radius: var(--ev-radius-md);
  border: 1px solid var(--ev-border-light);
  background-color: var(--ev-white);
  font-family: var(--ev-font-sans);
  font-size: 16px;
  /* Prevents iOS zoom */
  color: var(--ev-text);
  transition: var(--ev-transition);
}

.ev-mobile-search-input:focus {
  outline: none;
  border-color: var(--ev-copper);
  box-shadow: 0 0 0 3px var(--ev-copper-light);
}

.ev-mobile-search-submit {
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  flex-shrink: 0;
  border-radius: var(--ev-radius-md);
}

/* Dedicated Mobile Off-Canvas Drawer & Backdrop */
.ev-mobile-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(36, 24, 21, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ev-mobile-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.ev-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86%;
  max-width: 380px;
  background-color: var(--ev-cream);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -4px 0 28px rgba(36, 24, 21, 0.2);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-left: 1px solid var(--ev-border-light);
}

.ev-mobile-drawer.is-open {
  transform: translateX(0);
}

.ev-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ev-border-light);
  background-color: rgba(255, 255, 255, 0.6);
}

.ev-drawer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ev-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: var(--ev-radius-md);
  border: 1px solid var(--ev-border-light);
  background: var(--ev-white);
  color: var(--ev-deep-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ev-transition);
  touch-action: manipulation;
}

.ev-drawer-close:hover,
.ev-drawer-close:active {
  background-color: var(--ev-warm-beige);
  color: var(--ev-copper);
}

.ev-drawer-nav {
  padding: 16px 12px;
  flex: 1;
}

.ev-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ev-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ev-dark-coffee);
  border-radius: var(--ev-radius-md);
  transition: var(--ev-transition);
  min-height: 46px;
}

.ev-drawer-link:hover,
.ev-drawer-link:active,
.ev-drawer-link.active {
  background-color: var(--ev-warm-beige);
  color: var(--ev-copper);
  font-weight: 700;
}

.ev-drawer-link svg {
  color: var(--ev-soft-brown);
  transition: transform 0.2s ease;
}

.ev-drawer-link:hover svg,
.ev-drawer-link.active svg {
  color: var(--ev-copper);
  transform: translateX(3px);
}

.ev-drawer-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ev-soft-brown);
  padding: 10px 14px 4px;
}

.ev-drawer-divider {
  height: 1px;
  background-color: var(--ev-border-light);
  margin: 12px 14px;
}

.ev-drawer-secondary-links .ev-drawer-link {
  font-size: 0.90rem;
  font-weight: 500;
  color: var(--ev-text);
  min-height: 40px;
  padding: 8px 14px;
}

.ev-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--ev-border-light);
  background-color: rgba(255, 255, 255, 0.4);
  margin-top: auto;
}

.ev-drawer-trust-note {
  font-size: 0.78rem;
  color: var(--ev-text-muted);
  text-align: center;
}

body.ev-mobile-menu-active {
  overflow: hidden !important;
  touch-action: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.ev-hero-section {
  padding: 48px 0 36px;
}

.ev-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ev-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background-color: #ede2d3;
  color: #7b4320;
  border: 1px solid #dfcfbc;
  border-radius: var(--ev-radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.ev-hero-lead {
  font-size: 1.08rem;
  color: var(--ev-text-muted);
  line-height: 1.6;
  margin: 16px 0 28px;
}

.ev-hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ev-hero-card {
  position: relative;
  border-radius: var(--ev-radius-lg);
  overflow: hidden;
  box-shadow: var(--ev-shadow-lg);
  border: 1px solid var(--ev-border-light);
}

.ev-hero-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.ev-hero-floating-verdict {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(26, 17, 14, 0.94);
  backdrop-filter: blur(12px);
  border-radius: var(--ev-radius-md);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ev-white);
  gap: 12px;
}

.ev-verdict-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ev-warm-beige);
  margin-bottom: 2px;
}

.ev-verdict-text span {
  font-size: 0.8rem;
  color: #d1c1bb;
  display: block;
}

.ev-verdict-badge {
  background-color: var(--ev-copper);
  color: var(--ev-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--ev-radius-sm);
  white-space: nowrap;
}

/* ==========================================================================
   Trust / Authority Bar
   ========================================================================== */
.ev-trust-bar {
  padding: 20px 0;
  border-top: 1px solid var(--ev-border-light);
  border-bottom: 1px solid var(--ev-border-light);
  background-color: rgba(233, 222, 208, 0.35);
}

.ev-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ev-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ev-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--ev-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ev-copper);
  box-shadow: var(--ev-shadow-xs);
  flex-shrink: 0;
}

.ev-trust-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ev-deep-espresso);
}

.ev-trust-subtitle {
  font-size: 0.76rem;
  color: var(--ev-text-muted);
}

/* ==========================================================================
   Categories Section & Archive Grids
   ========================================================================== */
.ev-categories-section,
.ev-reviews-section,
.ev-archive-content {
  padding: 56px 0;
}

.ev-categories-grid,
.ev-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ev-category-card,
.ev-review-card {
  background-color: var(--ev-card-bg);
  border-radius: var(--ev-radius-md);
  overflow: hidden;
  border: 1px solid var(--ev-border-light);
  box-shadow: var(--ev-shadow-sm);
  transition: var(--ev-transition);
  display: flex;
  flex-direction: column;
}

.ev-category-card:hover,
.ev-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ev-shadow-md);
}

.ev-category-media {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.ev-review-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--ev-surface-warm, #FAF6F0);
  border-bottom: 1px solid var(--ev-border-light, #EFE8E0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  box-sizing: border-box;
}

.ev-category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ev-review-media img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: auto !important;
  display: block !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ev-category-card:hover .ev-category-media img {
  transform: scale(1.04);
}

.ev-review-card:hover .ev-review-media img {
  transform: scale(1.05);
}

.ev-category-count {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  background-color: rgba(24, 15, 12, 0.78) !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  padding: 4px 10px !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  z-index: 5 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.2 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35) !important;
  pointer-events: none !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.ev-review-badge {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background-color: var(--ev-copper, #B86B3E) !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 0.70rem !important;
  font-weight: 700 !important;
  padding: 4px 9px !important;
  border-radius: var(--ev-radius-sm, 6px) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  z-index: 5 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.2 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  pointer-events: none !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
}

.ev-category-body,
.ev-review-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ev-category-title,
.ev-review-title {
  font-size: 1.12rem;
  margin-bottom: 8px;
  line-height: 1.35;
}

.ev-category-desc,
.ev-review-excerpt {
  font-size: 0.86rem;
  color: var(--ev-text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}

.ev-category-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ev-copper);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ev-review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--ev-border-light);
  margin-top: auto;
  gap: 10px;
}

.ev-review-author {
  font-size: 0.82rem;
  color: var(--ev-text-muted);
  font-weight: 500;
}

/* ==========================================================================
   Editorial Countertop Section
   ========================================================================== */
.ev-editorial-section {
  padding: 64px 0;
}

.ev-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ev-editorial-image-frame {
  position: relative;
  border-radius: var(--ev-radius-lg);
  overflow: hidden;
  box-shadow: var(--ev-shadow-lg);
}

.ev-editorial-image-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.ev-editorial-overlay-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 17, 14, 0.95), rgba(26, 17, 14, 0.6) 80%, transparent);
  padding: 24px 20px 16px;
  color: var(--ev-white);
}

.ev-editorial-overlay-title {
  font-family: var(--ev-font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ev-warm-beige);
  margin-bottom: 2px;
}

.ev-editorial-overlay-sub {
  font-size: 0.8rem;
  color: #cfbfb9;
}

.ev-editorial-lead {
  font-size: 1.05rem;
  color: var(--ev-text-muted);
  margin: 14px 0 24px;
}

.ev-pillars-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.ev-pillar-item {
  background-color: var(--ev-white);
  padding: 14px;
  border-radius: var(--ev-radius-md);
  border: 1px solid var(--ev-border-light);
}

.ev-pillar-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ev-deep-espresso);
  margin-bottom: 3px;
}

.ev-pillar-item p {
  font-size: 0.8rem;
  color: var(--ev-text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   Newsletter Section — Premium Unified Component
   ========================================================================== */
.ev-newsletter-section {
  padding: 68px 0;
  background-color: var(--ev-deep-espresso);
  background-image: radial-gradient(circle at 50% 0%, rgba(184, 107, 62, 0.16) 0%, transparent 70%);
  color: var(--ev-white);
}

.ev-newsletter-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 0 12px;
}

.ev-newsletter-eyebrow {
  color: var(--ev-warm-beige) !important;
  margin-bottom: 10px;
}

.ev-newsletter-heading {
  color: var(--ev-white) !important;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  margin-bottom: 12px;
  line-height: 1.2;
}

.ev-newsletter-lead {
  font-size: 1.02rem;
  color: var(--ev-warm-beige);
  margin: 0 auto 28px;
  max-width: 520px;
  line-height: 1.6;
  opacity: 0.92;
}

/* Form container & Layout */
.ev-newsletter-form-wrapper,
.ev-newsletter-card .mc4wp-form {
  margin: 0 auto 16px;
  max-width: 520px;
  width: 100%;
}

.ev-newsletter-form,
.ev-newsletter-card .mc4wp-form-fields {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.ev-newsletter-input,
.ev-newsletter-card input[type="email"] {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 18px;
  border-radius: var(--ev-radius-md);
  border: 1.5px solid rgba(233, 222, 208, 0.25);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--ev-white);
  font-family: var(--ev-font-sans);
  font-size: 15px;
  transition: var(--ev-transition);
}

.ev-newsletter-input::placeholder,
.ev-newsletter-card input[type="email"]::placeholder {
  color: rgba(233, 222, 208, 0.72);
  font-size: 0.92rem;
  opacity: 1;
}

.ev-newsletter-input:hover,
.ev-newsletter-card input[type="email"]:hover {
  border-color: rgba(233, 222, 208, 0.45);
  background-color: rgba(255, 255, 255, 0.14);
}

.ev-newsletter-input:focus,
.ev-newsletter-card input[type="email"]:focus {
  outline: none;
  border-color: var(--ev-copper);
  background-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 3px rgba(184, 107, 62, 0.35);
  color: var(--ev-white);
}

.ev-newsletter-btn,
.ev-newsletter-card input[type="submit"],
.ev-newsletter-card button[type="submit"] {
  height: 48px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--ev-radius-md);
  background-color: var(--ev-copper);
  color: var(--ev-white) !important;
  font-family: var(--ev-font-sans);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(184, 107, 62, 0.35);
  transition: var(--ev-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ev-newsletter-btn:hover,
.ev-newsletter-card input[type="submit"]:hover,
.ev-newsletter-card button[type="submit"]:hover {
  background-color: var(--ev-copper-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 107, 62, 0.45);
}

.ev-newsletter-privacy {
  font-size: 0.78rem;
  color: #b5a49c;
  line-height: 1.5;
  margin-top: 14px;
}

.ev-newsletter-privacy a {
  color: var(--ev-warm-beige);
  text-decoration: underline;
  transition: color 0.2s;
}

.ev-newsletter-privacy a:hover {
  color: var(--ev-white);
}

/* ==========================================================================
   Why Trust Section (E-E-A-T)
   ========================================================================== */
.ev-trust-section {
  padding: 64px 0;
}

.ev-trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.ev-trust-box {
  background-color: var(--ev-white);
  padding: 22px;
  border-radius: var(--ev-radius-md);
  border: 1px solid var(--ev-border-light);
  box-shadow: var(--ev-shadow-sm);
  text-align: center;
}

.ev-trust-box-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f7ede4;
  color: var(--ev-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.ev-trust-box-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ev-deep-espresso);
  margin-bottom: 6px;
}

.ev-trust-box-desc {
  font-size: 0.84rem;
  color: var(--ev-text-muted);
  line-height: 1.5;
}

.ev-trust-links-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--ev-border-light);
}

.ev-trust-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ev-dark-coffee);
}

.ev-trust-link:hover {
  color: var(--ev-copper);
}

/* ==========================================================================
   Breadcrumbs, Filter Pills & Inner Pages
   ========================================================================== */
.ev-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--ev-text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.ev-breadcrumbs a {
  color: var(--ev-soft-brown);
  font-weight: 500;
}

.ev-breadcrumbs a:hover {
  color: var(--ev-copper);
}

.ev-breadcrumb-sep {
  color: var(--ev-border-light);
}

.ev-archive-hero,
.ev-page-hero,
.ev-search-hero {
  padding: 40px 0 28px;
  background-color: var(--ev-surface-elevated, #FAF6F0);
  border-bottom: 1px solid var(--ev-border-light, rgba(58, 38, 32, 0.1));
}

.ev-archive-title,
.ev-page-title,
.ev-search-title {
  font-size: clamp(1.85rem, 5vw, 2.8rem);
  margin-bottom: 10px;
}

.ev-archive-desc,
.ev-search-query-text {
  font-size: 1.02rem;
  color: var(--ev-text-muted);
  max-width: 700px;
  line-height: 1.6;
}

.ev-filter-bar {
  padding: 12px 0;
  background-color: var(--ev-surface, #FFFFFF);
  border-bottom: 1px solid var(--ev-border-light, rgba(58, 38, 32, 0.1));
}

.ev-filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.ev-filter-pill {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ev-dark-coffee);
  background-color: var(--ev-white);
  padding: 6px 14px;
  border-radius: var(--ev-radius-full);
  border: 1px solid var(--ev-border-light);
  white-space: nowrap;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

.ev-filter-pill:hover,
.ev-filter-pill.active {
  background-color: var(--ev-copper);
  color: var(--ev-white) !important;
  border-color: var(--ev-copper);
}

/* Pagination */
.ev-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.ev-pagination ul.page-numbers {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.ev-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--ev-radius-sm);
  background-color: var(--ev-white);
  border: 1px solid var(--ev-border-light);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ev-dark-coffee);
}

.ev-pagination .page-numbers.current,
.ev-pagination a.page-numbers:hover {
  background-color: var(--ev-copper);
  color: var(--ev-white) !important;
  border-color: var(--ev-copper);
}

/* Single Article & Review Layout */
.ev-article-page {
  padding-bottom: 64px;
}

.ev-article-hero {
  padding: 40px 0 28px;
}

.ev-article-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 14px;
}

.ev-article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--ev-text-muted);
  flex-wrap: wrap;
}

.ev-meta-author {
  font-weight: 600;
  color: var(--ev-deep-espresso);
}

.ev-article-media-wrap {
  margin-bottom: 36px;
}

.ev-featured-image-frame {
  border-radius: var(--ev-radius-lg);
  overflow: hidden;
  box-shadow: var(--ev-shadow-md);
  border: 1px solid var(--ev-border-light);
}

.ev-featured-image-frame img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
}

.ev-article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.ev-article-main {
  background-color: var(--ev-white);
  padding: 36px;
  border-radius: var(--ev-radius-md);
  border: 1px solid var(--ev-border-light);
  box-shadow: var(--ev-shadow-sm);
  min-width: 0;
}

.ev-article-content {
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--ev-text);
}

.ev-article-content p {
  margin-bottom: 22px;
}

.ev-article-content h2 {
  font-family: var(--ev-font-serif);
  font-size: clamp(1.45rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--ev-deep-espresso);
  margin: 36px 0 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--ev-border-light);
}

.ev-article-content h3 {
  font-family: var(--ev-font-serif);
  font-size: clamp(1.2rem, 3vw, 1.35rem);
  font-weight: 700;
  color: var(--ev-deep-espresso);
  margin: 28px 0 10px;
}

.ev-article-content ul,
.ev-article-content ol {
  margin: 0 0 22px 24px;
}

.ev-article-content li {
  margin-bottom: 6px;
}

.ev-article-content blockquote {
  border-left: 4px solid var(--ev-copper);
  background-color: rgba(233, 222, 208, 0.3);
  padding: 16px 20px;
  border-radius: 0 var(--ev-radius-md) var(--ev-radius-md) 0;
  font-style: italic;
  margin: 24px 0;
}

/* Specs Box Component */
.ev-specs-box {
  background-color: #fbf8f4;
  border: 1px solid #e7dcce;
  border-radius: var(--ev-radius-md);
  padding: 20px;
  margin: 28px 0;
}

.ev-specs-title {
  font-family: var(--ev-font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ev-deep-espresso);
  margin-bottom: 14px;
  border-bottom: 1px solid #dfcfbc;
  padding-bottom: 6px;
}

.ev-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ev-spec-item {
  display: flex;
  flex-direction: column;
}

.ev-spec-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--ev-soft-brown);
}

.ev-spec-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ev-deep-espresso);
}

/* Pros & Cons Grid Component */
.ev-pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.ev-pros-box {
  background-color: #f2f7f3;
  border: 1px solid #cce2d2;
  border-radius: var(--ev-radius-md);
  padding: 18px;
}

.ev-cons-box {
  background-color: #faf3f3;
  border: 1px solid #e8cccc;
  border-radius: var(--ev-radius-md);
  padding: 18px;
}

.ev-pros-title {
  color: #246d3e;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ev-cons-title {
  color: #a83232;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ev-pros-box ul,
.ev-cons-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ev-pros-box li::before {
  content: '✓ ';
  color: #246d3e;
  font-weight: bold;
}

.ev-cons-box li::before {
  content: '✕ ';
  color: #a83232;
  font-weight: bold;
}

/* Comparison Tables Component (Zero Horizontal Overflow) */
.ev-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 28px 0;
  border-radius: var(--ev-radius-md);
  border: 1px solid var(--ev-border-light);
}

.ev-comparison-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
  text-align: left;
}

.ev-comparison-table th {
  background-color: var(--ev-deep-espresso);
  color: var(--ev-white);
  padding: 12px 16px;
  font-weight: 600;
}

.ev-comparison-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--ev-border-light);
}

.ev-comparison-table tr:nth-child(even) {
  background-color: rgba(233, 222, 208, 0.2);
}

/* Verdict Box Component */
.ev-verdict-box {
  background: linear-gradient(135deg, rgba(36, 24, 21, 0.04), rgba(184, 107, 62, 0.08));
  border: 1px solid var(--ev-copper);
  border-radius: var(--ev-radius-md);
  padding: 20px;
  margin: 32px 0;
}

.ev-verdict-title {
  font-family: var(--ev-font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ev-deep-espresso);
  margin-bottom: 6px;
}

/* Author Bio */
.ev-author-bio {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background-color: rgba(233, 222, 208, 0.35);
  border-radius: var(--ev-radius-md);
  margin-top: 40px;
  border: 1px solid var(--ev-border-light);
}

.ev-author-avatar img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.ev-author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ev-deep-espresso);
  margin-bottom: 3px;
}

.ev-author-text {
  font-size: 0.85rem;
  color: var(--ev-text-muted);
  line-height: 1.5;
}

/* Sidebar Widgets */
.ev-sidebar-widget {
  background-color: var(--ev-white);
  padding: 20px;
  border-radius: var(--ev-radius-md);
  border: 1px solid var(--ev-border-light);
  box-shadow: var(--ev-shadow-xs);
  margin-bottom: 20px;
}

.ev-sidebar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ev-deep-espresso);
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--ev-border-light);
}

.ev-sidebar-search {
  display: flex;
  gap: 6px;
}

.ev-sidebar-search input {
  flex: 1;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--ev-radius-sm);
  border: 1px solid var(--ev-border-light);
  font-family: var(--ev-font-sans);
  font-size: 16px;
}

.ev-sidebar-links {
  list-style: none;
}

.ev-sidebar-links li {
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(58, 38, 32, 0.05);
}

.ev-sidebar-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ev-dark-coffee);
}

.ev-sidebar-links a:hover {
  color: var(--ev-copper);
}

.ev-sidebar-newsletter {
  background-color: #f7ede4;
  border-color: #dfcfbc;
}

/* Related Section */
.ev-related-section {
  padding: 56px 0;
  background-color: rgba(233, 222, 208, 0.25);
  border-top: 1px solid var(--ev-border-light);
  border-bottom: 1px solid var(--ev-border-light);
}

/* Search Hero & Form */
.ev-search-hero-bar {
  margin-top: 20px;
  max-width: 540px;
}

.ev-search-hero-form {
  display: flex;
  gap: 8px;
}

.ev-search-hero-input {
  flex: 1;
  height: 46px;
  padding: 0 16px;
  border-radius: var(--ev-radius-md);
  border: 1px solid var(--ev-border-light);
  background-color: var(--ev-white);
  font-family: var(--ev-font-sans);
  font-size: 16px;
}

.ev-search-hero-input:focus {
  outline: none;
  border-color: var(--ev-copper);
  box-shadow: 0 0 0 3px var(--ev-copper-light);
}

.ev-no-results {
  text-align: center;
  padding: 48px 16px;
  background-color: var(--ev-white);
  border-radius: var(--ev-radius-md);
  border: 1px solid var(--ev-border-light);
}

.ev-no-results-icon {
  color: var(--ev-soft-brown);
  margin-bottom: 14px;
}

/* 404 Page Styling */
.ev-404-page {
  padding: 64px 0 80px;
  text-align: center;
}

.ev-404-container {
  max-width: 600px;
  margin: 0 auto;
}

.ev-404-code {
  display: block;
  font-family: var(--ev-font-serif);
  font-size: clamp(4.5rem, 10vw, 7rem);
  font-weight: 800;
  color: var(--ev-copper);
  line-height: 1;
  margin-bottom: 10px;
}

.ev-404-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 14px;
}

.ev-404-lead {
  font-size: 1.05rem;
  color: var(--ev-text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.ev-404-search-box {
  margin-bottom: 28px;
}

.ev-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Page Main Container */
.ev-page-wrapper {
  padding-bottom: 64px;
}

.ev-page-main {
  padding: 40px 0;
}

.ev-page-content {
  background-color: var(--ev-white);
  padding: 36px;
  border-radius: var(--ev-radius-md);
  border: 1px solid var(--ev-border-light);
  box-shadow: var(--ev-shadow-sm);
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.04rem;
  line-height: 1.8;
}

.ev-page-content h2 {
  font-family: var(--ev-font-serif);
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  color: var(--ev-deep-espresso);
  margin: 32px 0 14px;
  border-bottom: 2px solid var(--ev-border-light);
  padding-bottom: 6px;
}

.ev-page-content p {
  margin-bottom: 18px;
}

/* ==========================================================================
   Global Footer
   ========================================================================== */
.ev-site-footer {
  background-color: #1a110e;
  color: #cfbfb9;
  padding: 56px 0 28px;
}

.ev-footer-disclosure {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--ev-copper);
  padding: 14px 18px;
  border-radius: var(--ev-radius-sm);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.ev-footer-disclosure strong {
  color: var(--ev-warm-beige);
}

.ev-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.ev-footer-about {
  font-size: 0.86rem;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 320px;
}

.ev-footer-title {
  color: var(--ev-white);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

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

.ev-footer-link {
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.ev-footer-link a {
  display: inline-block;
  padding: 3px 0;
}

.ev-footer-link a:hover {
  color: var(--ev-warm-beige);
  padding-left: 4px;
}

.ev-footer-social-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #8c7a72 !important;
  text-decoration: none !important;
  transition: var(--ev-transition, all 0.2s ease) !important;
}

.ev-footer-social-link:hover {
  color: var(--ev-copper, #D4834F) !important;
  padding-left: 0 !important;
  transform: translateX(4px) !important;
}

.ev-footer-social-icon {
  width: 15px !important;
  height: 15px !important;
  flex-shrink: 0 !important;
  color: currentColor !important;
}

.ev-footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #8c7a72;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   Bulletproof suppression of obsolete Blocksy parent Review Hub header/footer
   ========================================================================== */
body.home>#main-container>header.ct-header,
body.home>.ct-drawer-canvas,
body.home>#main-container>footer#footer,
body.home #header.ct-header,
body.home #footer.ct-footer,
body.home .site-branding[data-id="logo"],
body.home nav#header-menu-1,
body.home .ct-header-cta,
body.home button.ct-header-trigger {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* ==========================================================================
   Responsive Breakpoints: Desktop -> Tablet -> Mobile
   ========================================================================== */

/* Tablet & Smaller Desktop (<= 1024px) */
@media (max-width: 1024px) {

  .ev-hero-grid,
  .ev-editorial-grid,
  .ev-article-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ev-categories-grid,
  .ev-reviews-grid,
  .ev-trust-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ev-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ev-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .ev-article-sidebar {
    margin-top: 24px;
  }
}

/* Mobile & Tablet Header Transition (<= 960px) */
@media (max-width: 960px) {
  .ev-main-nav {
    display: none !important;
  }

  .ev-desktop-search {
    display: none !important;
  }

  .ev-search-toggle,
  .ev-mobile-toggle {
    display: flex !important;
  }
}

@media (min-width: 961px) {

  .ev-search-toggle,
  .ev-mobile-toggle,
  .ev-mobile-search-dropdown,
  .ev-mobile-drawer,
  .ev-mobile-backdrop {
    display: none !important;
  }

  .ev-main-nav,
  .ev-search-form.ev-desktop-search {
    display: flex !important;
  }
}

/* Mobile Devices (<= 600px) */
@media (max-width: 600px) {
  .ev-container {
    padding: 0 16px;
  }

  .ev-hero-section {
    padding: 32px 0 24px;
  }

  .ev-hero-card img,
  .ev-editorial-image-frame img {
    height: 240px;
  }

  .ev-hero-floating-verdict {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 12px;
    padding: 12px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .ev-categories-grid,
  .ev-reviews-grid,
  .ev-trust-cards-grid,
  .ev-trust-grid,
  .ev-pillars-list,
  .ev-footer-grid,
  .ev-pros-cons-grid,
  .ev-specs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ev-hero-buttons,
  .ev-newsletter-form,
  .ev-404-actions {
    flex-direction: column;
    width: 100%;
  }

  .ev-hero-buttons .ev-btn,
  .ev-newsletter-form .ev-btn,
  .ev-404-actions .ev-btn {
    width: 100%;
  }

  .ev-article-main,
  .ev-page-content {
    padding: 20px 16px;
  }

  /* Review card vertical mobile footer */
  .ev-review-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 12px;
  }

  .ev-review-footer .ev-btn {
    width: 100%;
    max-width: 180px;
    min-height: 44px;
  }

  .ev-footer-grid {
    gap: 28px;
  }

  .ev-footer-link a {
    padding: 6px 0;
    min-height: 36px;
    display: inline-block;
  }

  .ev-search-hero-form {
    flex-direction: column;
    width: 100%;
  }

  .ev-search-hero-form .ev-btn {
    width: 100%;
  }
}

/* Extra Small Phones (<= 375px) */
@media (max-width: 375px) {
  .ev-container {
    padding: 0 12px;
  }

  .ev-brand-name {
    font-size: 1.15rem;
  }

  .ev-search-toggle,
  .ev-mobile-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
}


/* ==========================================================================
   WordPress Admin Bar Compatibility
   ========================================================================== */
body.admin-bar .ev-site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .ev-site-header {
    top: 46px;
  }
}

/* ==========================================================================
   Refined 404 Page Styling
   ========================================================================== */
.ev-404-page {
  padding: 48px 0 64px;
  text-align: center;
}

.ev-404-card {
  max-width: 580px;
  margin: 0 auto;
  background-color: var(--ev-white);
  padding: 40px 32px;
  border-radius: var(--ev-radius-lg);
  border: 1px solid var(--ev-border-light);
  box-shadow: var(--ev-shadow-sm);
}

.ev-404-code {
  display: block;
  font-family: var(--ev-font-serif);
  font-size: clamp(3.2rem, 7vw, 4.8rem);
  font-weight: 800;
  color: var(--ev-copper);
  line-height: 1;
  margin-bottom: 6px;
}

.ev-404-title {
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  margin-bottom: 10px;
  line-height: 1.25;
}

.ev-404-lead {
  font-size: 0.98rem;
  color: var(--ev-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.ev-404-search-box {
  max-width: 440px;
  margin: 0 auto 28px;
}

.ev-404-search-form {
  display: flex;
  gap: 8px;
  width: 100%;
}

.ev-404-search-input {
  flex: 1;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--ev-radius-md);
  border: 1px solid var(--ev-border-light);
  background-color: var(--ev-cream);
  font-family: var(--ev-font-sans);
  font-size: 16px;
  color: var(--ev-text);
  transition: var(--ev-transition);
}

.ev-404-search-input:focus {
  outline: none;
  border-color: var(--ev-copper);
  background-color: var(--ev-white);
  box-shadow: 0 0 0 3px var(--ev-copper-light);
}

.ev-404-search-btn {
  height: 42px;
  padding: 0 18px;
  border-radius: var(--ev-radius-md);
  flex-shrink: 0;
}

.ev-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.ev-404-btn {
  min-height: 42px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.ev-404-cat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ev-dark-coffee);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .ev-404-page {
    padding: 32px 0 48px;
  }

  .ev-404-card {
    padding: 28px 16px;
  }

  .ev-404-search-form {
    flex-direction: row;
  }

  .ev-404-actions {
    flex-direction: column;
    width: 100%;
  }

  .ev-404-actions .ev-404-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 380px) {
  .ev-404-search-form {
    flex-direction: column;
  }

  .ev-404-search-btn {
    width: 100%;
  }
}

/* ==========================================================================
   Refined Contact Page Styling
   ========================================================================== */
.ev-contact-page {
  padding-bottom: 64px;
}

.ev-contact-hero {
  padding: 40px 0 28px;
  background-color: rgba(233, 222, 208, 0.35);
  border-bottom: 1px solid var(--ev-border-light);
}

.ev-contact-title {
  font-size: clamp(1.85rem, 5vw, 2.8rem);
  margin-bottom: 10px;
}

.ev-contact-lead {
  font-size: 1.02rem;
  color: var(--ev-text-muted);
  max-width: 680px;
  line-height: 1.6;
}

.ev-contact-section {
  padding: 48px 0;
}

.ev-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.ev-contact-info-card,
.ev-contact-form-card {
  background-color: var(--ev-white);
  padding: 36px;
  border-radius: var(--ev-radius-md);
  border: 1px solid var(--ev-border-light);
  box-shadow: var(--ev-shadow-sm);
}

.ev-contact-subheading {
  font-family: var(--ev-font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ev-deep-espresso);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ev-border-light);
}

.ev-contact-subtext {
  color: var(--ev-text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.ev-contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.ev-channel-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 14px;
  background-color: var(--ev-cream);
  border: 1px solid var(--ev-border-light);
  border-radius: var(--ev-radius-md);
  transition: var(--ev-transition);
}

.ev-channel-item:hover {
  border-color: var(--ev-border-subtle);
  background-color: #fcf9f5;
  transform: translateY(-1px);
}

.ev-channel-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--ev-radius-md);
  background-color: #f7ede4;
  color: var(--ev-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ev-channel-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.ev-channel-body {
  flex: 1;
}

.ev-channel-title,
.ev-channel-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ev-deep-espresso);
  margin-bottom: 3px;
}

.ev-channel-desc,
.ev-channel-body p {
  font-size: 0.85rem;
  color: var(--ev-text-muted);
  line-height: 1.5;
  margin: 0;
}

.ev-contact-note {
  background-color: rgba(233, 222, 208, 0.35);
  border-left: 3px solid var(--ev-copper);
  padding: 12px 16px;
  border-radius: var(--ev-radius-sm);
  font-size: 0.84rem;
  color: var(--ev-text-muted);
  line-height: 1.55;
}

.ev-contact-note a {
  color: var(--ev-copper);
  text-decoration: underline;
  font-weight: 600;
}

/* Alert Notifications */
.ev-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--ev-radius-md);
  font-size: 0.90rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.ev-alert svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.ev-alert-success {
  background-color: #edf7ed;
  color: #1e4620;
  border: 1px solid #c8e6c9;
}

.ev-alert-error {
  background-color: #fdf2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Contact Form Elements */
.ev-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ev-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ev-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ev-deep-espresso);
}

.ev-required {
  color: #c93b2b;
}

.ev-form-input,
.ev-form-select,
.ev-form-textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--ev-radius-md);
  border: 1px solid var(--ev-border-light);
  background-color: var(--ev-cream);
  font-family: var(--ev-font-sans);
  font-size: 16px;
  color: var(--ev-text);
  transition: var(--ev-transition);
}

.ev-form-input:focus,
.ev-form-select:focus,
.ev-form-textarea:focus {
  outline: none;
  border-color: var(--ev-copper);
  background-color: var(--ev-white);
  box-shadow: 0 0 0 3px var(--ev-copper-light);
}

.ev-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.ev-form-submit-btn {
  width: 100%;
  margin-top: 6px;
}

/* WPForms Integration Overrides */
.ev-wpforms-wrapper .wpforms-form {
  margin: 0;
}

.ev-wpforms-wrapper .wpforms-field-label {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--ev-deep-espresso) !important;
  margin-bottom: 6px !important;
}

.ev-wpforms-wrapper input[type="text"],
.ev-wpforms-wrapper input[type="email"],
.ev-wpforms-wrapper select,
.ev-wpforms-wrapper textarea {
  width: 100% !important;
  padding: 10px 14px !important;
  border-radius: var(--ev-radius-md) !important;
  border: 1px solid var(--ev-border-light) !important;
  background-color: var(--ev-cream) !important;
  font-family: var(--ev-font-sans) !important;
  font-size: 16px !important;
  color: var(--ev-text) !important;
  transition: var(--ev-transition) !important;
}

.ev-wpforms-wrapper input[type="text"]:focus,
.ev-wpforms-wrapper input[type="email"]:focus,
.ev-wpforms-wrapper select:focus,
.ev-wpforms-wrapper textarea:focus {
  outline: none !important;
  border-color: var(--ev-copper) !important;
  background-color: var(--ev-white) !important;
  box-shadow: 0 0 0 3px var(--ev-copper-light) !important;
}

.ev-wpforms-wrapper .wpforms-submit {
  background-color: var(--ev-copper) !important;
  color: var(--ev-white) !important;
  border: none !important;
  border-radius: var(--ev-radius-md) !important;
  padding: 12px 24px !important;
  font-family: var(--ev-font-sans) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: var(--ev-transition) !important;
  min-height: 44px !important;
  width: 100% !important;
}

.ev-wpforms-wrapper .wpforms-submit:hover {
  background-color: var(--ev-copper-hover) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 900px) {
  .ev-contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {

  .ev-contact-info-card,
  .ev-contact-form-card {
    padding: 24px 16px;
  }
}

/* ==========================================================================
   About Page Layout & Components
   ========================================================================== */
.ev-about-page {
  padding-bottom: 64px;
}

.ev-about-hero {
  padding: 44px 0 32px;
  background-color: rgba(233, 222, 208, 0.35);
  border-bottom: 1px solid var(--ev-border-light);
}

.ev-about-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.ev-about-lead {
  font-size: 1.12rem;
  color: var(--ev-text-muted);
  max-width: 760px;
  line-height: 1.6;
}

.ev-about-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--ev-border-light);
}

.ev-about-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.ev-about-intro-text p {
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--ev-text);
  margin-bottom: 18px;
}

.ev-about-highlight-card {
  background-color: var(--ev-white);
  border: 1px solid var(--ev-border-light);
  border-radius: var(--ev-radius-lg);
  padding: 28px;
  box-shadow: var(--ev-shadow-sm);
}

.ev-highlight-title {
  font-family: var(--ev-font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ev-deep-espresso);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ev-border-light);
}

.ev-highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ev-highlight-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ev-text);
}

.ev-highlight-list li svg {
  color: var(--ev-copper);
  flex-shrink: 0;
  margin-top: 2px;
}

.ev-about-coverage-section {
  background-color: rgba(247, 241, 232, 0.4);
}

.ev-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.ev-coverage-card {
  background-color: var(--ev-white);
  border: 1px solid var(--ev-border-light);
  border-radius: var(--ev-radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--ev-shadow-xs);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ev-coverage-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ev-shadow-md);
  border-color: var(--ev-copper-light);
}

.ev-coverage-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--ev-radius-sm);
  background-color: var(--ev-warm-beige);
  color: var(--ev-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.ev-coverage-title {
  font-family: var(--ev-font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ev-deep-espresso);
  margin-bottom: 8px;
}

.ev-coverage-desc {
  font-size: 0.88rem;
  color: var(--ev-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.ev-coverage-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ev-copper);
  text-decoration: none;
}

.ev-coverage-link:hover {
  text-decoration: underline;
}

.ev-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.ev-pillar-card {
  background-color: var(--ev-white);
  border: 1px solid var(--ev-border-light);
  border-radius: var(--ev-radius-md);
  padding: 28px;
  position: relative;
  box-shadow: var(--ev-shadow-xs);
}

.ev-pillar-num {
  font-family: var(--ev-font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(184, 107, 62, 0.25);
  line-height: 1;
  margin-bottom: 8px;
}

.ev-pillar-title {
  font-family: var(--ev-font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ev-deep-espresso);
  margin-bottom: 8px;
}

.ev-pillar-card p {
  font-size: 0.90rem;
  color: var(--ev-text-muted);
  line-height: 1.6;
  margin: 0;
}

.ev-standards-card {
  background-color: var(--ev-white);
  border: 1px solid var(--ev-border-light);
  border-radius: var(--ev-radius-lg);
  padding: 36px;
  box-shadow: var(--ev-shadow-sm);
}

.ev-standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 28px 0 36px;
}

.ev-standard-item {
  border-left: 3px solid var(--ev-copper);
  padding-left: 16px;
}

.ev-standard-title {
  font-family: var(--ev-font-serif);
  font-size: 1.10rem;
  font-weight: 700;
  color: var(--ev-deep-espresso);
  margin-bottom: 6px;
}

.ev-standard-item p {
  font-size: 0.88rem;
  color: var(--ev-text-muted);
  line-height: 1.6;
  margin: 0;
}

.ev-transparency-box {
  background-color: rgba(233, 222, 208, 0.35);
  border: 1px solid var(--ev-border-light);
  border-radius: var(--ev-radius-md);
  padding: 24px;
}

.ev-transparency-title {
  font-family: var(--ev-font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ev-deep-espresso);
  margin-bottom: 8px;
}

.ev-transparency-box p {
  font-size: 0.90rem;
  color: var(--ev-text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.ev-transparency-box p:last-child {
  margin-bottom: 0;
}

.ev-transparency-box a {
  color: var(--ev-copper);
  font-weight: 600;
  text-decoration: underline;
}

.ev-corrections-card {
  background: linear-gradient(135deg, rgba(36, 24, 21, 0.03), rgba(184, 107, 62, 0.08));
  border: 1px solid var(--ev-border-subtle);
  border-radius: var(--ev-radius-lg);
  padding: 40px;
  text-align: center;
}

.ev-corrections-content {
  max-width: 680px;
  margin: 0 auto;
}

.ev-corrections-content p {
  font-size: 1.02rem;
  color: var(--ev-text-muted);
  line-height: 1.7;
  margin: 12px 0 24px;
}

.ev-corrections-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {

  .ev-about-intro-grid,
  .ev-coverage-grid,
  .ev-pillars-grid,
  .ev-standards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   EspressoVista Design Tokens (Light Mode Default)
   ========================================================================== */
:root,
[data-theme="light"] {
  --bg: #F7F1E8;
  --surface: #FFFFFF;
  --surface-elevated: #FAF6F0;
  --surface-subtle: #F5EFE6;
  --surface-card: #FFFFFF;
  --surface-warm: #FAF6F0;
  --text: #241815;
  --text-primary: #241815;
  --text-secondary: #4A3A34;
  --text-muted: #66554E;
  --border: #E5DCD3;
  --border-light: #EFE8E0;
  --border-subtle: #EFE8E0;
  --accent: #B86B3E;
  --accent-hover: #9C4B1B;
  --accent-light: rgba(184, 107, 62, 0.12);

  --ev-bg: #FAF7F2;
  --ev-surface: #FFFFFF;
  --ev-surface-elevated: #FAF6F0;
  --ev-surface-subtle: #F5EFE6;
  --ev-surface-card: #FFFFFF;
  --ev-surface-warm: #FAF6F0;
  --ev-text-primary: #241815;
  --ev-text-secondary: #4A3A34;
  --ev-text-muted: #7A6962;
  --ev-border: #E5DCD3;
  --ev-border-subtle: #EFE8E0;
  --ev-copper: #B86B3E;
  --ev-copper-hover: #9C4B1B;
  --ev-star-filled: #D47A3B;
  --ev-star-empty: #E5DCD3;
  --ev-star-empty-stroke: #D6C8B8;
  --ev-btn-amazon-bg: #B86B3E;
  --ev-btn-amazon-hover: #9C4B1B;
  --ev-btn-amazon-text: #FFFFFF;
  --ev-btn-sec-border: #D6C8B8;
  --ev-btn-sec-text: #241815;
  --ev-btn-sec-hover-bg: #F4EFE6;
  --ev-btn-sec-hover-border: #4A3A34;
  --ev-accent-green: #246D3E;
  --ev-accent-green-bg: #EDF7F0;
  --ev-accent-green-border: #BCE2C9;
  --ev-accent-red: #A83232;
  --ev-accent-red-bg: #FDF2F2;
  --ev-accent-red-border: #F5C6C6;
  --ev-article-bg: #FFFFFF;
  --ev-article-heading: #19100D;
  --ev-article-body: #2D2420;
  --ev-article-muted: #66554E;
  --ev-article-strong: #19100D;
  --ev-article-border: #E5DCD3;
}

/* ==========================================================================
   EspressoVista Dual-Mode Theme Tokens (Light & Dark Parity)
   Universal Selectors: [data-theme="dark"] -> body.dark-mode -> .dark-theme -> prefers-color-scheme
   ========================================================================== */
:root[data-theme="dark"],
html[data-theme="dark"],
body[data-theme="dark"],
body.dark-mode,
.dark-theme,
[data-color-mode="dark"] {
  --bg: #140D0B;
  --surface: #1C1310;
  --surface-elevated: #251A16;
  --surface-subtle: #201613;
  --surface-card: #1C1310;
  --surface-warm: #251A16;
  --text: #F7F1E8;
  --text-primary: #F7F1E8;
  --text-secondary: #D6C8B8;
  --text-muted: #A89689;
  --border: #382620;
  --border-light: #2B1D18;
  --border-subtle: #2B1D18;
  --accent: #D4834F;
  --accent-hover: #E59562;
  --accent-light: rgba(212, 131, 79, 0.15);

  --ev-bg: #140D0B;
  --ev-surface: #1C1310;
  --ev-surface-elevated: #251A16;
  --ev-surface-subtle: #201613;
  --ev-surface-card: #1C1310;
  --ev-surface-warm: #251A16;
  --ev-cream: #140D0B;
  --ev-white: #1C1310;
  --ev-card-bg: #1C1310;
  --ev-deep-espresso: #F7F1E8;
  --ev-dark-coffee: #D6C8B8;
  --ev-soft-brown: #A89689;
  --ev-text: #F7F1E8;
  --ev-text-primary: #F7F1E8;
  --ev-text-secondary: #D6C8B8;
  --ev-text-muted: #A89689;
  --ev-border: #382620;
  --ev-border-light: #2B1D18;
  --ev-border-subtle: #2B1D18;
  --ev-copper: #D4834F;
  --ev-copper-hover: #E59562;
  --ev-copper-light: rgba(212, 131, 79, 0.15);
  --ev-warm-beige: #2A1E19;

  --ev-star-filled: #F59E0B;
  --ev-star-empty: #3A2A22;
  --ev-star-empty-stroke: #4D3930;
  --ev-btn-amazon-bg: #C9723E;
  --ev-btn-amazon-hover: #E0854E;
  --ev-btn-amazon-text: #FFFFFF;
  --ev-btn-sec-border: #4D3930;
  --ev-btn-sec-text: #F7F1E8;
  --ev-btn-sec-hover-bg: rgba(255, 255, 255, 0.08);
  --ev-btn-sec-hover-border: #D6C8B8;
  --ev-accent-green: #4EAF70;
  --ev-accent-green-bg: #162E20;
  --ev-accent-green-border: #234E35;
  --ev-accent-red: #E06D6D;
  --ev-accent-red-bg: #381919;
  --ev-accent-red-border: #5C2626;
  --ev-article-bg: #1C1310;
  --ev-article-heading: #F7F1E8;
  --ev-article-body: #D6C8B8;
  --ev-article-muted: #A89689;
  --ev-article-strong: #F7F1E8;
  --ev-article-border: #382620;

  --ev-shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.35);
  --ev-shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.4);
  --ev-shadow-md: 0 10px 28px rgba(0, 0, 0, 0.5);
  --ev-shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.6);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]):not(.light-mode),
  html:not([data-theme="light"]):not(.light-mode),
  body:not([data-theme="light"]):not(.light-mode) {
    --bg: #140D0B;
    --surface: #1C1310;
    --surface-elevated: #251A16;
    --surface-subtle: #201613;
    --surface-card: #1C1310;
    --surface-warm: #251A16;
    --text: #F7F1E8;
    --text-primary: #F7F1E8;
    --text-secondary: #D6C8B8;
    --text-muted: #A89689;
    --border: #382620;
    --border-light: #2B1D18;
    --border-subtle: #2B1D18;
    --accent: #D4834F;
    --accent-hover: #E59562;
    --accent-light: rgba(212, 131, 79, 0.15);

    --ev-bg: #140D0B;
    --ev-surface: #1C1310;
    --ev-surface-elevated: #251A16;
    --ev-surface-subtle: #201613;
    --ev-surface-card: #1C1310;
    --ev-surface-warm: #251A16;
    --ev-cream: #140D0B;
    --ev-white: #1C1310;
    --ev-card-bg: #1C1310;
    --ev-deep-espresso: #F7F1E8;
    --ev-dark-coffee: #D6C8B8;
    --ev-soft-brown: #A89689;
    --ev-text: #F7F1E8;
    --ev-text-primary: #F7F1E8;
    --ev-text-secondary: #D6C8B8;
    --ev-text-muted: #A89689;
    --ev-border: #382620;
    --ev-border-light: #2B1D18;
    --ev-border-subtle: #2B1D18;
    --ev-copper: #D4834F;
    --ev-copper-hover: #E59562;
    --ev-copper-light: rgba(212, 131, 79, 0.15);
    --ev-warm-beige: #2A1E19;

    --ev-star-filled: #F59E0B;
    --ev-star-empty: #3A2A22;
    --ev-star-empty-stroke: #4D3930;
    --ev-btn-amazon-bg: #C9723E;
    --ev-btn-amazon-hover: #E0854E;
    --ev-btn-amazon-text: #FFFFFF;
    --ev-btn-sec-border: #4D3930;
    --ev-btn-sec-text: #F7F1E8;
    --ev-btn-sec-hover-bg: rgba(255, 255, 255, 0.08);
    --ev-btn-sec-hover-border: #D6C8B8;
    --ev-accent-green: #4EAF70;
    --ev-accent-green-bg: #162E20;
    --ev-accent-green-border: #234E35;
    --ev-accent-red: #E06D6D;
    --ev-accent-red-bg: #381919;
    --ev-accent-red-border: #5C2626;
    --ev-article-bg: #1C1310;
    --ev-article-heading: #F7F1E8;
    --ev-article-body: #D6C8B8;
    --ev-article-muted: #A89689;
    --ev-article-strong: #F7F1E8;
    --ev-article-border: #382620;

    --ev-shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.35);
    --ev-shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.4);
    --ev-shadow-md: 0 10px 28px rgba(0, 0, 0, 0.5);
    --ev-shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.6);
  }
}

/* ==========================================================================
   EspressoVista Premium Single Product Review Template
   ========================================================================== */
.ev-single-review-page {
  background-color: var(--ev-bg);
  color: var(--ev-text-primary);
  padding-bottom: 64px;
}

.ev-review-breadcrumbs-wrap {
  padding: 20px 0 10px;
  background-color: var(--ev-surface-subtle);
  border-bottom: 1px solid var(--ev-border);
}

.ev-review-hero-section {
  padding: 36px 0 44px;
  background-color: var(--ev-surface);
}

.ev-review-hero-card {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

/* 1. Product Image Presentation & Interactive Gallery */
.ev-product-gallery {
  margin-bottom: 28px;
}

.ev-gallery-main-frame {
  max-width: 500px;
  margin: 0 auto 16px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.ev-gallery-main-frame img {
  max-width: 100%;
  max-height: 440px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.2s ease;
  filter: drop-shadow(0 10px 20px rgba(36, 24, 21, 0.09));
}

.ev-gallery-thumbs-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 4px 0;
}

.ev-gallery-thumb-btn {
  width: 74px;
  height: 60px;
  padding: 3px;
  border-radius: var(--ev-radius-sm);
  border: 1.5px solid var(--ev-border);
  background-color: var(--ev-surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.ev-gallery-thumb-btn img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 2px;
}

.ev-gallery-thumb-btn:hover {
  border-color: var(--ev-copper);
  transform: translateY(-2px);
  box-shadow: var(--ev-shadow-xs);
}

.ev-gallery-thumb-btn.active,
.ev-gallery-thumb-btn[aria-selected="true"] {
  border-color: var(--ev-copper);
  border-width: 2px;
  box-shadow: 0 0 0 2px rgba(184, 107, 62, 0.25);
}

/* 2. Product Header, Award Badge & Summary Lead */
.ev-product-header-block {
  margin-bottom: 26px;
}

.ev-award-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--ev-surface-subtle);
  border: 1px solid var(--ev-copper);
  color: var(--ev-copper);
  padding: 4px 14px;
  border-radius: var(--ev-radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ev-product-title {
  font-family: var(--ev-font-serif);
  font-size: clamp(1.75rem, 3.8vw, 2.35rem);
  font-weight: 700;
  color: var(--ev-text-primary);
  line-height: 1.25;
  margin-bottom: 12px;
}

.ev-product-summary-lead {
  font-size: 1.0rem;
  line-height: 1.65;
  color: var(--ev-text-muted);
  max-width: 720px;
  margin: 0 auto 16px;
}

.ev-product-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ev-text-muted);
  flex-wrap: wrap;
}

.ev-meta-author-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ev-text-primary);
}

.ev-author-link {
  color: var(--ev-text-primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.ev-author-link:hover {
  color: var(--ev-copper) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ev-meta-category-tag {
  color: var(--ev-copper);
}

/* 3. Cohesive Rating Scorecard Module (Seamless Dual-Panel Card) */
.ev-rating-module {
  margin: 28px auto 32px;
  max-width: 680px;
  background-color: var(--ev-surface);
  border: 1px solid var(--ev-border);
  border-radius: var(--ev-radius-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.ev-rating-module-inner {
  display: grid;
  grid-template-columns: 1fr 200px;
  align-items: stretch;
}

/* Left Panel: Criteria Breakdown Table */
.ev-criteria-panel {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ev-criteria-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  border: 1px solid var(--ev-border-subtle, rgba(255, 255, 255, 0.12));
}

.ev-criteria-row {
  border-bottom: 1px solid var(--ev-border-subtle, rgba(255, 255, 255, 0.12));
}

.ev-criteria-row:last-child {
  border-bottom: none;
}

.ev-criteria-table td,
.ev-criteria-table th {
  padding: 10px 8px;
  vertical-align: middle;
  box-sizing: border-box;
}

.ev-criterion-name {
  width: 54%;
  font-size: clamp(0.82rem, 2.5vw, 0.88rem);
  font-weight: 700;
  color: var(--ev-text-primary);
  text-align: left;
  line-height: 1.35;
  border-right: 1px solid var(--ev-border-subtle, rgba(255, 255, 255, 0.12));
  padding-left: 10px;
}

.ev-criterion-visual {
  width: 32%;
  text-align: center;
  vertical-align: middle;
  padding: 8px 4px;
  border-right: 1px solid var(--ev-border-subtle, rgba(255, 255, 255, 0.12));
}

.ev-criterion-val {
  width: 14%;
  font-size: 0.90rem;
  font-weight: 800;
  color: var(--ev-text-primary);
  text-align: center;
  font-variant-numeric: tabular-nums;
  padding-right: 8px;
}

.ev-stars-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 3px !important;
  margin: 0 auto !important;
  width: 100% !important;
  text-align: center !important;
}

.ev-star-icon {
  display: block;
}

.ev-star-filled {
  color: var(--ev-star-filled);
}

.ev-star-empty {
  color: var(--ev-star-empty);
}

/* Right Panel: Overall Scorecard */
.ev-scorecard-panel {
  background-color: var(--ev-surface-subtle);
  border-left: 1px solid var(--ev-border-subtle);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ev-score-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 4px;
}

.ev-score-digit {
  font-family: var(--ev-font-sans);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--ev-text-primary);
  letter-spacing: -0.03em;
}

.ev-score-denom {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ev-text-secondary);
}

.ev-scorecard-stars {
  margin: 6px 0 8px;
}

.ev-scorecard-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ev-copper);
}

/* 4. Action Buttons (Refined Conversion-Focused Hierarchy) */
.ev-review-cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px 0 36px;
  flex-wrap: wrap;
}

/* Secondary CTA: Continue Reading (Refined Outline Style) */
.espressovista-root a.ev-btn-secondary,
.espressovista-root a.ev-btn-read-more,
a.ev-btn-secondary,
a.ev-btn-read-more {
  background-color: transparent !important;
  color: var(--ev-btn-sec-text) !important;
  border: 1.5px solid var(--ev-btn-sec-border) !important;
  border-radius: 8px !important;
  padding: 13px 26px !important;
  min-height: 48px !important;
  font-family: var(--ev-font-sans) !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  line-height: 1.2 !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, color 0.2s ease !important;
}

.espressovista-root a.ev-btn-secondary span,
.espressovista-root a.ev-btn-read-more span,
a.ev-btn-secondary span,
a.ev-btn-read-more span {
  color: var(--ev-btn-sec-text) !important;
  font-weight: 700 !important;
}

.espressovista-root a.ev-btn-secondary:hover,
.espressovista-root a.ev-btn-read-more:hover,
a.ev-btn-secondary:hover,
a.ev-btn-read-more:hover {
  background-color: var(--ev-btn-sec-hover-bg) !important;
  border-color: var(--ev-btn-sec-hover-border) !important;
  color: var(--ev-btn-sec-text) !important;
  transform: translateY(-2px) !important;
}

.espressovista-root a.ev-btn-secondary:hover span,
.espressovista-root a.ev-btn-read-more:hover span,
a.ev-btn-secondary:hover span,
a.ev-btn-read-more:hover span {
  color: var(--ev-btn-sec-text) !important;
}

/* Primary CTA: Check Price on Amazon (Clearly Dominant Copper CTA) */
.espressovista-root a.ev-btn-amazon,
a.ev-btn-amazon {
  background-color: var(--ev-btn-amazon-bg) !important;
  color: #FFFFFF !important;
  border: 1.5px solid transparent !important;
  border-radius: 8px !important;
  padding: 13px 28px !important;
  min-height: 48px !important;
  font-family: var(--ev-font-sans) !important;
  font-size: 0.94rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  line-height: 1.2 !important;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 4px 14px rgba(184, 107, 62, 0.25) !important;
}

.espressovista-root a.ev-btn-amazon span,
a.ev-btn-amazon span {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

.espressovista-root a.ev-btn-amazon:hover,
a.ev-btn-amazon:hover {
  background-color: var(--ev-btn-amazon-hover) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(184, 107, 62, 0.38) !important;
}

.espressovista-root a.ev-btn-amazon:hover span,
a.ev-btn-amazon:hover span {
  color: #FFFFFF !important;
}

.ev-amazon-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #FFFFFF;
  fill: currentColor;
}

/* 5. Specs / Pros / Cons 3-Column Section (Unified Equal-Height Component) */
.ev-specs-pros-cons-section {
  border-top: 1px solid var(--ev-border);
  padding-top: 32px;
  margin-top: 24px;
  text-align: left;
}

.ev-spc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.ev-spc-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.ev-spc-card {
  background-color: var(--ev-surface);
  border: 1px solid var(--ev-border);
  border-radius: var(--ev-radius-md);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.ev-specs-card {
  border-top: 3px solid var(--ev-copper);
}

.ev-pros-card {
  border-top: 3px solid var(--ev-accent-green);
}

.ev-cons-card {
  border-top: 3px solid var(--ev-accent-red);
}

.ev-spc-title {
  font-family: var(--ev-font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid var(--ev-border-subtle);
}

.ev-specs-title {
  color: var(--ev-copper);
}

.ev-pros-title {
  color: var(--ev-accent-green);
}

.ev-cons-title {
  color: var(--ev-accent-red);
}

/* Specs List & Key-Value Items (Clean Stacked Layout, Left-Aligned, Natural Wrapping) */
.ev-specs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ev-spec-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--ev-border-subtle, #E5DCD0);
  box-sizing: border-box;
  text-align: left;
  width: 100%;
}

.ev-spec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ev-spec-bullet {
  display: none !important;
}

.ev-spec-label {
  color: var(--ev-text-primary, #2C1E18);
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', -apple-system, sans-serif);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: left;
  display: block;
  width: 100%;
  margin: 0;
}

.ev-spec-value {
  color: var(--ev-text-secondary, #5C4E43);
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', -apple-system, sans-serif);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: left !important;
  word-break: normal;
  overflow-wrap: break-word;
  display: block;
  width: 100%;
  margin: 0;
}


.ev-pros-list,
.ev-cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ev-pros-list li,
.ev-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--ev-text-secondary);
}

.ev-pro-icon {
  color: var(--ev-accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.ev-con-icon {
  color: var(--ev-accent-red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* 6. Full Longform Review Section */
.ev-full-review-section {
  padding: 52px 0 40px;
  background-color: var(--ev-surface-subtle);
  border-top: 1px solid var(--ev-border);
}

.ev-editorial-section-header {
  margin-bottom: 24px;
}

/* Author Bio Box with Avatar Aspect Ratio Fix */
.ev-author-bio {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--ev-surface);
  border: 1px solid var(--ev-border);
  border-radius: var(--ev-radius-md);
  padding: 24px;
  margin-top: 40px;
}

.ev-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--ev-border);
  background-color: var(--ev-surface-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ev-avatar-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 50% !important;
}

.ev-author-info {
  flex: 1;
}

.ev-author-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ev-text-primary);
  margin-bottom: 6px;
}

.ev-author-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ev-text-muted);
  margin: 0;
}

/* Sidebar Product Check Widget (High-Conversion Redesign) */
.ev-sidebar-product-box {
  background-color: var(--ev-surface);
  border: 1px solid var(--ev-border);
  border-top: 3.5px solid var(--ev-copper);
  border-radius: var(--ev-radius-md);
  padding: 20px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ev-sb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--ev-surface-subtle);
  border: 1px solid var(--ev-border);
  border-radius: var(--ev-radius-full);
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ev-copper);
  margin-bottom: 8px;
}

.ev-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #246D3E;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(36, 109, 62, 0.25);
  animation: ev-pulse 2s infinite ease-in-out;
}

@keyframes ev-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.2);
  }
}

.ev-sb-title {
  font-family: var(--ev-font-sans);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ev-text-primary);
  line-height: 1.25;
  margin: 0 0 6px 0;
}

.ev-sb-subtitle {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ev-text-muted);
  margin: 0 0 16px 0;
  max-width: 240px;
}

.espressovista-root a.ev-btn-sidebar-amazon,
a.ev-btn-sidebar-amazon {
  width: 100% !important;
  background-color: var(--ev-copper) !important;
  color: #FFFFFF !important;
  border-radius: 8px !important;
  padding: 12px 14px !important;
  min-height: 46px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 14px rgba(184, 107, 62, 0.28) !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
}

.espressovista-root a.ev-btn-sidebar-amazon:hover,
a.ev-btn-sidebar-amazon:hover {
  background-color: var(--ev-copper-hover, #9C4B1B) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(184, 107, 62, 0.4) !important;
}

.espressovista-root a.ev-btn-sidebar-amazon span,
a.ev-btn-sidebar-amazon span,
.ev-sb-btn-text {
  color: #FFFFFF !important;
  white-space: nowrap !important;
}

.ev-sb-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.74rem;
  color: var(--ev-text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.ev-sb-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ev-text-muted);
  white-space: nowrap;
}

.ev-sb-trust-item svg {
  color: var(--ev-accent-green);
  flex-shrink: 0;
}

.ev-sb-trust-sep {
  color: var(--ev-border);
}

/* Responsive Styles for Product Review Template */
@media (max-width: 1024px) {
  .ev-spc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .ev-rating-module-inner {
    grid-template-columns: 1fr;
  }

  .ev-scorecard-panel {
    border-left: none;
    border-top: 1px solid var(--ev-border-subtle);
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .ev-review-cta-bar {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .espressovista-root a.ev-btn-secondary,
  .espressovista-root a.ev-btn-amazon,
  a.ev-btn-secondary,
  a.ev-btn-amazon {
    width: 100% !important;
    min-height: 48px !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .ev-gallery-main-frame {
    min-height: 240px;
  }

  .ev-gallery-thumb-btn {
    width: 58px;
    height: 48px;
  }

  .ev-product-title {
    font-size: 1.55rem;
  }

  .ev-author-bio {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}

/* ==========================================================================
   EspressoVista Free Ebook Lead Magnet Component (.espresso-lead-magnet)
   "The Home Barista Playbook — 25 Simple Secrets to Better Coffee at Home"
   Compact & Top-Aligned Polish (Desktop Horizontal & Mobile Compact Stacked)
   ========================================================================== */

.espresso-lead-magnet {
  margin: 22px auto 26px;
  max-width: 800px;
  width: 100%;
  clear: both;
  position: relative;
  box-sizing: border-box;
}

.espresso-lead-magnet *,
.espresso-lead-magnet *::before,
.espresso-lead-magnet *::after {
  box-sizing: border-box;
}

.espresso-lead-magnet__card {
  background: #FBF8F3;
  background: linear-gradient(180deg, #FAF7F2 0%, #F5EFE7 100%);
  border: 1px solid #E5DCD0;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(44, 30, 24, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  position: relative;
}

/* ==========================================
   DESKTOP DEFAULT LAYOUT (Two-Column Horizontal, Top-Aligned)
   ========================================== */

.espresso-lead-magnet__main {
  display: grid;
  grid-template-columns: 40% 1fr;
  align-items: stretch;
}

/* Left Column: Media */
.espresso-lead-magnet__media {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 100%;
  width: 100%;
  background: #231814;
}

.espresso-lead-magnet__image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: flex;
}

.espresso-lead-magnet__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.espresso-lead-magnet:hover .espresso-lead-magnet__image {
  transform: scale(1.015);
}

/* Right Column: Editorial Copy (Top-Aligned, Compact) */
.espresso-lead-magnet__content {
  padding: 16px 22px 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.espresso-lead-magnet__header {
  margin-bottom: 2px;
  width: 100%;
}

.espresso-lead-magnet__eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A35D33;
  margin-bottom: 3px;
  line-height: 1;
}

.espresso-lead-magnet__eyebrow::before {
  content: '' !important;
  display: inline-block !important;
  width: 14px !important;
  height: 2px !important;
  background-color: #A35D33 !important;
  border-radius: 2px !important;
  margin: 0 !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
}

.espresso-lead-magnet__rule {
  display: none !important;
}

.espresso-lead-magnet__title {
  font-family: var(--ev-font-serif, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.22rem, 1.85vw, 1.48rem);
  font-weight: 700;
  color: #1A1311;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 2px 0;
}

.espresso-lead-magnet__subtitle {
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.80rem;
  font-weight: 600;
  color: #705B52;
  line-height: 1.25;
  margin: 0 0 6px 0;
}

.espresso-lead-magnet__description {
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.78rem;
  color: #4A3E39;
  line-height: 1.40;
  margin-bottom: 8px;
  max-width: 460px;
}

.espresso-lead-magnet__form-wrap {
  margin-top: 0;
  width: 100%;
}

.espresso-lead-magnet__leadin {
  display: block;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #241815;
  margin-bottom: 5px;
}

.espresso-lead-magnet__form {
  position: relative;
  width: 100%;
}

.espresso-lead-magnet__input-field-wrap {
  position: relative;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  width: 100%;
}

.espresso-lead-magnet__input-icon {
  position: absolute;
  left: 12px;
  color: #7A6961;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.espresso-lead-magnet__input-icon svg {
  width: 15px;
  height: 15px;
}

.espresso-lead-magnet__input {
  width: 100%;
  height: 38px;
  padding: 6px 34px 6px 34px;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.82rem;
  color: #1E1614;
  background: #FFFFFF;
  border: 1.5px solid #D8CEC3;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.espresso-lead-magnet__input::placeholder {
  color: #8C7B73;
  font-size: 0.78rem;
}

.espresso-lead-magnet__input:hover {
  border-color: #A35D33;
}

.espresso-lead-magnet__input:focus {
  border-color: #243D32;
  box-shadow: 0 0 0 3px rgba(36, 61, 50, 0.12);
}

.espresso-lead-magnet__input.is-invalid {
  border-color: #D93838;
  box-shadow: 0 0 0 3px rgba(217, 56, 56, 0.12);
}

.espresso-lead-magnet__input-badge {
  position: absolute;
  right: 10px;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.espresso-lead-magnet__input-badge svg {
  width: 14px;
  height: 14px;
}

.espresso-lead-magnet__button {
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25392F;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 3px 10px rgba(37, 57, 47, 0.14);
  position: relative;
}

.espresso-lead-magnet__btn-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.espresso-lead-magnet__btn-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.espresso-lead-magnet__button:hover {
  background: #1B2B23;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 43, 35, 0.20);
}

.espresso-lead-magnet__button:active {
  transform: translateY(0);
}

.espresso-lead-magnet__button:focus-visible {
  outline: 2px solid #25392F;
  outline-offset: 2px;
}

.espresso-lead-magnet__button.is-loading .espresso-lead-magnet__btn-inner {
  visibility: hidden;
  opacity: 0;
}

.espresso-lead-magnet__btn-spinner {
  display: none;
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: ev-spin 0.6s linear infinite;
}

.espresso-lead-magnet__button.is-loading .espresso-lead-magnet__btn-spinner {
  display: block;
}

/* Feedback States */
.espresso-lead-magnet__feedback {
  margin-top: 6px;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.75rem;
  line-height: 1.35;
  display: none;
}

.espresso-lead-magnet__feedback.is-success {
  display: block;
  color: #155E38;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.espresso-lead-magnet__feedback.is-error {
  display: block;
  color: #991B1B;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  padding: 6px 10px;
  border-radius: 6px;
}

/* Bottom Trust Footer Bar (Desktop: 3-Column Grid) */
.espresso-lead-magnet__footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px 14px;
  padding: 8px 18px;
  border-top: 1px solid #E5DCD0;
  background: #F3ECE2;
  background: linear-gradient(180deg, #F5EEE5 0%, #EFE5D9 100%);
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.68rem;
  color: #635249;
}

.espresso-lead-magnet__brand {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.espresso-lead-magnet__brand-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.espresso-lead-magnet__brand-text {
  display: flex;
  flex-direction: column;
}

.espresso-lead-magnet__brand-name {
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #241815;
  line-height: 1.1;
}

.espresso-lead-magnet__brand-tagline {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #A35D33;
  line-height: 1;
}

.espresso-lead-magnet__trust-text {
  font-size: 0.66rem;
  color: #5A4A42;
  line-height: 1.30;
  padding: 0 4px;
}

.espresso-lead-magnet__privacy-link {
  color: #A35D33;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.espresso-lead-magnet__privacy-link:hover {
  color: #241815;
}

.espresso-lead-magnet__trust-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.espresso-lead-magnet__badge-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.64rem;
  font-weight: 600;
  color: #4A3E39;
  white-space: nowrap;
}

.espresso-lead-magnet__badge-item svg {
  width: 12px;
  height: 12px;
  color: #2D7A54;
  flex-shrink: 0;
}

/* ==========================================
   TABLET BREAKPOINT (768px – 1023px)
   ========================================== */

@media (max-width: 1023px) and (min-width: 768px) {
  .espresso-lead-magnet {
    max-width: 100%;
    margin: 22px auto 26px;
  }

  .espresso-lead-magnet__main {
    grid-template-columns: 40% 1fr;
  }

  .espresso-lead-magnet__content {
    padding: 14px 18px 12px 16px;
  }

  .espresso-lead-magnet__title {
    font-size: clamp(1.18rem, 2vw, 1.40rem);
  }

  .espresso-lead-magnet__description {
    font-size: 0.76rem;
    margin-bottom: 8px;
  }

  .espresso-lead-magnet__footer {
    padding: 7px 16px;
    gap: 8px 12px;
  }
}

/* ==========================================
   MOBILE BREAKPOINT (< 768px) - COMPACT STACKED
   ========================================== */

@media (max-width: 767px) {
  .espresso-lead-magnet {
    margin: 18px auto 22px;
    border-radius: 14px;
    width: 100%;
  }

  .espresso-lead-magnet__card {
    border-radius: 14px;
  }

  .espresso-lead-magnet__main {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  /* Compact Media Container Preserving Full Book Artwork */
  .espresso-lead-magnet__media {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    background: #1C130F;
    display: flex;
  }

  .espresso-lead-magnet__image-wrap {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 190px;
    aspect-ratio: 16 / 10;
    display: flex;
    overflow: hidden;
  }

  .espresso-lead-magnet__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }

  /* Compact Right/Bottom Content Area */
  .espresso-lead-magnet__content {
    padding: 14px 16px 12px 16px;
    align-items: flex-start;
  }

  .espresso-lead-magnet__eyebrow {
    font-size: 0.68rem;
    margin-bottom: 2px;
    letter-spacing: 0.12em;
  }

  .espresso-lead-magnet__title {
    font-size: clamp(1.20rem, 5.2vw, 1.42rem);
    line-height: 1.18;
    margin-bottom: 2px;
  }

  .espresso-lead-magnet__subtitle {
    font-size: 0.78rem;
    line-height: 1.25;
    margin-bottom: 5px;
  }

  .espresso-lead-magnet__description {
    font-size: 0.76rem;
    line-height: 1.38;
    margin-bottom: 8px;
  }

  .espresso-lead-magnet__leadin {
    font-size: 0.66rem;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
  }

  /* Mobile Full-Width Connected Inputs */
  .espresso-lead-magnet__input-field-wrap {
    margin-bottom: 6px;
  }

  .espresso-lead-magnet__input {
    height: 40px;
    font-size: 0.82rem;
    border-radius: 8px;
  }

  .espresso-lead-magnet__button {
    height: 40px;
    border-radius: 8px;
  }

  .espresso-lead-magnet__btn-inner {
    font-size: 0.80rem;
  }

  /* Mobile Centered Footer Strip */
  .espresso-lead-magnet__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 10px 14px;
  }

  .espresso-lead-magnet__brand {
    justify-content: center;
  }

  .espresso-lead-magnet__brand-text {
    align-items: center;
    text-align: center;
  }

  .espresso-lead-magnet__trust-text {
    font-size: 0.66rem;
    line-height: 1.30;
    padding: 0;
    text-align: center;
  }

  .espresso-lead-magnet__trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    margin-top: 2px;
  }

  .espresso-lead-magnet__badge-item {
    font-size: 0.64rem;
    justify-content: center;
  }
}

/* ==========================================
   SMALL MOBILE BREAKPOINT (< 400px - iPhone SE / Mini)
   ========================================== */

@media (max-width: 399px) {
  .espresso-lead-magnet {
    margin: 14px auto 18px;
    border-radius: 12px;
  }

  .espresso-lead-magnet__card {
    border-radius: 12px;
  }

  .espresso-lead-magnet__image-wrap {
    max-height: 165px;
    aspect-ratio: 16 / 10;
  }

  .espresso-lead-magnet__image {
    object-position: center 20%;
  }

  .espresso-lead-magnet__content {
    padding: 12px 12px 10px 12px;
  }

  .espresso-lead-magnet__title {
    font-size: 1.15rem;
  }

  .espresso-lead-magnet__subtitle {
    font-size: 0.74rem;
    margin-bottom: 4px;
  }

  .espresso-lead-magnet__description {
    font-size: 0.74rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .espresso-lead-magnet__input {
    height: 38px;
    font-size: 0.78rem;
  }

  .espresso-lead-magnet__button {
    height: 38px;
  }

  .espresso-lead-magnet__btn-inner {
    font-size: 0.76rem;
  }

  .espresso-lead-magnet__footer {
    padding: 8px 12px;
    gap: 5px;
  }

  .espresso-lead-magnet__trust-badges {
    justify-content: center;
    gap: 8px;
  }
}

/* Social Share Buttons Row (Compact, Secondary, Unobtrusive) */
.espresso-lead-magnet__share {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  padding: 6px 16px 7px;
  background: rgba(246, 241, 233, 0.65);
  border-top: 1px solid #EAE0D3;
}

.espresso-lead-magnet__share-label {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6C5D52;
  white-space: nowrap;
}

.espresso-lead-magnet__share-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.espresso-lead-magnet__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  padding: 0;
  border-radius: 6px;
  background: #FFFFFF;
  border: 1px solid #DFD5C7;
  color: #55473E;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.espresso-lead-magnet__share-btn svg {
  width: 13px;
  height: 13px;
}

.espresso-lead-magnet__share-btn:hover {
  background: #FAF5EE;
  border-color: #CBB9A4;
  color: #C06A2E;
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(44, 30, 24, 0.08);
}

.espresso-lead-magnet__share-btn:hover {
  background: #FAF5EE;
  border-color: #CBB9A4;
  color: #C06A2E;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(44, 30, 24, 0.08);
}

.espresso-lead-magnet__share-btn:focus-visible {
  outline: 2px solid #C06A2E;
  outline-offset: 2px;
}

.espresso-lead-magnet__share-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.espresso-lead-magnet__share-tooltip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #2C1E18;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 20;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.espresso-lead-magnet__share-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -4px;
  border-width: 4px;
  border-style: solid;
  border-color: #2C1E18 transparent transparent transparent;
}

.espresso-lead-magnet__share-btn:hover .espresso-lead-magnet__share-tooltip,
.espresso-lead-magnet__share-btn:focus-visible .espresso-lead-magnet__share-tooltip,
.espresso-lead-magnet__share-btn.copied .espresso-lead-magnet__share-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.espresso-lead-magnet__share-btn.copied {
  background: #E8F5EC !important;
  border-color: #A3D9B5 !important;
  color: #2D7A54 !important;
}

.espresso-lead-magnet__share-btn.copied .ev-share-copy-icon {
  display: none !important;
}

.espresso-lead-magnet__share-btn.copied .ev-share-check-icon {
  display: inline-block !important;
}

@media (max-width: 768px) {
  .espresso-lead-magnet__share {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9px 12px 11px;
    gap: 7px;
  }

  .espresso-lead-magnet__share-label {
    font-size: 0.72rem;
  }

  .espresso-lead-magnet__share-buttons {
    justify-content: center;
    gap: 7px;
  }

  .espresso-lead-magnet__share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }
}


/* ==========================================================================
   COMPLETE SINGLE REVIEW IN-DEPTH & SIDEBAR LAYOUT STYLES (#ev-full-review)
   ========================================================================== */

#ev-full-review,
.ev-full-review-section {
  scroll-margin-top: 90px;
  padding: 56px 0 64px;
  background-color: var(--ev-surface-subtle);
  border-top: 1px solid var(--ev-border);
}

.ev-editorial-section-header {
  margin-bottom: 18px;
}

.ev-editorial-section-header .ev-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ev-copper);
  font-family: var(--ev-font-sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.ev-editorial-section-header .ev-h2 {
  font-family: var(--ev-font-serif, 'Playfair Display', serif);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: var(--ev-text-primary);
  line-height: 1.25;
  margin: 0;
}

/* Main 2-Column Review Grid Layout */
.ev-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

.ev-article-main {
  min-width: 0;
  width: 100%;
}

/* In-Depth Article Content Typography & Formatting */
.ev-article-content {
  font-family: var(--ev-font-sans);
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--ev-text-primary);
}

.ev-article-content p,
.ev-article-content .wp-block-paragraph {
  margin: 0 0 22px 0;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--ev-text-primary);
}

.ev-article-content h2,
.ev-article-content .wp-block-heading:is(h2) {
  font-family: var(--ev-font-serif, 'Playfair Display', serif);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: var(--ev-text-primary);
  line-height: 1.3;
  margin: 40px 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ev-border-subtle);
}

.ev-article-content h3,
.ev-article-content .wp-block-heading:is(h3) {
  font-family: var(--ev-font-sans);
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--ev-text-primary);
  line-height: 1.35;
  margin: 32px 0 14px 0;
}

.ev-article-content h4,
.ev-article-content .wp-block-heading:is(h4) {
  font-family: var(--ev-font-sans);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ev-text-primary);
  line-height: 1.4;
  margin: 24px 0 10px 0;
}

.ev-article-content ul,
.ev-article-content ol {
  margin: 0 0 24px 0;
  padding-left: 26px;
}

.ev-article-content li {
  margin-bottom: 8px;
  line-height: 1.75;
  color: var(--ev-text-primary);
}

.ev-article-content strong,
.ev-article-content b {
  font-weight: 700;
  color: var(--ev-text-primary);
}

.ev-article-content a {
  color: var(--ev-copper);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.ev-article-content a:hover {
  color: var(--ev-copper-hover, #9C4B1B);
}

.ev-article-content figure,
.ev-article-content .wp-block-image {
  margin: 32px 0;
  border-radius: var(--ev-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(36, 24, 21, 0.08);
}

.ev-article-content figure img,
.ev-article-content .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--ev-radius-md);
}

.ev-article-content figcaption {
  font-size: 0.84rem;
  color: var(--ev-text-muted);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

.ev-article-content blockquote,
.ev-article-content .wp-block-quote {
  border-left: 4px solid var(--ev-copper);
  background-color: var(--ev-surface);
  border-radius: 0 var(--ev-radius-sm) var(--ev-radius-sm) 0;
  padding: 18px 24px;
  margin: 28px 0;
  box-shadow: var(--ev-shadow-xs);
}

.ev-article-content blockquote p {
  font-family: var(--ev-font-serif, 'Playfair Display', serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ev-text-primary);
  margin: 0;
}

/* Sidebar Widgets & Navigation */
.ev-article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 90px;
}

.ev-sidebar-widget {
  background-color: var(--ev-surface);
  border: 1px solid var(--ev-border);
  border-radius: var(--ev-radius-md);
  padding: 22px;
  box-shadow: var(--ev-shadow-xs);
  box-sizing: border-box;
}

.ev-sidebar-title {
  font-family: var(--ev-font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ev-text-primary);
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--ev-border-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ev-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ev-sidebar-links li {
  margin: 0;
  padding: 0;
}

.ev-sidebar-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--ev-text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  background-color: transparent;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.ev-sidebar-links li a:hover {
  background-color: var(--ev-surface-subtle);
  color: var(--ev-copper);
  transform: translateX(3px);
}

.ev-sidebar-search {
  display: flex;
  gap: 8px;
}

.ev-sidebar-search input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--ev-border);
  border-radius: 6px;
  font-size: 0.88rem;
  background-color: var(--ev-surface-subtle);
  color: var(--ev-text-primary);
  outline: none;
  font-family: var(--ev-font-sans);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ev-sidebar-search input:focus {
  border-color: var(--ev-copper);
  box-shadow: 0 0 0 2px rgba(184, 107, 62, 0.2);
}

/* Related Equipment Guides Section */
.ev-related-section {
  padding: 56px 0 64px;
  background-color: var(--ev-surface);
  border-top: 1px solid var(--ev-border);
}

.ev-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.ev-review-card {
  background-color: var(--ev-surface);
  border: 1px solid var(--ev-border);
  border-radius: var(--ev-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--ev-shadow-xs);
}

.ev-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ev-shadow-md);
  border-color: var(--ev-copper);
}

.ev-review-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--ev-surface-warm, #FAF6F0);
  border-bottom: 1px solid var(--ev-border-light, #EFE8E0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  box-sizing: border-box;
}

.ev-review-media img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: auto !important;
  display: block !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ev-review-card:hover .ev-review-media img {
  transform: scale(1.05) !important;
}

.ev-review-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--ev-copper);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.ev-review-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ev-review-meta {
  font-size: 0.78rem;
  color: var(--ev-text-muted);
  margin-bottom: 8px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.ev-review-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px 0;
  color: var(--ev-text-primary);
}

.ev-review-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.ev-review-title a:hover {
  color: var(--ev-copper);
}

.ev-review-excerpt {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ev-text-secondary);
  margin: 0 0 16px 0;
  flex: 1;
}

.ev-review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--ev-border-subtle);
  margin-top: auto;
}

.ev-review-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ev-text-muted);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .ev-article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ev-article-sidebar {
    position: static;
  }

  .ev-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ev-reviews-grid {
    grid-template-columns: 1fr;
  }
  
  #ev-full-review,
  .ev-full-review-section {
    padding: 36px 0 44px;
  }
}



/* ==========================================================================
   LEAD MAGNET INPUT FIELD PADDING & ICON ALIGNMENT FIX (Image 1)
   ========================================================================== */
.espresso-lead-magnet__input-field-wrap {
  position: relative !important;
  margin-bottom: 10px !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.espresso-lead-magnet__input-icon {
  position: absolute !important;
  left: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 18px !important;
  height: 18px !important;
  color: #7A6961 !important;
  pointer-events: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 3 !important;
}

.espresso-lead-magnet__input-icon svg {
  width: 17px !important;
  height: 17px !important;
  display: block !important;
}

.espresso-lead-magnet__input-badge {
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 18px !important;
  height: 18px !important;
  pointer-events: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 3 !important;
}

.espresso-lead-magnet__input-badge svg {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
}

.espresso-lead-magnet__input {
  width: 100% !important;
  height: 46px !important;
  padding: 10px 42px 10px 46px !important;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 0.90rem !important;
  line-height: 1.4 !important;
  color: #1E1614 !important;
  background-color: #FFFFFF !important;
  border: 1.5px solid #D8CEC3 !important;
  border-radius: 9px !important;
  outline: none !important;
  box-sizing: border-box !important;
  box-shadow: 0 1px 3px rgba(36, 24, 21, 0.05) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.espresso-lead-magnet__input::placeholder {
  color: #8C7B73 !important;
  font-size: 0.86rem !important;
  opacity: 1 !important;
}

.espresso-lead-magnet__input:hover {
  border-color: #A35D33 !important;
}

.espresso-lead-magnet__input:focus {
  border-color: #243D32 !important;
  box-shadow: 0 0 0 3px rgba(36, 61, 50, 0.12) !important;
}


/* ==========================================================================
   ORGANIZED, CLEAN, LEFT-ALIGNED FOOTER STYLES (Image 2)
   ========================================================================== */
.ev-site-footer {
  background-color: #19100D !important;
  color: #E8DDD4 !important;
  padding: 56px 0 36px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-sizing: border-box !important;
  width: 100% !important;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif) !important;
}

.ev-footer-disclosure {
  background-color: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  padding: 14px 20px !important;
  font-size: 0.82rem !important;
  line-height: 1.6 !important;
  color: #B5A499 !important;
  margin-bottom: 44px !important;
  text-align: left !important;
}

.ev-footer-disclosure strong {
  color: #FFFFFF !important;
}

.ev-footer-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
  gap: 40px !important;
  align-items: start !important;
  margin-bottom: 48px !important;
  text-align: left !important;
}

.ev-footer-brand {
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.ev-footer-brand .ev-brand-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  margin-bottom: 12px !important;
}

.ev-footer-about {
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  color: #A8988E !important;
  margin: 8px 0 0 0 !important;
  max-width: 320px !important;
  text-align: left !important;
}

.ev-footer-col {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

.ev-footer-title {
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  margin: 0 0 16px 0 !important;
  padding-bottom: 8px !important;
  border-bottom: 2px solid #C06A2E !important;
  display: inline-block !important;
  text-align: left !important;
}

.ev-footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  text-align: left !important;
  width: 100% !important;
}

.ev-footer-link,
.ev-footer-links li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  width: 100% !important;
  display: block !important;
}

.ev-footer-link a,
.ev-footer-links li a {
  color: #C2B3A8 !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  text-decoration: none !important;
  text-align: left !important;
  display: inline-block !important;
  padding: 2px 0 !important;
  transition: color 0.15s ease, transform 0.15s ease !important;
}

.ev-footer-link a:hover,
.ev-footer-links li a:hover {
  color: #C06A2E !important;
  transform: translateX(4px) !important;
}

.ev-footer-bottom {
  padding-top: 24px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  font-size: 0.82rem !important;
  color: #8C7B73 !important;
  text-align: left !important;
}

.ev-footer-bottom p {
  margin: 0 !important;
  color: #8C7B73 !important;
}

/* Responsive Footer Layout */
@media (max-width: 900px) {
  .ev-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
}

@media (max-width: 580px) {
  .ev-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  
  .ev-footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
}



/* ==========================================================================
   GLOBAL TEXT SELECTION COLOR (Brand Warm Copper) (Image 4)
   ========================================================================== */
::selection {
  background-color: #C06A2E !important;
  color: #FFFFFF !important;
}

::-moz-selection {
  background-color: #C06A2E !important;
  color: #FFFFFF !important;
}

/* ==========================================================================
   POLISHED TABLET & MOBILE NAVIGATION DRAWER (Image 1)
   ========================================================================== */
.ev-mobile-drawer {
  background-color: #19100D !important;
  border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: -6px 0 32px rgba(0, 0, 0, 0.45) !important;
}

.ev-drawer-header {
  background-color: #140C0A !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 18px 20px !important;
}

.ev-drawer-header .ev-brand-name {
  color: #FFFFFF !important;
}

.ev-drawer-header .ev-brand-name span {
  color: #C06A2E !important;
}

.ev-drawer-header .ev-brand-tagline {
  color: #C06A2E !important;
}

.ev-drawer-close {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #E8DDD4 !important;
  border-radius: 10px !important;
  width: 38px !important;
  height: 38px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease !important;
}

.ev-drawer-close:hover,
.ev-drawer-close:active {
  background-color: #C06A2E !important;
  color: #FFFFFF !important;
  transform: rotate(90deg) !important;
}

.ev-drawer-nav {
  padding: 16px 14px 24px !important;
}

.ev-drawer-section-title {
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #C06A2E !important;
  padding: 12px 14px 6px !important;
  margin: 0 !important;
}

.ev-drawer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.ev-drawer-link {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 16px !important;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #E8DDD4 !important;
  background-color: transparent !important;
  border: 1px solid transparent !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  min-height: 48px !important;
  box-sizing: border-box !important;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease, border-color 0.15s ease !important;
}

.ev-drawer-link svg {
  color: #8C7B73 !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}

.ev-drawer-link:hover,
.ev-drawer-link:focus {
  background-color: rgba(255, 255, 255, 0.06) !important;
  color: #FFFFFF !important;
}

.ev-drawer-link:hover svg {
  color: #C06A2E !important;
  transform: translateX(3px) !important;
}

.ev-drawer-link.active,
.ev-drawer-link[aria-current="page"] {
  background-color: rgba(192, 106, 46, 0.16) !important;
  border-color: rgba(192, 106, 46, 0.35) !important;
  color: #E88344 !important;
  font-weight: 700 !important;
}

.ev-drawer-link.active svg {
  color: #E88344 !important;
}

.ev-drawer-divider {
  height: 1px !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  margin: 18px 8px !important;
}

.ev-drawer-secondary-links .ev-drawer-link {
  font-size: 0.88rem !important;
  color: #B5A499 !important;
  padding: 10px 16px !important;
  min-height: 42px !important;
}

.ev-drawer-footer {
  padding: 16px 20px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  background-color: #140C0A !important;
  text-align: center !important;
}

.ev-drawer-trust-note {
  font-size: 0.78rem !important;
  color: #8C7B73 !important;
}

.ev-drawer-trust-note strong {
  color: #C06A2E !important;
}

/* ==========================================================================
   HIGH-CONTRAST MOBILE NEWSLETTER BOX (Image 2)
   ========================================================================== */
.ev-newsletter-section {
  background-color: #19100D !important;
  padding: 56px 0 60px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-sizing: border-box !important;
}

.ev-newsletter-card {
  max-width: 600px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.ev-newsletter-card input[type="email"],
.ev-newsletter-input {
  width: 100% !important;
  height: 50px !important;
  min-height: 50px !important;
  padding: 0 20px !important;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 0.94rem !important;
  line-height: 1.4 !important;
  color: #1E1614 !important;
  background-color: #FFFFFF !important;
  border: 1.5px solid #D8CEC3 !important;
  border-radius: 10px !important;
  outline: none !important;
  box-sizing: border-box !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.ev-newsletter-card input[type="email"]::placeholder,
.ev-newsletter-input::placeholder {
  color: #7A6961 !important;
  font-size: 0.90rem !important;
  opacity: 1 !important;
}

.ev-newsletter-card input[type="email"]:focus,
.ev-newsletter-input:focus {
  border-color: #C06A2E !important;
  box-shadow: 0 0 0 3.5px rgba(192, 106, 46, 0.25) !important;
}

.ev-newsletter-card button[type="submit"],
.ev-newsletter-card input[type="submit"],
.ev-newsletter-btn {
  height: 50px !important;
  min-height: 50px !important;
  padding: 0 28px !important;
  border-radius: 10px !important;
  background-color: #C06A2E !important;
  color: #FFFFFF !important;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 0.96rem !important;
  font-weight: 700 !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(192, 106, 46, 0.38) !important;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
}

.ev-newsletter-card button[type="submit"]:hover,
.ev-newsletter-card input[type="submit"]:hover,
.ev-newsletter-btn:hover {
  background-color: #9C4B1B !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(192, 106, 46, 0.48) !important;
}

@media (max-width: 640px) {
  .ev-newsletter-form,
  .ev-newsletter-card .mc4wp-form-fields {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .ev-newsletter-card input[type="email"],
  .ev-newsletter-input {
    width: 100% !important;
    text-align: center !important;
  }

  .ev-newsletter-card button[type="submit"],
  .ev-newsletter-card input[type="submit"],
  .ev-newsletter-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ==========================================================================
   POLISHED AUTHOR BIO AVATAR (Image 3)
   ========================================================================== */
.ev-author-avatar {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  border: 2px solid #E5DCD0 !important;
  background-color: #FAF7F2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(36, 24, 21, 0.06) !important;
}

.ev-author-avatar img,
.ev-avatar-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 50% !important;
}



/* ==========================================================================
   FIX EYEBROW DASH & TEXT SPACING (Compact 10px Gap)
   ========================================================================== */
.ev-eyebrow,
.ev-editorial-section-header .ev-eyebrow,
.espresso-lead-magnet__eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #C06A2E !important;
  margin-bottom: 6px !important;
  line-height: 1 !important;
}

.ev-eyebrow::before,
.ev-editorial-section-header .ev-eyebrow::before,
.espresso-lead-magnet__eyebrow::before {
  content: '' !important;
  display: inline-block !important;
  width: 14px !important;
  height: 2px !important;
  background-color: #C06A2E !important;
  border-radius: 2px !important;
  margin: 0 !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
}



/* ==========================================================================
   FEATURE 1: COMPACT ARTICLE SOCIAL SHARE BAR (ABOVE CONTENT)
   ========================================================================== */
.ev-article-share-bar {
  margin: 0 0 28px 0 !important;
  padding: 14px 18px !important;
  background-color: var(--ev-surface-elevated, #FAF6F0) !important;
  border: 1px solid var(--ev-border, #E5DCD0) !important;
  border-radius: 12px !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.ev-share-bar-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.ev-share-bar-label,
.ev-share-header,
.ev-share-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--ev-text-muted, #7A6961) !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.ev-share-bar-label svg,
.ev-share-header svg {
  color: var(--ev-copper, #B86B3E) !important;
}

.ev-share-bar-buttons {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.ev-share-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  height: 34px !important;
  padding: 0 12px !important;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--ev-text-primary, #3D2D24) !important;
  background-color: var(--ev-surface, #FFFFFF) !important;
  border: 1px solid var(--ev-border, #D8CEC3) !important;
  border-radius: 7px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  transition: all 0.18s ease !important;
  line-height: 1 !important;
}

.ev-share-btn svg {
  flex-shrink: 0 !important;
  transition: transform 0.18s ease !important;
}

.ev-share-btn:hover {
  background-color: var(--ev-surface-subtle, #F4EFEA) !important;
  border-color: var(--ev-copper, #B86B3E) !important;
  color: var(--ev-copper, #B86B3E) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}

.ev-share-whatsapp:hover { color: #25D366 !important; border-color: #25D366 !important; }
.ev-share-whatsapp:hover svg { color: #25D366 !important; }
.ev-share-facebook:hover { color: #1877F2 !important; border-color: #1877F2 !important; }
.ev-share-facebook:hover svg { color: #1877F2 !important; }
.ev-share-x:hover { color: var(--ev-text-primary, #000000) !important; border-color: var(--ev-text-primary, #000000) !important; }
.ev-share-pinterest:hover { color: #E60023 !important; border-color: #E60023 !important; }
.ev-share-pinterest:hover svg { color: #E60023 !important; }
.ev-share-linkedin:hover { color: #0A66C2 !important; border-color: #0A66C2 !important; }
.ev-share-linkedin:hover svg { color: #0A66C2 !important; }
.ev-share-email:hover { color: var(--ev-copper, #B86B3E) !important; border-color: var(--ev-copper, #B86B3E) !important; }
.ev-share-copy:hover { color: var(--ev-copper, #B86B3E) !important; border-color: var(--ev-copper, #B86B3E) !important; }

.ev-share-copy.is-copied {
  background-color: var(--ev-accent-green-bg, #EBF7EE) !important;
  border-color: var(--ev-accent-green, #2D7A54) !important;
  color: var(--ev-accent-green, #1E6B40) !important;
}

@media (max-width: 768px) {
  .ev-share-bar-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .ev-share-bar-buttons {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }
  .ev-share-btn {
    flex: 1 1 calc(33.33% - 6px) !important;
    min-width: 80px !important;
    padding: 0 8px !important;
    font-size: 0.78rem !important;
  }
}

@media (max-width: 480px) {
  .ev-share-btn {
    flex: 1 1 calc(50% - 6px) !important;
  }
}

/* ==========================================================================
   FEATURE 2: PINTEREST "SAVE" BUTTON ON ARTICLE CONTENT IMAGES
   ========================================================================== */
.ev-pinterest-img-wrap {
  position: relative !important;
  display: block !important;
  max-width: 100% !important;
  margin: 24px 0 !important;
}

.ev-article-content .ev-pinterest-img-wrap img,
.ev-full-review-section .ev-pinterest-img-wrap img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 8px !important;
}

.ev-pinterest-save-btn {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 15 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  height: 32px !important;
  padding: 0 12px 0 10px !important;
  background-color: #E60023 !important;
  color: #FFFFFF !important;
  font-family: var(--ev-font-sans, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  border: none !important;
  border-radius: 16px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
  cursor: pointer !important;
  opacity: 0.95 !important;
  transform: none !important;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.15s ease, box-shadow 0.15s ease !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  line-height: 1 !important;
  pointer-events: auto !important;
}

.ev-pinterest-save-btn svg {
  width: 14px !important;
  height: 14px !important;
  fill: #FFFFFF !important;
  flex-shrink: 0 !important;
}

.ev-pinterest-save-btn:hover,
.ev-pinterest-save-btn:focus-visible {
  opacity: 1 !important;
  background-color: #AD081B !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.42), 0 0 0 1.5px rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.05) !important;
}

@media (max-width: 768px) {
  .ev-pinterest-save-btn {
    top: 10px !important;
    right: 10px !important;
    height: 30px !important;
    padding: 0 10px 0 8px !important;
    font-size: 0.78rem !important;
  }
}

/* ==========================================================================
   PRODUCT IMAGE GALLERY & NAVIGATION ARROWS (RESPONSIVE & THEME-AWARE)
   ========================================================================== */
.ev-product-gallery {
  margin-bottom: 28px;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.ev-gallery-main-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 16px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ev-radius-md, 12px);
  box-sizing: border-box;
  overflow: hidden;
}

.ev-gallery-main-frame img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 460px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  transition: opacity 0.2s ease;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}

.ev-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(20, 13, 11, 0.85);
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ev-gallery-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF !important;
  pointer-events: none;
}

.ev-gallery-arrow:hover {
  background: var(--ev-copper, #D4834F);
  border-color: var(--ev-copper, #D4834F);
  transform: translateY(-50%) scale(1.08);
}

.ev-gallery-prev {
  left: 8px;
}

.ev-gallery-next {
  right: 8px;
}

.ev-gallery-thumbs-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 6px 4px;
  max-width: 100%;
  box-sizing: border-box;
}

.ev-gallery-thumb-btn {
  width: clamp(52px, 15vw, 72px);
  height: clamp(42px, 12vw, 58px);
  padding: 3px;
  border-radius: 8px;
  border: 1.5px solid var(--ev-border, #E5DCD0);
  background-color: var(--ev-surface, #FFFFFF);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-sizing: border-box;
  flex-shrink: 0;
}

.ev-gallery-thumb-btn img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.ev-gallery-thumb-btn:hover {
  border-color: var(--ev-copper, #D4834F);
  transform: translateY(-2px);
}

.ev-gallery-thumb-btn.active,
.ev-gallery-thumb-btn[aria-selected="true"] {
  border-color: var(--ev-copper, #D4834F) !important;
  border-width: 2px !important;
  box-shadow: 0 0 0 2px rgba(212, 131, 79, 0.35) !important;
}

@media (max-width: 480px) {
  .ev-gallery-arrow {
    width: 32px;
    height: 32px;
  }
  .ev-gallery-prev { left: 4px; }
  .ev-gallery-next { right: 4px; }
  .ev-gallery-thumbs-row {
    gap: 6px;
    padding: 4px 2px;
  }
}

/* ==========================================================================
   1. CRITERIA SCORE TABLE (Theme-Aware 1px Grid & Centered Stars)
   ========================================================================== */
.ev-rating-module {
  margin: 28px auto 32px;
  max-width: 680px;
  background-color: var(--ev-surface, #FFFFFF);
  border: 1px solid var(--ev-border, #E5DCD3);
  border-radius: var(--ev-radius-md, 12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.ev-rating-module-inner {
  display: grid;
  grid-template-columns: 1fr 190px;
  align-items: stretch;
}

@media (max-width: 640px) {
  .ev-rating-module-inner {
    grid-template-columns: 1fr;
  }
}

.ev-criteria-panel {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ev-criteria-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  border: 1px solid var(--ev-border-subtle, #EFE8E0);
}

.ev-criteria-row {
  border-bottom: 1px solid var(--ev-border-subtle, #EFE8E0);
}

.ev-criteria-row:last-child {
  border-bottom: none;
}

.ev-criteria-table td,
.ev-criteria-table th {
  padding: 10px 8px;
  vertical-align: middle;
  box-sizing: border-box;
}

.ev-criterion-name {
  width: 54%;
  font-size: clamp(0.82rem, 2.5vw, 0.88rem);
  font-weight: 700;
  color: var(--ev-text-primary, #241815);
  text-align: left;
  line-height: 1.35;
  border-right: 1px solid var(--ev-border-subtle, #EFE8E0);
  padding-left: 10px;
}

.ev-criterion-visual {
  width: 32%;
  text-align: center;
  vertical-align: middle;
  padding: 8px 4px;
  border-right: 1px solid var(--ev-border-subtle, #EFE8E0);
}

.ev-criterion-visual .ev-stars-bar,
.ev-stars-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 3px !important;
  margin: 0 auto !important;
  width: 100% !important;
  text-align: center !important;
}

.ev-criterion-val {
  width: 14%;
  font-size: 0.90rem;
  font-weight: 800;
  color: var(--ev-text-primary, #241815);
  text-align: center;
  font-variant-numeric: tabular-nums;
  padding-right: 8px;
}

.ev-scorecard-panel {
  background-color: var(--ev-surface-subtle, #F5EFE6);
  border-left: 1px solid var(--ev-border-subtle, #EFE8E0);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 640px) {
  .ev-scorecard-panel {
    border-left: none;
    border-top: 1px solid var(--ev-border-subtle, #EFE8E0);
  }
}

.ev-score-digit {
  font-family: var(--ev-font-sans);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--ev-text-primary, #241815);
  letter-spacing: -0.03em;
}

.ev-score-denom {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ev-text-muted, #7A6962);
}

.ev-star-filled {
  color: #F59E0B !important;
}

.ev-scorecard-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ev-copper, #B86B3E);
}

/* ==========================================================================
   2. SPECS / PROS / CONS CARDS (Theme-Aware Design)
   ========================================================================== */
.ev-spc-card {
  background-color: var(--ev-surface, #FFFFFF);
  border: 1px solid var(--ev-border, #E5DCD3);
  border-radius: var(--ev-radius-md, 12px);
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.ev-specs-card { border-top: 3px solid var(--ev-copper, #B86B3E); }
.ev-pros-card { border-top: 3px solid var(--ev-accent-green, #246D3E); }
.ev-cons-card { border-top: 3px solid var(--ev-accent-red, #A83232); }

.ev-specs-title { color: var(--ev-copper, #B86B3E); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.ev-pros-title { color: var(--ev-accent-green, #246D3E); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.ev-cons-title { color: var(--ev-accent-red, #A83232); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }

.ev-spec-label { color: var(--ev-text-muted, #7A6962); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; }
.ev-spec-value { color: var(--ev-text-primary, #241815); font-size: 0.90rem; font-weight: 600; }
.ev-spec-item { border-bottom: 1px dashed var(--ev-border-subtle, #EFE8E0); padding: 8px 0; }

.ev-pros-list li,
.ev-pros-list span,
.ev-cons-list li,
.ev-cons-list span {
  color: var(--ev-text-primary, #241815);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Secondary Button (Continue Reading) in Light Mode */
a.ev-btn-read-more,
a.ev-btn-secondary {
  background-color: var(--ev-surface, #FFFFFF);
  color: var(--ev-text-primary, #241815);
  border: 1.5px solid var(--ev-border, #D6C8B8);
}

a.ev-btn-read-more span,
a.ev-btn-secondary span {
  color: var(--ev-text-primary, #241815);
}

a.ev-btn-read-more svg,
a.ev-btn-secondary svg {
  color: var(--ev-text-primary, #241815);
  stroke: var(--ev-text-primary, #241815);
  fill: none;
}

a.ev-btn-read-more:hover,
a.ev-btn-secondary:hover {
  background-color: var(--ev-surface-subtle, #F5EFE6);
  border-color: var(--ev-text-secondary, #4A3A34);
}

/* Amazon CTA Button */
a.ev-btn-amazon {
  background-color: var(--ev-btn-amazon-bg, #B86B3E);
  color: var(--ev-btn-amazon-text, #FFFFFF) !important;
  box-shadow: 0 4px 14px rgba(184, 107, 62, 0.35);
}

a.ev-btn-amazon:hover {
  background-color: var(--ev-btn-amazon-hover, #9C4B1B);
}

/* ==========================================================================
   TABLES & GUTENBERG TABLE BLOCKS (LIGHT & DARK MODE)
   ========================================================================== */
table,
.wp-block-table table,
.ev-article-content table {
  width: 100% !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  border: 1px solid var(--ev-border, #E5DCD3) !important;
  background-color: var(--ev-surface, #FFFFFF) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  margin: 28px 0 !important;
}

.wp-block-table {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  border-radius: 8px !important;
  margin: 28px 0 !important;
}

thead,
thead tr,
thead th,
table th,
.wp-block-table th,
.ev-article-content table th {
  background-color: var(--ev-surface-elevated, #F5EFE6) !important;
  color: var(--ev-text-primary, #241815) !important;
  font-family: var(--ev-font-sans) !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  border: 1px solid var(--ev-border, #E5DCD3) !important;
  padding: 12px 14px !important;
  text-align: left !important;
  vertical-align: middle !important;
}

tbody td,
table td,
.wp-block-table td,
.ev-article-content table td {
  background-color: var(--ev-surface, #FFFFFF) !important;
  color: var(--ev-text-secondary, #4A3A34) !important;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
  border: 1px solid var(--ev-border, #E5DCD3) !important;
  padding: 12px 14px !important;
  vertical-align: middle !important;
}

tbody tr:nth-child(even) td,
table tr:nth-child(even) td,
.wp-block-table tr:nth-child(even) td {
  background-color: var(--ev-surface-subtle, #FAF7F2) !important;
}

/* ==========================================================================
   EVALUATION SUMMARY, VERDICT BOX, GUTENBERG GROUPS & INLINE CALLOUT BOXES
   ========================================================================== */
.wp-block-group,
.wp-block-group.has-background,
.wp-block-group.has-white-background-color,
.wp-block-group.has-background-color,
.has-white-background-color,
.has-background,
.callout,
.callout-box,
.evaluation-summary,
.ev-evaluation-summary,
.ev-summary-box,
.ev-verdict-box,
.key-takeaways,
[class*="takeaway"],
[class*="highlight-box"],
[class*="summary-box"],
.wp-block-quote,
blockquote,
.ev-article-content .wp-block-group,
.ev-article-content .has-background,
.entry-content .wp-block-group,
.entry-content .has-background {
  background-color: var(--ev-surface-elevated, #FAF6F0) !important;
  border: 1px solid var(--ev-border, #E5DCD0) !important;
  border-left: 4px solid var(--ev-copper, #B86B3E) !important;
  border-radius: 8px !important;
  padding: 20px 24px !important;
  margin: 24px 0 !important;
  box-shadow: var(--ev-shadow-xs, 0 2px 10px rgba(0, 0, 0, 0.03)) !important;
  box-sizing: border-box !important;
}

.wp-block-group h1,
.wp-block-group h2,
.wp-block-group h3,
.wp-block-group h4,
.wp-block-group strong,
.wp-block-group b,
[class*="takeaway"] h1,
[class*="takeaway"] h2,
[class*="takeaway"] h3,
[class*="takeaway"] h4,
[class*="takeaway"] strong,
[class*="takeaway"] b,
.evaluation-summary h2,
.evaluation-summary h3,
.evaluation-summary h4,
.ev-evaluation-summary h2,
.ev-evaluation-summary h3,
.ev-evaluation-summary h4,
.callout h2,
.callout h3,
.callout h4 {
  color: var(--ev-text-primary, #241815) !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

.wp-block-group p,
.wp-block-group ul,
.wp-block-group ol,
.wp-block-group li,
.wp-block-group span,
[class*="takeaway"] p,
[class*="takeaway"] ul,
[class*="takeaway"] ol,
[class*="takeaway"] li,
[class*="takeaway"] span,
.evaluation-summary p,
.ev-evaluation-summary p,
.ev-summary-box p,
.callout p,
blockquote p {
  color: var(--ev-text-secondary, #4A3A34) !important;
  font-size: 0.98rem !important;
  line-height: 1.7 !important;
}

/* Info / Barista Tip Callouts (Image 4 Fix) */
.ev-article-content .callout-info,
.ev-article-content .wp-block-group.is-style-info,
.ev-article-content [class*="tip-box"],
.ev-article-content [class*="barista-tip"] {
  background-color: var(--ev-surface-elevated, #FAF6F0) !important;
  border-left: 4px solid #3B82F6 !important;
}

/* ==========================================================================
   AFFILIATE DISCLOSURE BOX
   ========================================================================== */
.ev-article-content .disclosure-box,
.disclosure-box,
.ev-disclosure-box {
  background-color: var(--ev-surface-elevated, #FAF6F0) !important;
  border: 1px solid var(--ev-border, #E5DCD0) !important;
  border-left: 4px solid var(--ev-copper, #C59B27) !important;
  color: var(--ev-text-secondary, #4A3A34) !important;
  padding: 16px 20px !important;
  border-radius: 6px !important;
  margin: 24px 0 !important;
  box-sizing: border-box !important;
}

.disclosure-box p,
.disclosure-box span,
.ev-disclosure-box p,
.ev-disclosure-box span {
  color: var(--ev-text-secondary, #4A3A34) !important;
  font-size: 0.90rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.disclosure-box strong,
.ev-disclosure-box strong {
  color: var(--ev-text-primary, #241815) !important;
  font-weight: 700 !important;
}

/* ==========================================================================
   ESPRESSOVISTA MASTER THEME SYSTEM (LIGHT & DARK MODE COMPLETE PARITY)
   ========================================================================== */

/* Theme Toggle Button Component (Header & Drawer) */
.ev-theme-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: var(--ev-radius-full, 9999px) !important;
  border: 1px solid var(--ev-border, #E5DCD3) !important;
  background-color: var(--ev-surface, #FFFFFF) !important;
  color: var(--ev-text-primary, #241815) !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: 0 1px 3px rgba(36, 24, 21, 0.05) !important;
  flex-shrink: 0 !important;
  position: relative !important;
}

.ev-theme-toggle:hover {
  background-color: var(--ev-surface-elevated, #FAF6F0) !important;
  border-color: var(--ev-copper, #B86B3E) !important;
  color: var(--ev-copper, #B86B3E) !important;
  transform: translateY(-1px) !important;
}

.ev-theme-toggle:focus-visible {
  outline: 2px solid var(--ev-copper, #B86B3E) !important;
  outline-offset: 2px !important;
}

.ev-theme-toggle svg {
  width: 18px !important;
  height: 18px !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease !important;
  display: block !important;
}

/* Light Mode: Show Moon Icon, Hide Sun Icon */
.ev-theme-toggle .ev-theme-icon-sun {
  display: none !important;
}
.ev-theme-toggle .ev-theme-icon-moon {
  display: block !important;
}

/* Dark Mode: Show Sun Icon, Hide Moon Icon */
:root[data-theme="dark"] .ev-theme-toggle .ev-theme-icon-sun,
html[data-theme="dark"] .ev-theme-toggle .ev-theme-icon-sun,
body[data-theme="dark"] .ev-theme-toggle .ev-theme-icon-sun,
body.dark-mode .ev-theme-toggle .ev-theme-icon-sun,
.dark-theme .ev-theme-toggle .ev-theme-icon-sun {
  display: block !important;
}
:root[data-theme="dark"] .ev-theme-toggle .ev-theme-icon-moon,
html[data-theme="dark"] .ev-theme-toggle .ev-theme-icon-moon,
body[data-theme="dark"] .ev-theme-toggle .ev-theme-icon-moon,
body.dark-mode .ev-theme-toggle .ev-theme-icon-moon,
.dark-theme .ev-theme-toggle .ev-theme-icon-moon {
  display: none !important;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]):not(.light-mode) .ev-theme-toggle .ev-theme-icon-sun,
  html:not([data-theme="light"]):not(.light-mode) .ev-theme-toggle .ev-theme-icon-sun,
  body:not([data-theme="light"]):not(.light-mode) .ev-theme-toggle .ev-theme-icon-sun {
    display: block !important;
  }
  :root:not([data-theme="light"]):not(.light-mode) .ev-theme-toggle .ev-theme-icon-moon,
  html:not([data-theme="light"]):not(.light-mode) .ev-theme-toggle .ev-theme-icon-moon,
  body:not([data-theme="light"]):not(.light-mode) .ev-theme-toggle .ev-theme-icon-moon {
    display: none !important;
  }
}

/* ==========================================================================
   UNIVERSAL DARK MODE RULES
   Applies when [data-theme="dark"], body.dark-mode, .dark-theme, or OS dark mode
   ========================================================================== */

/* 1. Global Page Background, Root & Layout */
:root[data-theme="dark"] body,
html[data-theme="dark"] body,
body[data-theme="dark"],
body.dark-mode,
.dark-theme,
:root[data-theme="dark"] .espressovista-root,
html[data-theme="dark"] .espressovista-root,
body.dark-mode .espressovista-root,
.dark-theme .espressovista-root,
:root[data-theme="dark"] .ev-single-review-page,
html[data-theme="dark"] .ev-single-review-page,
body.dark-mode .ev-single-review-page,
.dark-theme .ev-single-review-page,
:root[data-theme="dark"] .ev-article-page,
html[data-theme="dark"] .ev-article-page,
body.dark-mode .ev-article-page,
.dark-theme .ev-article-page {
  background-color: #140D0B !important;
  color: #F7F1E8 !important;
}

/* 2. Top Utility Bar, Header & Navigation */
:root[data-theme="dark"] .ev-top-bar,
html[data-theme="dark"] .ev-top-bar,
body.dark-mode .ev-top-bar,
.dark-theme .ev-top-bar {
  background-color: #0E0908 !important;
  color: #A89689 !important;
  border-bottom-color: #2B1D18 !important;
}

:root[data-theme="dark"] .ev-top-bar-trust,
html[data-theme="dark"] .ev-top-bar-trust,
body.dark-mode .ev-top-bar-trust,
.dark-theme .ev-top-bar-trust {
  color: #A89689 !important;
}

:root[data-theme="dark"] .ev-site-header,
html[data-theme="dark"] .ev-site-header,
body.dark-mode .ev-site-header,
.dark-theme .ev-site-header {
  background-color: rgba(20, 13, 11, 0.97) !important;
  border-bottom-color: #382620 !important;
}

:root[data-theme="dark"] .ev-brand-name,
html[data-theme="dark"] .ev-brand-name,
body.dark-mode .ev-brand-name,
.dark-theme .ev-brand-name {
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-brand-name span,
html[data-theme="dark"] .ev-brand-name span,
body.dark-mode .ev-brand-name span,
.dark-theme .ev-brand-name span {
  color: #E59562 !important;
}

:root[data-theme="dark"] .ev-brand-tagline,
html[data-theme="dark"] .ev-brand-tagline,
body.dark-mode .ev-brand-tagline,
.dark-theme .ev-brand-tagline {
  color: #A89689 !important;
}

:root[data-theme="dark"] .ev-nav-link,
html[data-theme="dark"] .ev-nav-link,
body.dark-mode .ev-nav-link,
.dark-theme .ev-nav-link {
  color: #D6C8B8 !important;
}

:root[data-theme="dark"] .ev-nav-link:hover,
:root[data-theme="dark"] .ev-nav-link.active,
html[data-theme="dark"] .ev-nav-link:hover,
html[data-theme="dark"] .ev-nav-link.active,
body.dark-mode .ev-nav-link:hover,
body.dark-mode .ev-nav-link.active,
.dark-theme .ev-nav-link:hover,
.dark-theme .ev-nav-link.active {
  color: #E59562 !important;
}

:root[data-theme="dark"] .ev-header-icon-btn,
:root[data-theme="dark"] .ev-search-input,
html[data-theme="dark"] .ev-header-icon-btn,
html[data-theme="dark"] .ev-search-input,
body.dark-mode .ev-header-icon-btn,
body.dark-mode .ev-search-input,
.dark-theme .ev-header-icon-btn,
.dark-theme .ev-search-input {
  background-color: #251A16 !important;
  border-color: #382620 !important;
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-theme-toggle,
html[data-theme="dark"] .ev-theme-toggle,
body.dark-mode .ev-theme-toggle,
.dark-theme .ev-theme-toggle {
  background-color: #251A16 !important;
  border-color: #382620 !important;
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-theme-toggle:hover,
html[data-theme="dark"] .ev-theme-toggle:hover,
body.dark-mode .ev-theme-toggle:hover,
.dark-theme .ev-theme-toggle:hover {
  background-color: #382620 !important;
  border-color: #E59562 !important;
  color: #E59562 !important;
}

/* 3. Mobile Navigation Drawer */
:root[data-theme="dark"] .ev-mobile-drawer,
html[data-theme="dark"] .ev-mobile-drawer,
body.dark-mode .ev-mobile-drawer,
.dark-theme .ev-mobile-drawer {
  background-color: #1C1310 !important;
  border-left-color: #382620 !important;
}

:root[data-theme="dark"] .ev-drawer-header,
html[data-theme="dark"] .ev-drawer-header,
body.dark-mode .ev-drawer-header,
.dark-theme .ev-drawer-header {
  border-bottom-color: #382620 !important;
}

:root[data-theme="dark"] .ev-drawer-close,
html[data-theme="dark"] .ev-drawer-close,
body.dark-mode .ev-drawer-close,
.dark-theme .ev-drawer-close {
  background-color: #251A16 !important;
  border-color: #382620 !important;
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-drawer-section-title,
html[data-theme="dark"] .ev-drawer-section-title,
body.dark-mode .ev-drawer-section-title,
.dark-theme .ev-drawer-section-title {
  color: #A89689 !important;
}

:root[data-theme="dark"] .ev-drawer-link,
html[data-theme="dark"] .ev-drawer-link,
body.dark-mode .ev-drawer-link,
.dark-theme .ev-drawer-link {
  color: #D6C8B8 !important;
}

:root[data-theme="dark"] .ev-drawer-link:hover,
:root[data-theme="dark"] .ev-drawer-link.active,
html[data-theme="dark"] .ev-drawer-link:hover,
html[data-theme="dark"] .ev-drawer-link.active,
body.dark-mode .ev-drawer-link:hover,
body.dark-mode .ev-drawer-link.active,
.dark-theme .ev-drawer-link:hover,
.dark-theme .ev-drawer-link.active {
  background-color: #251A16 !important;
  color: #E59562 !important;
}

:root[data-theme="dark"] .ev-drawer-divider,
html[data-theme="dark"] .ev-drawer-divider,
body.dark-mode .ev-drawer-divider,
.dark-theme .ev-drawer-divider {
  background-color: #382620 !important;
}

:root[data-theme="dark"] .ev-mobile-search-dropdown,
html[data-theme="dark"] .ev-mobile-search-dropdown,
body.dark-mode .ev-mobile-search-dropdown,
.dark-theme .ev-mobile-search-dropdown {
  background-color: #1C1310 !important;
  border-bottom-color: #382620 !important;
}

/* 4. Breadcrumbs & Page/Archive Heroes */
:root[data-theme="dark"] .ev-review-breadcrumbs-wrap,
html[data-theme="dark"] .ev-review-breadcrumbs-wrap,
body.dark-mode .ev-review-breadcrumbs-wrap,
.dark-theme .ev-review-breadcrumbs-wrap {
  background-color: #140D0B !important;
  border-bottom-color: #382620 !important;
}

:root[data-theme="dark"] .ev-breadcrumbs,
:root[data-theme="dark"] .ev-breadcrumbs a,
:root[data-theme="dark"] .ev-breadcrumbs span,
:root[data-theme="dark"] .ev-breadcrumb-sep,
html[data-theme="dark"] .ev-breadcrumbs,
html[data-theme="dark"] .ev-breadcrumbs a,
html[data-theme="dark"] .ev-breadcrumbs span,
html[data-theme="dark"] .ev-breadcrumb-sep,
body.dark-mode .ev-breadcrumbs,
body.dark-mode .ev-breadcrumbs a,
body.dark-mode .ev-breadcrumbs span,
body.dark-mode .ev-breadcrumb-sep,
.dark-theme .ev-breadcrumbs,
.dark-theme .ev-breadcrumbs a,
.dark-theme .ev-breadcrumbs span,
.dark-theme .ev-breadcrumb-sep {
  color: #A89689 !important;
}

:root[data-theme="dark"] .ev-breadcrumbs a:hover,
html[data-theme="dark"] .ev-breadcrumbs a:hover,
body.dark-mode .ev-breadcrumbs a:hover,
.dark-theme .ev-breadcrumbs a:hover {
  color: #E59562 !important;
}

:root[data-theme="dark"] .ev-review-hero-section,
:root[data-theme="dark"] .ev-full-review-section,
html[data-theme="dark"] .ev-review-hero-section,
html[data-theme="dark"] .ev-full-review-section,
body.dark-mode .ev-review-hero-section,
body.dark-mode .ev-full-review-section,
.dark-theme .ev-review-hero-section,
.dark-theme .ev-full-review-section {
  background-color: #140D0B !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] .ev-archive-hero,
:root[data-theme="dark"] .ev-page-hero,
:root[data-theme="dark"] .ev-search-hero,
html[data-theme="dark"] .ev-archive-hero,
html[data-theme="dark"] .ev-page-hero,
html[data-theme="dark"] .ev-search-hero,
body.dark-mode .ev-archive-hero,
body.dark-mode .ev-page-hero,
body.dark-mode .ev-search-hero,
.dark-theme .ev-archive-hero,
.dark-theme .ev-page-hero,
.dark-theme .ev-search-hero {
  background-color: #1C1310 !important;
  border-bottom-color: #382620 !important;
}

:root[data-theme="dark"] .ev-archive-title,
:root[data-theme="dark"] .ev-page-title,
:root[data-theme="dark"] .ev-search-title,
html[data-theme="dark"] .ev-archive-title,
html[data-theme="dark"] .ev-page-title,
html[data-theme="dark"] .ev-search-title,
body.dark-mode .ev-archive-title,
body.dark-mode .ev-page-title,
body.dark-mode .ev-search-title,
.dark-theme .ev-archive-title,
.dark-theme .ev-page-title,
.dark-theme .ev-search-title {
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-archive-desc,
:root[data-theme="dark"] .ev-search-query-text,
html[data-theme="dark"] .ev-archive-desc,
html[data-theme="dark"] .ev-search-query-text,
body.dark-mode .ev-archive-desc,
body.dark-mode .ev-search-query-text,
.dark-theme .ev-archive-desc,
.dark-theme .ev-search-query-text {
  color: #D6C8B8 !important;
}

:root[data-theme="dark"] .ev-filter-bar,
html[data-theme="dark"] .ev-filter-bar,
body.dark-mode .ev-filter-bar,
.dark-theme .ev-filter-bar {
  background-color: #140D0B !important;
  border-bottom-color: #382620 !important;
}

:root[data-theme="dark"] .ev-filter-pill,
:root[data-theme="dark"] .ev-filter-pills a,
html[data-theme="dark"] .ev-filter-pill,
html[data-theme="dark"] .ev-filter-pills a,
body.dark-mode .ev-filter-pill,
body.dark-mode .ev-filter-pills a,
.dark-theme .ev-filter-pill,
.dark-theme .ev-filter-pills a {
  background-color: #251A16 !important;
  border-color: #382620 !important;
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-filter-pill:hover,
:root[data-theme="dark"] .ev-filter-pills a:hover,
html[data-theme="dark"] .ev-filter-pill:hover,
html[data-theme="dark"] .ev-filter-pills a:hover,
body.dark-mode .ev-filter-pill:hover,
body.dark-mode .ev-filter-pills a:hover,
.dark-theme .ev-filter-pill:hover,
.dark-theme .ev-filter-pills a:hover {
  border-color: #E59562 !important;
  color: #E59562 !important;
}

:root[data-theme="dark"] .ev-filter-pill.active,
:root[data-theme="dark"] .ev-filter-pills a.active,
html[data-theme="dark"] .ev-filter-pill.active,
html[data-theme="dark"] .ev-filter-pills a.active,
body.dark-mode .ev-filter-pill.active,
body.dark-mode .ev-filter-pills a.active,
.dark-theme .ev-filter-pill.active,
.dark-theme .ev-filter-pills a.active {
  background-color: #B86B3E !important;
  border-color: #B86B3E !important;
  color: #FFFFFF !important;
  box-shadow: 0 2px 10px rgba(184, 107, 62, 0.4) !important;
}

/* 5. Product Review Hero Card */
:root[data-theme="dark"] .ev-review-hero-card,
html[data-theme="dark"] .ev-review-hero-card,
body.dark-mode .ev-review-hero-card,
.dark-theme .ev-review-hero-card {
  background-color: #1C1310 !important;
  border-color: #382620 !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

:root[data-theme="dark"] .ev-award-badge,
html[data-theme="dark"] .ev-award-badge,
body.dark-mode .ev-award-badge,
.dark-theme .ev-award-badge {
  background-color: rgba(212, 131, 79, 0.18) !important;
  border-color: rgba(212, 131, 79, 0.35) !important;
  color: #F7A827 !important;
}

:root[data-theme="dark"] .ev-product-title,
:root[data-theme="dark"] .ev-h1,
:root[data-theme="dark"] .ev-h2,
:root[data-theme="dark"] .ev-h3,
html[data-theme="dark"] .ev-product-title,
html[data-theme="dark"] .ev-h1,
html[data-theme="dark"] .ev-h2,
html[data-theme="dark"] .ev-h3,
body.dark-mode .ev-product-title,
body.dark-mode .ev-h1,
body.dark-mode .ev-h2,
body.dark-mode .ev-h3,
.dark-theme .ev-product-title,
.dark-theme .ev-h1,
.dark-theme .ev-h2,
.dark-theme .ev-h3 {
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-product-summary-lead,
:root[data-theme="dark"] .ev-product-meta-row,
html[data-theme="dark"] .ev-product-summary-lead,
html[data-theme="dark"] .ev-product-meta-row,
body.dark-mode .ev-product-summary-lead,
body.dark-mode .ev-product-meta-row,
.dark-theme .ev-product-summary-lead,
.dark-theme .ev-product-meta-row {
  color: #D6C8B8 !important;
}

:root[data-theme="dark"] .ev-meta-author-tag,
:root[data-theme="dark"] .ev-author-link,
html[data-theme="dark"] .ev-meta-author-tag,
html[data-theme="dark"] .ev-author-link,
body.dark-mode .ev-meta-author-tag,
body.dark-mode .ev-author-link,
.dark-theme .ev-meta-author-tag,
.dark-theme .ev-author-link {
  color: #F7F1E8 !important;
}

/* 6. Product Gallery & Slider */
:root[data-theme="dark"] .ev-gallery-main-frame,
html[data-theme="dark"] .ev-gallery-main-frame,
body.dark-mode .ev-gallery-main-frame,
.dark-theme .ev-gallery-main-frame {
  background-color: #251A16 !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] .ev-gallery-arrow,
html[data-theme="dark"] .ev-gallery-arrow,
body.dark-mode .ev-gallery-arrow,
.dark-theme .ev-gallery-arrow {
  background-color: rgba(37, 26, 22, 0.92) !important;
  border-color: #382620 !important;
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-gallery-arrow:hover,
html[data-theme="dark"] .ev-gallery-arrow:hover,
body.dark-mode .ev-gallery-arrow:hover,
.dark-theme .ev-gallery-arrow:hover {
  background-color: #382620 !important;
  border-color: #E59562 !important;
  color: #E59562 !important;
}

:root[data-theme="dark"] .ev-gallery-thumb-btn,
html[data-theme="dark"] .ev-gallery-thumb-btn,
body.dark-mode .ev-gallery-thumb-btn,
.dark-theme .ev-gallery-thumb-btn {
  background-color: #1C1310 !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] .ev-gallery-thumb-btn:hover,
html[data-theme="dark"] .ev-gallery-thumb-btn:hover,
body.dark-mode .ev-gallery-thumb-btn:hover,
.dark-theme .ev-gallery-thumb-btn:hover {
  border-color: #A89689 !important;
}

:root[data-theme="dark"] .ev-gallery-thumb-btn.active,
html[data-theme="dark"] .ev-gallery-thumb-btn.active,
body.dark-mode .ev-gallery-thumb-btn.active,
.dark-theme .ev-gallery-thumb-btn.active {
  border-color: #E59562 !important;
  box-shadow: 0 0 0 2px rgba(229, 149, 98, 0.35) !important;
}

/* 7. Rating Scorecard Module & Breakdown */
:root[data-theme="dark"] .ev-rating-module,
html[data-theme="dark"] .ev-rating-module,
body.dark-mode .ev-rating-module,
.dark-theme .ev-rating-module {
  background-color: #1C1310 !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] .ev-criteria-table,
:root[data-theme="dark"] .ev-criteria-row,
html[data-theme="dark"] .ev-criteria-table,
html[data-theme="dark"] .ev-criteria-row,
body.dark-mode .ev-criteria-table,
body.dark-mode .ev-criteria-row,
.dark-theme .ev-criteria-table,
.dark-theme .ev-criteria-row {
  border-color: #382620 !important;
}

:root[data-theme="dark"] .ev-criterion-name,
:root[data-theme="dark"] .ev-criterion-val,
html[data-theme="dark"] .ev-criterion-name,
html[data-theme="dark"] .ev-criterion-val,
body.dark-mode .ev-criterion-name,
body.dark-mode .ev-criterion-val,
.dark-theme .ev-criterion-name,
.dark-theme .ev-criterion-val {
  color: #F7F1E8 !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] .ev-criterion-visual,
html[data-theme="dark"] .ev-criterion-visual,
body.dark-mode .ev-criterion-visual,
.dark-theme .ev-criterion-visual {
  border-color: #382620 !important;
}

:root[data-theme="dark"] .ev-scorecard-panel,
html[data-theme="dark"] .ev-scorecard-panel,
body.dark-mode .ev-scorecard-panel,
.dark-theme .ev-scorecard-panel {
  background-color: #251A16 !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] .ev-score-digit,
html[data-theme="dark"] .ev-score-digit,
body.dark-mode .ev-score-digit,
.dark-theme .ev-score-digit {
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-score-denom,
html[data-theme="dark"] .ev-score-denom,
body.dark-mode .ev-score-denom,
.dark-theme .ev-score-denom {
  color: #A89689 !important;
}

:root[data-theme="dark"] .ev-scorecard-badge,
html[data-theme="dark"] .ev-scorecard-badge,
body.dark-mode .ev-scorecard-badge,
.dark-theme .ev-scorecard-badge {
  background-color: rgba(212, 131, 79, 0.2) !important;
  color: #E59562 !important;
}

/* 8. Specs / Pros / Cons 3-Column Grid */
:root[data-theme="dark"] .ev-spc-card,
html[data-theme="dark"] .ev-spc-card,
body.dark-mode .ev-spc-card,
.dark-theme .ev-spc-card {
  background-color: #1C1310 !important;
  border-color: #382620 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
}

:root[data-theme="dark"] .ev-spc-title,
html[data-theme="dark"] .ev-spc-title,
body.dark-mode .ev-spc-title,
.dark-theme .ev-spc-title {
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-spec-label,
html[data-theme="dark"] .ev-spec-label,
body.dark-mode .ev-spec-label,
.dark-theme .ev-spec-label {
  color: #A89689 !important;
}

:root[data-theme="dark"] .ev-spec-value,
html[data-theme="dark"] .ev-spec-value,
body.dark-mode .ev-spec-value,
.dark-theme .ev-spec-value {
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-spec-item,
html[data-theme="dark"] .ev-spec-item,
body.dark-mode .ev-spec-item,
.dark-theme .ev-spec-item {
  border-bottom-color: #2B1D18 !important;
}

:root[data-theme="dark"] .ev-pros-list li,
:root[data-theme="dark"] .ev-pros-list span,
:root[data-theme="dark"] .ev-cons-list li,
:root[data-theme="dark"] .ev-cons-list span,
html[data-theme="dark"] .ev-pros-list li,
html[data-theme="dark"] .ev-pros-list span,
html[data-theme="dark"] .ev-cons-list li,
html[data-theme="dark"] .ev-cons-list span,
body.dark-mode .ev-pros-list li,
body.dark-mode .ev-pros-list span,
body.dark-mode .ev-cons-list li,
body.dark-mode .ev-cons-list span,
.dark-theme .ev-pros-list li,
.dark-theme .ev-pros-list span,
.dark-theme .ev-cons-list li,
.dark-theme .ev-cons-list span {
  color: #D6C8B8 !important;
}

/* 9. Action Buttons */
:root[data-theme="dark"] a.ev-btn-secondary,
:root[data-theme="dark"] a.ev-btn-read-more,
html[data-theme="dark"] a.ev-btn-secondary,
html[data-theme="dark"] a.ev-btn-read-more,
body.dark-mode a.ev-btn-secondary,
body.dark-mode a.ev-btn-read-more,
.dark-theme a.ev-btn-secondary,
.dark-theme a.ev-btn-read-more {
  background-color: #251A16 !important;
  color: #F7F1E8 !important;
  border-color: #4D3930 !important;
}

:root[data-theme="dark"] a.ev-btn-secondary:hover,
:root[data-theme="dark"] a.ev-btn-read-more:hover,
html[data-theme="dark"] a.ev-btn-secondary:hover,
html[data-theme="dark"] a.ev-btn-read-more:hover,
body.dark-mode a.ev-btn-secondary:hover,
body.dark-mode a.ev-btn-read-more:hover,
.dark-theme a.ev-btn-secondary:hover,
.dark-theme a.ev-btn-read-more:hover {
  background-color: #382620 !important;
  border-color: #E59562 !important;
  color: #E59562 !important;
}

:root[data-theme="dark"] a.ev-btn-secondary span,
:root[data-theme="dark"] a.ev-btn-read-more span,
html[data-theme="dark"] a.ev-btn-secondary span,
html[data-theme="dark"] a.ev-btn-read-more span,
body.dark-mode a.ev-btn-secondary span,
body.dark-mode a.ev-btn-read-more span,
.dark-theme a.ev-btn-secondary span,
.dark-theme a.ev-btn-read-more span {
  color: inherit !important;
}

:root[data-theme="dark"] a.ev-btn-secondary svg,
:root[data-theme="dark"] a.ev-btn-read-more svg,
html[data-theme="dark"] a.ev-btn-secondary svg,
html[data-theme="dark"] a.ev-btn-read-more svg,
body.dark-mode a.ev-btn-secondary svg,
body.dark-mode a.ev-btn-read-more svg,
.dark-theme a.ev-btn-secondary svg,
.dark-theme a.ev-btn-read-more svg {
  stroke: currentColor !important;
}

:root[data-theme="dark"] a.ev-btn-amazon,
html[data-theme="dark"] a.ev-btn-amazon,
body.dark-mode a.ev-btn-amazon,
.dark-theme a.ev-btn-amazon {
  background: linear-gradient(180deg, #FFB834 0%, #F59E1B 100%) !important;
  color: #111111 !important;
  border-color: #D98207 !important;
  box-shadow: 0 4px 16px rgba(245, 158, 27, 0.35) !important;
}

:root[data-theme="dark"] a.ev-btn-amazon:hover,
html[data-theme="dark"] a.ev-btn-amazon:hover,
body.dark-mode a.ev-btn-amazon:hover,
.dark-theme a.ev-btn-amazon:hover {
  background: linear-gradient(180deg, #FFC552 0%, #E68B08 100%) !important;
  color: #000000 !important;
  box-shadow: 0 6px 20px rgba(245, 158, 27, 0.45) !important;
}

/* 10. Main Editorial Content & Typography */
:root[data-theme="dark"] .ev-article-main,
:root[data-theme="dark"] #main-content,
:root[data-theme="dark"] .ev-page-content,
html[data-theme="dark"] .ev-article-main,
html[data-theme="dark"] #main-content,
html[data-theme="dark"] .ev-page-content,
body.dark-mode .ev-article-main,
body.dark-mode #main-content,
body.dark-mode .ev-page-content,
.dark-theme .ev-article-main,
.dark-theme #main-content,
.dark-theme .ev-page-content {
  background-color: #1C1310 !important;
  background: #1C1310 !important;
  border-color: #382620 !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3) !important;
}

:root[data-theme="dark"] .ev-article-content,
html[data-theme="dark"] .ev-article-content,
body.dark-mode .ev-article-content,
.dark-theme .ev-article-content {
  background-color: transparent !important;
  background: transparent !important;
  color: #D6C8B8 !important;
}

:root[data-theme="dark"] .ev-editorial-section-header,
html[data-theme="dark"] .ev-editorial-section-header,
body.dark-mode .ev-editorial-section-header,
.dark-theme .ev-editorial-section-header {
  border-bottom-color: #382620 !important;
}

:root[data-theme="dark"] .ev-article-content p,
:root[data-theme="dark"] .ev-article-content li,
:root[data-theme="dark"] .ev-article-content dl,
:root[data-theme="dark"] .ev-article-content dt,
:root[data-theme="dark"] .ev-article-content dd,
html[data-theme="dark"] .ev-article-content p,
html[data-theme="dark"] .ev-article-content li,
html[data-theme="dark"] .ev-article-content dl,
html[data-theme="dark"] .ev-article-content dt,
html[data-theme="dark"] .ev-article-content dd,
body.dark-mode .ev-article-content p,
body.dark-mode .ev-article-content li,
body.dark-mode .ev-article-content dl,
body.dark-mode .ev-article-content dt,
body.dark-mode .ev-article-content dd,
.dark-theme .ev-article-content p,
.dark-theme .ev-article-content li,
.dark-theme .ev-article-content dl,
.dark-theme .ev-article-content dt,
.dark-theme .ev-article-content dd {
  color: #D6C8B8 !important;
}

:root[data-theme="dark"] .ev-article-content h1,
:root[data-theme="dark"] .ev-article-content h2,
:root[data-theme="dark"] .ev-article-content h3,
:root[data-theme="dark"] .ev-article-content h4,
:root[data-theme="dark"] .ev-article-content h5,
:root[data-theme="dark"] .ev-article-content h6,
:root[data-theme="dark"] .ev-article-content strong,
:root[data-theme="dark"] .ev-article-content b,
html[data-theme="dark"] .ev-article-content h1,
html[data-theme="dark"] .ev-article-content h2,
html[data-theme="dark"] .ev-article-content h3,
html[data-theme="dark"] .ev-article-content h4,
html[data-theme="dark"] .ev-article-content h5,
html[data-theme="dark"] .ev-article-content h6,
html[data-theme="dark"] .ev-article-content strong,
html[data-theme="dark"] .ev-article-content b,
body.dark-mode .ev-article-content h1,
body.dark-mode .ev-article-content h2,
body.dark-mode .ev-article-content h3,
body.dark-mode .ev-article-content h4,
body.dark-mode .ev-article-content h5,
body.dark-mode .ev-article-content h6,
body.dark-mode .ev-article-content strong,
body.dark-mode .ev-article-content b,
.dark-theme .ev-article-content h1,
.dark-theme .ev-article-content h2,
.dark-theme .ev-article-content h3,
.dark-theme .ev-article-content h4,
.dark-theme .ev-article-content h5,
.dark-theme .ev-article-content h6,
.dark-theme .ev-article-content strong,
.dark-theme .ev-article-content b {
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-article-content a:not(.ev-btn),
html[data-theme="dark"] .ev-article-content a:not(.ev-btn),
body.dark-mode .ev-article-content a:not(.ev-btn),
.dark-theme .ev-article-content a:not(.ev-btn) {
  color: #E59562 !important;
  text-decoration-color: rgba(229, 149, 98, 0.4) !important;
}

:root[data-theme="dark"] .ev-article-content a:not(.ev-btn):hover,
html[data-theme="dark"] .ev-article-content a:not(.ev-btn):hover,
body.dark-mode .ev-article-content a:not(.ev-btn):hover,
.dark-theme .ev-article-content a:not(.ev-btn):hover {
  color: #F5B48B !important;
  text-decoration-color: #F5B48B !important;
}

:root[data-theme="dark"] .ev-article-content hr,
html[data-theme="dark"] .ev-article-content hr,
body.dark-mode .ev-article-content hr,
.dark-theme .ev-article-content hr {
  border-color: #382620 !important;
}

:root[data-theme="dark"] .ev-article-content pre,
:root[data-theme="dark"] .ev-article-content code,
:root[data-theme="dark"] .ev-article-content kbd,
:root[data-theme="dark"] .ev-article-content samp,
html[data-theme="dark"] .ev-article-content pre,
html[data-theme="dark"] .ev-article-content code,
html[data-theme="dark"] .ev-article-content kbd,
html[data-theme="dark"] .ev-article-content samp,
body.dark-mode .ev-article-content pre,
body.dark-mode .ev-article-content code,
body.dark-mode .ev-article-content kbd,
body.dark-mode .ev-article-content samp,
.dark-theme .ev-article-content pre,
.dark-theme .ev-article-content code,
.dark-theme .ev-article-content kbd,
.dark-theme .ev-article-content samp {
  background-color: #251A16 !important;
  color: #E5A879 !important;
  border-color: #382620 !important;
}

/* 11. Tables & Comparison Grids */
:root[data-theme="dark"] table,
:root[data-theme="dark"] .wp-block-table table,
:root[data-theme="dark"] .ev-article-content table,
:root[data-theme="dark"] .ev-comparison-table,
html[data-theme="dark"] table,
html[data-theme="dark"] .wp-block-table table,
html[data-theme="dark"] .ev-article-content table,
html[data-theme="dark"] .ev-comparison-table,
body.dark-mode table,
body.dark-mode .wp-block-table table,
body.dark-mode .ev-article-content table,
body.dark-mode .ev-comparison-table,
.dark-theme table,
.dark-theme .wp-block-table table,
.dark-theme .ev-article-content table,
.dark-theme .ev-comparison-table {
  background-color: #1C1310 !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] thead th,
:root[data-theme="dark"] table th,
:root[data-theme="dark"] .wp-block-table th,
:root[data-theme="dark"] .ev-article-content table th,
:root[data-theme="dark"] .ev-comparison-table th,
html[data-theme="dark"] thead th,
html[data-theme="dark"] table th,
html[data-theme="dark"] .wp-block-table th,
html[data-theme="dark"] .ev-article-content table th,
html[data-theme="dark"] .ev-comparison-table th,
body.dark-mode thead th,
body.dark-mode table th,
body.dark-mode .wp-block-table th,
body.dark-mode .ev-article-content table th,
body.dark-mode .ev-comparison-table th,
.dark-theme thead th,
.dark-theme table th,
.dark-theme .wp-block-table th,
.dark-theme .ev-article-content table th,
.dark-theme .ev-comparison-table th {
  background-color: #251A16 !important;
  color: #F7F1E8 !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] tbody td,
:root[data-theme="dark"] table td,
:root[data-theme="dark"] .wp-block-table td,
:root[data-theme="dark"] .ev-article-content table td,
:root[data-theme="dark"] .ev-comparison-table td,
html[data-theme="dark"] tbody td,
html[data-theme="dark"] table td,
html[data-theme="dark"] .wp-block-table td,
html[data-theme="dark"] .ev-article-content table td,
html[data-theme="dark"] .ev-comparison-table td,
body.dark-mode tbody td,
body.dark-mode table td,
body.dark-mode .wp-block-table td,
body.dark-mode .ev-article-content table td,
.dark-theme .wp-block-table {
  background-color: #1C1310 !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] th,
:root[data-theme="dark"] table thead th,
html[data-theme="dark"] th,
body.dark-mode th,
.dark-theme th {
  background-color: #251A16 !important;
  color: #F7F1E8 !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] td,
:root[data-theme="dark"] table tbody td,
html[data-theme="dark"] td,
body.dark-mode td,
.dark-theme td {
  background-color: #1C1310 !important;
  color: #D6C8B8 !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] tbody tr:nth-child(even) td,
:root[data-theme="dark"] table tr:nth-child(even) td,
:root[data-theme="dark"] .wp-block-table tr:nth-child(even) td,
html[data-theme="dark"] tbody tr:nth-child(even) td,
body.dark-mode tbody tr:nth-child(even) td,
.dark-theme tbody tr:nth-child(even) td {
  background-color: #201613 !important;
}

/* 12. Callouts, Evaluation Summaries, Takeaways & Tip Boxes (Universal Catch-All) */
:root[data-theme="dark"] .ev-callout-box,
:root[data-theme="dark"] .ev-evaluation-summary-box,
:root[data-theme="dark"] .ev-takeaways-box,
:root[data-theme="dark"] .evaluation-summary,
:root[data-theme="dark"] .ev-evaluation-summary,
:root[data-theme="dark"] .ev-summary-box,
:root[data-theme="dark"] .ev-verdict-box,
:root[data-theme="dark"] .key-takeaways,
:root[data-theme="dark"] [class*="takeaway"],
:root[data-theme="dark"] [class*="highlight-box"],
:root[data-theme="dark"] [class*="summary-box"],
:root[data-theme="dark"] .callout,
:root[data-theme="dark"] .callout-box,
:root[data-theme="dark"] .disclosure-box,
:root[data-theme="dark"] .ev-disclosure-box,
:root[data-theme="dark"] .wp-block-group.has-background,
:root[data-theme="dark"] .wp-block-group.has-white-background-color,
:root[data-theme="dark"] .has-white-background-color,
:root[data-theme="dark"] .has-background,
:root[data-theme="dark"] .ev-article-content div[style*="background"],
:root[data-theme="dark"] .ev-article-content div[style*="Background"],
:root[data-theme="dark"] div[style*="fdfbf7"],
:root[data-theme="dark"] div[style*="FDFBF7"],
:root[data-theme="dark"] div[style*="fdfcf9"],
:root[data-theme="dark"] div[style*="FDFCF9"],
:root[data-theme="dark"] div[style*="faf6f0"],
:root[data-theme="dark"] div[style*="FAF6F0"],
:root[data-theme="dark"] div[style*="f8fafc"],
:root[data-theme="dark"] div[style*="F8FAFC"],
:root[data-theme="dark"] div[style*="ffffff"],
:root[data-theme="dark"] div[style*="FFFFFF"],
:root[data-theme="dark"] div[style*="white"],
:root[data-theme="dark"] div[style*="2c1810"],
:root[data-theme="dark"] div[style*="3c2415"],
html[data-theme="dark"] .ev-callout-box,
html[data-theme="dark"] .ev-evaluation-summary-box,
html[data-theme="dark"] .ev-takeaways-box,
html[data-theme="dark"] .evaluation-summary,
html[data-theme="dark"] .ev-evaluation-summary,
html[data-theme="dark"] .ev-summary-box,
html[data-theme="dark"] .ev-verdict-box,
html[data-theme="dark"] .key-takeaways,
html[data-theme="dark"] [class*="takeaway"],
html[data-theme="dark"] [class*="highlight-box"],
html[data-theme="dark"] [class*="summary-box"],
html[data-theme="dark"] .callout,
html[data-theme="dark"] .callout-box,
html[data-theme="dark"] .disclosure-box,
html[data-theme="dark"] .ev-disclosure-box,
html[data-theme="dark"] .wp-block-group.has-background,
html[data-theme="dark"] .wp-block-group.has-white-background-color,
html[data-theme="dark"] .ev-article-content div[style*="background"],
html[data-theme="dark"] div[style*="fdfbf7"],
html[data-theme="dark"] div[style*="fdfcf9"],
html[data-theme="dark"] div[style*="faf6f0"],
html[data-theme="dark"] div[style*="f8fafc"],
html[data-theme="dark"] div[style*="2c1810"],
html[data-theme="dark"] div[style*="3c2415"],
body.dark-mode .ev-callout-box,
body.dark-mode .ev-evaluation-summary-box,
body.dark-mode .ev-takeaways-box,
body.dark-mode [class*="takeaway"],
body.dark-mode .ev-article-content div[style*="background"],
body.dark-mode div[style*="fdfbf7"],
body.dark-mode div[style*="fdfcf9"],
body.dark-mode div[style*="faf6f0"],
body.dark-mode div[style*="f8fafc"],
.dark-theme .ev-callout-box,
.dark-theme .ev-evaluation-summary-box,
.dark-theme .ev-takeaways-box,
.dark-theme [class*="takeaway"],
.dark-theme .ev-article-content div[style*="background"],
.dark-theme div[style*="fdfbf7"],
.dark-theme div[style*="fdfcf9"],
.dark-theme div[style*="faf6f0"],
.dark-theme div[style*="f8fafc"] {
  background-color: #1C1310 !important;
  background: #1C1310 !important;
  border-color: #382620 !important;
  border-left: 4px solid #D4834F !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45) !important;
  color: #D6C8B8 !important;
}

:root[data-theme="dark"] .ev-tip-box,
:root[data-theme="dark"] .callout-info,
:root[data-theme="dark"] [class*="tip-box"],
:root[data-theme="dark"] [class*="barista-tip"],
:root[data-theme="dark"] div[style*="f4f7fa"],
:root[data-theme="dark"] div[style*="F4F7FA"],
:root[data-theme="dark"] div[style*="006699"],
html[data-theme="dark"] .ev-tip-box,
html[data-theme="dark"] .callout-info,
html[data-theme="dark"] [class*="tip-box"],
html[data-theme="dark"] [class*="barista-tip"],
html[data-theme="dark"] div[style*="f4f7fa"],
html[data-theme="dark"] div[style*="F4F7FA"],
html[data-theme="dark"] div[style*="006699"],
body.dark-mode .ev-tip-box,
body.dark-mode div[style*="f4f7fa"],
.dark-theme .ev-tip-box,
.dark-theme div[style*="f4f7fa"] {
  background-color: #111E2E !important;
  background: #111E2E !important;
  border-color: #1E3A5F !important;
  border-left: 4px solid #3B82F6 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45) !important;
  color: #BFDBFE !important;
}

:root[data-theme="dark"] .ev-callout-title,
:root[data-theme="dark"] .ev-callout-box h1,
:root[data-theme="dark"] .ev-callout-box h2,
:root[data-theme="dark"] .ev-callout-box h3,
:root[data-theme="dark"] .ev-callout-box h4,
:root[data-theme="dark"] .ev-evaluation-summary-box h4,
:root[data-theme="dark"] .ev-takeaways-box h4,
:root[data-theme="dark"] [class*="takeaway"] h1,
:root[data-theme="dark"] [class*="takeaway"] h2,
:root[data-theme="dark"] [class*="takeaway"] h3,
:root[data-theme="dark"] [class*="takeaway"] h4,
:root[data-theme="dark"] [class*="takeaway"] strong,
:root[data-theme="dark"] [class*="takeaway"] b,
:root[data-theme="dark"] .ev-article-content div[style*="background"] h1,
:root[data-theme="dark"] .ev-article-content div[style*="background"] h2,
:root[data-theme="dark"] .ev-article-content div[style*="background"] h3,
:root[data-theme="dark"] .ev-article-content div[style*="background"] h4,
:root[data-theme="dark"] .ev-article-content div[style*="background"] strong,
:root[data-theme="dark"] .ev-article-content div[style*="background"] b,
:root[data-theme="dark"] div[style*="fdfbf7"] h4,
:root[data-theme="dark"] div[style*="fdfcf9"] h4,
:root[data-theme="dark"] h4[style*="3c2415"],
:root[data-theme="dark"] h4[style*="2c1810"],
html[data-theme="dark"] .ev-callout-title,
html[data-theme="dark"] .ev-callout-box h4,
html[data-theme="dark"] .ev-evaluation-summary-box h4,
html[data-theme="dark"] .ev-takeaways-box h4,
html[data-theme="dark"] [class*="takeaway"] h4,
html[data-theme="dark"] [class*="takeaway"] strong,
html[data-theme="dark"] .ev-article-content div[style*="background"] h4,
html[data-theme="dark"] .ev-article-content div[style*="background"] strong,
html[data-theme="dark"] div[style*="fdfbf7"] h4,
html[data-theme="dark"] div[style*="fdfcf9"] h4,
html[data-theme="dark"] h4[style*="3c2415"],
html[data-theme="dark"] h4[style*="2c1810"],
body.dark-mode .ev-callout-title,
body.dark-mode [class*="takeaway"] h4,
body.dark-mode [class*="takeaway"] strong,
body.dark-mode .ev-article-content div[style*="background"] h4,
body.dark-mode div[style*="fdfbf7"] h4,
body.dark-mode div[style*="fdfcf9"] h4,
.dark-theme .ev-callout-title,
.dark-theme [class*="takeaway"] h4,
.dark-theme [class*="takeaway"] strong,
.dark-theme .ev-article-content div[style*="background"] h4,
.dark-theme div[style*="fdfbf7"] h4,
.dark-theme div[style*="fdfcf9"] h4 {
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-callout-box p,
:root[data-theme="dark"] .ev-callout-box ul,
:root[data-theme="dark"] .ev-callout-box ol,
:root[data-theme="dark"] .ev-callout-box li,
:root[data-theme="dark"] .ev-evaluation-summary-box p,
:root[data-theme="dark"] .ev-takeaways-box p,
:root[data-theme="dark"] .ev-takeaways-box ul,
:root[data-theme="dark"] .ev-takeaways-box li,
:root[data-theme="dark"] [class*="takeaway"] p,
:root[data-theme="dark"] [class*="takeaway"] ul,
:root[data-theme="dark"] [class*="takeaway"] ol,
:root[data-theme="dark"] [class*="takeaway"] li,
:root[data-theme="dark"] [class*="takeaway"] span,
:root[data-theme="dark"] .ev-article-content div[style*="background"] p,
:root[data-theme="dark"] .ev-article-content div[style*="background"] ul,
:root[data-theme="dark"] .ev-article-content div[style*="background"] ol,
:root[data-theme="dark"] .ev-article-content div[style*="background"] li,
:root[data-theme="dark"] .ev-article-content div[style*="background"] span,
:root[data-theme="dark"] .disclosure-box p,
:root[data-theme="dark"] .disclosure-box span,
:root[data-theme="dark"] .ev-disclosure-box p,
:root[data-theme="dark"] .ev-disclosure-box span,
:root[data-theme="dark"] div[style*="fdfbf7"] p,
:root[data-theme="dark"] div[style*="fdfcf9"] p,
:root[data-theme="dark"] div[style*="fdfcf9"] li,
html[data-theme="dark"] .ev-callout-box p,
html[data-theme="dark"] .ev-callout-box li,
html[data-theme="dark"] [class*="takeaway"] p,
html[data-theme="dark"] [class*="takeaway"] li,
html[data-theme="dark"] .ev-article-content div[style*="background"] p,
html[data-theme="dark"] .ev-article-content div[style*="background"] li,
html[data-theme="dark"] .disclosure-box p,
html[data-theme="dark"] .disclosure-box span,
html[data-theme="dark"] div[style*="fdfbf7"] p,
html[data-theme="dark"] div[style*="fdfcf9"] p,
body.dark-mode .ev-callout-box p,
body.dark-mode .ev-callout-box li,
body.dark-mode [class*="takeaway"] p,
body.dark-mode [class*="takeaway"] li,
body.dark-mode .ev-article-content div[style*="background"] p,
body.dark-mode .ev-article-content div[style*="background"] li,
.dark-theme .ev-callout-box p,
.dark-theme .ev-callout-box li,
.dark-theme [class*="takeaway"] p,
.dark-theme [class*="takeaway"] li,
.dark-theme .ev-article-content div[style*="background"] p,
.dark-theme .ev-article-content div[style*="background"] li {
  color: #D6C8B8 !important;
}

:root[data-theme="dark"] .disclosure-box,
:root[data-theme="dark"] .ev-disclosure-box,
:root[data-theme="dark"] .ev-article-content .disclosure-box,
html[data-theme="dark"] .disclosure-box,
html[data-theme="dark"] .ev-disclosure-box,
html[data-theme="dark"] .ev-article-content .disclosure-box,
body.dark-mode .disclosure-box,
body.dark-mode .ev-disclosure-box,
body.dark-mode .ev-article-content .disclosure-box,
.dark-theme .disclosure-box,
.dark-theme .ev-disclosure-box,
.dark-theme .ev-article-content .disclosure-box {
  background-color: #251A16 !important;
  background: #251A16 !important;
  border-color: #382620 !important;
  border-left: 4px solid #D4834F !important;
  color: #D6C8B8 !important;
}

:root[data-theme="dark"] .disclosure-box *,
:root[data-theme="dark"] .ev-disclosure-box *,
:root[data-theme="dark"] .ev-article-content .disclosure-box *,
html[data-theme="dark"] .disclosure-box *,
html[data-theme="dark"] .ev-disclosure-box *,
html[data-theme="dark"] .ev-article-content .disclosure-box *,
body.dark-mode .disclosure-box *,
body.dark-mode .ev-disclosure-box *,
body.dark-mode .ev-article-content .disclosure-box *,
.dark-theme .disclosure-box *,
.dark-theme .ev-disclosure-box *,
.dark-theme .ev-article-content .disclosure-box * {
  color: #D6C8B8 !important;
}

:root[data-theme="dark"] .ev-tip-box strong,
:root[data-theme="dark"] div[style*="f4f7fa"] strong,
html[data-theme="dark"] .ev-tip-box strong,
html[data-theme="dark"] div[style*="f4f7fa"] strong,
body.dark-mode .ev-tip-box strong,
.dark-theme .ev-tip-box strong {
  color: #93C5FD !important;
}

:root[data-theme="dark"] .ev-tip-box p,
:root[data-theme="dark"] .ev-tip-box span,
:root[data-theme="dark"] div[style*="f4f7fa"] p,
:root[data-theme="dark"] div[style*="f4f7fa"] span,
html[data-theme="dark"] .ev-tip-box p,
html[data-theme="dark"] .ev-tip-box span,
html[data-theme="dark"] div[style*="f4f7fa"] p,
html[data-theme="dark"] div[style*="f4f7fa"] span,
body.dark-mode .ev-tip-box p,
.dark-theme .ev-tip-box p {
  color: #BFDBFE !important;
}

/* 13. Blockquotes, Pullquotes & Citations */
:root[data-theme="dark"] blockquote,
:root[data-theme="dark"] .wp-block-quote,
:root[data-theme="dark"] .wp-block-pullquote,
html[data-theme="dark"] blockquote,
html[data-theme="dark"] .wp-block-quote,
html[data-theme="dark"] .wp-block-pullquote,
body.dark-mode blockquote,
body.dark-mode .wp-block-quote,
.dark-theme blockquote,
.dark-theme .wp-block-quote {
  background-color: #251A16 !important;
  border-left-color: #D4834F !important;
  color: #D6C8B8 !important;
}

:root[data-theme="dark"] blockquote cite,
:root[data-theme="dark"] .wp-block-quote cite,
html[data-theme="dark"] blockquote cite,
html[data-theme="dark"] .wp-block-quote cite,
body.dark-mode blockquote cite,
.dark-theme blockquote cite {
  color: #A89689 !important;
}

/* 14. FAQs & Accordions (Details & Summary) */
:root[data-theme="dark"] details,
html[data-theme="dark"] details,
body.dark-mode details,
.dark-theme details {
  background-color: #251A16 !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] details summary,
html[data-theme="dark"] details summary,
body.dark-mode details summary,
.dark-theme details summary {
  color: #F7F1E8 !important;
  border-bottom-color: #382620 !important;
}

:root[data-theme="dark"] details p,
html[data-theme="dark"] details p,
body.dark-mode details p,
.dark-theme details p {
  color: #D6C8B8 !important;
}

/* 15. Figures & Image Captions */
:root[data-theme="dark"] figcaption,
:root[data-theme="dark"] .wp-caption-text,
html[data-theme="dark"] figcaption,
html[data-theme="dark"] .wp-caption-text,
body.dark-mode figcaption,
body.dark-mode .wp-caption-text,
.dark-theme figcaption,
.dark-theme .wp-caption-text {
  color: #A89689 !important;
}

/* 16. In-Article Dual Product Banners */
:root[data-theme="dark"] .ev-product-banner-inner,
html[data-theme="dark"] .ev-product-banner-inner,
body.dark-mode .ev-product-banner-inner,
.dark-theme .ev-product-banner-inner {
  background-color: #1C1310 !important;
  border-color: #382620 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45) !important;
}

:root[data-theme="dark"] .ev-product-banner-inner:hover,
html[data-theme="dark"] .ev-product-banner-inner:hover,
body.dark-mode .ev-product-banner-inner:hover,
.dark-theme .ev-product-banner-inner:hover {
  border-color: #E59562 !important;
}

:root[data-theme="dark"] .ev-product-banner-img-wrap,
html[data-theme="dark"] .ev-product-banner-img-wrap,
body.dark-mode .ev-product-banner-img-wrap,
.dark-theme .ev-product-banner-img-wrap {
  background-color: #FFFFFF !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] .ev-product-banner-title,
html[data-theme="dark"] .ev-product-banner-title,
body.dark-mode .ev-product-banner-title,
.dark-theme .ev-product-banner-title {
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-product-banner-desc,
html[data-theme="dark"] .ev-product-banner-desc,
body.dark-mode .ev-product-banner-desc,
.dark-theme .ev-product-banner-desc {
  color: #D6C8B8 !important;
}

:root[data-theme="dark"] .ev-product-banner-divider,
html[data-theme="dark"] .ev-product-banner-divider,
body.dark-mode .ev-product-banner-divider,
.dark-theme .ev-product-banner-divider {
  background-color: #382620 !important;
}

:root[data-theme="dark"] .ev-product-banner-btn,
:root[data-theme="dark"] .ev-article-content a.ev-product-banner-btn,
html[data-theme="dark"] .ev-product-banner-btn,
html[data-theme="dark"] .ev-article-content a.ev-product-banner-btn,
body.dark-mode .ev-product-banner-btn,
body.dark-mode .ev-article-content a.ev-product-banner-btn,
.dark-theme .ev-product-banner-btn,
.dark-theme .ev-article-content a.ev-product-banner-btn {
  background: linear-gradient(180deg, #FFB834 0%, #F59E1B 100%) !important;
  border: 1px solid #D98207 !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  box-shadow: 0 4px 16px rgba(245, 158, 27, 0.35) !important;
  opacity: 1 !important;
}

:root[data-theme="dark"] .ev-product-banner-btn:hover,
html[data-theme="dark"] .ev-product-banner-btn:hover,
body.dark-mode .ev-product-banner-btn:hover,
.dark-theme .ev-product-banner-btn:hover {
  background: linear-gradient(180deg, #FFC552 0%, #E68B08 100%) !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  border-color: #C77302 !important;
  box-shadow: 0 6px 20px rgba(245, 158, 27, 0.45) !important;
}

/* 17. Social Share Bar & Author Bio */
:root[data-theme="dark"] .ev-article-share-bar,
html[data-theme="dark"] .ev-article-share-bar,
body.dark-mode .ev-article-share-bar,
.dark-theme .ev-article-share-bar {
  background-color: #251A16 !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] .ev-share-bar-label,
:root[data-theme="dark"] .ev-share-header,
:root[data-theme="dark"] .ev-share-label,
html[data-theme="dark"] .ev-share-bar-label,
html[data-theme="dark"] .ev-share-header,
html[data-theme="dark"] .ev-share-label,
body.dark-mode .ev-share-bar-label,
.dark-theme .ev-share-bar-label {
  color: #D6C8B8 !important;
}

:root[data-theme="dark"] .ev-share-btn,
html[data-theme="dark"] .ev-share-btn,
body.dark-mode .ev-share-btn,
.dark-theme .ev-share-btn {
  background-color: #1C1310 !important;
  border-color: #382620 !important;
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-share-btn:hover,
html[data-theme="dark"] .ev-share-btn:hover,
body.dark-mode .ev-share-btn:hover,
.dark-theme .ev-share-btn:hover {
  background-color: #382620 !important;
  border-color: #E59562 !important;
  color: #E59562 !important;
}

:root[data-theme="dark"] .ev-author-bio,
html[data-theme="dark"] .ev-author-bio,
body.dark-mode .ev-author-bio,
.dark-theme .ev-author-bio {
  background-color: #251A16 !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] .ev-author-name,
html[data-theme="dark"] .ev-author-name,
body.dark-mode .ev-author-name,
.dark-theme .ev-author-name {
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-author-text,
html[data-theme="dark"] .ev-author-text,
body.dark-mode .ev-author-text,
.dark-theme .ev-author-text {
  color: #D6C8B8 !important;
}

/* 18. Sidebar Widgets & Live Deal Card */
:root[data-theme="dark"] .ev-sidebar-widget,
html[data-theme="dark"] .ev-sidebar-widget,
body.dark-mode .ev-sidebar-widget,
.dark-theme .ev-sidebar-widget {
  background-color: #1C1310 !important;
  border-color: #382620 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
}

:root[data-theme="dark"] .ev-sidebar-title,
html[data-theme="dark"] .ev-sidebar-title,
body.dark-mode .ev-sidebar-title,
.dark-theme .ev-sidebar-title {
  color: #F7F1E8 !important;
  border-bottom-color: #2B1D18 !important;
}

:root[data-theme="dark"] .ev-sidebar-links li a,
html[data-theme="dark"] .ev-sidebar-links li a,
body.dark-mode .ev-sidebar-links li a,
.dark-theme .ev-sidebar-links li a {
  color: #D6C8B8 !important;
}

:root[data-theme="dark"] .ev-sidebar-links li a:hover,
html[data-theme="dark"] .ev-sidebar-links li a:hover,
body.dark-mode .ev-sidebar-links li a:hover,
.dark-theme .ev-sidebar-links li a:hover {
  background-color: #251A16 !important;
  color: #E59562 !important;
}

:root[data-theme="dark"] .ev-sidebar-product-box,
html[data-theme="dark"] .ev-sidebar-product-box,
body.dark-mode .ev-sidebar-product-box,
.dark-theme .ev-sidebar-product-box {
  background: linear-gradient(135deg, #221815 0%, #1A120F 100%) !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] .ev-sb-title,
html[data-theme="dark"] .ev-sb-title,
body.dark-mode .ev-sb-title,
.dark-theme .ev-sb-title {
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-sb-subtitle,
html[data-theme="dark"] .ev-sb-subtitle,
body.dark-mode .ev-sb-subtitle,
.dark-theme .ev-sb-subtitle {
  color: #D6C8B8 !important;
}

/* 19. Related Guides & Review Cards */
:root[data-theme="dark"] .ev-related-section,
html[data-theme="dark"] .ev-related-section,
body.dark-mode .ev-related-section,
.dark-theme .ev-related-section {
  background-color: #140D0B !important;
  border-top-color: #382620 !important;
}

:root[data-theme="dark"] .ev-review-card,
:root[data-theme="dark"] .ev-card,
:root[data-theme="dark"] .ev-category-card,
html[data-theme="dark"] .ev-review-card,
html[data-theme="dark"] .ev-card,
html[data-theme="dark"] .ev-category-card,
body.dark-mode .ev-review-card,
body.dark-mode .ev-card,
body.dark-mode .ev-category-card,
.dark-theme .ev-review-card,
.dark-theme .ev-card,
.dark-theme .ev-category-card {
  background-color: #1C1310 !important;
  border-color: #382620 !important;
}

:root[data-theme="dark"] .ev-review-title a,
:root[data-theme="dark"] .ev-card-title a,
:root[data-theme="dark"] .ev-category-title,
html[data-theme="dark"] .ev-review-title a,
html[data-theme="dark"] .ev-card-title a,
html[data-theme="dark"] .ev-category-title,
body.dark-mode .ev-review-title a,
body.dark-mode .ev-card-title a,
body.dark-mode .ev-category-title,
.dark-theme .ev-review-title a,
.dark-theme .ev-card-title a,
.dark-theme .ev-category-title {
  color: #F7F1E8 !important;
}

:root[data-theme="dark"] .ev-review-excerpt,
:root[data-theme="dark"] .ev-category-desc,
html[data-theme="dark"] .ev-review-excerpt,
html[data-theme="dark"] .ev-category-desc,
body.dark-mode .ev-review-excerpt,
body.dark-mode .ev-category-desc,
.dark-theme .ev-review-excerpt,
.dark-theme .ev-category-desc {
  color: #D6C8B8 !important;
}

:root[data-theme="dark"] .ev-category-count,
html[data-theme="dark"] .ev-category-count,
body.dark-mode .ev-category-count,
.dark-theme .ev-category-count {
  background-color: rgba(14, 9, 8, 0.88) !important;
  color: #F7F1E8 !important;
  -webkit-text-fill-color: #F7F1E8 !important;
  border: 1px solid rgba(212, 131, 79, 0.45) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
}

:root[data-theme="dark"] .ev-review-badge,
html[data-theme="dark"] .ev-review-badge,
body.dark-mode .ev-review-badge,
.dark-theme .ev-review-badge {
  background-color: #A35B30 !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

:root[data-theme="dark"] .ev-review-author,
:root[data-theme="dark"] .ev-review-meta,
html[data-theme="dark"] .ev-review-author,
html[data-theme="dark"] .ev-review-meta,
body.dark-mode .ev-review-author,
body.dark-mode .ev-review-meta,
.dark-theme .ev-review-author,
.dark-theme .ev-review-meta {
  color: #A89689 !important;
}

/* 20. Newsletter & Lead Magnet Cards */
:root[data-theme="dark"] .ev-newsletter-card,
:root[data-theme="dark"] .espresso-lead-magnet__card,
html[data-theme="dark"] .ev-newsletter-card,
html[data-theme="dark"] .espresso-lead-magnet__card,
body.dark-mode .ev-newsletter-card,
body.dark-mode .espresso-lead-magnet__card,
.dark-theme .ev-newsletter-card,
.dark-theme .espresso-lead-magnet__card {
  background: #1C1310 !important;
  background: linear-gradient(180deg, #221815 0%, #1A120F 100%) !important;
  border-color: #382620 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
}

[data-theme="dark"] .espresso-lead-magnet__title, body.dark-mode .espresso-lead-magnet__title, .dark-theme .espresso-lead-magnet__title {
  color: #F7F1E8 !important;
}

[data-theme="dark"] .espresso-lead-magnet__subtitle, body.dark-mode .espresso-lead-magnet__subtitle, .dark-theme .espresso-lead-magnet__subtitle {
  color: #D6C8B8 !important;
}

[data-theme="dark"] .espresso-lead-magnet__description, body.dark-mode .espresso-lead-magnet__description, .dark-theme .espresso-lead-magnet__description {
  color: #C2B3A4 !important;
}

[data-theme="dark"] .espresso-lead-magnet__input, body.dark-mode .espresso-lead-magnet__input, .dark-theme .espresso-lead-magnet__input {
  background: #140D0B !important;
  border-color: #3D2B24 !important;
  color: #F7F1E8 !important;
}

[data-theme="dark"] .espresso-lead-magnet__footer, body.dark-mode .espresso-lead-magnet__footer, .dark-theme .espresso-lead-magnet__footer {
  background: #18100D !important;
  border-top-color: #2B1D18 !important;
  color: #A89689 !important;
}

[data-theme="dark"] .espresso-lead-magnet__share, body.dark-mode .espresso-lead-magnet__share, .dark-theme .espresso-lead-magnet__share {
  background: #140D0B !important;
  border-top-color: #2B1D18 !important;
}

[data-theme="dark"] .espresso-lead-magnet__share-btn, body.dark-mode .espresso-lead-magnet__share-btn, .dark-theme .espresso-lead-magnet__share-btn {
  background: #251A16 !important;
  border-color: #3D2B24 !important;
  color: #D6C8B8 !important;
}

[data-theme="dark"] .ev-404-card, body.dark-mode .ev-404-card, .dark-theme .ev-404-card {
  background-color: #1C1310 !important;
  border-color: #382620 !important;
  color: #F7F1E8 !important;
}

[data-theme="dark"] .ev-404-title, body.dark-mode .ev-404-title, .dark-theme .ev-404-title {
  color: #F7F1E8 !important;
}

[data-theme="dark"] .ev-404-lead, body.dark-mode .ev-404-lead, .dark-theme .ev-404-lead {
  color: #D6C8B8 !important;
}

[data-theme="dark"] .ev-filter-pill, [data-theme="dark"] .ev-filter-pills a,
body.dark-mode .ev-filter-pill, body.dark-mode .ev-filter-pills a,
.dark-theme .ev-filter-pill, .dark-theme .ev-filter-pills a {
  background-color: #251A16 !important;
  border-color: #3D2B24 !important;
  color: #F7F1E8 !important;
}


[data-theme="dark"] .ev-top-bar, body.dark-mode .ev-top-bar, .dark-theme .ev-top-bar {
  background-color: #100A09 !important;
  color: #A89689 !important;
  border-bottom-color: #2B1D18 !important;
}

[data-theme="dark"] .ev-archive-hero, [data-theme="dark"] .ev-page-hero, [data-theme="dark"] .ev-search-hero,
body.dark-mode .ev-archive-hero, body.dark-mode .ev-page-hero, body.dark-mode .ev-search-hero,
.dark-theme .ev-archive-hero, .dark-theme .ev-page-hero, .dark-theme .ev-search-hero {
  background-color: #1C1310 !important;
  border-bottom-color: #382620 !important;
}

[data-theme="dark"] .ev-filter-bar, body.dark-mode .ev-filter-bar, .dark-theme .ev-filter-bar {
  background-color: #140D0B !important;
  border-bottom-color: #382620 !important;
}

[data-theme="dark"] .ev-comparison-table th, body.dark-mode .ev-comparison-table th, .dark-theme .ev-comparison-table th {
  background-color: #251A16 !important;
  color: #F7F1E8 !important;
  border-color: #382620 !important;
}

[data-theme="dark"] .ev-comparison-table td, body.dark-mode .ev-comparison-table td, .dark-theme .ev-comparison-table td {
  background-color: #1C1310 !important;
  color: #D6C8B8 !important;
  border-color: #382620 !important;
}

/* ==========================================================================
   MEDIA PROTECTION RULE — NEVER INVERT PHOTOS/LOGOS/GRAPHICS IN DARK MODE
   ========================================================================== */
img,
picture,
video,
canvas,
.ev-logo-img,
.ev-avatar-img,
.ev-gallery-main-frame img,
.ev-gallery-thumb-btn img,
.ev-review-media img,
.ev-featured-image-frame img,
.ev-pinterest-img-wrap img {
  filter: none !important;
}

.ev-site-footer .ev-brand-name {
  color: #FFFFFF !important;
}

/* ==========================================================================
   EspressoVista Editorial Product Banner Component (Compact, Balanced, High Contrast)
   ========================================================================== */
.ev-product-banner {
  margin: 26px 0;
  width: 100%;
  box-sizing: border-box;
  clear: both;
}

.ev-product-banner-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  align-items: center;
  background-color: var(--ev-surface-card, #FFFFFF);
  border: 1px solid var(--ev-border, #E5DCD3);
  border-radius: var(--ev-radius-lg, 14px);
  padding: 16px 20px;
  box-shadow: var(--ev-shadow-sm, 0 4px 14px rgba(36, 24, 21, 0.05));
  transition: var(--ev-transition, all 0.25s ease);
  box-sizing: border-box;
}

.ev-product-banner-inner:hover {
  box-shadow: var(--ev-shadow-md, 0 8px 24px rgba(36, 24, 21, 0.09));
  border-color: var(--ev-copper, #B86B3E);
}

.ev-product-banner-media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.ev-product-banner-img-wrap {
  width: 100%;
  height: 190px;
  background-color: var(--ev-surface-warm, #FAF6F0);
  border: 1px solid var(--ev-border-light, #EFE8E0);
  border-radius: var(--ev-radius-md, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.ev-product-banner-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: auto !important;
  display: block !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ev-product-banner-inner:hover .ev-product-banner-img-wrap img {
  transform: scale(1.04) !important;
}

.ev-product-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  min-width: 0;
}

.ev-product-banner-title {
  font-family: var(--ev-font-serif, 'Playfair Display', Georgia, serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ev-deep-espresso, #241815);
  margin: 0 0 6px 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ev-product-banner-desc {
  font-family: var(--ev-font-sans, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ev-text-secondary, #4A3A34);
  margin: 0 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ev-product-banner-divider {
  width: 100%;
  height: 1px;
  background-color: var(--ev-border-light, #EFE8E0);
  margin: 0 0 11px 0;
}

.ev-product-banner-cta-wrap {
  display: flex;
  align-items: center;
}

/* Base & Light Mode CTA Button (High-Contrast Solid Text & Icon) */
.ev-product-banner-btn,
.ev-article-content a.ev-product-banner-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: #F7A827 !important;
  background: linear-gradient(180deg, #FFB834 0%, #F59E1B 100%) !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-family: var(--ev-font-sans, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  border: 1px solid #D98207 !important;
  text-decoration: none !important;
  box-shadow: 0 3px 12px rgba(245, 158, 27, 0.35) !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  line-height: 1.3 !important;
  opacity: 1 !important;
}

.ev-product-banner-btn span,
.ev-product-banner-btn .ev-banner-btn-text {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  font-weight: 700 !important;
  opacity: 1 !important;
}

.ev-product-banner-btn svg,
.ev-product-banner-btn .ev-amazon-icon,
.ev-product-banner-btn svg path {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  fill: #111111 !important;
  color: #111111 !important;
  display: inline-block !important;
  vertical-align: middle !important;
  position: relative !important;
  top: -0.5px !important;
  opacity: 1 !important;
}

/* Hover, Focus, Active States */
.ev-product-banner-btn:hover,
.ev-product-banner-btn:focus-visible,
.ev-product-banner-btn:active,
.ev-article-content a.ev-product-banner-btn:hover,
.ev-article-content a.ev-product-banner-btn:focus-visible,
.ev-article-content a.ev-product-banner-btn:active {
  background: linear-gradient(180deg, #FFC552 0%, #E68B08 100%) !important;
  box-shadow: 0 5px 18px rgba(245, 158, 27, 0.45) !important;
  transform: translateY(-1px) !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  border-color: #C77302 !important;
}

.ev-product-banner-btn:hover span,
.ev-product-banner-btn:hover .ev-banner-btn-text,
.ev-product-banner-btn:focus-visible span,
.ev-product-banner-btn:focus-visible .ev-banner-btn-text {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

.ev-product-banner-btn:hover svg,
.ev-product-banner-btn:hover .ev-amazon-icon,
.ev-product-banner-btn:hover svg path,
.ev-product-banner-btn:focus-visible svg,
.ev-product-banner-btn:focus-visible .ev-amazon-icon,
.ev-product-banner-btn:focus-visible svg path {
  fill: #000000 !important;
  color: #000000 !important;
}

/* Tablet Responsive */
@media (max-width: 860px) {
  .ev-product-banner-inner {
    grid-template-columns: 200px 1fr;
    gap: 16px;
    padding: 14px 16px;
  }
  .ev-product-banner-img-wrap {
    height: 155px;
  }
  .ev-product-banner-title {
    font-size: 1.08rem;
  }
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .ev-product-banner {
    margin: 20px 0;
  }
  .ev-product-banner-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 12px;
    text-align: left;
  }
  .ev-product-banner-img-wrap {
    height: 170px;
    max-width: 100%;
  }
  .ev-product-banner-title {
    font-size: 1.10rem;
    margin-bottom: 5px;
  }
  .ev-product-banner-desc {
    font-size: 0.86rem;
    margin-bottom: 8px;
  }
  .ev-product-banner-divider {
    margin-bottom: 10px;
  }
  .ev-product-banner-btn,
  .ev-article-content a.ev-product-banner-btn {
    width: 100% !important;
    padding: 11px 16px !important;
    font-size: 0.95rem !important;
  }
}

/* ==========================================================================
   Dark Mode Support for Product Banner (Ultra High Contrast Guarantee)
   ========================================================================== */
[data-theme="dark"] .ev-product-banner-inner,
body.dark-mode .ev-product-banner-inner,
.dark-theme .ev-product-banner-inner {
  background-color: #1C1310 !important;
  border-color: #382620 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45) !important;
}

[data-theme="dark"] .ev-product-banner-inner:hover,
body.dark-mode .ev-product-banner-inner:hover,
.dark-theme .ev-product-banner-inner:hover {
  border-color: #E5A879 !important;
}

[data-theme="dark"] .ev-product-banner-img-wrap,
body.dark-mode .ev-product-banner-img-wrap,
.dark-theme .ev-product-banner-img-wrap,
[data-theme="dark"] .ev-review-media,
body.dark-mode .ev-review-media,
.dark-theme .ev-review-media {
  background-color: #251A16 !important;
  border-color: #382620 !important;
}

[data-theme="dark"] .ev-product-banner-title,
body.dark-mode .ev-product-banner-title,
.dark-theme .ev-product-banner-title {
  color: #F7F1E8 !important;
}

[data-theme="dark"] .ev-product-banner-desc,
body.dark-mode .ev-product-banner-desc,
.dark-theme .ev-product-banner-desc {
  color: #D6C8B8 !important;
}

[data-theme="dark"] .ev-product-banner-divider,
body.dark-mode .ev-product-banner-divider,
.dark-theme .ev-product-banner-divider {
  background-color: #382620 !important;
}

/* Dark Mode CTA Button — Explicit High Contrast Fix */
[data-theme="dark"] .ev-product-banner-btn,
[data-theme="dark"] .ev-article-content a.ev-product-banner-btn,
body.dark-mode .ev-product-banner-btn,
body.dark-mode .ev-article-content a.ev-product-banner-btn,
.dark-theme .ev-product-banner-btn,
.dark-theme .ev-article-content a.ev-product-banner-btn {
  background: #F7A827 !important;
  background: linear-gradient(180deg, #FFB834 0%, #F59E1B 100%) !important;
  border: 1px solid #D98207 !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  box-shadow: 0 4px 16px rgba(245, 158, 27, 0.35) !important;
  opacity: 1 !important;
}

[data-theme="dark"] .ev-product-banner-btn span,
[data-theme="dark"] .ev-product-banner-btn .ev-banner-btn-text,
body.dark-mode .ev-product-banner-btn span,
body.dark-mode .ev-product-banner-btn .ev-banner-btn-text,
.dark-theme .ev-product-banner-btn span,
.dark-theme .ev-product-banner-btn .ev-banner-btn-text {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  opacity: 1 !important;
}

[data-theme="dark"] .ev-product-banner-btn svg,
[data-theme="dark"] .ev-product-banner-btn .ev-amazon-icon,
[data-theme="dark"] .ev-product-banner-btn svg path,
body.dark-mode .ev-product-banner-btn svg,
body.dark-mode .ev-product-banner-btn .ev-amazon-icon,
body.dark-mode .ev-product-banner-btn svg path,
.dark-theme .ev-product-banner-btn svg,
.dark-theme .ev-product-banner-btn .ev-amazon-icon,
.dark-theme .ev-product-banner-btn svg path {
  fill: #111111 !important;
  color: #111111 !important;
  opacity: 1 !important;
}

[data-theme="dark"] .ev-product-banner-btn:hover,
[data-theme="dark"] .ev-product-banner-btn:focus-visible,
[data-theme="dark"] .ev-article-content a.ev-product-banner-btn:hover,
[data-theme="dark"] .ev-article-content a.ev-product-banner-btn:focus-visible,
body.dark-mode .ev-product-banner-btn:hover,
body.dark-mode .ev-article-content a.ev-product-banner-btn:hover,
.dark-theme .ev-product-banner-btn:hover,
.dark-theme .ev-article-content a.ev-product-banner-btn:hover {
  background: linear-gradient(180deg, #FFC552 0%, #E68B08 100%) !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  border-color: #C77302 !important;
  box-shadow: 0 6px 20px rgba(245, 158, 27, 0.45) !important;
}

[data-theme="dark"] .ev-product-banner-btn:hover span,
[data-theme="dark"] .ev-product-banner-btn:hover .ev-banner-btn-text,
[data-theme="dark"] .ev-product-banner-btn:hover svg,
[data-theme="dark"] .ev-product-banner-btn:hover .ev-amazon-icon,
[data-theme="dark"] .ev-product-banner-btn:hover svg path {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  fill: #000000 !important;
}




/* ==========================================================================
   ESPRESSOVISTA UNIFIED THEME SYSTEM (LIGHT & DARK MODE PARITY)
   ========================================================================== */

/* 1. Archive Hero (Light Mode Default - Clean White Matching Article Hero) */
.ev-archive-hero,
.ev-page-hero,
.ev-search-hero {
  background-color: #FFFFFF !important;
  border-bottom: 1px solid #EFE8E0 !important;
  padding: 36px 0 28px !important;
}

.ev-archive-hero .ev-breadcrumbs,
.ev-page-hero .ev-breadcrumbs,
.ev-search-hero .ev-breadcrumbs {
  margin-bottom: 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 0.82rem !important;
  color: #70564A !important;
  flex-wrap: wrap !important;
}

.ev-archive-hero .ev-breadcrumbs a,
.ev-page-hero .ev-breadcrumbs a {
  color: #70564A !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

.ev-archive-hero .ev-breadcrumbs a:hover,
.ev-page-hero .ev-breadcrumbs a:hover {
  color: #B86B3E !important;
}

.ev-breadcrumb-sep {
  color: #B8A89C !important;
  margin: 0 4px !important;
}

.ev-archive-hero .ev-eyebrow,
.ev-page-hero .ev-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  text-transform: uppercase !important;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  color: #B86B3E !important;
  margin-bottom: 10px !important;
}

.ev-archive-title,
.ev-page-title,
.ev-search-title {
  font-family: var(--ev-font-serif, 'Playfair Display', Georgia, serif) !important;
  font-size: clamp(1.75rem, 4.5vw, 2.65rem) !important;
  font-weight: 700 !important;
  color: #241815 !important;
  line-height: 1.25 !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.015em !important;
}

.ev-archive-desc,
.ev-search-query-text {
  font-size: 1rem !important;
  color: #5C4A42 !important;
  max-width: 720px !important;
  line-height: 1.65 !important;
}

/* Filter Bar (Light Mode) */
.ev-filter-bar {
  background-color: #FAF6F0 !important;
  border-bottom: 1px solid #EFE8E0 !important;
  padding: 14px 0 !important;
}

.ev-filter-pills {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  padding: 2px 0 !important;
}

.ev-filter-pills::-webkit-scrollbar {
  display: none !important;
}

.ev-filter-pill,
.ev-filter-pills a {
  background-color: #FFFFFF !important;
  color: #241815 !important;
  border: 1px solid #E5DCD3 !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 7px 16px !important;
  border-radius: 9999px !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  box-shadow: 0 1px 3px rgba(36, 24, 21, 0.04) !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
}

.ev-filter-pill:hover,
.ev-filter-pills a:hover {
  border-color: #B86B3E !important;
  color: #B86B3E !important;
}

.ev-filter-pill.active,
.ev-filter-pills a.active {
  background-color: #B86B3E !important;
  border-color: #B86B3E !important;
  color: #FFFFFF !important;
  box-shadow: 0 2px 8px rgba(184, 107, 62, 0.3) !important;
}

/* 2. In-Article Callout Boxes (Light Mode) */
.ev-callout-box,
.ev-evaluation-summary-box,
.ev-takeaways-box,
div[style*="fdfbf7"],
div[style*="FDFBF7"],
div[style*="fdfcf9"],
div[style*="FDFCF9"],
div[style*="2c1810"],
div[style*="3c2415"] {
  background-color: #FAF6F0 !important;
  border: 1px solid #E5DCD0 !important;
  border-left: 4px solid #B86B3E !important;
  border-radius: 10px !important;
  padding: 20px 24px !important;
  margin: 26px 0 !important;
  box-shadow: 0 2px 10px rgba(36, 24, 21, 0.04) !important;
  box-sizing: border-box !important;
}

.ev-tip-box,
div[style*="f4f7fa"],
div[style*="F4F7FA"],
div[style*="006699"] {
  background-color: #F0F6FC !important;
  border: 1px solid #D0E1FD !important;
  border-left: 4px solid #2563EB !important;
  border-radius: 10px !important;
  padding: 18px 22px !important;
  margin: 24px 0 !important;
  box-sizing: border-box !important;
}

.ev-callout-title,
.ev-callout-box h4,
.ev-evaluation-summary-box h4,
.ev-takeaways-box h4,
div[style*="fdfbf7"] h4,
div[style*="fdfcf9"] h4,
div[style*="2c1810"] h4,
div[style*="3c2415"] h4,
h4[style*="3c2415"],
h4[style*="2c1810"] {
  font-family: var(--ev-font-serif, 'Playfair Display', Georgia, serif) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #241815 !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  line-height: 1.35 !important;
}

.ev-callout-box p,
.ev-callout-box ul,
.ev-callout-box ol,
.ev-callout-box li,
.ev-evaluation-summary-box p,
.ev-takeaways-box p,
.ev-takeaways-box ul,
.ev-takeaways-box li,
div[style*="fdfbf7"] p,
div[style*="fdfcf9"] p,
div[style*="fdfcf9"] li {
  color: #4A3A34 !important;
  font-family: var(--ev-font-sans, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 0.96rem !important;
  line-height: 1.7 !important;
}

.ev-callout-box ul,
.ev-takeaways-box ul,
div[style*="fdfcf9"] ul {
  padding-left: 20px !important;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}

.ev-callout-box li,
.ev-takeaways-box li,
div[style*="fdfcf9"] li {
  margin-bottom: 6px !important;
}

.ev-tip-box strong,
div[style*="f4f7fa"] strong {
  color: #1E3A8A !important;
  font-weight: 700 !important;
}

.ev-tip-box p,
.ev-tip-box span,
div[style*="f4f7fa"] p,
div[style*="f4f7fa"] span {
  color: #1E3A8A !important;
  font-size: 0.94rem !important;
  line-height: 1.6 !important;
}

/* 3. DARK MODE (Strictly scoped under [data-theme="dark"], body.dark-mode, .dark-theme) */
[data-theme="dark"] .ev-archive-hero,
body.dark-mode .ev-archive-hero,
.dark-theme .ev-archive-hero {
  background-color: #140D0B !important;
  border-bottom-color: #382620 !important;
}

[data-theme="dark"] .ev-archive-title,
body.dark-mode .ev-archive-title,
.dark-theme .ev-archive-title {
  color: #F7F1E8 !important;
}

[data-theme="dark"] .ev-archive-desc,
body.dark-mode .ev-archive-desc,
.dark-theme .ev-archive-desc {
  color: #D6C8B8 !important;
}

[data-theme="dark"] .ev-archive-hero .ev-breadcrumbs,
[data-theme="dark"] .ev-archive-hero .ev-breadcrumbs a,
[data-theme="dark"] .ev-archive-hero .ev-breadcrumbs span,
body.dark-mode .ev-archive-hero .ev-breadcrumbs,
body.dark-mode .ev-archive-hero .ev-breadcrumbs a,
body.dark-mode .ev-archive-hero .ev-breadcrumbs span,
.dark-theme .ev-archive-hero .ev-breadcrumbs,
.dark-theme .ev-archive-hero .ev-breadcrumbs a,
.dark-theme .ev-archive-hero .ev-breadcrumbs span {
  color: #A89689 !important;
}

[data-theme="dark"] .ev-archive-hero .ev-breadcrumbs a:hover,
body.dark-mode .ev-archive-hero .ev-breadcrumbs a:hover,
.dark-theme .ev-archive-hero .ev-breadcrumbs a:hover {
  color: #E5A879 !important;
}

[data-theme="dark"] .ev-filter-bar,
body.dark-mode .ev-filter-bar,
.dark-theme .ev-filter-bar {
  background-color: #1A110E !important;
  border-bottom-color: #382620 !important;
}

[data-theme="dark"] .ev-filter-pill,
[data-theme="dark"] .ev-filter-pills a,
body.dark-mode .ev-filter-pill,
body.dark-mode .ev-filter-pills a,
.dark-theme .ev-filter-pill,
.dark-theme .ev-filter-pills a {
  background-color: #251A16 !important;
  border-color: #382620 !important;
  color: #F7F1E8 !important;
}

[data-theme="dark"] .ev-filter-pill:hover,
[data-theme="dark"] .ev-filter-pills a:hover,
body.dark-mode .ev-filter-pill:hover,
body.dark-mode .ev-filter-pills a:hover,
.dark-theme .ev-filter-pill:hover,
.dark-theme .ev-filter-pills a:hover {
  border-color: #E5A879 !important;
  color: #E5A879 !important;
}

[data-theme="dark"] .ev-filter-pill.active,
[data-theme="dark"] .ev-filter-pills a.active,
body.dark-mode .ev-filter-pill.active,
body.dark-mode .ev-filter-pills a.active,
.dark-theme .ev-filter-pill.active,
.dark-theme .ev-filter-pills a.active {
  background-color: #B86B3E !important;
  border-color: #B86B3E !important;
  color: #FFFFFF !important;
  box-shadow: 0 2px 10px rgba(184, 107, 62, 0.4) !important;
}

/* Dark Mode Callouts, Summaries, Takeaways & Tips */
[data-theme="dark"] .ev-callout-box,
[data-theme="dark"] .ev-evaluation-summary-box,
[data-theme="dark"] .ev-takeaways-box,
[data-theme="dark"] div[style*="fdfbf7"],
[data-theme="dark"] div[style*="FDFBF7"],
[data-theme="dark"] div[style*="fdfcf9"],
[data-theme="dark"] div[style*="FDFCF9"],
[data-theme="dark"] div[style*="2c1810"],
[data-theme="dark"] div[style*="3c2415"],
body.dark-mode .ev-callout-box,
body.dark-mode .ev-evaluation-summary-box,
body.dark-mode .ev-takeaways-box,
body.dark-mode div[style*="fdfbf7"],
body.dark-mode div[style*="fdfcf9"],
.dark-theme .ev-callout-box,
.dark-theme .ev-evaluation-summary-box,
.dark-theme .ev-takeaways-box,
.dark-theme div[style*="fdfbf7"],
.dark-theme div[style*="fdfcf9"] {
  background-color: #1C1310 !important;
  border-color: #382620 !important;
  border-left: 4px solid #E5A879 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45) !important;
  color: #D6C8B8 !important;
}

[data-theme="dark"] .ev-callout-title,
[data-theme="dark"] .ev-callout-box h4,
[data-theme="dark"] .ev-evaluation-summary-box h4,
[data-theme="dark"] .ev-takeaways-box h4,
[data-theme="dark"] div[style*="fdfbf7"] h4,
[data-theme="dark"] div[style*="fdfcf9"] h4,
[data-theme="dark"] h4[style*="3c2415"],
[data-theme="dark"] h4[style*="2c1810"],
body.dark-mode .ev-callout-title,
body.dark-mode div[style*="fdfbf7"] h4,
body.dark-mode div[style*="fdfcf9"] h4,
.dark-theme .ev-callout-title,
.dark-theme div[style*="fdfbf7"] h4,
.dark-theme div[style*="fdfcf9"] h4 {
  color: #F7F1E8 !important;
}

[data-theme="dark"] .ev-callout-box p,
[data-theme="dark"] .ev-callout-box ul,
[data-theme="dark"] .ev-callout-box li,
[data-theme="dark"] .ev-evaluation-summary-box p,
[data-theme="dark"] .ev-takeaways-box p,
[data-theme="dark"] .ev-takeaways-box ul,
[data-theme="dark"] .ev-takeaways-box li,
[data-theme="dark"] div[style*="fdfbf7"] p,
[data-theme="dark"] div[style*="fdfcf9"] p,
[data-theme="dark"] div[style*="fdfcf9"] li,
body.dark-mode .ev-callout-box p,
body.dark-mode .ev-callout-box li,
.dark-theme .ev-callout-box p,
.dark-theme .ev-callout-box li {
  color: #D6C8B8 !important;
}

[data-theme="dark"] .ev-tip-box,
[data-theme="dark"] div[style*="f4f7fa"],
[data-theme="dark"] div[style*="F4F7FA"],
[data-theme="dark"] div[style*="006699"],
body.dark-mode .ev-tip-box,
body.dark-mode div[style*="f4f7fa"],
.dark-theme .ev-tip-box,
.dark-theme div[style*="f4f7fa"] {
  background-color: #111E2E !important;
  border-color: #1E3A5F !important;
  border-left: 4px solid #3B82F6 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45) !important;
  color: #BFDBFE !important;
}

[data-theme="dark"] .ev-tip-box strong,
[data-theme="dark"] div[style*="f4f7fa"] strong,
body.dark-mode .ev-tip-box strong,
.dark-theme .ev-tip-box strong {
  color: #93C5FD !important;
}

[data-theme="dark"] .ev-tip-box p,
[data-theme="dark"] .ev-tip-box span,
[data-theme="dark"] div[style*="f4f7fa"] p,
[data-theme="dark"] div[style*="f4f7fa"] span,
body.dark-mode .ev-tip-box p,
.dark-theme .ev-tip-box p {
  color: #BFDBFE !important;
}

/* ==========================================================================
   REVIEW CARDS & PRODUCT BANNER IMAGES MASTER COMPONENT SPECIFICATION
   - Zero product image cropping
   - Zero image distortion or stretching
   - Preserves natural aspect ratio with object-fit: contain
   - Clean centered white background frame for high contrast
   ========================================================================== */

/* 1. Global Review Media Container (Archive Grid, Homepage, Categories, Search) */
.ev-review-card .ev-review-media,
.ev-review-media {
  position: relative !important;
  width: 100% !important;
  height: 210px !important;
  min-height: 200px !important;
  max-height: 230px !important;
  background-color: #FFFFFF !important;
  border-bottom: 1px solid var(--ev-border-light, #EFE8E0) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 16px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.ev-review-card .ev-review-media a,
.ev-review-media a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  text-decoration: none !important;
}

.ev-review-card .ev-review-media img,
.ev-review-media img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: auto !important;
  display: block !important;
  aspect-ratio: auto !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ev-review-card:hover .ev-review-media img {
  transform: scale(1.04) !important;
}

/* 2. Editorial Product Banner Card Frame (Single Review In-Content Banners) */
.ev-product-banner-inner {
  display: grid !important;
  grid-template-columns: 240px 1fr !important;
  gap: 22px !important;
  align-items: center !important;
  background-color: var(--ev-surface-card, #FFFFFF) !important;
  border: 1px solid var(--ev-border, #E5DCD3) !important;
  border-radius: var(--ev-radius-lg, 14px) !important;
  padding: 16px 20px !important;
  box-shadow: var(--ev-shadow-sm, 0 4px 14px rgba(36, 24, 21, 0.05)) !important;
  transition: var(--ev-transition, all 0.25s ease) !important;
  box-sizing: border-box !important;
}

.ev-product-banner-media {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

.ev-product-banner-img-wrap {
  width: 100% !important;
  height: 190px !important;
  min-height: 180px !important;
  max-height: 220px !important;
  background-color: #FFFFFF !important;
  border: 1px solid var(--ev-border-light, #EFE8E0) !important;
  border-radius: var(--ev-radius-md, 10px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 12px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.ev-product-banner-img-wrap img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: auto !important;
  display: block !important;
  aspect-ratio: auto !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ev-product-banner-inner:hover .ev-product-banner-img-wrap img {
  transform: scale(1.04) !important;
}

/* Tablet Responsive for Product Banner */
@media (max-width: 860px) {
  .ev-product-banner-inner {
    grid-template-columns: 200px 1fr !important;
    gap: 16px !important;
    padding: 14px 16px !important;
  }
  .ev-product-banner-img-wrap {
    height: 170px !important;
    min-height: 160px !important;
  }
}

/* Mobile Responsive for Product Banner */
@media (max-width: 640px) {
  .ev-product-banner-inner {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 16px 14px !important;
  }
  .ev-product-banner-img-wrap {
    width: 100% !important;
    height: 190px !important;
    max-height: 200px !important;
  }
}

/* Dark Mode Frame Styling */
[data-theme="dark"] .ev-product-banner-img-wrap,
body.dark-mode .ev-product-banner-img-wrap,
.dark-theme .ev-product-banner-img-wrap,
[data-theme="dark"] .ev-review-media,
body.dark-mode .ev-review-media,
.dark-theme .ev-review-media {
  background-color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

