/*
Theme Name: HotelsRestaurants
Theme URI: https://hotelsrestaurants.com
Author: HotelsRestaurants.com
Author URI: https://hotelsrestaurants.com
Description: Le portail de référence des professionnels des Cafés, Hôtels et Restaurants en France.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hotelsrestaurants
Tags: custom-menu, featured-images, threaded-comments, translation-ready
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* === VARIABLES === */
:root {
  --primary: #C8102E;
  --primary-dark: #A00D25;
  --primary-light: #E8294A;
  --secondary: #F5A623;
  --secondary-dark: #D4891A;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --dark: #1A1A2E;
  --dark-2: #16213E;
  --text: #2D2D2D;
  --text-muted: #6B6B6B;
  --text-light: #9B9B9B;
  --bg: #FAFAF8;
  --bg-warm: #FDF8F3;
  --bg-dark: #F5F0EA;
  --white: #FFFFFF;
  --border: #E8E0D8;
  --border-light: #F0EBE3;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --nav-h: 80px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--text); }
.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

/* === UTILITIES === */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-py { padding: 80px 0; }
.text-center { text-align: center; }
.centered { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1); }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* Grid System */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Split grid */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.align-items-center { align-items: center; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 16px rgba(200,16,46,0.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3); }
.btn-gold:hover { background: var(--gold-light); color: var(--dark); transform: translateY(-2px); }
.btn-secondary { background: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: var(--white); }
.btn-outline { border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-white { border: 2px solid var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h);
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); height: 70px; }
.navbar-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.main-logo { height: 48px; width: auto; transition: height 0.3s; }
.navbar.scrolled .main-logo { height: 40px; }
.navbar-nav { display: flex; align-items: center; gap: 4px; }
.navbar-nav a { padding: 8px 14px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 500; transition: all 0.2s; }
.navbar-nav a:hover, .navbar-nav a.active { background: var(--bg-dark); color: var(--primary); }
.navbar-cta { display: flex; align-items: center; gap: 10px; }

/* Menu Toggle Mobile */
.menu-toggle { display: none; width: 30px; height: 20px; position: relative; flex-direction: column; justify-content: space-between; z-index: 1100; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--dark); border-radius: 10px; transition: 0.3s; }

/* === CARDS === */
.card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-body { padding: 24px; flex: 1; }
.card-image img { width: 100%; height: 220px; object-fit: cover; }

/* === HERO === */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; color: var(--white); overflow: hidden; padding: 120px 0; }
.hero-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; animation: heroZoom 30s infinite alternate; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.15); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 100%),
    radial-gradient(circle at 30% 50%, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%),
    rgba(0,0,0,0.35);
  z-index: -1;
  backdrop-filter: brightness(0.65) contrast(1.1);
}
.hero-content { max-width: 850px; position: relative; z-index: 10; }
.hero h1 { color: var(--white); margin-bottom: 24px; line-height: 1.1; text-shadow: 0 4px 20px rgba(0,0,0,0.9), 0 0 50px rgba(0,0,0,0.5); }
.hero h1 em { color: var(--gold); font-style: normal; text-shadow: 0 0 20px rgba(201, 168, 76, 0.4), 0 2px 4px rgba(0,0,0,0.9); }
.hero-desc { font-size: 1.3rem; opacity: 1; margin: 0 0 48px; line-height: 1.6; color: rgba(255,255,255,0.95); font-weight: 400; max-width: 700px; text-shadow: 0 2px 12px rgba(0,0,0,0.95); }
.hero-badge { display: inline-block; padding: 8px 18px; background: var(--primary); border: 1px solid rgba(255,255,255,0.2); border-radius: 40px; font-size: 0.85rem; font-weight: 800; margin-bottom: 28px; text-transform: uppercase; letter-spacing: 1.5px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat-box { text-align: left; }
.hero-stat-num { display: block; font-family: var(--font-serif); font-size: 2.5rem; font-weight: 900; color: var(--white); text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.hero-stat-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }

/* === TICKER === */
.ticker { background: var(--dark); color: white; padding: 14px 0; overflow: hidden; border-bottom: 3px solid var(--primary); }
.ticker-inner { display: flex; align-items: center; gap: 24px; overflow: hidden; }
.ticker-label { flex-shrink: 0; font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); background: rgba(200,16,46,0.15); padding: 4px 12px; border-radius: 4px; border: 1px solid rgba(200,16,46,0.3); }
.ticker-track { display: flex; gap: 0; white-space: nowrap; animation: ticker 40s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 32px; font-size: 0.88rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.ticker-dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; display: inline-block; flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === CHR CARDS === */
.chr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.chr-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1); }
.chr-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.chr-card-visual img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s ease; }
.chr-card:hover .chr-card-visual img { transform: scale(1.05); }
.chr-card-visual { overflow: hidden; }
.chr-card-body { padding: 28px; }
.chr-card-body h3 { margin-bottom: 10px; }
.chr-card-body p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 20px; }
.chr-card-stats { display: flex; gap: 24px; padding: 16px 0; border-top: 1px solid var(--border-light); }
.chr-stat { text-align: center; }
.chr-stat-num { display: block; font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--primary); }
.chr-stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); font-weight: 600; }

