/* ============================================= */
/*  IMPORT EXPORT HYBRID — TEMA WORDPRESS        */
/*  Estilos globales — Dark + Amber Gold         */
/* ============================================= */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #E8E6E1;
  background: #0A1628;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { cursor: pointer; font-family: inherit; }

/* ── WordPress image alignment ── */
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.75rem; color: #9CA3AF; text-align: center; margin-top: 0.5rem; }

/* ── Container ── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

/* ── Typography ── */
h1 { font-size: 1.875rem; font-weight: 700; line-height: 1.15; color: #F0EDE6; }
h2 { font-size: 1.5rem; font-weight: 700; color: #F0EDE6; }
h3 { font-size: 1.125rem; font-weight: 600; color: #F0EDE6; }
h4 { font-size: 1rem; font-weight: 600; color: #F0EDE6; }
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 3.75rem; }
}

/* ── Colors (StyleSystem tokens — Dark + Amber Gold) ── */
:root {
  --bg: #0A1628;
  --bg-alt: #121215;
  --bg-dark: #060608;
  --bg-card: #141417;
  --bg-card-hover: #1A1A1E;
  --bg-card-alt: #18181C;
  --primary: #D4AF37;
  --primary-hover: #C49E2C;
  --primary-light: rgba(212,175,55,0.12);
  --primary-text: #D4AF37;
  --secondary: #C4724E;
  --secondary-hover: #A85D3E;
  --secondary-light: rgba(196,114,78,0.12);
  --accent: #D4AF37;
  --accent-light: rgba(212,175,55,0.12);
  --accent-border: rgba(212,175,55,0.25);
  --accent-text: #D4AF37;
  --gray-50: #121215;
  --gray-100: #1A1A1E;
  --gray-200: #25252A;
  --gray-300: #35353B;
  --gray-400: #6B6B75;
  --gray-500: #8E8E9A;
  --gray-600: #A8A8B3;
  --gray-700: #C5C5CF;
  --gray-800: #E0E0E6;
  --gray-900: #F0EDE6;
  --gray-950: #FAFAF8;
  --green: #22C55E;
  --green-dark: #15803D;
  --green-light: rgba(22,163,74,0.15);
  --red: #EF4444;
  --red-dark: #DC2626;
  --red-light: rgba(239,68,68,0.1);
  --amber: #D4AF37;
  --whatsapp: #25D366;
  --whatsapp-hover: #128C7E;
}

/* ── Utility Classes ── */
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.whitespace-nowrap { white-space: nowrap; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.leading-relaxed { line-height: 1.625; }
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }
.object-top { object-position: top; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.z-10 { z-index: 10; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.block { display: block; }
.grid { display: grid; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; font-weight: 500; font-size: 0.875rem;
  border-radius: 0.75rem; border: none; cursor: pointer;
  white-space: nowrap; transition: all 0.2s; text-decoration: none;
}
.btn-primary { background: var(--primary); color: #0A1628; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-outline { border: 1px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #0A1628; }
.btn-white { background: rgba(255,255,255,0.1); color: #FFFFFF; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.15); }
.btn-white:hover { background: rgba(255,255,255,0.2); }
.btn-whatsapp { background: var(--whatsapp); color: #FFFFFF; }
.btn-whatsapp:hover { background: var(--whatsapp-hover); }
.btn-secondary { background: var(--secondary); color: #FFFFFF; }
.btn-secondary:hover { background: var(--secondary-hover); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 0.75rem 1.5rem; transition: all 0.3s;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar.scrolled { background: rgba(10,10,13,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-200); }
.navbar-brand { font-size: 1.25rem; font-weight: 700; color: #F0EDE6; }
.navbar.scrolled .navbar-brand { color: var(--primary); }
.navbar-links { display: none; align-items: center; gap: 1.5rem; }
.navbar-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.navbar-links a:hover { color: var(--primary); }
.navbar.scrolled .navbar-links a { color: var(--gray-600); }
.navbar.scrolled .navbar-links a:hover { color: var(--primary); }
.navbar-dropdown { position: relative; display: flex; align-items: center; }
.navbar-dropdown > a { display: flex; align-items: center; gap: 0.25rem; }
.navbar-dropdown-menu {
  position: absolute; top: 100%; left: 0; margin-top: 0;
  background: var(--bg-alt, #18181c); border: 1px solid var(--gray-200, rgba(255,255,255,0.1));
  border-radius: 0.5rem; min-width: 180px; padding: 0.75rem 0.5rem 0.5rem 0.5rem;
  display: none; flex-direction: column; gap: 0.25rem; box-shadow: 0 10px 30px rgba(0,0,0,0.35); z-index: 50;
}
.navbar-dropdown:hover .navbar-dropdown-menu, .navbar-dropdown:focus-within .navbar-dropdown-menu { display: flex; }
.navbar-dropdown-menu a { padding: 0.5rem 0.75rem; border-radius: 0.375rem; white-space: nowrap; color: rgba(255,255,255,0.85) !important; }
.navbar-dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--primary) !important; }
.navbar.scrolled .navbar-dropdown-menu a { color: var(--gray-600) !important; }
.navbar.scrolled .navbar-dropdown-menu a:hover { color: var(--primary) !important; }
.navbar-mobile-btn { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; background: none; border: none; color: #F0EDE6; font-size: 1.5rem; cursor: pointer; }
.navbar.scrolled .navbar-mobile-btn { color: var(--gray-800); }
.navbar-cta { padding: 0.5rem 1rem; font-size: 0.75rem; font-weight: 500; background: var(--primary); color: #0A1628; border-radius: 0.75rem; white-space: nowrap; display: none; }
.navbar-cta:hover { background: var(--primary-hover); }
.navbar-mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-alt); padding: 1rem 1.5rem; flex-direction: column; gap: 0.75rem; border-top: 1px solid var(--gray-200); }
.navbar-mobile-menu.open { display: flex; }
.navbar-mobile-menu a { font-size: 0.875rem; font-weight: 500; color: var(--gray-600); padding: 0.5rem 0; }
.navbar-mobile-menu a:hover { color: var(--primary); }
@media (min-width: 768px) {
  .navbar-links { display: flex; }
  .navbar-cta { display: inline-flex; }
  .navbar-mobile-btn { display: none; }
}

/* ── Footer ── */
.footer {
  background: var(--bg-dark); color: var(--gray-500); padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
.footer-brand { color: var(--primary); font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.footer-desc { font-size: 0.875rem; line-height: 1.625; margin-bottom: 1rem; }
.footer-title { font-size: 0.875rem; font-weight: 600; color: var(--primary); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: var(--gray-500); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a { width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; border-radius: 9999px; background: rgba(212,175,55,0.1); color: var(--primary); transition: all 0.2s; }
.footer-social a:hover { background: var(--primary); color: #0A1628; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-200); font-size: 0.75rem; color: var(--gray-400); display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ── Hero Sections ── */
.hero {
  position: relative; height: 400px; display: flex; align-items: center; overflow: hidden;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.35), rgba(0,0,0,0.55)); }
.hero-content { position: relative; z-index: 10; width: 100%; padding-top: 5rem; }
.hero-badge { display: inline-block; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 500; background: rgba(212,175,55,0.2); color: var(--primary); border-radius: 9999px; backdrop-filter: blur(4px); margin-bottom: 1rem; border: 1px solid rgba(212,175,55,0.3); }
.hero h1 { color: #FFFFFF; }
.hero-subtitle { margin-top: 1rem; font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 36rem; line-height: 1.625; }
.hero-ctas { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
@media (min-width: 768px) {
  .hero { height: 500px; }
}

/* ── Section Badge ── */
.section-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 500;
  background: var(--primary-light); border: 1px solid var(--accent-border);
  color: var(--primary); border-radius: 9999px; margin-bottom: 1rem;
}
.section-badge-dot { width: 0.375rem; height: 0.375rem; border-radius: 9999px; background: var(--primary); }
.section-header { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.section-header h2 { color: var(--gray-900); }
.section-header p { margin-top: 1rem; color: var(--gray-500); line-height: 1.625; }
@media (min-width: 768px) { .section-header { margin-bottom: 4rem; } }

/* ── Cards ── */
.card {
  background: var(--bg-card); border-radius: 0.75rem; border: 1px solid var(--gray-200);
  transition: border-color 0.3s, background 0.3s;
}
.card:hover { border-color: rgba(212,175,55,0.3); background: var(--bg-card-hover); }
.card-body { padding: 1.25rem; }
@media (min-width: 768px) { .card-body { padding: 1.5rem; } }

/* ── Icon Circle ── */
.icon-circle {
  display: flex; align-items: center; justify-content: center; border-radius: 9999px;
}
.icon-circle-sm { width: 2.25rem; height: 2.25rem; }
.icon-circle-md { width: 3rem; height: 3rem; }
.icon-circle-lg { width: 4rem; height: 4rem; }
.icon-circle-primary { background: var(--primary-light); color: var(--primary); }
.icon-circle-secondary { background: var(--secondary-light); color: var(--secondary); }

/* ── Icon Rounded ── */
.icon-rounded {
  display: flex; align-items: center; justify-content: center; border-radius: 0.75rem;
}
.icon-rounded-sm { width: 2.5rem; height: 2.5rem; }
.icon-rounded-md { width: 3rem; height: 3rem; }
.icon-rounded-primary { background: var(--primary-light); color: var(--primary); }

/* ── Section Spacing ── */
.section { padding: 4rem 0; }
.section-white { background: var(--bg); }
.section-gray { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--gray-800); }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

/* ── Grid ── */
.grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .grid-2, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

/* ── Form ── */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--gray-700); margin-bottom: 0.25rem; }
.form-label .required { color: var(--red); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.625rem 0.875rem; border: 1px solid var(--gray-300);
  border-radius: 0.5rem; font-size: 0.875rem; outline: none; transition: border-color 0.2s;
  font-family: inherit; background: var(--bg-card); color: var(--gray-800);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 2px rgba(212,175,55,0.2);
}
.form-select { color: var(--gray-800); }
.form-textarea { resize: none; }
.form-submit { width: 100%; }
.form-success { padding: 1rem; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: 0.5rem; color: #22C55E; font-size: 0.875rem; margin-bottom: 1rem; }
.form-error { padding: 1rem; background: var(--red-light); border: 1px solid rgba(239,68,68,0.3); border-radius: 0.5rem; color: var(--red-dark); font-size: 0.875rem; margin-bottom: 1rem; }

/* ── FAQ Accordion ── */
.faq-item { border: 1px solid var(--gray-200); border-radius: 0.75rem; overflow: hidden; margin-bottom: 0.75rem; }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; text-align: left; background: var(--bg-card); border: none; cursor: pointer; transition: background 0.2s; font-family: inherit; }
.faq-btn:hover { background: var(--bg-card-hover); }
.faq-question { font-size: 0.875rem; font-weight: 500; color: var(--gray-800); line-height: 1.375; }
.faq-toggle { width: 2rem; height: 2rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 9999px; background: var(--primary-light); color: var(--primary); transition: transform 0.3s; }
.faq-toggle.open { transform: rotate(45deg); }
.faq-content { overflow: hidden; transition: all 0.3s; max-height: 0; opacity: 0; }
.faq-content.open { max-height: 800px; opacity: 1; }
.faq-content-inner { padding: 0 1.25rem 1.25rem; border-top: 1px solid var(--gray-200); }
.faq-answer { padding-top: 1rem; font-size: 0.875rem; color: var(--gray-500); line-height: 1.625; white-space: pre-line; }
@media (min-width: 768px) {
  .faq-btn { padding: 1.25rem 1.5rem; }
  .faq-content-inner { padding: 0 1.5rem 1.5rem; }
  .faq-question { font-size: 1rem; }
  .faq-answer { font-size: 1rem; }
}

/* ── Stats ── */
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stat-value { font-size: 1.875rem; font-weight: 700; color: var(--primary); }
.stat-label { margin-top: 0.25rem; font-size: 0.875rem; color: var(--gray-500); }
@media (min-width: 768px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .stat-value { font-size: 2.25rem; }
}

/* ── CTA Section (with bg image) ── */
.cta-section {
  position: relative; padding: 5rem 0; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.7)); }
.cta-content { position: relative; z-index: 10; text-align: center; }
.cta-content h2 { color: #FFFFFF; margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.75); max-width: 42rem; margin: 0 auto 2rem; line-height: 1.625; font-size: 1rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
@media (min-width: 768px) { .cta-section { padding: 7rem 0; } }

/* ── Category Pills ── */
.cat-pill {
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500;
  border-radius: 0.75rem; border: none; cursor: pointer; white-space: nowrap; transition: all 0.2s;
  font-family: inherit;
}
.cat-pill-default { background: var(--bg-card); color: var(--gray-600); border: 1px solid var(--gray-200); }
.cat-pill-default:hover { border-color: var(--primary); color: var(--primary); }
.cat-pill-active { background: var(--primary); color: #0A1628; }

/* ── Product Card ── */
.product-card { background: var(--bg-card); border-radius: 0.75rem; overflow: hidden; border: 1px solid var(--gray-200); transition: border-color 0.3s; display: flex; flex-direction: column; }
.product-card:hover { border-color: rgba(212,175,55,0.3); }
.product-card-image { height: 13rem; overflow: hidden; position: relative; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s; }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-badge { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.25rem 0.625rem; font-size: 0.75rem; font-weight: 600; border-radius: 9999px; color: #0A1628; }
.badge-best-seller { background: var(--primary); }
.badge-premium { background: var(--secondary); color: #FFFFFF; }
.badge-offer { background: var(--red); color: #FFFFFF; }
.badge-new { background: var(--green); color: #FFFFFF; }
.product-card-body { padding: 1rem 1.25rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.product-card-cat { font-size: 0.75rem; font-weight: 500; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.025em; margin-bottom: 0.25rem; }
.product-card-title { font-size: 0.875rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.5rem; line-height: 1.375; }
.product-card-desc { font-size: 0.75rem; color: var(--gray-500); line-height: 1.625; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: 0.75rem; flex: 1; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; border-top: 1px solid var(--gray-200); }
.product-card-price { font-size: 1rem; font-weight: 700; color: var(--primary); }
.product-card-stock { font-size: 0.75rem; font-weight: 500; }
.stock-available { color: var(--green); }
.stock-low { color: var(--amber); }
.stock-out { color: var(--red-dark); }

/* ── Blog Card ── */
.blog-card { background: var(--bg-card); border-radius: 0.75rem; overflow: hidden; border: 1px solid var(--gray-200); transition: border-color 0.3s, background 0.3s; }
.blog-card:hover { border-color: rgba(212,175,55,0.3); background: var(--bg-card-hover); }
.blog-card-image { height: 13rem; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 1.25rem; }
.blog-card-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.blog-card-cat { padding: 0.25rem 0.5rem; font-size: 0.75rem; font-weight: 500; background: var(--primary-light); color: var(--primary); border-radius: 0.375rem; }
.blog-card-readtime { font-size: 0.75rem; color: var(--gray-400); }
.blog-card-title { font-size: 1rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.5rem; line-height: 1.375; }
.blog-card-excerpt { font-size: 0.875rem; color: var(--gray-500); line-height: 1.625; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 1rem; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.blog-card-date { font-size: 0.75rem; color: var(--gray-400); }
.blog-card-link { font-size: 0.875rem; font-weight: 500; color: var(--primary); display: inline-flex; align-items: center; gap: 0.25rem; }

/* ── Service Card (horizontal) ── */
.service-row { background: var(--bg-card); border-radius: 0.75rem; overflow: hidden; border: 1px solid var(--gray-200); transition: border-color 0.3s; }
.service-row:hover { border-color: rgba(212,175,55,0.3); }
.service-row-inner { display: grid; grid-template-columns: 1fr; }
.service-row-image { height: 14rem; overflow: hidden; }
.service-row-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s; }
.service-row:hover .service-row-image img { transform: scale(1.05); }
.service-row-body { padding: 1.5rem 1.25rem; display: flex; flex-direction: column; justify-content: center; }
.service-row-icon { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.service-row-title { font-size: 1.25rem; font-weight: 700; color: var(--gray-800); }
.service-row-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.625; margin-bottom: 1rem; }
.service-row-features { display: grid; grid-template-columns: 1fr; gap: 0.5rem; margin-bottom: 1.25rem; }
.service-row-feature { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-600); }
.feature-check { width: 1.25rem; height: 1.25rem; display: flex; align-items: center; justify-content: center; border-radius: 9999px; background: var(--primary-light); color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; font-size: 0.75rem; }
@media (min-width: 640px) { .service-row-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-row-inner { grid-template-columns: 2fr 3fr; } .service-row-image { height: auto; } }

/* ── Misc ── */
.border-top { border-top: 1px solid var(--gray-200); }
.border-bottom { border-bottom: 1px solid var(--gray-200); }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.pt-4 { padding-top: 1rem; }
.pt-16 { padding-top: 4rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.p-5 { padding: 1.25rem; }

/* ── Breadcrumb ── */
.breadcrumb { padding: 0.75rem 0; background: var(--bg); border-bottom: 1px solid var(--gray-200); }
.breadcrumb-nav { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-400); flex-wrap: wrap; }
.breadcrumb-nav a { color: var(--gray-400); transition: color 0.2s; }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav .sep { font-size: 0.75rem; color: var(--gray-300); }
.breadcrumb-nav .current { color: var(--gray-700); font-weight: 500; }

/* ── Notification Toast ── */
.toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100;
  background: var(--bg-card); color: var(--gray-800);
  padding: 0.75rem 1.25rem; border-radius: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid var(--gray-200);
}
.toast-check { width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; border-radius: 9999px; background: var(--green); }
.toast-title { font-size: 0.875rem; font-weight: 600; }
.toast-text { font-size: 0.75rem; color: var(--gray-400); }

/* ── Backdrop Blur ── */
.backdrop-blur { backdrop-filter: blur(4px); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center;
  border-radius: 9999px; background: var(--whatsapp); color: #FFFFFF;
  font-size: 1.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── Sticky Filter Bar ── */
.filter-bar { padding: 1.5rem 0; background: var(--bg); border-bottom: 1px solid var(--gray-200); position: sticky; top: 72px; z-index: 20; }
.filter-bar-inner { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .filter-bar-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.search-input { position: relative; }
.search-input input {
  width: 100%; padding: 0.625rem 1rem 0.625rem 2.25rem;
  background: var(--bg-card); border: 1px solid var(--gray-200);
  border-radius: 9999px; font-size: 0.875rem; outline: none; color: var(--gray-800);
}
.search-input input::placeholder { color: var(--gray-400); }
.search-input input:focus { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(212,175,55,0.2); }
.search-input i { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: var(--gray-400); }

/* ── Prose (article content) ── */
.prose { font-size: 1.0625rem; line-height: 1.75; color: var(--gray-600); }
.prose h2, .prose h3 { color: var(--gray-800); margin-top: 2rem; margin-bottom: 1rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--gray-800); }
@media (min-width: 768px) { .prose { font-size: 1.125rem; } }

/* ── WordPress specific ── */
.admin-bar .navbar { top: 32px; }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal; }

/* ── Skip to content link ── */
.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--primary); color: #0A1628; padding: 0.5rem 1rem; z-index: 200; border-radius: 0 0 0.5rem 0.5rem; font-size: 0.875rem; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* ── WordPress Pagination ── */
.wp-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; }
.wp-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
  border: 1px solid var(--gray-200); color: var(--gray-600);
  background: var(--bg-card); transition: all 0.2s;
}
.wp-pagination .page-numbers:hover { border-color: var(--primary); color: var(--primary); }
.wp-pagination .page-numbers.current { background: var(--primary); color: #0A1628; border-color: var(--primary); }

/* ── Table styles ── */
table { width: 100%; }
thead th { background: var(--bg-card); }
