/* ══════════════════════════════════════
   ENC Sport Homepage Module v1.1
   ══════════════════════════════════════ */

@keyframes enc-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes enc-pulse { 0%,100%{opacity:1} 50%{opacity:.6} }
@keyframes enc-marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes enc-slideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes enc-announce-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

:root {
  --enc-orange: #E8680A;
  --enc-orange-hot: #FF7A1A;
  --enc-orange-glow: rgba(232,104,10,0.15);
}

/* ══════════════════════════════════════
   FULL-WIDTH BREAKOUT
   Content is inside #inner-wrapper.container (max 1140px).
   These sections must break out to full viewport width.
   ══════════════════════════════════════ */
.enc-full {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
}

/* ══════════════════════════════════════
   ANNOUNCEMENT BAR
   ══════════════════════════════════════ */
.enc-announce { background: #0A0A09; overflow: hidden; padding: 10px 0; }
.enc-announce-track { display: flex; animation: enc-announce-scroll 25s linear infinite; white-space: nowrap; width: max-content; }
.enc-announce-track:hover { animation-play-state: paused; }
.enc-announce-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 40px; color: rgba(255,255,255,.6); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 500; }
.enc-a-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--enc-orange); display: inline-block; flex-shrink: 0; }

/* ══════════════════════════════════════
   WAREHOUSE THEME OVERRIDES (homepage only)
   body.page-index scopes everything to homepage
   ══════════════════════════════════════ */

