/* ── Pages ────────────────────────────────────────────────── */
.page { display: none; flex-direction: column; min-height: 100dvh; }
.page.active { display: flex; }

.logo-my {
  font-family: var(--font-accent); font-weight: 400; font-size: 1.9rem; line-height: 1;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── User avatar + dropdown (nav, logged in) ── */
.nav-user { display: none; align-items: center; }
.nav-user.visible { display: flex; }
.user-menu { position: relative; }
.user-avatar-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal); color: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.75rem;
  transition: box-shadow 0.2s;
}
.user-avatar-btn:hover { box-shadow: 0 0 0 3px rgba(42,157,143,0.25); }
.user-dropdown {
  display: none; position: absolute; top: calc(100% + 10px); right: 0;
  background: white; border-radius: 14px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(42,157,143,0.1);
  padding: 8px; min-width: 180px; z-index: 200;
}
.user-dropdown.open { display: block; }
.user-dropdown-name {
  display: block; padding: 8px 12px 10px;
  font-size: 0.82rem; font-weight: 600; color: var(--text);
  border-bottom: 1px solid var(--cream-dark); margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dropdown-logout {
  width: 100%; padding: 9px 12px; background: none; border: none; border-radius: 8px;
  font-size: 0.85rem; color: var(--text-soft); cursor: pointer;
  text-align: left; font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.dropdown-logout:hover { background: rgba(239,68,68,0.07); color: #DC2626; }

/* ══════════════════════════════════════════════════
   LOGIN PAGE
══════════════════════════════════════════════════ */
#login-page {
  align-items: center; justify-content: center;
  height: 100dvh; overflow: hidden;
  padding: 72px 24px;
  background: linear-gradient(170deg, var(--warm-white) 0%, var(--cream) 50%, rgba(42,157,143,0.04) 100%);
  position: relative;
}
#login-page::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,157,143,0.06) 0%, transparent 70%);
  pointer-events: none;
}
#login-page::after {
  content: ''; position: absolute; bottom: -100px; left: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,128,90,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.login-card {
  width: 100%; max-width: 440px;
  background: white;
  border-radius: 24px; padding: 48px 40px;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(42,157,143,0.08);
  position: relative; z-index: 1;
  animation: fadeUp 0.6s ease-out;
}
.login-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(42,157,143,0.08); border: 1px solid rgba(42,157,143,0.15);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 24px;
  font-size: 0.78rem; font-weight: 500; color: var(--teal-dark);
}
.login-eyebrow .dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }

.login-title { font-size: 1.7rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; letter-spacing: -0.5px; }
.login-sub { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 32px; }

/* btn-primary overrides for login */
.btn-primary { width: 100%; margin-top: 8px; }

.login-error {
  display: none; background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.18); border-radius: var(--radius-sm);
  color: #DC2626; font-size: 0.85rem; padding: 11px 14px; margin-bottom: 16px;
}
.login-error.visible { display: block; }

.login-footer {
  margin-top: 24px; text-align: center;
  font-size: 0.8rem; color: var(--text-soft);
}
.login-footer a { color: var(--teal); text-decoration: none; }
.login-footer a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .login-card { padding: 32px 20px; }
  .signup-card { padding: 32px 20px; }
  #login-page, #signup-page { padding: 64px 16px; }
}

/* ══════════════════════════════════════════════════
   SIGNUP PAGE
══════════════════════════════════════════════════ */
#signup-page {
  align-items: center; justify-content: center;
  min-height: 100dvh;
  padding: 88px 24px 48px;
  background: linear-gradient(170deg, var(--warm-white) 0%, var(--cream) 50%, rgba(42,157,143,0.04) 100%);
  position: relative;
}
#signup-page::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,157,143,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.signup-card {
  width: 100%; max-width: 480px;
  background: white;
  border-radius: 24px; padding: 44px 40px;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(42,157,143,0.08);
  position: relative; z-index: 1;
  animation: fadeUp 0.6s ease-out;
}

