/*
Theme Name: eSIM Europa
Theme URI: https://esimeuropa.ro
Author: eSIM Europa Team
Author URI: https://esimeuropa.ro
Description: Temă profesională pentru vânzarea de eSIM-uri pentru turiști români. Date + Apeluri + SMS în toată Europa.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: esim24h
Tags: e-commerce, woocommerce, romanian, esim
*/

/* ========================================
   VARIABILE CSS
======================================== */
:root {
  --blue: #1A3FD8;
  --blue-dark: #1230A8;
  --blue-light: #EEF2FF;
  --orange: #F97316;
  --orange-dark: #ea6b0e;
  --text: #0D1B3E;
  --muted: #64748B;
  --border: #E2E8F0;
  --bg: #F8FAFF;
  --white: #FFFFFF;
  --green: #16A34A;
  --green-light: #F0FDF4;
  --purple: #7C3AED;
  --radius: 16px;
  --shadow: 0 4px 18px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.16);
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-dark); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.5px;
}
h1 { font-size: clamp(28px, 5vw, 52px); letter-spacing: -1.5px; }
h2 { font-size: clamp(22px, 3.5vw, 32px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ========================================
   LAYOUT
======================================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }

/* ========================================
   NOTICE BAR
======================================== */
.site-notice {
  background: var(--green-light);
  border-bottom: 2px solid #BBF7D0;
  padding: 10px 20px;
  text-align: center;
}
.site-notice p {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
}

/* ========================================
   NAVIGATION
======================================== */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 20px;
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.site-logo {
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-logo:hover { color: var(--text); }
.logo-chip {
  background: var(--blue);
  color: white;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 700;
}
.site-nav { display: flex; gap: 32px; }
.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
}
.site-nav a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: white !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  transition: all .2s;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ========================================
   HERO
======================================== */
.hero {
  background: linear-gradient(135deg, #0D1B3E 0%, #1A3FD8 100%);
  color: white;
  padding: 60px 20px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
}
.hero-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 6px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.9);
}
.badge-dot {
  width: 6px; height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 { color: white; margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: #FCD34D; }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin: 0 auto 18px;
}
.hero-features {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-feat {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: white;
  padding: 13px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); color: white; }
.btn-outline {
  background: transparent;
  color: white;
  padding: 13px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  border: 2px solid rgba(255,255,255,.3);
  transition: all .2s;
}
.btn-outline:hover { border-color: white; color: white; }

/* ========================================
   PACKAGES SECTION
======================================== */
.packages-section {
  background: var(--bg);
  padding: 56px 20px;
  border-bottom: 2px solid var(--border);
}
.packages-inner { max-width: 1100px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 8px; }
.section-head p { color: var(--muted); font-size: 14px; }
.pkg-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.pkg-badge {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

/* CARD GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 24px;
}

/* SIM CARD */
.sim-card {
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .22s, box-shadow .22s;
  box-shadow: 0 4px 18px rgba(0,0,0,.10), 0 1px 4px rgba(0,0,0,.06);
  position: relative;
}
.sim-card:hover { transform: translateY(-6px) rotate(-0.4deg); box-shadow: var(--shadow-lg); }

.sim-card.c-blue .sim-body { background: linear-gradient(145deg,#1e3a8a,#2563eb); }
.sim-card.c-dark .sim-body { background: linear-gradient(145deg,#1e293b,#334155); }
.sim-card.c-violet .sim-body { background: linear-gradient(145deg,#4c1d95,#7C3AED); }
.sim-card.c-teal .sim-body { background: linear-gradient(145deg,#134e4a,#0d9488); }
.sim-card.c-best .sim-body { background: linear-gradient(145deg,#7c2d12,#ea580c); }
.sim-card.c-indigo .sim-body { background: linear-gradient(145deg,#312e81,#4338ca); }
.sim-card.c-rose .sim-body { background: linear-gradient(145deg,#881337,#e11d48); }
.sim-card.c-emerald .sim-body { background: linear-gradient(145deg,#064e3b,#059669); }

.sim-body {
  padding: 22px 22px 18px;
  color: white;
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
}
.sim-body::before {
  content: '';
  position: absolute; top:0;left:0;right:0;bottom:0;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 18px,rgba(255,255,255,.04) 18px,rgba(255,255,255,.04) 19px),
    repeating-linear-gradient(90deg,transparent,transparent 18px,rgba(255,255,255,.04) 18px,rgba(255,255,255,.04) 19px);
  pointer-events: none;
}
.sim-chip {
  width: 36px; height: 28px;
  background: linear-gradient(135deg,#d4af37,#f5d97e,#c9972a);
  border-radius: 5px;
  border: 1.5px solid rgba(0,0,0,.2);
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 1.5px;
  padding: 3px;
  position: relative;
  z-index:1;
}
.sim-chip-line { background: rgba(0,0,0,.25); border-radius: 1px; }
.sim-chip-line.tall { grid-row: span 2; }

.sim-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; position: relative; z-index:1; }
.sim-brand { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; }
.sim-flag { font-size: 20px; line-height: 1; }

.sim-gb { font-size: 48px; font-weight: 800; line-height: 1; letter-spacing: -2px; color: white; text-shadow: 0 2px 8px rgba(0,0,0,.3); position: relative; z-index:1; }
.sim-gb span { font-size: 20px; font-weight: 600; opacity: .7; letter-spacing: 0; }
.sim-gb.unlim { font-size: 28px; letter-spacing: -1px; }

.sim-validity { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 500; margin-top: 2px; margin-bottom: 10px; letter-spacing: .3px; position: relative; z-index:1; }

.sim-includes { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; position: relative; z-index:1; }
.sim-inc { font-size: 10px; font-weight: 700; background: rgba(255,255,255,.15); border-radius: 6px; padding: 3px 7px; color: rgba(255,255,255,.9); }

.sim-price-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 12px; margin-top: auto;
  position: relative; z-index:1;
}
.sim-price { font-size: 26px; font-weight: 800; color: white; line-height: 1; }
.sim-price sub { font-size: 13px; font-weight: 600; vertical-align: super; opacity: .85; }
.sim-eur { font-size: 11px; color: rgba(255,255,255,.45); font-family: 'Share Tech Mono', monospace; letter-spacing: .5px; text-align: right; line-height: 1.6; }

.sim-footer {
  background: white;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 3px solid rgba(0,0,0,.08);
}
.sim-feats { display: flex; gap: 5px; flex-wrap: wrap; }
.sim-feat { font-size: 10px; font-weight: 700; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 3px 7px; color: var(--muted); }

��ͥ���Ѹ��(�������ɽչ��مȠ����Ք��(��������ݡ�є�(����ɑ��聹����(�������������������(����ɑ�ȵɅ�����������(�����еݕ���������(�����еͥ�������(�����ͽ������ѕ��(��ݡ�є������聹��Ʌ��(���Ʌ�ͥѥ��聅�������)�(�ͥ���Ѹ顽ٕȁ쁉����ɽչ��مȠ����Ք���ɬ���(�ͥ����ɐ������Ѐ�ͥ���Ѹ�쁉����ɽչ��مȠ���Ʌ������(�ͥ����ɐ������Ѐ�ͥ���Ѹ顽ٕȁ쁉����ɽչ��مȠ���Ʌ������ɬ���((����������Ё���ͥѥ��聅�ͽ��є�ѽ�������ɥ��������쁉����ɽչ�耍
��쁍����而݌ɐ��쁙��еͥ������쁙��еݕ�������������������������쁉�ɑ�ȵɅ�����������赥��������(�������՜����ͥѥ��聅�ͽ��є�ѽ�������ɥ��������쁉����ɽչ��ɝ�����԰��԰��԰�Ȥ쁍�����ݡ�є쁙��еͥ������쁙��еݕ�������������������������쁉�ɑ�ȵɅ�����������赥������쁉�ɑ�������ͽ����ɝ�����԰��԰��԰�̤��((�������������������������������������������(���]!d�M
Q%=8(���������������������������������������􀨼(�ݡ䵝ɥ��쁑������聝ɥ�쁝ɥ��ѕ����є����յ���ɕ���РȰ�řȤ쁝���������(�ݡ䵍�ɐ��(�������ɽչ��مȠ����Ք�����Ф�(����ɑ�ȵɅ�����مȠ��Ʌ���̤�(���������������(����ɑ���ĸ����ͽ���������(���������聙����(�����������)�(�ݡ䵥����쁙��еͥ������쁙���͡ɥ������(�ݡ�ѥѱ��쁙��еͥ������쁙��еݕ��������쁵�ɝ������ѽ�������(�ݡ䵑�͌�쁙��еͥ������쁍�����مȠ����ѕ��쁱�����������ĸ��쁵�ɝ������((�������������������������������������������(���!=\�%P�]=I-L(���������������������������������������􀨼(���ܵ�ɥ��쁑������聝ɥ�쁝ɥ��ѕ����є����յ���ɕ���Ра�řȤ쁝���������(���ܵ��ɐ�쁉����ɽչ��مȠ�����쁉�ɑ�ȵɅ�����مȠ��Ʌ���̤�������������������ѕ�е�����聍��ѕ�쁉�ɑ���ĸ����ͽ����مȠ����ɑ�Ȥ��(���ܵ���ݥ�Ѡ�����쁡����������쁉����ɽչ��مȠ����Ք�쁍�����ݡ�є쁉�ɑ�ȵɅ���������쁑������聙���쁅������ѕ��聍��ѕ�쁩��ѥ�䵍��ѕ��聍��ѕ�쁙��еݕ��������쁙��еͥ������쁵�ɝ�������Ѽ�������(���ܵЁ쁙��еͥ������쁙��еݕ��������쁵�ɝ������ѽ�������(���ܵ��쁙��еͥ������쁍�����مȠ����ѕ��쁱�����������ĸ�쁵�ɝ������((�������������������������������������������(���
=YI(���������������������������������������􀨼(���ٕɅ����Ʌ��쁉����ɽչ��مȠ�����쁉�ɑ�ȵɅ����������������������쁉�ɑ���ĸ����ͽ����مȠ����ɑ�Ȥ��(���ٕɅ����Ʌ���ȁ쁵�ɝ������ѽ�������(���ٕɅ����Ʌ������쁍�����مȠ����ѕ��쁙��еͥ������쁵�ɝ������ѽ��������(���չ��䵝ɥ��쁑������聝ɥ�쁝ɥ��ѕ����є����յ���ɕ���С��Ѽ�����������������ఀřȤ�쁝���������(���չ��������쁉����ɽչ��ݡ�є쁉�ɑ���ĸ����ͽ����مȠ����ɑ�Ȥ쁉�ɑ�ȵɅ���������������������������쁑������聙���쁅������ѕ��聍��ѕ�쁝������쁙��еͥ������쁙��еݕ����������(���չ�������������쁙��еͥ��������((�������������������������������������������(���
=5AP(���������������������������������������􀨼(������е�Ʌ��쁉����ɽչ��مȠ�����쁉�ɑ�ȵɅ�����������������������ѕ�е�����聍��ѕ�쁉�ɑ���ĸ����ͽ����مȠ����ɑ�Ȥ��(������е�Ʌ���ȁ쁵�ɝ������ѽ�������(������е�Ʌ������쁍�����مȠ����ѕ��쁙��еͥ������쁵�ɝ������ѽ��������(��Ʌ���ɽ܁쁑������聙���쁝�������쁩��ѥ�䵍��ѕ��聍��ѕ�쁙����Ʌ���Ʌ���(��Ʌ��������쁉����ɽչ��ݡ�є쁉�ɑ���ĸ����ͽ����مȠ����ɑ�Ȥ쁉�ɑ�ȵɅ���������������������������쁙��еͥ������쁙��еݕ��������쁍�����مȠ����ѕ����((�������������������������������������������(���D(���������������������������������������􀨼(���ĵ���Ё쁑������聙���쁙��൑�ɕ�ѥ��聍��յ�쁝���������(���ĵ�ѕ��쁉����ɽչ��ݡ�є쁉�ɑ���ĸ����ͽ����مȠ����ɑ�Ȥ쁉�ɑ�ȵɅ���������쁽ٕə���聡�������(���ĵā������������������쁙��еݕ��������쁙��еͥ������쁍��ͽ������ѕ�쁑������聙���쁩��ѥ�䵍��ѕ������������ݕ��쁅������ѕ��聍��ѕ���Ʌ�ͥѥ��聉����ɽչ�������͕ȵ͕����聹�����(���ĵ�顽ٕȁ쁉����ɽչ��مȠ�������(���ĵ��ɽ܁쁍�����مȠ����Ք�쁙��еͥ��������Ʌ�ͥѥ����Ʌ�͙�ɴ�����쁙���͡ɥ������(���ĵ����������������������쁙��еͥ������쁍�����مȠ����ѕ��쁱�����������ĸ�쁑������聹���쁵�ɝ������(���ĵ�ѕ����������ĵ��쁑������聉������(���ĵ�ѕ����������ĵ��ɽ܁��Ʌ�͙�ɴ�ɽхє����������((�������������������������������������������(���
Q�	99H(���������������������������������������􀨼(��ф������ȁ쁉����ɽչ�聱����ȵ�Ʌ����Р��Ց���������������������쁉�ɑ�ȵɅ����������������������������ѕ�е�����聍��ѕ�쁍�����ݡ�є��(��ф������ȁ�ȁ쁍�����ݡ�є쁵�ɝ������ѽ��������(��ф������ȁ��쁍�����ɝ�����԰��԰��԰�ܤ쁙��еͥ������쁵�ɝ������ѽ��������((�������������������������������������������(���QIUMP�	L(���������������������������������������􀨼(�����е��ȁ쁉����ɽչ��مȠ��ѕ�Ф���������������(�����е����ȁ쁵��ݥ�Ѡ�������쁵�ɝ�������Ѽ쁑������聙���쁅������ѕ��聍��ѕ�쁩��ѥ�䵍��ѕ��聍��ѕ�쁝�������쁙����Ʌ���Ʌ���(�����е�ѕ��쁑������聙���쁅������ѕ��聍��ѕ�쁝������쁍�����ɝ�����԰��԰��԰�ؤ쁙��еͥ������쁙��еݕ����������(�����е�ѕ�������쁙��еͥ��������((�������������������������������������������(���==QH(���������������������������������������􀨼(�ͥє����ѕȁ쁉����ɽչ��مȠ��ѕ�Ф�������������������������(����е����ȁ쁵��ݥ�Ѡ�������쁵�ɝ�������Ѽ��(����еѽ��쁑������聙���쁩��ѥ�䵍��ѕ������������ݕ��쁙����Ʌ���Ʌ�쁝�������쁵�ɝ������ѽ��������(����е�Ʌ�����쁙��еͥ������쁍�����ɝ�����԰��԰��԰�Ф쁵��ݥ�Ѡ������쁱�����������ĸ��쁵�ɝ���ѽ��������(����е�����쁙��еݕ��������쁙��еͥ������쁍�����ݡ�є쁑������聙���쁅������ѕ��聍��ѕ�쁝�������ѕ�е����Ʌѥ��聹�����(����е�����쁉����ɽչ��مȠ���Ʌ����쁍�����ݡ�є쁉�ɑ�ȵɅ�������������������������쁙��еͥ������쁙��еݕ����������(����е�����Ё쁙��еͥ������쁙��еݕ��������쁍�����ɝ�����԰��԰��԰��Ԥ쁱��ѕȵ������������ѕ�е�Ʌ�͙�ɴ�����ɍ�͔쁵�ɝ������ѽ��������(����е����հ�쁑������聙���쁙��൑�ɕ�ѥ��聍��յ�쁝���������(����е����հ������쁍�����ɝ�����԰��԰��԰�Ԥ쁙��еͥ��������Ʌ�ͥѥ��聍���Ȁ����]}
.foot-col ul li a:hover { color: white; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center; }
.foot-copy { font-size: 12px; color: rgba(255,255,255,.3); }
.foot-badges { display: flex; gap: 8px; }
.fbadge { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 5px 12px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4); }

/* ========================================
   INNER PAGES (page.php)
======================================== */
.page-hero { background: linear-gradient(135deg,#0D1B3E 0%,#1A3FD8 100%); padding: 52px 20px; text-align: center; color: white; }
 .page-hero h1 { color: white; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 16px; }
.page-content { max-width: 800px; margin: 0 auto; padding: 52px 20px; }
.page-content h2 { font-size: 22px; margin: 32px 0 12px; }
.page-content h3 { font-size: 18px; margin: 24px 0 10px; }
.page-content p { color: #374151; line-height: 1.75; margin-bottom: 16px; }
.page-content ul, .page-content ol { padding-left: 20px; margin-bottom: 16px; }
.page-content ul li { list-style: disc; margin-bottom: 8px; color: #374151; }
.page-content ol li { list-style: decimal; margin-bottom: 8px; color: #374151; }
.page-content table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.page-content table th, .page-content table td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
.page-content table th { background: var(--bg); font-weight: 700; font-size: 13px; }

/* ========================================
   WOOCOMMERCE OVERRIDES
======================================== */
.woocommerce-page .woocommerce { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px,1fr)); gap: 24px; }
.woocommerce ul.products li.product a img { border-radius: 12px; }
.woocommerce .button, .woocommerce button.button { background: var(--blue) !important; color: white !important; border-radius: 100px !important; font-weight: 700 !important; padding: 10px 24px !important; border: none !important; transition: background .2s !important; }
.woocommerce .button:hover, .woocommerce button.button:hover { background: var(--blue-dark) !important; }
.woocommerce .woocommerce-breadcrumb { color: var(--muted); font-size: 13px; }

/* ========================================
   CONTACT PAGE
======================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { font-size: 20px; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-label { font-size: 12px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.contact-value { font-size: 15px; font-weight: 600; }
.contact-form label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 16px;
  transition: border-color .2s;
  background: white;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); }
.contact-form textarea { min-height: 130px; resize: vertical; }

/* ========================================
   BLOG
======================================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px,1fr)); gap: 28px; }
.blog-card { background: white; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .22s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.blog-card-img { background: var(--blue-light); height: 180px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-card-body { padding: 24px; }
.blog-cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 8px; }
.blog-card-body h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.35; }
.blog-card-body h3 a { color: var(--text); }
.blog-card-body p { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--muted); }

/* ========================================
   BREADCRUMB
======================================== */
.breadcrumb { padding: 14px 0; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--text); }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-nav.open { display: flex !important; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; padding: 0; gap: 0; z-index: 10000; overflow-y: auto; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  /* ===== MOBILE NAV PANEL ===== */
  .nav-panel-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
  .nav-panel-logo { font-weight: 700; font-size: 18px; color: var(--text); text-decoration: none; }
  .nav-panel-close { background: #f0f0f0; border: none; border-radius: 50%; width: 34px; height: 34px; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; color: var(--text); }
  .site-nav.open > a { display: block; padding: 16px 20px; font-size: 16px; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); text-decoration: none; text-align: center; }
  .site-nav.open > a:hover { color: var(--blue); }
  .site-nav.open .nav-has-dropdown { border-bottom: 1px solid var(--border); }
  .nav-dropdown-trigger { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 16px 20px; font-size: 16px; font-weight: 600; color: var(--text); cursor: pointer; width: 100%; background: none; border: none; }
  .nav-dropdown-menu { display: none; background: #f8faff; padding: 8px 20px 12px; }
  .nav-dropdown-menu a { display: block !important; padding: 8px 0 !important; font-size: 14px !important; color: var(--muted) !important; border-bottom: none !important; text-align: center !important; }
  .nav-has-dropdown.open .nav-dropdown-menu { display: block; }
  .site-nav.open .mobile-nav-cta { display: block !important; margin: 20px auto !important; width: fit-content !important; background: var(--orange) !important; border-radius: 50px !important; color: white !important; padding: 14px 36px !important; font-size: 16px !important; font-weight: 700 !important; border-bottom: none !important; text-align: center !important; text-decoration: none !important; }
  /* ===== END MOBILE NAV PANEL ===== */

  .how-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 44px 16px 40px; }
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .sim-gb { font-size: 36px; }
  .sim-body { min-height: 185px; }
  .how-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 32px 20px; }
  .trust-inner { gap: 16px; }
  .foot-top { flex-direction: column; }
  .blog-grid { grid-template-columns: 1fr; }
}


/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #E8EDF5;
  padding: 18px 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #0D1B3E;
  white-space: nowrap;
}
.trust-item span { font-size: 16px; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.how-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 2px 16px rgba(13,27,62,0.07);
  border: 1px solid #E8EDF5;
  transition: box-shadow 0.2s, transform 0.2s;
}
.how-card:hover {
  box-shadow: 0 6px 28px rgba(13,27,62,0.12);
  transform: translateY(-2px);
}
.how-n {
  font-size: 38px;
  font-weight: 800;
  color: var(--blue, #1A3FD8);
  line-height: 1;
  margin-bottom: 14px;
}
.how-t {
  font-size: 15px;
  font-weight: 700;
  color: #0D1B3E;
  margin-bottom: 8px;
}
.how-d {
  font-size: 13px;
  color: #5A6A8A;
  line-height: 1.65;
}

/* ============================================
   WHY / BENEFITS GRID
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid #E8EDF5;
  box-shadow: 0 2px 10px rgba(13,27,62,0.05);
}
.why-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--blue-light, #EEF2FF);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0D1B3E;
  margin-bottom: 5px;
}
.why-card p {
  font-size: 13px;
  color: #5A6A8A;
  line-height: 1.6;
}

/* ============================================
   COMPAT SECTION
   ============================================ */
.compat-wrap {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.compat-wrap h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0D1B3E;
  margin-bottom: 12px;
}
.compat-wrap > p {
  color: #5A6A8A;
  font-size: 15px;
  margin-bottom: 24px;
}
.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #E0E7F0;
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #0D1B3E;
  box-shadow: 0 1px 4px rgba(13,27,62,0.06);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
}
.faq-item {
  border-bottom: 1px solid #E8EDF5;
}
.faq-item:first-child { border-top: 1px solid #E8EDF5; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 2px;
  font-size: 15px;
  font-weight: 600;
  color: #0D1B3E;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.faq-q:hover { color: var(--blue, #1A3FD8); }
.faq-arrow {
  flex-shrink: 0;
  font-size: 16px;
  color: var(--blue, #1A3FD8);
  transition: transform 0.25s ease;
  display: inline-block;
}
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-a {
  font-size: 14px;
  color: #5A6A8A;
  line-height: 1.75;
  padding: 0 2px 16px;
  display: none;
  margin: 0;
}
.faq-item.active .faq-a { display: block; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #0D1B3E 0%, #1A3FD8 100%);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  color: #fff;
}
.cta-banner h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0D1B3E;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.foot-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 20px 28px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 12px;
}
.foot-logo {
  display: inline-block;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}
.foot-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col ul li { margin-bottom: 10px; }
.foot-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.foot-col ul li a:hover { color: #fff; }
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  gap: 16px;
  flex-wrap: wrap;
}
.foot-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.foot-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.fbadge {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 4px 10px;
}
.foot-chip {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   BLOG / ARCHIVE
   ============================================ */
.blog .site-content,
.archive .site-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 20px;
}
.blog .posts-grid,
.archive .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hentry {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #E8EDF5;
  box-shadow: 0 2px 12px rgba(13,27,62,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.hentry:hover {
  box-shadow: 0 8px 28px rgba(13,27,62,0.11);
  transform: translateY(-2px);
}
.hentry .entry-header { padding: 22px 22px 0; }
.hentry .entry-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
.hentry .entry-title a { color: #0D1B3E; text-decoration: none; }
.hentry .entry-title a:hover { color: var(--blue, #1A3FD8); }
.hentry .entry-summary,
.hentry .entry-content { padding: 10px 22px 22px; color: #5A6A8A; font-size: 14px; line-height: 1.7; }
.hentry .entry-footer { padding: 0 22px 18px; font-size: 12px; color: #9AA5B8; }
.stitle {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue, #1A3FD8);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: block;
  margin-bottom: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 920px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .how-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 20px; }
  .cta-banner h2 { font-size: 22px; }
  .faq-q { font-size: 14px; padding: 15px 2px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .trust-inner { gap: 14px; }
  .brand-row { gap: 8px; }
}

/* ===== MOBILE HEADER FIXES v1.1.2 ===== */
@media (max-width: 900px) {
  .nav-inner {
    padding: 0 16px !important;
  }
  .nav-toggle {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    padding: 6px !important;
  }
  .site-notice {
    overflow: hidden !important;
  }
  .notice-text {
    white-space: nowrap !important;
    overflow: hidden !important;
    max-width: calc(100vw - 140px) !important;
    text-overflow: ellipsis !important;
    display: inline-block !important;
    vertical-align: middle !important;
  }
  .site-notice > div {
    flex-wrap: nowrap !important;
    align-items: center !important;
    height: 36px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }
  .site-notice {
    height: 36px !important;
  }
  .site-logo img {
    height: 28px !important;
    width: auto !important;
  }
}


/* ============================================
   WOOCOMMERCE - PAGINA CONFIRMARE COMANDA
   ============================================ */

/* Container principal */
.woocommerce-order-received .woocommerce {
  max-width: 680px;
  margin: 40px auto;
  padding: 0 16px 60px;
}

/* Header cu icon success */
.woocommerce-order-received h1.entry-title,
.woocommerce-order-received .woocommerce > h1,
.woocommerce-page .entry-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

/* Adauga iconita verde de success inainte de titlu */
.woocommerce-order-received h1.entry-title::before,
.woocommerce-order-received .woocommerce > h1::before {
  content: '';
  display: block;
  width: 64px;
  height: 64px;
  background: var(--green-light);
  border-radius: 50%;
  margin: 0 auto 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
}

/* Paragraful de multumire */
.woocommerce-order-received .woocommerce-notice,
.woocommerce-thankyou-order-received {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 28px !important;
}

/* Card pentru detaliile comenzii (nr, data, total, plata) */
.woocommerce-order-overview.woocommerce-thankyou-order-details {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px !important;
  margin: 0 0 24px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  list-style: none !important;
}

.woocommerce-order-overview li {
  padding: 12px 16px !important;
  border-bottom: 1px solid var(--border);
  margin: 0 !important;
  font-size: 0.9rem;
  color: var(--muted);
}

.woocommerce-order-overview li:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.woocommerce-order-overview li:nth-last-child(-n+2) {
  border-bottom: none;
}

.woocommerce-order-overview li strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 2px;
}

/* Sectiunea "Detalii comanda" */
.woocommerce-order-details {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px !important;
}

.woocommerce-order-details h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  padding: 16px 24px;
  margin: 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.woocommerce-order-details .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 !important;
}

.woocommerce-order-details .shop_table thead th {
  padding: 12px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.woocommerce-order-details .shop_table thead th.product-total {
  text-align: right;
}

.woocommerce-order-details .shop_table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.woocommerce-order-details .shop_table .product-name {
  font-weight: 600;
  color: var(--text);
}

.woocommerce-order-details .shop_table .product-name a {
  color: var(--blue);
  text-decoration: none;
}

.woocommerce-order-details .shop_table .product-total {
  text-align: right;
  font-weight: 700;
  color: var(--text);
}

/* Totaluri (subtotal, total) */
.woocommerce-order-details .shop_table tfoot tr {
  border-top: 1px solid var(--border);
}

.woocommerce-order-details .shop_table tfoot td,
.woocommerce-order-details .shop_table tfoot th {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.woocommerce-order-details .shop_table tfoot tr:last-child td,
.woocommerce-order-details .shop_table tfoot tr:last-child th {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Sectiunea adresa de facturare */
.woocommerce-customer-details {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px !important;
}

.woocommerce-customer-details h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  padding: 16px 24px;
  margin: 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.woocommerce-customer-details address {
  padding: 16px 24px;
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Banner info la final */
.woocommerce-order-received .return-to-shop {
  text-align: center;
  margin-top: 8px;
}

.woocommerce-order-received .return-to-shop .button,
.woocommerce-order-received .button {
  background: var(--blue) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 12px 32px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  border: none !important;
  text-decoration: none;
  display: inline-block;
}

/* Responsive mobil */
@media (max-width: 600px) {
  .woocommerce-order-received .woocommerce {
    margin: 20px auto;
    padding: 0 12px 40px;
  }

  .woocommerce-order-overview.woocommerce-thankyou-order-details {
    grid-template-columns: 1fr;
    padding: 8px 16px !important;
  }

  .woocommerce-order-overview li:nth-child(odd) {
    border-right: none;
  }

  .woocommerce-order-overview li:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .woocommerce-order-overview li:last-child {
    border-bottom: none;
  }

  .woocommerce-order-details .shop_table thead th,
  .woocommerce-order-details .shop_table tbody td,
  .woocommerce-order-details .shop_table tfoot td,
  .woocommerce-order-details .shop_table tfoot th,
  .woocommerce-customer-details address {
    padding-left: 16px;
    padding-right: 16px;
  }

  .woocommerce-order-details h2,
  .woocommerce-customer-details h2 {
    padding: 14px 16px;
  }
}