/* ── Custom header (replaces warehouse header on homepage) ── */
.enc-hdr { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #E5E3DF; }
.enc-hdr-inner { display: flex; align-items: center; height: 68px; gap: 20px; }
.enc-hdr-logo { flex-shrink: 0; display: flex; align-items: center; }
.enc-hdr-logo img { height: 38px; width: auto; }
.enc-hdr-nav { display: flex; gap: 0; margin-left: 20px; }
.enc-nav-item { position: relative; }
.enc-nav-item > a { display: inline-flex; align-items: center; gap: 4px; font-size: .95rem; font-weight: 600; color: #333; padding: 10px 16px; border-radius: 8px; transition: all .2s; text-decoration: none; white-space: nowrap; }
.enc-nav-item > a:hover { color: var(--enc-orange); background: var(--enc-orange-glow); }
.enc-nav-chev { transition: transform .2s; }
.enc-nav-item:hover .enc-nav-chev { transform: rotate(180deg); }
.enc-hdr-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.enc-search { display: flex; align-items: center; gap: 8px; background: #F2F1EE; border: 1px solid #E5E3DF; border-radius: 100px; padding: 8px 16px; transition: border-color .2s; min-width: 200px; }
.enc-search:focus-within { border-color: var(--enc-orange); }
.enc-search svg { flex-shrink: 0; color: #999; }
.enc-search input { border: none; background: transparent; color: #333; font-size: .84rem; outline: none; width: 100%; font-family: inherit; }
.enc-search input::placeholder { color: #999; }
.enc-hdr-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 8px; color: #555; transition: all .2s; text-decoration: none; }
.enc-hdr-icon:hover { background: var(--enc-orange-glow); color: var(--enc-orange); }

/* ── Submenu dropdown ── */
.enc-sub { position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff; border: 1px solid #E5E3DF; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,.1); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease; z-index: 200; }
.enc-nav-item:hover .enc-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.enc-sub-inner { display: flex; flex-direction: column; }
.enc-sub-inner a { font-size: .88rem; font-weight: 500; color: #444; padding: 9px 14px; border-radius: 8px; transition: all .15s; text-decoration: none; }
.enc-sub-inner a:hover { background: var(--enc-orange-glow); color: var(--enc-orange); }

/* Hide entire warehouse header on homepage (our custom header replaces it) */
body.page-index .header-nav { display: none !important; }
body.page-index #desktop-header { display: none !important; }
body.page-index #iqitmegamenu-wrapper,
body.page-index .iqitmegamenu-wrapper,
body.page-index .container-iqitmegamenu,
body.page-index .container.iqitmegamenu-container { display: none !important; }

/* Remove breadcrumb on homepage */
body.page-index #wrapper .breadcrumb { display: none !important; }

/* Remove container constraints from content wrapper on homepage */
body.page-index #inner-wrapper.container { max-width: none !important; padding: 0 !important; }
body.page-index #content-wrapper { padding: 0 !important; }
body.page-index .page-home { padding: 0 !important; margin: 0 !important; }

/* Clean up wrapper spacing */
body.page-index #wrapper { padding-top: 0 !important; }

/* ── Base font size ── */
body.page-index { font-size: 16px; }

/* ── Layout ── */
.enc-w { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.enc-sec { padding: 72px 0; }
.enc-sec-alt { background: #F2F1EE; }

/* ── Section Heads ── */
.enc-sec-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; gap: 20px; flex-wrap: wrap; }
.enc-sec-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.03em; color: #0D0D0D; margin: 0; }
.enc-sec-head p { color: #888; font-size: 1rem; margin: 4px 0 0; }
.enc-sec-link { display: inline-flex; align-items: center; gap: 6px; font-size: .95rem; font-weight: 600; color: var(--enc-orange); text-decoration: none; transition: gap .2s; }
.enc-sec-link:hover { gap: 10px; color: var(--enc-orange-hot); }

/* ── Buttons ── */
.enc-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-size: .88rem; font-weight: 600; border-radius: 8px; border: none; cursor: pointer; transition: all .2s; text-decoration: none; line-height: 1; }
.enc-btn-fill, a.enc-btn-fill, a.enc-btn-fill:link, a.enc-btn-fill:visited { background: var(--enc-orange) !important; color: #fff !important; }
.enc-btn-fill:hover, a.enc-btn-fill:hover { background: var(--enc-orange-hot) !important; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,104,10,.35); color: #fff !important; }
.enc-btn-glass, a.enc-btn-glass, a.enc-btn-glass:link, a.enc-btn-glass:visited { background: rgba(255,255,255,.06) !important; color: #fff !important; border: 1px solid rgba(255,255,255,.2); }
.enc-btn-glass:hover, a.enc-btn-glass:hover { background: rgba(255,255,255,.12) !important; border-color: rgba(255,255,255,.35); color: #fff !important; }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.enc-hero { position: relative; min-height: 560px; display: flex; overflow: hidden; background: #0A0A09; }
.enc-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .35; }
.enc-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,9,.85) 0%, rgba(10,10,9,.6) 50%, rgba(10,10,9,.35) 100%); }
.enc-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding-top: 72px; padding-bottom: 72px; }
.enc-hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,104,10,.12); border: 1px solid rgba(232,104,10,.25); border-radius: 100px; padding: 6px 16px 6px 10px; font-size: .78rem; color: var(--enc-orange-hot); font-weight: 600; margin-bottom: 20px; animation: enc-slideUp .6s ease both; }
.enc-pulse-dot { width: 8px; height: 8px; background: var(--enc-orange); border-radius: 50%; animation: enc-pulse 2s infinite; display: inline-block; }
.enc-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.03em; margin: 0; animation: enc-slideUp .6s .1s ease both; }
.enc-hero h1 em { font-style: normal; color: var(--enc-orange-hot); }
.enc-hero-content p { margin-top: 18px; color: rgba(255,255,255,.55); font-size: 1.1rem; line-height: 1.7; max-width: 480px; animation: enc-slideUp .6s .2s ease both; }
.enc-hero-ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; animation: enc-slideUp .6s .3s ease both; }

.enc-hero-showcase { display: flex; justify-content: center; align-items: center; animation: enc-slideUp .6s .2s ease both; }
a.enc-hero-product, a.enc-hero-product:link, a.enc-hero-product:visited, a.enc-hero-product:hover { text-decoration: none; color: inherit; }
.enc-hero-product { position: relative; max-width: 380px; width: 100%; display: block; }
.enc-hero-product img { border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.4); width: 100%; }
.enc-hero-float { position: absolute; background: rgba(20,20,18,.85); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 12px 16px; animation: enc-float 6s ease-in-out infinite; }
.enc-hero-float.c1 { bottom: 16px; left: -40px; }
.enc-hero-float.c2 { top: 24px; right: -36px; animation-delay: 1s; }
.enc-hf-label { display: block; font-size: .65rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.enc-hf-value { display: block; font-size: 1rem; font-weight: 700; color: #fff; margin-top: 2px; }

/* ══════════════════════════════════════
   USP STRIP
   ══════════════════════════════════════ */
.enc-usp { border-bottom: 1px solid #E5E3DF; padding: 18px 0; background: #fff; }
.enc-usp-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.enc-usp-i { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #555; font-weight: 500; }
.enc-usp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--enc-orange); display: inline-block; flex-shrink: 0; }

/* ══════════════════════════════════════
   CATEGORIES
   ══════════════════════════════════════ */
.enc-cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 12px; }
.enc-cats-grid .enc-cat:first-child { grid-row: 1 / 3; }
.enc-cat { position: relative; border-radius: 16px; overflow: hidden; display: block; text-decoration: none; transition: transform .3s, box-shadow .3s; }
.enc-cat:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.enc-cat-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #1a1a1a, #2d2319); transition: transform .4s; }
.enc-cat:hover .enc-cat-bg { transform: scale(1.05); }
.enc-cat:nth-child(2) .enc-cat-bg { background: linear-gradient(160deg, #141618, #1e2830); }
.enc-cat:nth-child(3) .enc-cat-bg { background: linear-gradient(160deg, #1a1710, #2a2218); }
.enc-cat:nth-child(4) .enc-cat-bg { background: linear-gradient(160deg, #101616, #1a2828); }
.enc-cat:nth-child(5) .enc-cat-bg { background: linear-gradient(160deg, #16141a, #241e30); }
.enc-cat:nth-child(6) .enc-cat-bg { background: linear-gradient(160deg, #181410, #282010); }
.enc-cat-svc .enc-cat-count { color: #fff; font-weight: 500; letter-spacing: .04em; }
.enc-cat-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 1; font-size: 3.5rem; opacity: .15; }
.enc-cat-img { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 1; }
.enc-cat-img img { max-height: 65%; max-width: 65%; object-fit: contain; filter: drop-shadow(0 8px 20px rgba(0,0,0,.3)); transition: transform .4s; }
.enc-cat:hover .enc-cat-img img { transform: scale(1.08); }
.enc-cat-over { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.05) 60%); z-index: 2; }
.enc-cat-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px; z-index: 3; }
.enc-cat-count { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--enc-orange); font-weight: 600; margin-bottom: 4px; }
.enc-cat-name { display: block; color: #fff; font-size: 1.2rem; font-weight: 700; }
.enc-cats-grid .enc-cat:first-child .enc-cat-name { font-size: 1.5rem; }
.enc-cat-arrow { position: absolute; top: 16px; right: 16px; z-index: 3; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0; transform: translateX(-8px); transition: all .25s; }
.enc-cat:hover .enc-cat-arrow { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════
   PRODUCT CARDS
   ══════════════════════════════════════ */
.enc-prods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.enc-prod { background: #fff; border: 1px solid #E5E3DF; border-radius: 16px; overflow: hidden; transition: all .25s; display: block; text-decoration: none; color: inherit; }
.enc-prod:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); border-color: transparent; }
.enc-prod-img { aspect-ratio: 1; background: #F8F7F5; display: flex; align-items: center; justify-content: center; padding: 0; position: relative; overflow: hidden; }
.enc-prod-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s; }
.enc-prod:hover .enc-prod-img img { transform: scale(1.06); }
.enc-prod-badge { position: absolute; top: 12px; left: 12px; padding: 5px 12px; border-radius: 100px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; z-index: 2; }
.enc-b-new { background: var(--enc-orange); color: #fff; }
.enc-b-sale { background: #DC2626; color: #fff; }
.enc-prod-body { padding: 16px 18px 18px; }
.enc-prod-brand { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: #888; font-weight: 600; }
.enc-prod-name { margin-top: 6px; font-size: .95rem; font-weight: 600; color: #0D0D0D; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.enc-prod-price { margin-top: 12px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.enc-now { font-size: 1.2rem; font-weight: 800; color: #0D0D0D; font-variant-numeric: tabular-nums; }
.enc-was { font-size: .82rem; color: #888; text-decoration: line-through; font-variant-numeric: tabular-nums; }
.enc-pct { font-size: .72rem; font-weight: 700; color: #DC2626; background: rgba(220,38,38,.08); padding: 2px 8px; border-radius: 100px; }
.enc-prod-cart { margin-top: 12px; width: 100%; padding: 11px; background: #F2F1EE; border: 1px solid #E5E3DF; border-radius: 8px; font-size: .88rem; font-weight: 600; color: #555; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 6px; }
.enc-prod:hover .enc-prod-cart { background: var(--enc-orange); color: #fff; border-color: var(--enc-orange); }

/* ══════════════════════════════════════
   SERVICE BANNER
   ══════════════════════════════════════ */
.enc-svc { position: relative; background-size: cover; background-position: center; min-height: 420px; display: flex; align-items: center; }
.enc-svc-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,9,.92) 0%, rgba(10,10,9,.75) 50%, rgba(10,10,9,.3) 100%); }
.enc-svc-inner { position: relative; z-index: 2; }
.enc-svc-content { max-width: 560px; padding: 56px 0; }
.enc-svc-tag { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--enc-orange); font-weight: 700; margin-bottom: 16px; }
.enc-svc h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.15; color: #fff; margin: 0; }
.enc-svc p { margin-top: 14px; color: rgba(255,255,255,.6); line-height: 1.7; font-size: 1.05rem; }
.enc-svc-stats { margin-top: 24px; display: flex; gap: 32px; }
.enc-svc-num { font-size: 1.8rem; font-weight: 800; color: var(--enc-orange); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.enc-svc-label { font-size: .78rem; color: rgba(255,255,255,.45); }
.enc-svc-cta { margin-top: 28px; }

/* ══════════════════════════════════════
   BRANDS MARQUEE
   ══════════════════════════════════════ */
.enc-brands-wrap { overflow: hidden; position: relative; }
.enc-brands-wrap::before, .enc-brands-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 48px; z-index: 2; pointer-events: none; }
.enc-brands-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.enc-brands-wrap::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.enc-brands-row { display: flex; gap: 12px; animation: enc-marquee 25s linear infinite; width: max-content; will-change: transform; }
.enc-brands-row:hover { animation-play-state: paused; }
.enc-brand-chip { flex-shrink: 0; padding: 14px 32px; border: 1px solid #E5E3DF; border-radius: 100px; font-size: .88rem; font-weight: 600; color: #555; transition: all .2s; cursor: pointer; white-space: nowrap; background: #fff; }
.enc-brand-chip:hover { border-color: var(--enc-orange); color: var(--enc-orange); background: var(--enc-orange-glow); }

/* ══════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════ */
.enc-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.enc-review { background: #fff; border: 1px solid #E5E3DF; border-radius: 16px; padding: 28px; transition: all .25s; }
.enc-review:hover { border-color: var(--enc-orange); transform: translateY(-2px); }
.enc-review-stars { color: var(--enc-orange); font-size: .85rem; letter-spacing: 2px; }
.enc-review-text { margin-top: 14px; font-size: .95rem; color: #2A2A2A; line-height: 1.65; font-style: italic; }
.enc-review-author { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.enc-review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--enc-orange-glow); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--enc-orange); font-size: .85rem; flex-shrink: 0; }
.enc-review-author strong { display: block; font-size: .85rem; font-weight: 600; color: #0D0D0D; }
.enc-review-author span { font-size: .78rem; color: #888; }

/* ══════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════ */
.enc-news { position: relative; overflow: hidden; border-radius: 16px; background: #0A0A09; padding: 64px 48px; text-align: center; }
.enc-news::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: var(--enc-orange); filter: blur(160px); opacity: .08; top: -200px; right: -100px; }
.enc-news h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 800; color: #fff; letter-spacing: -.02em; position: relative; margin: 0; }
.enc-news p { margin-top: 8px; color: rgba(255,255,255,.4); font-size: .92rem; position: relative; }
.enc-news-form { margin-top: 28px; display: flex; max-width: 420px; margin-left: auto; margin-right: auto; position: relative; }
.enc-news-form input { flex: 1; padding: 14px 20px; border: 1px solid rgba(255,255,255,.1); border-right: none; border-radius: 8px 0 0 8px; background: rgba(255,255,255,.04); color: #fff; font-size: .88rem; outline: none; }
.enc-news-form input::placeholder { color: rgba(255,255,255,.25); }
.enc-news-form input:focus { border-color: var(--enc-orange); }
.enc-news-form button { padding: 14px 24px; background: var(--enc-orange); color: #fff; border: none; border-radius: 0 8px 8px 0; font-weight: 700; font-size: .85rem; cursor: pointer; transition: background .2s; white-space: nowrap; }
.enc-news-form button:hover { background: var(--enc-orange-hot); }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .enc-hdr-nav { display: none; }
  .enc-search { display: none; }
  .enc-hdr-logo img { height: 30px; }

  .enc-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .enc-hero-content p { margin-left: auto; margin-right: auto; }
  .enc-hero-ctas { justify-content: center; }
  .enc-hero-tag { margin-left: auto; margin-right: auto; }
  .enc-hero-showcase { display: none; }
  .enc-hero { min-height: 420px; }

  .enc-cats-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .enc-cats-grid .enc-cat:first-child { grid-row: auto; }

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

  .enc-svc-overlay { background: linear-gradient(180deg, rgba(10,10,9,.9) 0%, rgba(10,10,9,.7) 100%); }
  .enc-svc-content { max-width: 100%; }

  .enc-reviews { grid-template-columns: 1fr; }

  .enc-sec-head { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (max 640px)
   ══════════════════════════════════════ */
@media (max-width: 640px) {
  .enc-w { padding: 0 16px; }
  .enc-sec { padding: 48px 0; }

  .enc-hero { min-height: 360px; }
  .enc-hero h1 { font-size: 1.7rem; }
  .enc-hero-content p { font-size: .9rem; }
  .enc-hero-ctas { flex-direction: column; align-items: stretch; }
  .enc-btn { justify-content: center; padding: 14px 20px; }

  .enc-usp-row { flex-direction: column; gap: 12px; align-items: flex-start; }

  .enc-cats-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }

  .enc-prods { grid-template-columns: 1fr 1fr; gap: 10px; }
  .enc-prod-body { padding: 12px 14px 14px; }
  .enc-prod-name { font-size: .8rem; min-height: auto; }
  .enc-now { font-size: 1rem; }
  .enc-prod-cart { font-size: .76rem; padding: 8px; }
  .enc-prod-img { padding: 10px; }

  .enc-svc { min-height: auto; }
  .enc-svc-content { padding: 40px 0; }
  .enc-svc h2 { font-size: 1.3rem; }
  .enc-svc-stats { gap: 20px; flex-wrap: wrap; }
  .enc-svc-num { font-size: 1.4rem; }

  .enc-brand-chip { padding: 10px 20px; font-size: .8rem; }

  .enc-review { padding: 20px; }

  .enc-news { padding: 40px 20px; border-radius: 10px; }
  .enc-news-form { flex-direction: column; gap: 8px; }
  .enc-news-form input { border-radius: 8px; border-right: 1px solid rgba(255,255,255,.1); }
  .enc-news-form button { border-radius: 8px; padding: 14px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 380px)
   ══════════════════════════════════════ */
@media (max-width: 380px) {
  .enc-hero h1 { font-size: 1.4rem; }
  .enc-prods { grid-template-columns: 1fr; }
  .enc-svc-stats { flex-direction: column; gap: 16px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