/* ── Google button ── */
.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 13px 24px;
  background: white; color: var(--text);
  border: 2px solid var(--cream-dark); border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.92rem;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
}
.btn-google:hover {
  border-color: var(--teal); background: rgba(42,157,143,0.03);
  box-shadow: var(--shadow-soft);
}

/* ── Divider ── */
.signup-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 24px 0;
  color: var(--text-soft); font-size: 0.82rem;
}
.signup-divider::before, .signup-divider::after {
  content: ''; flex: 1; height: 1px;
  background: var(--cream-dark);
}

/* ── Form half row ── */
.form-row-half {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (max-width: 400px) {
  .form-row-half { grid-template-columns: 1fr; }
}

/* ── Domain hint ── */
.email-domain-hint {
  font-size: 0.78rem; margin-top: 6px; min-height: 18px;
  font-family: 'Outfit', sans-serif; font-weight: 500;
  transition: all 0.2s;
}
.hint-ok { color: var(--teal); }
.hint-warn { color: #D97706; }

/* ── Not eligible message ── */
.signup-not-eligible {
  display: none;
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: var(--radius-sm);
  padding: 16px; margin-bottom: 20px;
  gap: 12px; align-items: flex-start;
}
.signup-not-eligible.visible { display: flex; }
.not-eligible-icon {
  flex-shrink: 0; color: #D97706; margin-top: 2px;
}
.not-eligible-title {
  font-size: 0.88rem; font-weight: 700; color: #92400E;
  margin-bottom: 4px; font-family: 'Outfit', sans-serif;
}
.not-eligible-desc {
  font-size: 0.82rem; color: #78350F; line-height: 1.5;
}
.not-eligible-desc a { color: var(--teal); text-decoration: underline; }

/* ══════════════════════════════════════════════════
   DASHBOARD
══════════════════════════════════════════════════ */
#dashboard-page { background: var(--cream); overflow-x: hidden; }

/* ── Hero band ── */
/* ── Orders heading ── */
.orders-heading {
  margin-bottom: 20px;
}
.orders-heading h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 800;
  color: var(--dark); letter-spacing: -0.5px; margin-bottom: 4px;
}
.orders-heading p { font-size: 0.88rem; color: var(--text-soft); margin: 0; }

/* ── Subscription strip ── */
.sub-strip {
  background: var(--warm-white);
  border-bottom: 1px solid rgba(42,157,143,0.08);
  padding: 28px 0;
  padding-top: 96px;
}
.sub-cards {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  align-items: start;
}
.sub-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px 24px 18px;
  border: 1px solid rgba(42,157,143,0.07);
  box-shadow: var(--shadow-soft);
  position: relative;
  min-width: 0;
}
.sub-card-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #C8D0D8;
}
.sub-card-icon svg { width: 18px; height: 18px; }
.sub-card-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-soft);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sub-card-value {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sub-card-value.teal { color: var(--teal); }
.sub-card-value.muted { color: var(--text-soft); font-size: 1.1rem; font-weight: 600; }
.sub-card-sub {
  font-size: 0.8rem;
  color: var(--text-soft);
}
/* ── Ceiling merged card ── */
.ceiling-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.ceiling-amounts {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.ceiling-used {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1;
}
.ceiling-of {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-soft);
}
.ceiling-total {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-soft);
  font-family: 'Outfit', sans-serif;
}
.ceiling-remaining {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}
.ceiling-bar-track {
  width: 100%;
  height: 7px;
  background: rgba(42,157,143,0.1);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 20px;
}
.ceiling-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal) 0%, #4ECDC4 100%);
  border-radius: 99px;
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}
.ceiling-items {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(42,157,143,0.07);
  padding-top: 14px;
  gap: 0;
}
.ceiling-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 0;
  border-bottom: 1px solid rgba(42,157,143,0.05);
}
.ceiling-item:last-child { border-bottom: none; }
.ceiling-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(42,157,143,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.ceiling-item-icon svg { width: 17px; height: 17px; }
.ceiling-item-body { flex: 1; min-width: 0; }
.ceiling-item-name {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ceiling-item-tags {
  display: flex;
  gap: 5px;
  margin-top: 4px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.ceiling-item-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--cream);
  padding: 2px 8px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
/* Item status badges */
.ceiling-item-status {
  font-size: 0.66rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.ceiling-status--return {
  color: #b45309;
  background: rgba(245, 158, 11, 0.12);
}
.ceiling-status--delivery {
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.1);
}
/* Item row backgrounds */
.ceiling-item--return {
  background: rgba(245, 158, 11, 0.05);
  border-left: 2.5px solid rgba(245, 158, 11, 0.4);
  border-radius: 0 6px 6px 0;
  margin-left: -1px;
  padding-left: 11px;
}
.ceiling-item--delivery {
  background: rgba(59, 130, 246, 0.05);
  border-left: 2.5px solid rgba(59, 130, 246, 0.35);
  border-radius: 0 6px 6px 0;
  margin-left: -1px;
  padding-left: 11px;
}
.ceiling-item--return .ceiling-item-icon {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.ceiling-item--delivery .ceiling-item-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}
.sub-no-plan-msg {
  font-size: 0.76rem;
  color: var(--text-soft);
  margin-top: 4px;
  line-height: 1.4;
}
.btn-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 16px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-subscribe:hover { background: var(--teal-dark); transform: translateY(-1px); }
@media (max-width: 720px) {
  .sub-cards { grid-template-columns: 1fr; }
}

/* ── Main content ── */
.dash-content { flex: 1; padding: 40px 0; }

/* ── Toolbar ── */
.dash-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.orders-count {
  font-family: 'Outfit', sans-serif; font-size: 1rem;
  font-weight: 700; color: var(--dark);
}
.btn-refresh {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 18px; background: white;
  border: 1.5px solid rgba(42,157,143,0.15); border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 600; color: var(--text-soft);
  cursor: pointer; font-family: 'Outfit', sans-serif; transition: all 0.25s;
}
.btn-refresh:hover { border-color: var(--teal); color: var(--teal); box-shadow: var(--shadow-soft); }
.btn-refresh svg { width: 14px; height: 14px; }
.btn-refresh.spinning svg { animation: spin 0.9s linear infinite; }
/* ── States ── */
.orders-loading {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 80px 24px; gap: 16px;
}
.loading-text { color: var(--text-soft); font-size: 0.9rem; }

.orders-error {
  display: none; background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.14);
  border-radius: var(--radius); padding: 32px; text-align: center;
}
.orders-error p { color: #DC2626; font-size: 0.9rem; margin-bottom: 14px; }
.btn-retry {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; background: #EF4444; color: white;
  border: none; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  font-family: 'Outfit', sans-serif; transition: background 0.2s;
}
.btn-retry:hover { background: #DC2626; }

.orders-empty {
  display: none; text-align: center; padding: 80px 24px;
}
.orders-empty-icon {
  width: 64px; height: 64px; background: rgba(42,157,143,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.orders-empty-icon svg { width: 30px; height: 30px; color: var(--teal); }
.orders-empty h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.orders-empty p { color: var(--text-soft); font-size: 0.9rem; }

/* ── Orders grid ── */
.orders-grid { display: grid; gap: 20px; }

/* ── Order card (same "how-card" feel) ── */
.order-card {
  background: white; border-radius: var(--radius); padding: 0;
  border: 1px solid rgba(42,157,143,0.06);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative; overflow: hidden;
}
.order-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.order-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.order-card:hover::before { transform: scaleX(1); }

.order-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; border-bottom: 1px solid rgba(42,157,143,0.06);
  flex-wrap: wrap; gap: 12px;
}
.order-number { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: var(--dark); }
.order-number span { font-weight: 400; color: var(--text-soft); font-size: 0.85rem; margin-right: 8px; }
.order-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.order-updated { font-size: 0.78rem; color: #A0ADB8; }

.status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700;
  font-family: 'Outfit', sans-serif; border: 1.5px solid;
  letter-spacing: 0.2px;
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; }

.order-card-body {
  padding: 22px 28px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 18px;
}
.order-field label {
  display: block; font-size: 0.7rem; font-weight: 700;
  color: #A0ADB8; text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 5px; font-family: 'Outfit', sans-serif;
}
.order-field .value { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.tracking-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--teal); font-size: 0.9rem; font-weight: 500; text-decoration: none;
}
.tracking-link:hover { text-decoration: underline; }
.tracking-link svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ── Timeline ── */
.order-timeline { padding: 6px 28px 26px; }
.timeline-bar {
  display: flex; align-items: flex-start; position: relative;
}
.timeline-step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 7px; position: relative;
}
.timeline-step::after {
  content: ''; position: absolute;
  top: 10px; left: 50%; width: 100%; height: 2px;
  background: var(--cream-dark); z-index: 0;
}
.timeline-step:last-child::after { display: none; }
.timeline-step.done::after { background: var(--teal); }

.step-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cream-dark); border: 2px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; flex-shrink: 0;
}
.step-dot svg { width: 11px; height: 11px; color: #A0ADB8; }
.timeline-step.done .step-dot { background: var(--teal); border-color: var(--teal); }
.timeline-step.done .step-dot svg { color: white; }
.timeline-step.current .step-dot {
  background: white; border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(42,157,143,0.12);
}
.timeline-step.current .step-dot svg { color: var(--teal); }

.step-label {
  font-size: 0.62rem; font-weight: 600; color: #A0ADB8;
  text-align: center; font-family: 'Outfit', sans-serif;
  line-height: 1.2; max-width: 60px;
}
.timeline-step.done .step-label,
.timeline-step.current .step-label { color: var(--teal); }

@media (max-width: 640px) {
  .order-card-header { flex-direction: column; align-items: flex-start; }
  .order-card-body { grid-template-columns: 1fr 1fr; }
  .order-card-header, .order-card-body, .order-timeline { padding-left: 20px; padding-right: 20px; }
  .step-label { font-size: 0.54rem; max-width: 44px; }
}

/* ══════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════ */
.contact-section {
  padding: 80px 0;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,157,143,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.contact-section .container { position: relative; z-index: 1; }
.contact-header { text-align: center; margin-bottom: 48px; }
.contact-header .section-label { color: var(--teal-light); }
.contact-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800;
  color: white; letter-spacing: -0.8px; margin-bottom: 12px;
}
.contact-header p { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto; }

.contact-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; max-width: 640px; margin: 0 auto;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all 0.3s; text-decoration: none;
}
.contact-card:hover {
  background: rgba(42,157,143,0.1);
  border-color: rgba(42,157,143,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(42,157,143,0.15);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 24px; height: 24px; color: var(--teal-light); }
.contact-card h3 {
  font-size: 1rem; font-weight: 700; color: white;
  font-family: 'Outfit', sans-serif;
}
.contact-card p {
  font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.55;
}
.contact-card .contact-value {
  font-size: 0.9rem; font-weight: 600; color: var(--teal-light);
  font-family: 'Outfit', sans-serif;
  display: flex; align-items: center; gap: 6px;
}
.contact-card .contact-value svg { width: 14px; height: 14px; }
.contact-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(42,157,143,0.15); border: 1px solid rgba(42,157,143,0.25);
  border-radius: 100px; padding: 4px 12px; width: fit-content;
  font-size: 0.72rem; font-weight: 600; color: var(--teal-light);
  font-family: 'Outfit', sans-serif;
}

@media (max-width: 560px) {
  .contact-grid { grid-template-columns: 1fr; max-width: 360px; }
}

