/* ============================================================
   CRAFT — craft.amezay.com — Product Portal (v2.0)
   Amazon-style product-focused storefront.
   Design tokens + full layout. US English only.
   ============================================================ */

:root {
  color-scheme: dark;
  --bg: #08090f;
  --bg2: #0c0e17;
  --panel: #10131f;
  --panel2: #141827;
  --card: #0e1120;
  --border: rgba(255,255,255,.07);
  --border2: rgba(255,255,255,.12);
  --text: #f2f4fc;
  --muted: #9aa3c0;
  --faint: #6b7390;
  --accent: #4f8fff;
  --accent2: #7c3aed;
  --accent3: #06b6d4;
  --green: #2ea043;
  --amber: #d29922;
  --rose: #f85149;
  --grad: linear-gradient(120deg, #4f8fff, #7c3aed 55%, #06b6d4);
  --grad-soft: linear-gradient(120deg, rgba(79,143,255,.16), rgba(124,58,237,.14) 55%, rgba(6,182,212,.14));
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;
  --shadow: 0 20px 50px rgba(0,0,0,.45);
  --shadow-sm: 0 8px 24px rgba(0,0,0,.35);
  --font: 'Outfit', -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
.hidden { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(124,58,237,.14), transparent 60%),
    radial-gradient(900px 460px at -10% 20%, rgba(79,143,255,.12), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ---------- grad text ---------- */
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- MASTHEAD ---------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(8,9,15,.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.masthead-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand svg { filter: drop-shadow(0 4px 14px rgba(124,58,237,.35)); }
.brand-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2.5px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.search {
  flex: 1;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  color: var(--faint);
}
.search:focus-within {
  border-color: rgba(79,143,255,.55);
  box-shadow: 0 0 0 4px rgba(79,143,255,.14);
  background: var(--panel2);
  color: var(--text);
}
.search input {
  flex: 1;
  background: none;
  border: 0;
  outline: 0;
  color: var(--text);
  font-size: 15px;
  min-width: 0;
}
.search input::placeholder { color: var(--faint); }
.search-btn {
  background: var(--grad);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: transform .15s, filter .15s;
}
.search-btn:hover { transform: translateY(-1px); filter: brightness(1.1); }

.masthead-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.iconlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 12px;
  transition: color .15s, background .15s;
}
.iconlink:hover { color: var(--text); background: var(--panel); }

.cartbtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: 12px;
  color: var(--text);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  transition: border-color .15s, transform .15s;
}
.cartbtn:hover { border-color: rgba(79,143,255,.55); transform: translateY(-1px); }
.cartbadge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(124,58,237,.5);
}

/* ---------- CATEGORY STRIP ---------- */
.catstrip {
  position: sticky;
  top: 65px;
  z-index: 50;
  background: rgba(8,9,15,.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.catstrip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 9px 28px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.catstrip-inner::-webkit-scrollbar { display: none; }
.pill {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .2px;
  transition: all .18s;
  background: transparent;
}
.pill:hover { color: var(--text); border-color: var(--border2); background: var(--panel); }
.pill.active {
  color: #fff;
  border-color: transparent;
  background: var(--grad);
  box-shadow: 0 6px 18px rgba(124,58,237,.4);
}

/* ---------- STAGE ---------- */
.stage { padding: 56px 0 34px; }
.stage .container { max-width: 820px; text-align: center; }
.stagetag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent3);
  background: rgba(6,182,212,.1);
  border: 1px solid rgba(6,182,212,.28);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
}
.stage h1 {
  font-size: clamp(34px, 5.6vw, 62px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.04;
  margin-bottom: 18px;
}
.stage p { color: var(--muted); font-size: 17px; max-width: 640px; margin: 0 auto; }

/* ---------- SECTION HEADS ---------- */
.cats, .subs, .products { padding: 28px 0 44px; }
.sec-head { margin-bottom: 26px; }
.sec-head.row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.sec-head h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; letter-spacing: -1px; }
.count { color: var(--faint); font-size: 14px; font-weight: 600; white-space: nowrap; }

/* ---------- CATEGORY TILES ---------- */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), border-color .25s, box-shadow .25s;
  cursor: pointer;
}
.cat-tile:hover {
  transform: translateY(-5px);
  border-color: var(--border2);
  box-shadow: var(--shadow-sm);
}
.cat-tile .bg {
  position: absolute;
  inset: 0;
  opacity: .5;
  transition: opacity .3s, transform .4s;
}
.cat-tile:hover .bg { opacity: .8; transform: scale(1.05); }
.cat-tile > * { position: relative; z-index: 1; }
.cat-tile .ic {
  font-size: 34px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.4));
}
.cat-tile h3 { font-size: 19px; font-weight: 800; letter-spacing: -.4px; }
.cat-tile .subs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.cat-tile .sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
}
.cat-tile .arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 15px;
  color: var(--faint);
  transition: transform .25s, color .2s;
}
.cat-tile:hover .arrow { transform: translateX(4px); color: var(--text); }

