/* ==========================================================================
   Connect Mobile — Stylesheet principal
   Temă: tech modern, navy închis + accent roșu, secțiuni albe curate
   Fonturi: Poppins (titluri/logo) + Inter (text)
   ========================================================================== */

:root {
  --navy:      #0b1a2e;
  --navy-2:    #08131f;
  --navy-3:    #12253c;
  --red:       #fc3535;
  --red-d:     #e11d1d;
  --ink:       #14181f;
  --text:      #2a2f38;
  --muted:     #6b7280;
  --bg:        #ffffff;
  --soft:      #f4f6f9;
  --soft-2:    #eef1f5;
  --line:      #e5e9ef;
  --green:     #25d366;
  --blue:      #2f7be4;
  --radius:    14px;
  --radius-sm: 10px;
  --shadow:    0 18px 40px -22px rgba(11,26,46,.28);
  --shadow-sm: 0 8px 22px -14px rgba(11,26,46,.35);
  --container: 1280px;
  --ff-head:   "Poppins", system-ui, sans-serif;
  --ff-body:   "Inter", system-ui, -apple-system, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--ff-body); color: var(--text);
  background: var(--bg); font-size: 15.5px; line-height: 1.6; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1,h2,h3,h4 { font-family: var(--ff-head); font-weight: 600; line-height: 1.15; margin: 0; color: var(--ink); }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.muted { color: var(--muted); }

.eyebrow { font-family: var(--ff-body); text-transform: uppercase; letter-spacing: .22em; font-size: 11px; font-weight: 600; color: var(--red); display: inline-block; margin-bottom: 14px; }
.section { padding: 72px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(24px, 3vw, 34px); }
.section-head .sub { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* Butoane */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--ff-head); font-weight: 500; font-size: 13.5px; letter-spacing: .04em; padding: 13px 26px; border-radius: 999px; transition: .25s ease; white-space: nowrap; }
.btn-red   { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-d); transform: translateY(-1px); }
.btn-navy  { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-3); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #f0f0f0; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-line  { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-line:hover { border-color: var(--navy); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 32px; font-size: 14px; }
.link-more { font-size: 13px; font-weight: 600; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.link-more:hover { gap: 10px; }

/* ============================ TOP BAR ================================ */
.announce { background: var(--navy); color: #cdd6e2; font-size: 12px; letter-spacing: .02em; text-align: center; padding: 8px 16px; }
.announce strong { color: #fff; }
.announce .sep { color: var(--red); margin: 0 8px; }

/* ============================ HEADER ================================= */
.site-header { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--line); }
.header-main { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; max-width: var(--container); margin: 0 auto; padding: 14px 24px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 42px; width: auto; }
.logo .logo-txt { font-family: var(--ff-head); font-weight: 700; font-size: 20px; color: var(--navy); letter-spacing: -.01em; }
.logo .logo-txt b { color: var(--red); font-weight: 700; }

.mainnav > ul { display: flex; align-items: center; justify-content: center; gap: 2px; }
.mainnav a { display: block; font-size: 14.5px; font-weight: 500; padding: 10px 14px; color: var(--ink); border-radius: 8px; transition: .2s; position: relative; }
.mainnav a:hover, .mainnav a.active { color: var(--red); }
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: "▾"; font-size: 10px; margin-left: 5px; color: var(--muted); }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); min-width: 220px; padding: 8px; opacity: 0; visibility: hidden; transition: .22s; z-index: 70; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px); }
.dropdown a { font-size: 14px; padding: 10px 14px; border-radius: 8px; font-weight: 400; }
.dropdown a:hover { background: var(--soft); color: var(--red); }

