/* Premium Acrylics 415 — main stylesheet */

:root {
  --bg: #0f1115;
  --bg-alt: #161922;
  --surface: #1b1f29;
  --surface-2: #222633;
  --border: #2c3140;
  --text: #eef1f6;
  --text-dim: #9aa4b2;
  --text-faint: #5b6472;
  --accent: #7dd3fc;
  --accent-strong: #38bdf8;
  --accent-text: #06202b;
  --sale: #f87171;
  --success: #4ade80;
  --radius: 10px;
  --radius-lg: 16px;
  --max-width: 1240px;
  --header-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(15, 17, 21, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}
.brand .mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, #a78bfa 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b0d11;
  font-weight: 800;
  font-size: 0.85rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-size: 0.92rem;
  color: var(--text-dim);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--text);
  border-color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}
.icon-btn:hover { border-color: var(--accent); }

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent-strong);
  color: var(--accent-text);
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  width: 38px;
  height: 38px;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: linear-gradient(90deg, #0b3a4a, #113a2e);
  color: #d7fbe8;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}
.announce strong { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.15s, border-color 0.15s;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--accent-text);
}
.btn-primary:hover { filter: brightness(1.06); }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--accent); }

.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 15% 20%, rgba(125, 211, 252, 0.12), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(167, 139, 250, 0.10), transparent 40%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(125, 211, 252, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.hero p.lead {
  color: var(--text-dim);
  font-size: 1.08rem;
  max-width: 46ch;
  margin: 0 0 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dot.active { background: #fff; transform: scale(1.2); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
  color: var(--text-dim);
  font-size: 0.85rem;
}
.trust-row span { display: flex; align-items: center; gap: 8px; }
.trust-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---------- Section headers ---------- */
.section { padding: 56px 0; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: 1.5rem; margin: 0; }
.section-head p { color: var(--text-dim); margin: 4px 0 0; font-size: 0.95rem; }
.section-head a.view-all { color: var(--accent); font-size: 0.9rem; font-weight: 600; }

/* ---------- Category cards ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.category-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: border-color 0.15s, transform 0.15s;
}
.category-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.category-card .cat-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(125, 211, 252, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; font-size: 1.3rem;
}
.category-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.category-card p { margin: 0; color: var(--text-dim); font-size: 0.88rem; }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
}
.product-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.product-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-alt);
  overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--sale);
  color: #200606;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}
.product-name {
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0;
  min-height: 2.5em;
}
.product-desc {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin: 0;
  flex: 1;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.price { font-weight: 700; font-size: 1.05rem; }
.price-compare {
  color: var(--text-faint);
  text-decoration: line-through;
  font-size: 0.85rem;
  margin-right: auto;
}
.product-actions { margin-top: 10px; }

.btn-card-add {
  padding: 7px 14px;
  font-size: 0.82rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------- Filters ---------- */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.filter-chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 600;
}
.filter-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-text);
}
.search-input {
  margin-left: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--text);
  font-size: 0.85rem;
  min-width: 220px;
}
.search-input::placeholder { color: var(--text-faint); }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
}

/* ---------- Product detail ---------- */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
}
.pdp-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 1 / 1;
}
.pdp-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pdp-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--surface);
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumb:hover { opacity: 1; }
.pdp-thumb.active { opacity: 1; border-color: var(--accent); }
.breadcrumbs {
  color: var(--text-faint);
  font-size: 0.82rem;
  margin-bottom: 18px;
}
.breadcrumbs a { color: var(--text-dim); }
.breadcrumbs a:hover { color: var(--accent); }
.pdp-info h1 { font-size: 1.7rem; margin: 0 0 10px; }
.pdp-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.pdp-price { font-size: 1.5rem; font-weight: 800; }
.pdp-desc { color: var(--text-dim); margin-bottom: 22px; }
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.spec-list li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dim);
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border);
}
.spec-list li::before { content: "✓"; color: var(--accent); font-weight: 700; }