/* ---------- SUB-CATEGORY CHIPS ---------- */
.subs { padding-top: 4px; }
.subchips { display: flex; flex-wrap: wrap; gap: 8px; }
.subchips .pill small { font-weight: 600; opacity: .65; margin-left: 4px; }

/* ---------- PRODUCT GRID ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), border-color .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(79,143,255,.4);
  box-shadow: 0 22px 48px rgba(0,0,0,.5);
}
.card-media {
  position: relative;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-media .emoji {
  font-size: 64px;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.4));
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.card:hover .card-media .emoji { transform: scale(1.12) rotate(-3deg); }
.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(8,9,15,.6);
  border: 1px solid var(--border2);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 4px 10px;
}
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #0b0d16;
  background: var(--amber);
  border-radius: 8px;
  padding: 4px 9px;
}
.card-badge.sale { background: var(--rose); color: #fff; }
.card-badge.new { background: var(--green); color: #fff; }
.card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.card-sub { font-size: 12px; font-weight: 600; color: var(--accent3); }
.card h3 { font-size: 16.5px; font-weight: 700; letter-spacing: -.2px; line-height: 1.3; }
.card p { font-size: 13.5px; color: var(--muted); flex: 1; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.rating { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); font-weight: 600; }
.rating .stars { color: var(--amber); letter-spacing: 1px; font-size: 12px; }
.price { font-size: 18px; font-weight: 800; letter-spacing: -.3px; }
.price .cur { font-size: 12px; font-weight: 600; color: var(--faint); }

/* stock line on cards */
.card-stock { display: flex; align-items: center; margin-top: 2px; }
.stock { font-size: 12px; font-weight: 600; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.stock.ok i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(46,160,67,.7); display: inline-block; }
.stock.bad { color: var(--rose); }

/* card actions: qty selector + add button */
.card-actions { display: flex; gap: 8px; margin-top: 8px; }
.card-actions .qty {
  display: inline-flex;
  align-items: center;
  background: var(--panel2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 2px;
  flex-shrink: 0;
  max-height: 46px;
}
.card-actions .qty button {
  width: 30px;
  height: 40px;
  border: 0;
  background: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  transition: background .15s;
}
.card-actions .qty button:hover:not(:disabled) { background: var(--border); }
.card-actions .qty button:disabled { opacity: .3; cursor: not-allowed; }
.card-actions .qty span { min-width: 26px; text-align: center; font-size: 14px; font-weight: 700; }
.card-actions .qty input {
  width: 52px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0;
}
.card-actions .qty input::-webkit-outer-spin-button,
.card-actions .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.card-actions .qty input[type=number] { -moz-appearance: textfield; }
.card-actions .qty.disabled { opacity: .55; }
.card-actions .addbtn { flex: 1; margin-top: 0; max-height: 46px; }
.card-actions .addbtn:disabled { opacity: .45; cursor: not-allowed; background: var(--panel); border-color: var(--border); }
.addbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 6px;
  padding: 11px;
  border-radius: 12px;
  border: 1px solid rgba(79,143,255,.4);
  background: rgba(79,143,255,.1);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  transition: all .2s;
}
.addbtn:hover { background: var(--grad); border-color: transparent; box-shadow: 0 8px 22px rgba(124,58,237,.4); transform: translateY(-1px); }
.addbtn.added {
  background: rgba(46,160,67,.16);
  border-color: rgba(46,160,67,.5);
  color: var(--green);
}

.empty { text-align: center; padding: 60px 0; }
.empty-ic { font-size: 42px; margin-bottom: 14px; }
.empty h3 { font-size: 20px; margin-bottom: 6px; }
.empty p { color: var(--muted); }