.header-right { display: flex; align-items: center; gap: 6px; justify-content: flex-end; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; color: var(--ink); transition: .2s; position: relative; }
.icon-btn:hover { background: var(--soft); color: var(--red); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count { position: absolute; top: 4px; right: 4px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; min-width: 17px; height: 17px; border-radius: 999px; display: none; align-items: center; justify-content: center; padding: 0 4px; font-family: var(--ff-body); }
.cart-count.show { display: flex; }
.nav-toggle { display: none; }

/* Search bar overlay */
.search-bar { display: none; border-top: 1px solid var(--line); background: #fff; }
.search-bar.open { display: block; }
.search-bar .container { display: flex; gap: 10px; padding-top: 14px; padding-bottom: 14px; }
.search-bar input { flex: 1; border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px; font-family: var(--ff-body); font-size: 15px; }
.search-bar input:focus { outline: none; border-color: var(--navy); }

/* ============================= HERO ================================= */
.hero { position: relative; background: radial-gradient(1200px 600px at 78% 15%, rgba(252,53,53,.16), transparent 60%), linear-gradient(120deg, var(--navy-2) 0%, var(--navy) 45%, var(--navy-3) 100%); color: #fff; overflow: hidden; }
.hero::before { content:""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 22px 22px; opacity: .5; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: center; max-width: var(--container); margin: 0 auto; padding: 74px 24px; min-height: 460px; }
.hero-copy { max-width: 560px; }
.hero-copy .eyebrow { color: #ff6a6a; }
.hero-copy h1 { color: #fff; font-size: clamp(38px, 5.4vw, 68px); font-weight: 600; letter-spacing: -.02em; line-height: 1.05; }
.hero-copy h1 .accent { color: #fff; }
.hero-copy h1 .dot { color: var(--red); }
.hero-copy p { color: #c4cede; font-size: 16px; margin: 20px 0 30px; max-width: 46ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-phone { width: min(100%, 460px); border-radius: 26px; background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.10); padding: 22px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); }
.hero-phone img { border-radius: 16px; width: 100%; }
.hero-badge { position: absolute; background: #fff; color: var(--navy); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow); font-family: var(--ff-head); }
.hero-badge .n { font-weight: 700; font-size: 18px; color: var(--red); }
.hero-badge .t { font-size: 11px; color: var(--muted); }
.hero-badge.b1 { bottom: 22px; left: -6px; }
.hero-badge.b2 { top: 22px; right: -6px; }

/* Brand strip */
.brands { background: #fff; border-bottom: 1px solid var(--line); }
.brands .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 26px; padding-bottom: 26px; flex-wrap: wrap; }
.brand-logo { font-family: var(--ff-head); font-weight: 700; font-size: 22px; color: #9aa3af; letter-spacing: .02em; opacity: .8; transition: .25s; filter: grayscale(1); }
.brand-logo:hover { color: var(--navy); opacity: 1; }

/* Trust band */
.trust { background: var(--navy); color: #fff; text-align: center; }
.trust .container { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 16px 24px; flex-wrap: wrap; font-family: var(--ff-head); font-weight: 500; letter-spacing: .04em; font-size: 14px; }
.trust .dot { width: 5px; height: 5px; background: var(--red); border-radius: 50%; }

/* USP row */
.usp { background: var(--soft); }
.usp .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; padding: 26px 24px; }
.usp-item { display: flex; align-items: center; gap: 12px; }
.usp-item svg { width: 30px; height: 30px; color: var(--red); flex: none; }
.usp-item b { font-family: var(--ff-head); font-weight: 600; font-size: 13.5px; color: var(--ink); display: block; }
.usp-item span { font-size: 12.5px; color: var(--muted); }

/* ============= CATEGORY TILES ============= */
.cat-tiles { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.cat-tile { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--soft); border: 1px solid var(--line); padding: 26px 22px; display: flex; flex-direction: column; gap: 14px; min-height: 190px; transition: .25s; }
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.cat-tile .ct-ico { width: 46px; height: 46px; border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.cat-tile .ct-ico svg { width: 24px; height: 24px; color: var(--red); }
.cat-tile h3 { font-size: 19px; }
.cat-tile p { font-size: 13px; color: var(--muted); margin: 0; flex: 1; }
.cat-tile .ct-go { font-size: 13px; font-weight: 600; color: var(--red); }

/* ======================= GRILA PRODUSE ============================= */
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.product-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: .28s ease; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.card-media { position: relative; aspect-ratio: 1/1; background: #fff; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.badge { position: absolute; top: 12px; left: 12px; background: var(--navy); color: #fff; font-family: var(--ff-head); font-size: 10.5px; font-weight: 600; letter-spacing: .04em; padding: 5px 11px; border-radius: 999px; z-index: 2; }
.badge.red { background: var(--red); }
.wish-btn { position: absolute; top: 10px; right: 10px; width: 36px; height: 36px; border-radius: 50%; background: var(--soft); display: flex; align-items: center; justify-content: center; color: var(--ink); transition: .2s; z-index: 2; }
.wish-btn svg { width: 18px; height: 18px; }
.wish-btn:hover { background: #fff; color: var(--red); box-shadow: var(--shadow-sm); }
.wish-btn.active { color: var(--red); }
.wish-btn.active svg { fill: var(--red); }
.card-swatches { position: absolute; bottom: 10px; left: 12px; display: flex; gap: 5px; z-index: 2; }
.sw-dot { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid #fff; box-shadow: 0 0 0 1px var(--line); }
.card-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-brand { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.card-name { font-family: var(--ff-head); font-weight: 500; font-size: 15px; line-height: 1.3; color: var(--ink); }
.card-name a:hover { color: var(--red); }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 8px; }
.card-price { font-family: var(--ff-head); font-weight: 700; font-size: 18px; color: var(--navy); }
.card-price .old { display: block; font-size: 12px; font-weight: 400; color: var(--muted); text-decoration: line-through; }
.card-add { width: 40px; height: 40px; border-radius: 10px; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; transition: .2s; flex: none; }
.card-add:hover { background: var(--red); }
.card-add svg { width: 19px; height: 19px; }

/* ============= PROMO BANNER ============= */
.promo { border-radius: 20px; overflow: hidden; background: linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 100%); color: #fff; padding: clamp(30px,5vw,58px); display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: center; position: relative; }
.promo::after { content:""; position:absolute; right:-60px; top:-60px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(252,53,53,.35), transparent 65%); }
.promo h2 { color: #fff; font-size: clamp(26px,3.4vw,40px); position: relative; }
.promo p { color: #c4cede; margin: 14px 0 24px; position: relative; }
.promo .promo-img { position: relative; display: flex; justify-content: center; }
.promo .promo-img img { max-height: 260px; width: auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)); }

/* ======================= PAGINA CATEGORIE ========================== */
.page-hero { background: linear-gradient(120deg, var(--navy-2), var(--navy) 60%, var(--navy-3)); color: #fff; padding: 54px 0; }
.page-hero .breadcrumb { color: #93a1b5; font-size: 13px; margin-bottom: 16px; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb span { margin: 0 7px; opacity: .6; }
.page-hero h1 { color: #fff; font-size: clamp(28px,4vw,44px); }
.page-hero p { color: #b7c1d1; margin-top: 10px; max-width: 60ch; }

.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 34px; align-items: start; }
.filters-panel { position: sticky; top: 90px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.filters-panel h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin: 18px 0 10px; }
.filters-panel h4:first-child { margin-top: 0; }
.filter-link { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; border-radius: 8px; font-size: 14px; color: var(--text); cursor: pointer; transition: .18s; }
.filter-link:hover { background: var(--soft); }
.filter-link.active { background: var(--navy); color: #fff; }
.filter-link .cnt { font-size: 12px; color: var(--muted); }
.filter-link.active .cnt { color: #b9c4d4; }

.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.toolbar .count { font-size: 13.5px; color: var(--muted); }
.toolbar select { font-family: var(--ff-body); font-size: 14px; border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px; background: #fff; cursor: pointer; }

.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.chip { font-size: 13px; font-weight: 500; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--text); transition: .2s; }
.chip:hover { border-color: var(--red); color: var(--red); }
.chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ======================= PAGINA PRODUS ============================ */
.product-view { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; padding: 34px 0 10px; align-items: start; }
.pgallery { position: sticky; top: 90px; }
.pgallery-main { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.pgallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 26px; }
.pinfo .p-brand { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--red); font-weight: 600; }
.pinfo h1 { font-size: clamp(24px,3vw,34px); margin: 8px 0 6px; }
.p-rating { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.p-rating .stars { color: #f5a623; letter-spacing: 2px; }
.p-price { font-family: var(--ff-head); font-weight: 700; font-size: 30px; color: var(--navy); margin: 14px 0; display: flex; align-items: baseline; gap: 12px; }
.p-price .old { font-size: 18px; font-weight: 400; color: var(--muted); text-decoration: line-through; }
.p-price .save { font-size: 12px; font-weight: 600; color: #fff; background: var(--red); padding: 3px 10px; border-radius: 999px; }
.p-desc { color: var(--text); margin-bottom: 22px; }
.p-opt { margin: 20px 0; }
.p-opt label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); display: block; margin-bottom: 10px; font-weight: 600; }
.p-opt label .val { color: var(--ink); text-transform: none; letter-spacing: 0; font-weight: 600; margin-left: 6px; }
.color-opts { display: flex; gap: 10px; flex-wrap: wrap; }
.color-swatch { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--line); cursor: pointer; position: relative; transition: .2s; }
.color-swatch:hover { transform: scale(1.08); }
.color-swatch.active { border-color: var(--navy); box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--navy); }
.opt-list { display: flex; gap: 8px; flex-wrap: wrap; }
.opt-btn { min-width: 64px; text-align: center; padding: 11px 16px; border: 1px solid var(--line); border-radius: 10px; font-size: 14px; font-weight: 500; background: #fff; transition: .2s; }
.opt-btn:hover { border-color: var(--navy); }
.opt-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.p-actions { display: flex; gap: 12px; margin: 24px 0; flex-wrap: wrap; }
.qty { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.qty button { width: 44px; height: 50px; font-size: 18px; color: var(--ink); }
.qty button:hover { background: var(--soft); }
.qty input { width: 44px; text-align: center; border: 0; font-family: var(--ff-head); font-size: 16px; font-weight: 600; }
.p-wa { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: var(--green); color: #fff; padding: 14px; border-radius: 12px; font-family: var(--ff-head); font-weight: 600; font-size: 15px; transition: .2s; margin-top: 4px; }
.p-wa:hover { filter: brightness(1.05); }
.p-wa svg { width: 22px; height: 22px; }
.p-meta { border-top: 1px solid var(--line); margin-top: 22px; padding-top: 20px; display: grid; gap: 12px; }
.p-meta div { display: flex; gap: 10px; align-items: center; font-size: 13.5px; color: var(--text); }
.p-meta svg { width: 19px; height: 19px; color: var(--red); flex: none; }

/* ======================= CART DRAWER ============================== */
.overlay { position: fixed; inset: 0; background: rgba(8,19,31,.5); opacity: 0; visibility: hidden; transition: .3s; z-index: 90; }
.overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(410px, 92vw); background: #fff; z-index: 100; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 19px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 22px; }
.drawer-foot { border-top: 1px solid var(--line); padding: 18px 22px; }
.drawer-empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.drawer-empty svg { width: 46px; height: 46px; color: var(--line); margin-bottom: 12px; }
.line-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.line-item img { width: 74px; height: 74px; object-fit: contain; background: var(--soft); border-radius: 10px; flex: none; padding: 5px; }
.line-item .li-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.line-item .li-name { font-family: var(--ff-head); font-weight: 500; font-size: 14px; line-height: 1.25; }
.line-item .li-opt { font-size: 12px; color: var(--muted); }
.line-item .li-price { font-weight: 700; font-size: 14px; color: var(--navy); font-family: var(--ff-head); }
.line-item .li-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.li-qty { display: flex; align-items: center; gap: 2px; border: 1px solid var(--line); border-radius: 999px; }
.li-qty button { width: 28px; height: 28px; font-size: 15px; }
.li-qty span { min-width: 22px; text-align: center; font-size: 13px; }
.li-remove { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.li-remove:hover { color: var(--red); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.cart-total .lbl { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.cart-total .val { font-family: var(--ff-head); font-weight: 700; font-size: 24px; color: var(--navy); }
.drawer-note { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 10px; }

/* ====================== FLOATING BUTTONS ========================= */
.fabs { position: fixed; right: 20px; bottom: 20px; z-index: 70; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 10px 26px -8px rgba(0,0,0,.4); transition: .2s; }
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab svg { width: 27px; height: 27px; }
.fab.wa { background: var(--green); }
.fab.call { background: var(--blue); }
.to-top { position: fixed; left: 20px; bottom: 20px; z-index: 70; width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--navy); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transition: .25s; }
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--navy); color: #fff; }
.to-top svg { width: 20px; height: 20px; }

/* ============================ FORME ============================== */
.field { margin-bottom: 16px; }
.field label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); display: block; margin-bottom: 7px; font-weight: 600; }
.field input, .field textarea, .field select { width: 100%; font-family: var(--ff-body); font-size: 15px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--navy); }
.field textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }

/* Despre / valori */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.about-split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 10px; }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.value .v-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--soft); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.value .v-ico svg { width: 24px; height: 24px; color: var(--red); }
.value h3 { font-size: 18px; margin-bottom: 8px; }
.value p { font-size: 13.5px; color: var(--muted); margin: 0; }

.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info .ci-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info .ci-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--soft); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-info .ci-ico svg { width: 21px; height: 21px; color: var(--red); }
.contact-info b { display: block; font-family: var(--ff-head); font-weight: 600; font-size: 15px; }
.contact-info span { color: var(--muted); font-size: 14px; }

/* Newsletter */
.newsletter { background: var(--navy); color: #fff; border-radius: 20px; padding: clamp(30px,5vw,54px); text-align: center; position: relative; overflow: hidden; }
.newsletter::after { content:""; position: absolute; left: -60px; bottom: -80px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(252,53,53,.3), transparent 65%); }
.newsletter h2 { color: #fff; font-size: clamp(24px,3vw,34px); position: relative; }
.newsletter p { color: #b7c1d1; max-width: 480px; margin: 12px auto 24px; position: relative; }
.news-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; position: relative; }
.news-form input { flex: 1; padding: 14px 18px; border-radius: 10px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; font-family: var(--ff-body); }
.news-form input::placeholder { color: #93a1b5; }

/* ============================ FOOTER ============================ */
.site-footer { background: var(--navy-2); color: #a9b4c4; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .logo-txt { color: #fff; }
.footer-brand p { font-size: 14px; margin: 16px 0; max-width: 34ch; line-height: 1.7; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: #fff; transition: .2s; }
.socials a:hover { background: var(--red); }
.socials svg { width: 17px; height: 17px; }
.footer-col h4 { color: #fff; font-family: var(--ff-head); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; padding: 6px 0; color: #a9b4c4; transition: .18s; }
.footer-col a:hover { color: #fff; padding-left: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 48px; padding: 22px 0; text-align: center; font-size: 13px; color: #7c8798; }
.footer-bottom a { color: #a9b4c4; }
.footer-bottom a:hover { color: #fff; }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%) translateY(30px); background: var(--navy); color: #fff; padding: 14px 24px; border-radius: 12px; font-size: 14px; font-weight: 500; opacity: 0; visibility: hidden; transition: .32s; z-index: 120; box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px; }
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: var(--green); }

.empty-state { text-align: center; padding: 80px 20px; color: var(--muted); grid-column: 1/-1; }
.empty-state h3 { color: var(--ink); font-size: 22px; margin-bottom: 10px; }

/* ========================= RESPONSIVE ========================== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: none; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .about-split, .contact-split, .promo { grid-template-columns: 1fr; }
  .product-view { grid-template-columns: 1fr; gap: 28px; }
  .pgallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .usp .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .mainnav { position: fixed; top: 0; left: 0; height: 100%; width: min(320px,86vw); background: #fff; z-index: 95; transform: translateX(-100%); transition: transform .35s cubic-bezier(.4,0,.2,1); overflow-y: auto; padding: 16px; box-shadow: 20px 0 60px -30px rgba(0,0,0,.4); }
  .mainnav.open { transform: translateX(0); }
  .mainnav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .mainnav > ul > li > a { font-size: 16px; padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .has-dropdown > a::after { float: right; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 0 0 8px 12px; min-width: 0; }
  .nav-close { display: block !important; text-align: right; font-size: 26px; padding: 6px 10px; color: var(--ink); }
  .header-main { grid-template-columns: auto 1fr auto; }
  .product-grid, .product-grid.cols-3 { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cat-tiles { grid-template-columns: 1fr 1fr; }
  .section { padding: 52px 0; }
  .trust .container { font-size: 12px; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .usp .container { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
}
@media (min-width: 761px) { .nav-close { display: none; } }
@media (max-width: 560px) {
  .logo .logo-txt { display: none; }
  .header-main { gap: 10px; }
}
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .cat-tiles { grid-template-columns: 1fr; }
  .card-media img { padding: 10px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
.nav-close { display: none; }
