:root {
  --ink: #102d5d;
  --muted: #5f7597;
  --line: #d5e2f3;
  --paper: #f4f8ff;
  --brand: #165bd4;
  --brand-2: #0b4fc9;
  --warm: #e3a34b;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.store-shell {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  background:
    radial-gradient(circle at 88% 6%, rgba(102, 164, 238, 0.2), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.store-shell header.site-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(5vw, 24px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid #d7e4f4;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(29, 78, 145, 0.06);
}
.brand {
  font-weight: 800;
  font-size: 21px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
nav.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
nav.site-nav a {
  color: #526b91;
  font-size: 15px;
}
nav.site-nav a:hover,
nav.site-nav a.is-active { color: #1458d8; }

main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 24px;
  min-height: calc(100vh - 150px);
}

footer.site-footer {
  text-align: center;
  color: #6b7f9e;
  padding: 30px;
  border-top: 1px solid rgba(213, 226, 243, 0.8);
}

.hero {
  background: linear-gradient(135deg, #e7f1ff, #f8fbff 55%, #eaf3ff);
  border: 1px solid #d5e3f5;
  border-radius: 28px;
  padding: 64px;
  margin-bottom: 42px;
  box-shadow: 0 24px 70px rgba(40, 95, 165, 0.1);
}
.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  max-width: 800px;
  line-height: 1;
  margin: 0 0 20px;
  color: var(--ink);
}
.hero p { font-size: 19px; color: var(--muted); margin: 0; }

.badge {
  display: inline-block;
  background: #e7f1ff;
  color: #1458d8;
  border: 1px solid #c8dcf8;
  border-radius: 99px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.notice {
  padding: 14px 18px;
  border-radius: 10px;
  background: #fff8e9;
  border: 1px solid #f0d59d;
  color: #8a5a14;
  margin: 16px 0 0;
  max-width: 720px;
  line-height: 1.7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.card, .panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 55px rgba(45, 94, 157, 0.1);
}
.card:hover {
  border-color: #a9c7ef;
  box-shadow: 0 22px 65px rgba(45, 94, 157, 0.14);
}

.product-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  background: linear-gradient(145deg, #edf5ff, #fff);
  margin-bottom: 16px;
}
.product-photo.placeholder {
  display: grid;
  place-items: center;
  color: #7ea0cc;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 20px;
}
.card h2, .pdp-buy h1 {
  margin: 10px 0 8px;
  font-size: 22px;
  color: var(--ink);
}
.muted { color: var(--muted); line-height: 1.7; }
.price {
  font-size: 25px;
  font-weight: 800;
  color: #0b55ca;
  margin: 8px 0 14px;
}

.btn, button.btn, input[type="submit"] {
  display: inline-block;
  border: 0;
  background: linear-gradient(135deg, #2c75ee, #0b4fc9);
  color: #fff;
  border-radius: 9px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 10px 25px rgba(26, 91, 210, 0.18);
}
.btn:hover, button.btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn.secondary {
  background: #edf4ff;
  color: #16417b;
  border: 1px solid #cbdcf3;
  box-shadow: none;
}
.btn.full, shopify-accelerated-checkout { width: 100%; }
.btn.full { display: block; }

.pdp {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}
.pdp-gallery, .pdp-buy {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 55px rgba(45, 94, 157, 0.1);
}
.pdp-gallery .product-photo {
  aspect-ratio: 1;
  margin: 0;
}
.pdp-buy { position: sticky; top: 92px; }
.feature-list {
  margin: 16px 0;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.9;
}
.buy-form { display: grid; gap: 12px; margin-top: 8px; }
.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.qty-row label { font-weight: 700; }
.qty-row input {
  width: 88px;
  padding: 10px;
  border: 1px solid #c9d9ed;
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
}
.shopify-payment-button { margin-top: 8px; }

#consult-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  border: 0;
  background: linear-gradient(135deg, #2c75ee, #0b4fc9);
  color: #fff;
  border-radius: 999px;
  padding: 15px 20px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 14px 38px rgba(26, 91, 210, 0.28);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
#consult-launcher span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-right: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
#consult-window {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 81;
  width: min(410px, calc(100vw - 32px));
  height: min(680px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
  background: #f7faff;
  border: 1px solid #d5e2f3;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(29, 78, 145, 0.2);
  overflow: hidden;
}
#consult-window[hidden] { display: none; }
.chat-widget-head {
  height: 64px;
  flex: 0 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: linear-gradient(135deg, #195dcc, #103b8f);
  color: #fff;
}
.chat-widget-head strong {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
}
.chat-widget-head i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #74ffc0;
  box-shadow: 0 0 12px #74ffc0;
}
.chat-widget-head button {
  border: 0;
  padding: 4px 9px;
  background: transparent;
  color: #fff;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}
#consult-frame {
  width: 100%;
  flex: 1;
  min-height: 0;
  border: 0;
  background: #f7faff;
}
body.chat-embed {
  margin: 0;
  min-height: 100vh;
  background: #f7faff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}
body.chat-embed .flash { margin: 12px 16px 0; }
.chat-login-required {
  text-align: center;
  padding: 58px 22px 36px;
}
.chat-login-required h2 {
  margin: 12px 0 8px;
  font-size: 28px;
  color: #102d5d;
}
.chat-login-required p {
  color: #66718a;
  line-height: 1.7;
  margin: 0 0 22px;
}
.chat-login-icon {
  width: 58px;
  height: 58px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(29, 78, 145, 0.08);
  font-size: 27px;
  color: #1458d8;
}
.consult-cta {
  display: inline-flex;
  justify-content: center;
  min-width: 180px;
  padding: 12px 28px;
}
.consult-register {
  margin: 16px 0 0;
  font-size: 14px;
}
.consult-register a {
  color: #3b2f8a;
  text-decoration: underline;
}
.consult-panel {
  max-width: 720px;
  margin: 0 auto;
  background: #f7faff;
  border: 1px solid #d5e2f3;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(29, 78, 145, 0.1);
}
.consult-panel-body { padding: 18px 18px 22px; }
.chat-layout h1 {
  margin: 10px 0 8px;
  font-size: 28px;
  color: #102d5d;
}
.chat-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 99px;
  background: #e7f1ff;
  color: #1458d8;
  font-size: 12px;
  font-weight: 800;
}
.chat-note {
  margin: 0 0 16px;
  color: #6b7f9e;
  font-size: 14px;
  line-height: 1.7;
}
.chat-contact-qr {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin: 0 0 8px;
}
.chat-contact-qr a {
  display: block;
  width: 88px;
  height: 88px;
  padding: 4px;
  background: #fff;
  border: 1px solid #d5e2f3;
  border-radius: 8px;
}
.chat-contact-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 335px;
  overflow-y: auto;
  padding: 8px 4px 20px;
}
.chat-bubble {
  max-width: 78%;
  padding: 14px 16px;
  border-radius: 18px;
  background: #eef4fc;
  border: 1px solid #d5e2f3;
  color: #173764;
  align-self: flex-start;
}
.chat-bubble.admin {
  background: #e2efff;
  border-color: #bdd6f7;
  border-bottom-left-radius: 5px;
}
.chat-bubble.visitor {
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}
.chat-bubble strong { display: block; margin-bottom: 6px; }
.chat-bubble small {
  display: block;
  margin-top: 8px;
  color: #6b7f9e;
}
.chat-media {
  display: block;
  max-width: 100%;
  max-height: 280px;
  margin-top: 10px;
  border-radius: 12px;
  object-fit: contain;
}
.chat-compose label {
  display: block;
  margin: 12px 0 0;
  font-weight: 700;
  color: #102d5d;
}
.chat-compose textarea {
  width: 100%;
  min-height: 90px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #c9d9ed;
  border-radius: 12px;
  background: #fff;
  resize: vertical;
}
.file-box {
  display: block;
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid #c9d9ed;
  border-radius: 12px;
  background: #fff;
}
.compose-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: #6b7f9e;
  font-size: 12px;
}
body.chat-embed .chat-thread { max-height: none; overflow: visible; }
body.chat-embed .chat-layout,
body.chat-embed .chat-login-required { padding: 18px 16px 24px; }

@media (min-width: 901px) {
  body.has-consult main {
    max-width: calc(100% - 430px);
    margin-left: max(5vw, 24px);
    margin-right: 430px;
  }
  body.has-consult #consult-launcher { display: none; }
  body.has-consult #consult-window,
  body.has-consult #consult-window[hidden] {
    display: flex;
    right: 24px;
    top: 96px;
    bottom: 24px;
    width: min(390px, 30vw);
    height: auto;
    border-radius: 20px;
  }
  body.has-consult #consult-close { display: none; }
}
@media (min-width: 651px) and (max-width: 900px) {
  body.has-consult main {
    max-width: calc(100% - 350px);
    margin-left: 16px;
    margin-right: 334px;
    padding: 28px 8px;
  }
  body.has-consult #consult-launcher { display: none; }
  body.has-consult #consult-window,
  body.has-consult #consult-window[hidden] {
    display: flex;
    right: 12px;
    top: 90px;
    bottom: 16px;
    width: 318px;
    height: auto;
    border-radius: 18px;
  }
  body.has-consult #consult-close { display: none; }
}

.panel h1 { margin-top: 0; }
form.auth label, .support-form label {
  display: block;
  margin: 14px 0;
  font-weight: 600;
}
form.auth input, form.auth textarea, .support-form input, .support-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #c9d9ed;
  border-radius: 8px;
  background: #fbfdff;
  margin-top: 6px;
}
.auth-links { color: var(--muted); }

.cart-table { width: 100%; border-collapse: collapse; background: #fff; }
.cart-table th, .cart-table td {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}
.cart-table th { background: #f2f7ff; color: #315985; }
.cart-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

.purchase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.78fr);
  gap: 24px;
  align-items: start;
}
.purchase-page .page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.purchase-page .eyebrow {
  color: #1458d8;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 850;
}
.purchase-page .page-head h1 {
  margin: 10px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -.05em;
}
.purchase-page .page-head p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.purchase-page .catalog,
.purchase-page .side-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 55px rgba(50,97,157,.08);
}
.purchase-page .catalog { padding: 16px; }
.purchase-page .product {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 16px;
  border: 1px solid #dbe7f5;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f6faff);
}
.purchase-page .product + .product { margin-top: 14px; }
.purchase-page .product img,
.purchase-page .product .product-photo {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 15px;
  background: #e8f1ff;
  margin: 0;
  aspect-ratio: auto;
}
.purchase-page .product h2 { margin: 0; font-size: 25px; }
.purchase-page .product p {
  margin: 9px 0 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.purchase-page .stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e7f1ff;
  color: #1458d8;
  font-size: 12px;
  font-weight: 750;
}
.purchase-page .stock i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e79ef;
}
.purchase-page .product-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}
.purchase-page .product-actions .price {
  margin: 0;
  color: #0b4fc9;
  font-size: 25px;
}
.purchase-add { display: grid; gap: 10px; justify-items: end; }
.purchase-page .qty {
  display: flex;
  align-items: center;
  height: 42px;
  border: 1px solid #c8d9f0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.purchase-page .qty button,
.purchase-page .qty output,
.purchase-page .qty input {
  width: 42px;
  height: 100%;
  border: 0;
  background: transparent;
  text-align: center;
  font: inherit;
  color: var(--ink);
}
.purchase-page .qty button { font-size: 23px; cursor: pointer; }
.purchase-page .qty output {
  display: grid;
  place-items: center;
  width: 48px;
  border-inline: 1px solid #dbe7f5;
  font-size: 16px;
  font-weight: 700;
}
.purchase-page .qty button:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.purchase-page .product.is-in-cart {
  border-color: #8db0ed;
  box-shadow: 0 0 0 1px rgba(44,117,238,.12);
}
.purchase-page .add.add-remove {
  background: #edf4ff;
  color: #16417b;
  box-shadow: none;
  border: 1px solid #cbdcf3;
}
.summary-items { display: grid; gap: 14px; margin: 0 0 8px; }
.summary-item {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.summary-item-head,
.summary-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.summary-item-head span { color: var(--ink); font-weight: 700; }
.summary-item-head strong { color: #0b4fc9; }
.summary-item-actions { margin-top: 10px; }
.qty-compact { height: 36px; }
.qty-compact button,
.qty-compact output { width: 36px; font-size: 18px; }
.purchase-page .add,
.purchase-page .checkout {
  height: 42px;
  padding: 0 23px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #2c75ee, #0b4fc9);
  font-weight: 800;
  cursor: pointer;
}
.purchase-page .checkout {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  font-size: 16px;
}
.purchase-page .add:disabled,
.purchase-page .checkout:disabled {
  cursor: not-allowed;
  opacity: .45;
}
.purchase-side { position: sticky; top: 92px; }
.purchase-page .side-card { padding: 24px; }
.purchase-page .side-card + .side-card { margin-top: 18px; }
.purchase-page .side-card h2 { margin: 0 0 18px; font-size: 23px; }
.summary-empty {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border-radius: 15px;
  background: #f4f8ff;
  color: var(--muted);
  font-size: 14px;
}
.summary-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f1ff;
  color: #1458d8;
  font-size: 20px;
  flex: 0 0 auto;
}
.purchase-page .line.total strong { color: #0b4fc9; font-size: 26px; }
.remove-line { display: inline; margin-left: 8px; }
.remove-line button {
  border: 0;
  background: none;
  color: #7a8eab;
  cursor: pointer;
  font-size: 12px;
  padding: 0;
}
.purchase-page .methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.purchase-page .method {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid #c9dbf2;
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}
.purchase-page .method.active {
  border-color: #2c75ee;
  box-shadow: 0 0 0 2px rgba(44,117,238,.14);
}
.purchase-page .method.blank {
  cursor: default;
  background: linear-gradient(145deg, #fff, #f8fbff);
}
.purchase-page .method .radio {
  position: absolute;
  right: 13px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border: 1px solid #cbd9ec;
  border-radius: 50%;
}
.purchase-page .method.active .radio { border: 5px solid #2c75ee; }
.pay-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 24px;
  font-weight: 850;
}
.pay-icon.alipay { background: #1d83ea; }
.pay-icon.wxpay { background: #07c160; }
.payment-note { margin-top: 14px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.purchase-page .status { min-height: 20px; margin-top: 12px; color: #1458d8; font-size: 13px; font-weight: 700; }

@media (max-width: 900px) {
  .pdp, .purchase-layout { grid-template-columns: 1fr; }
  .pdp-buy { position: static; }
  .purchase-side { position: static; }
  .purchase-page .page-head { display: block; }
  .purchase-page .page-head p { margin-top: 12px; }
}
@media (max-width: 620px) {
  .purchase-page .product { grid-template-columns: 105px minmax(0, 1fr); gap: 14px; }
  .purchase-page .product img,
  .purchase-page .product .product-photo { width: 105px; height: 105px; }
  .purchase-page .product-actions { grid-column: 1 / -1; justify-items: stretch; }
  .purchase-add { justify-items: stretch; }
  .purchase-page .product h2 { font-size: 20px; }
  .purchase-page .methods { grid-template-columns: 1fr; }
}
.summary-lines { display: grid; gap: 12px; margin: 18px 0; }
.line { display: flex; justify-content: space-between; color: #36557f; }
.line.total {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .pdp, .purchase-layout { grid-template-columns: 1fr; }
  .pdp-buy { position: static; }
  .purchase-item { grid-template-columns: 88px 1fr; }
  .purchase-item .actions { grid-column: 1 / -1; }
}
.pay-methods { display: grid; gap: 10px; margin-bottom: 16px; }
.pay-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfdff;
  font-weight: 700;
  margin: 0 !important;
}
.pay-option input { width: auto; margin: 0; }

.flash {
  padding: 12px 16px;
  border-radius: 10px;
  margin: 0 0 18px;
  font-weight: 700;
}
.admin-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  background: #edf5ff;
}
.admin-thumb.placeholder {
  display: grid;
  place-items: center;
  color: #7ea0cc;
  font-size: 12px;
}
.support-form input[type="file"] {
  padding: 8px;
  background: #fff;
}
.support-form small.muted { display: block; margin-top: 6px; font-weight: 500; }
.flash.err { background: #fff1f2; color: #b91c1c; border: 1px solid #fecdd3; }

@media (max-width: 650px) {
  .store-shell header.site-header {
    height: auto;
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  nav.site-nav {
    overflow: auto;
    width: 100%;
    padding-bottom: 4px;
    gap: 16px;
  }
  .hero { padding: 36px 24px; }
  main { padding: 28px 16px; }
  #consult-launcher { right: 16px; bottom: 16px; }
  #consult-window {
    right: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    border-radius: 18px;
  }
  .chat-widget-head { height: 58px; flex-basis: 58px; }
  .chat-contact-qr a { width: 74px; height: 74px; }
  .chat-bubble { max-width: 92%; }
}