/* === NEWS GRID === */
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.news-featured { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); display: grid; grid-template-columns: 1fr; }
.news-featured-img { position: relative; height: 280px; overflow: hidden; }
.news-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.news-tag { position: absolute; top: 16px; left: 16px; background: var(--primary); color: white; font-size: 0.65rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 30px; }
.news-featured-body { padding: 32px; }
.news-meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px; }
.news-featured-body h3 { margin-bottom: 12px; }
.news-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-top: 16px; transition: gap 0.2s; }
.news-read-more:hover { gap: 10px; }
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-item { display: flex; gap: 16px; background: var(--white); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.news-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.news-item-img { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.news-item-img img { width: 100%; height: 100%; object-fit: cover; }
.news-item-body { display: flex; flex-direction: column; justify-content: center; }
.news-item-body h4 { font-size: 0.9rem; color: var(--dark); line-height: 1.35; font-family: var(--font-sans); font-weight: 600; }

/* News all grid */
.news-all-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.news-card-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.news-card-body { padding: 20px; }
.news-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.3; }
.news-card-body p { font-size: 0.87rem; color: var(--text-muted); }

/* News filters */
.news-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { padding: 8px 18px; border-radius: 30px; border: 1.5px solid var(--border); background: var(--white); font-size: 0.82rem; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: white; }

/* === PAGE HEADER === */
.page-header { background: var(--dark); color: white; padding: 64px 0 48px; position: relative; overflow: hidden; }
.page-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--primary), var(--gold)); }
.page-header-inner { position: relative; z-index: 1; }
.page-header h1 { color: white; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: 0.4; }

/* === SECTION HEADER === */
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* === NEWSLETTER / CTA BOX === */
.newsletter-inner { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-md); border: 1px solid var(--border-light); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.newsletter-features { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.nl-feature { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-muted); }
.nl-check { width: 20px; height: 20px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }

/* === ARTICLE === */
.article-page { }
.article-hero { min-height: 50vh; display: flex; align-items: flex-end; padding: 80px 0 48px; background-size: cover; background-position: center; position: relative; }
.article-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%); }
.article-hero .container { position: relative; z-index: 1; }
.article-hero h1 { color: white; margin-bottom: 16px; }
.article-meta { display: flex; gap: 20px; flex-wrap: wrap; color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; padding-top: 48px; padding-bottom: 80px; }
.article-content { min-width: 0; }
.content-body h2 { margin: 32px 0 16px; }
.content-body p { margin-bottom: 16px; line-height: 1.8; color: var(--text); }
.article-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.share-box p { font-weight: 600; margin-bottom: 12px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-dark); display: flex; align-items: center; justify-content: center; transition: all 0.2s; color: var(--text); }
.social-links a:hover { background: var(--primary); color: white; }
.article-sidebar { }
.sidebar-block { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); margin-bottom: 24px; }
.sidebar-block h3 { font-size: 1.1rem; margin-bottom: 12px; }
.sticky-cta { position: sticky; top: calc(var(--nav-h) + 20px); }
.cta-card { text-align: center; }
.cta-card h4 { margin-bottom: 8px; }
.cta-card p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 16px; }
.resource-list { display: flex; flex-direction: column; gap: 8px; }
.resource-list li a { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: var(--radius-sm); transition: all 0.2s; font-size: 0.88rem; }
.resource-list li a:hover { background: var(--bg-dark); color: var(--primary); }

/* === QUIZ === */
.quiz-card { cursor: pointer; transition: all 0.3s; }
.quiz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.icon-circle { width: 56px; height: 56px; background: var(--bg-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--primary); }

/* === SUPPLIERS === */
.suppliers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.supplier-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: all 0.3s; }
.supplier-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.supplier-logo { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; margin-bottom: 16px; }
.supplier-card h3 { font-size: 1rem; font-family: var(--font-sans); font-weight: 700; margin-bottom: 4px; }
.supplier-category { display: inline-block; padding: 3px 10px; background: var(--bg-dark); border-radius: 20px; font-size: 0.72rem; font-weight: 600; color: var(--primary); margin-bottom: 12px; }
.supplier-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.supplier-services { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.service-tag { padding: 4px 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 20px; font-size: 0.72rem; color: var(--text-muted); }

/* === FOOTER === */
footer { background: var(--dark); color: white; padding: 64px 0 0; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; margin: 20px 0 24px; max-width: 320px; }
.footer-main-logo { height: 60px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.2s; color: rgba(255,255,255,0.6); }
.social-btn:hover { background: var(--primary); color: white; }
.footer-col h5 { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* === CONTACT === */
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 0.95rem; color: var(--text); background: var(--bg); transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* === LEADERBOARD === */
.leaderboard-table { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.leaderboard-row { display: grid; grid-template-columns: 60px 1fr auto auto; align-items: center; padding: 16px 24px; border-bottom: 1px solid var(--border-light); transition: background 0.2s; }
.leaderboard-row:hover { background: var(--bg-warm); }
.leaderboard-row.header { background: var(--dark); color: white; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.rank-badge { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; }
.rank-1 { background: var(--gold); color: white; }
.rank-2 { background: #C0C0C0; color: white; }
.rank-3 { background: #CD7F32; color: white; }
.rank-other { background: var(--bg-dark); color: var(--text-muted); }
.score-badge { background: var(--primary); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }

/* === WP ADMIN BAR FIX === */
.admin-bar .navbar { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .navbar { top: 46px; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .chr-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .news-all-grid { grid-template-columns: 1fr 1fr; }
  .suppliers-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .chr-grid, .news-grid, .grid-3, .grid-2, .split-grid { grid-template-columns: 1fr; }
  .navbar-nav { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: white; padding: 20px; flex-direction: column; align-items: stretch; gap: 4px; box-shadow: var(--shadow-md); }
  .navbar-nav.open { display: flex; }
  .menu-toggle { display: flex; }
  .news-all-grid { grid-template-columns: 1fr; }
  .suppliers-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: 70vh; padding: 80px 0; }
  .hero-stats { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* === WP BLOCK EDITOR COMPATIBILITY === */
.wp-block-image img { border-radius: var(--radius-sm); }
.wp-block-quote { border-left: 4px solid var(--primary); padding-left: 24px; font-style: italic; color: var(--text-muted); }
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; }