.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.qty-control button {
  background: var(--surface);
  border: none;
  color: var(--text);
  width: 36px;
  height: 36px;
  font-size: 1rem;
}
.qty-control input {
  width: 44px;
  text-align: center;
  background: var(--bg);
  border: none;
  color: var(--text);
  height: 36px;
  font-size: 0.95rem;
}
.pdp-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--success);
  margin-bottom: 14px;
}
.stock-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }

/* ---------- Cart drawer ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 11, 0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.cart-header h2 { margin: 0; font-size: 1.1rem; }
.cart-close {
  background: none; border: none; color: var(--text-dim); font-size: 1.3rem; line-height: 1;
}

.cart-items { flex: 1; overflow-y: auto; padding: 12px 20px; }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item img {
  width: 64px; height: 64px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border);
}
.cart-item-name { font-size: 0.9rem; font-weight: 600; margin: 0 0 4px; }
.cart-item-price { font-size: 0.82rem; color: var(--text-dim); }
.cart-item-remove {
  background: none; border: none; color: var(--text-faint); font-size: 0.78rem; text-decoration: underline;
  padding: 0; margin-top: 6px;
}
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-item-qty button {
  width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--border); background: var(--surface); color: var(--text); font-size: 0.8rem;
}
.cart-item-total { font-weight: 700; font-size: 0.9rem; white-space: nowrap; }

.cart-footer { padding: 18px 20px; border-top: 1px solid var(--border); }
.cart-subtotal-row {
  display: flex; justify-content: space-between; margin-bottom: 14px; font-weight: 600;
}
.cart-note { font-size: 0.78rem; color: var(--text-faint); margin: 10px 0 0; text-align: center; }

.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-dim); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
  margin-top: 40px;
  background: var(--bg-alt);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); margin: 0 0 14px; }
.footer-col a, .footer-col p { display: block; color: var(--text-dim); font-size: 0.88rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }
.reviews-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.reviews-cta h2 { margin: 0 0 6px; }
.reviews-cta p { margin: 0; color: var(--text-dim); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-stars { color: #f5a623; font-size: 0.95rem; letter-spacing: 2px; }
.review-quote { font-weight: 600; font-size: 0.95rem; margin: 0; }
.review-meta { color: var(--text-dim); font-size: 0.82rem; margin: 0; }
.review-source { color: var(--text-faint); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }

.reviews-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.social-row a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Generic content pages ---------- */
.content-page { padding: 56px 0 80px; max-width: 820px; margin: 0 auto; }
.content-page h1 { font-size: 2.1rem; margin-bottom: 8px; }
.content-page .subtitle { color: var(--text-dim); margin-bottom: 40px; }
.content-page h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.content-page p { color: var(--text-dim); margin-bottom: 14px; }
.content-page ul { color: var(--text-dim); padding-left: 20px; }
.content-page li { margin-bottom: 8px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
}
.faq-question .chev { color: var(--accent); transition: transform 0.2s; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-answer {
  color: var(--text-dim);
  font-size: 0.92rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-top: 12px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.contact-card h3 { margin: 0 0 6px; font-size: 1rem; }
.contact-card p { color: var(--text-dim); margin: 0 0 14px; font-size: 0.9rem; }

.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 0.85rem; margin-bottom: 6px; color: var(--text-dim); }
.form-field input, .form-field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); }

.delivery-options { display: flex; flex-direction: column; gap: 10px; }
.delivery-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  cursor: pointer;
  font-size: 0.9rem;
  margin-bottom: 0;
}
.delivery-option:has(input:checked) { border-color: var(--accent); }
.delivery-option input { width: auto; }

/* ---------- Checkout success/cancel ---------- */
.status-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 90px 20px;
  text-align: center;
}
.status-icon {
  width: 68px; height: 68px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.8rem;
}
.status-icon.success { background: rgba(74, 222, 128, 0.15); color: var(--success); }
.status-icon.cancel { background: rgba(248, 113, 113, 0.15); color: var(--sale); }
.status-page h1 { font-size: 1.6rem; margin-bottom: 10px; }
.status-page p { color: var(--text-dim); margin-bottom: 28px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .pdp { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav.mobile-open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 14px;
    z-index: 99;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .search-input { min-width: 140px; }
}