/* ---------- DRAWER ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,5,9,.6);
  backdrop-filter: blur(4px);
  z-index: 80;
  opacity: 0;
  animation: fadeIn .25s forwards;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(480px, 100vw);
  background: var(--bg2);
  border-left: 1px solid var(--border2);
  z-index: 90;
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 80px rgba(0,0,0,.5);
  animation: slideIn .32s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
}
.drawer-head h3 { font-size: 18px; font-weight: 800; }
.drawer-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  font-size: 15px;
  transition: all .15s;
}
.drawer-close:hover { color: var(--text); border-color: var(--border2); }
.drawer-body { flex: 1; overflow-y: auto; padding: 18px 22px; }

.quote-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.quote-empty { text-align: center; color: var(--faint); font-size: 15px; line-height: 1.6; padding: 30px 0; }
.quote-empty span { font-size: 13px; display: block; margin-top: 4px; }
.quote-item {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px;
}
.q-emoji {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.q-info { flex: 1; min-width: 0; }
.q-name { font-size: 14.5px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.q-price { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.qtools { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.qty {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--panel2);
  border: 1px solid var(--border2);
  border-radius: 999px;
}
.qty button {
  width: 28px;
  height: 28px;
  border: 0;
  background: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  transition: background .15s;
}
.qty button:hover:not(:disabled) { background: var(--border); }
.qty button:disabled { opacity: .3; cursor: not-allowed; }
.qty input {
  width: 44px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0;
  min-width: 0;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty input[type=number] { -moz-appearance: textfield; }
.q-remove { width: 30px; height: 30px; border-radius: 10px; border: 1px solid var(--border); background: transparent; color: var(--faint); font-size: 14px; }
.q-remove:hover { color: var(--rose); border-color: rgba(248,81,73,.5); }

.drawer-subhead {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 18px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ---------- FORM ---------- */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.field input, .field textarea {
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: 12px;
  color: var(--text);
  font-size: 14.5px;
  padding: 12px 14px;
  outline: 0;
  transition: border-color .15s, box-shadow .15s;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  border-color: rgba(79,143,255,.55);
  box-shadow: 0 0 0 4px rgba(79,143,255,.12);
}
.field input:read-only { color: var(--faint); font-weight: 700; }

/* ---------- PAYMENT ---------- */
.pay-note { font-size: 13.5px; color: var(--muted); margin-bottom: 12px; }
.iban {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: var(--r-md);
  padding: 14px;
}
.iban-label { font-size: 12px; font-weight: 700; color: var(--accent3); letter-spacing: .4px; }
.iban code {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 15px;
  letter-spacing: 1.2px;
  color: var(--text);
  word-break: break-all;
}
.mutedsm { font-size: 12px; color: var(--faint); margin-top: 10px; }

/* ---------- SUCCESS ---------- */
.success { text-align: center; padding: 24px 0; }
.success .check {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(46,160,67,.15);
  border: 2px solid var(--green);
  color: var(--green);
  font-size: 30px;
  display: flex; align-items: center; justify-content: center;
  animation: pop .4s cubic-bezier(.2,.8,.2,1);
}
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success h3 { font-size: 20px; margin-bottom: 6px; }
.success p { color: var(--muted); font-size: 14.5px; }

/* ---------- DRAWER FOOT ---------- */
.drawer-foot {
  border-top: 1px solid var(--border);
  padding: 16px 22px 20px;
  background: var(--bg2);
}
.drawer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
}
.drawer-total strong { font-size: 22px; color: var(--text); letter-spacing: -.5px; }
.footnote { font-size: 12px; color: var(--faint); text-align: center; margin-top: 10px; }

/* ---------- BTNS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 22px;
  border: 1px solid transparent;
  transition: all .2s;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 26px rgba(124,58,237,.35); }
.btn-primary:hover:not(:disabled) { transform: translateY(-1px); filter: brightness(1.1); box-shadow: 0 14px 32px rgba(124,58,237,.5); }
.btn-primary:disabled { opacity: .4; cursor: not-allowed; }
.btn-ghost { background: var(--panel); border-color: var(--border2); color: var(--text); }
.btn-ghost:hover { border-color: rgba(79,143,255,.5); }
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 10px; }
.btn-block { width: 100%; }

/* ---------- FOOTER ---------- */
.foot {
  border-top: 1px solid var(--border);
  padding: 34px 0 30px;
  margin-top: 30px;
  background: rgba(8,9,15,.6);
}
.footlinks { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; margin-bottom: 22px; }
.footlinks a { font-size: 13.5px; color: var(--muted); font-weight: 600; transition: color .15s; }
.footlinks a:hover { color: var(--text); }
.footbottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  color: var(--faint);
  font-size: 13px;
}
.version { color: var(--accent3); font-family: ui-monospace, monospace; font-size: 12px; }

/* ---------- MEDIA QUERIES ---------- */
@media (max-width: 1060px) {
  .cats-grid, .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .masthead-inner { flex-wrap: wrap; gap: 12px; padding: 12px 20px; }
  .search { order: 3; flex-basis: 100%; max-width: 100%; }
  .catstrip { top: 118px; }
  .cats-grid, .grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 20px; }
}
@media (max-width: 560px) {
  .cats-grid, .grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .catstrip-inner { padding: 9px 20px; }
}