/* Dubai Tronics - Static Site Styles */

/* CSS Reset / Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #050816;
  color: #f9fafb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* Design Tokens */
:root {
  --color-bg: #050816;
  --color-surface: #060b1b;
  --color-surface-alt: #0b1022;
  --color-border: rgba(148, 163, 184, 0.3);
  --color-primary: #22c55e;
  --color-primary-soft: rgba(34, 197, 94, 0.1);
  --color-primary-strong: #16a34a;
  --color-accent: #0ea5e9;
  --color-muted: #94a3b8;
  --color-text: #f9fafb;
  --color-danger: #ef4444;

  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;

  --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.85);
  --shadow-xs: 0 10px 30px rgba(15, 23, 42, 0.65);

  --header-height: 4rem;
}

.page {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 2.5rem 0;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.4rem, 1.8vw, 1.75rem);
  font-weight: 700;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.15rem 0.65rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
}

.chip-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.07), transparent 55%),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.06), transparent 55%),
    rgba(5, 8, 22, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.9rem;
  background: radial-gradient(circle at 20% 0%, #22c55e, transparent 60%),
    radial-gradient(circle at 80% 100%, #0ea5e9, transparent 55%),
    #020617;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5f9ff;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: var(--shadow-xs);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--color-muted);
}

.header-search {
  flex: 1 1 auto;
  max-width: 520px;
  display: none;
}

@media (min-width: 768px) {
  .header-search {
    display: block;
  }
}

.search-input {
  position: relative;
}

.search-input input {
  width: 100%;
  border-radius: 999px;
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  color: var(--color-text);
  font-size: 0.85rem;
}

.search-input input::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.search-icon {
  position: absolute;
  inset-block: 0;
  left: 0.85rem;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--color-muted);
  border: 1px solid transparent;
  transition: all 0.18s ease-out;
}

.nav-link:hover {
  color: var(--color-text);
  border-color: rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), rgba(15, 23, 42, 0.98));
}

.nav-link-icon {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.btn {
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.15s ease,
    color 0.1s ease;
}

.btn-primary {
  background: radial-gradient(circle at 0 0, #22c55e, #16a34a);
  color: #052e16;
  box-shadow: 0 16px 45px rgba(34, 197, 94, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(34, 197, 94, 0.45);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.7);
  color: var(--color-text);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn-icon {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
}

.btn-icon span {
  font-size: 1rem;
}

.cart-indicator {
  position: relative;
}

.cart-count-pill {
  position: absolute;
  top: -0.4rem;
  right: -0.55rem;
  min-width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  color: #022c22;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(34, 197, 94, 0.5);
}

/* Hero */
.hero {
  padding: 2.75rem 0 2.25rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow-text {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.hero-title {
  font-size: clamp(2.2rem, 3.15vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(120deg, #22c55e, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 32rem;
  font-size: 0.98rem;
  color: var(--color-muted);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.hero-stats {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.8rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.hero-stat strong {
  font-size: 1rem;
  color: var(--color-text);
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.hero-badge {
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  border: 1px dashed rgba(148, 163, 184, 0.5);
  color: var(--color-muted);
}

.hero-media {
  position: relative;
}

.hero-card {
  border-radius: 1.75rem;
  background: radial-gradient(circle at 10% 0, rgba(34, 197, 94, 0.2), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(14, 165, 233, 0.36), transparent 55%),
    linear-gradient(135deg, #020617, #020617);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.45);
  position: relative;
  overflow: hidden;
}

.hero-product-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.hero-product-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-product-price {
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-image-shell {
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.95));
  min-height: 210px;
}

.hero-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-ribbon {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 0.85rem 1.1rem 1.1rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.96), transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.hero-ribbon span {
  color: var(--color-muted);
}

.hero-ribbon strong {
  color: var(--color-primary);
}

.hero-float {
  position: absolute;
  inset-inline-end: 0.75rem;
  top: -0.75rem;
}

.hero-float-card {
  backdrop-filter: blur(18px);
  background: rgba(15, 23, 42, 0.96);
  border-radius: 1.1rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-xs);
}

.hero-float-count {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #22c55e, #0ea5e9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #022c22;
}

.hero-float-text {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.hero-float-text strong {
  color: var(--color-text);
}

/* Grids & Cards */
.grid {
  display: grid;
  gap: 1.4rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card {
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.9);
}

.card-muted {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
}

.card-header {
  margin-bottom: 0.85rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
}

.card-subtitle {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.card-footer {
  margin-top: 0.9rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.product-thumb {
  border-radius: 0.9rem;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.96));
  position: relative;
  min-height: 180px;
}

.product-chip {
  position: absolute;
  inset-inline-start: 0.65rem;
  top: 0.65rem;
}

.product-name {
  font-size: 0.96rem;
  font-weight: 600;
}

.product-meta {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 0.35rem;
}

.product-price {
  font-size: 1rem;
  font-weight: 600;
}

.product-price-old {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-decoration: line-through;
}

.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.rating-stars {
  color: #fbbf24;
}

.pill {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--color-muted);
}

.pill-positive {
  border-color: rgba(34, 197, 94, 0.3);
  color: #bbf7d0;
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.category-thumb {
  border-radius: 0.9rem;
  overflow: hidden;
  min-height: 140px;
}

.category-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.category-link {
  font-size: 0.8rem;
  color: var(--color-accent);
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.review-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  overflow: hidden;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 500;
}

.review-text {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.ai-panel {
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.2), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(34, 197, 94, 0.18), transparent 60%),
    linear-gradient(135deg, #020617, #020617);
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.9);
}

.ai-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.ai-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: #bae6fd;
}

.ai-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #22c55e, #0ea5e9);
}

.ai-badge {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  font-size: 0.7rem;
  color: #e0f2fe;
}

.ai-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ai-list li {
  font-size: 0.82rem;
  color: var(--color-muted);
}

.ai-list strong {
  color: var(--color-text);
}

/* Dividers */
.divider {
  border: 0;
  border-top: 1px dashed rgba(148, 163, 184, 0.3);
  margin: 1.8rem 0;
}

/* Forms */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field-label {
  font-size: 0.8rem;
}

.input,
textarea {
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.8);
  color: var(--color-text);
  padding: 0.55rem 0.75rem;
  font-size: 0.85rem;
}

.input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.75);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Layout helpers */
.stack {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.stack-tight {
  gap: 0.7rem;
}

.row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.row-space {
  justify-content: space-between;
}

.muted {
  color: var(--color-muted);
}

.badge-soft {
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.7rem;
}

.pill-highlight {
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
  font-size: 0.7rem;
}

/* Product detail */
.product-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .product-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    align-items: flex-start;
  }
}

.product-detail-image {
  border-radius: 1.25rem;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.95));
  min-height: 260px;
}

.product-detail-title {
  font-size: clamp(1.6rem, 2.1vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.product-detail-price {
  font-size: 1.6rem;
  font-weight: 700;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.spec-item span:last-child {
  color: var(--color-text);
}

/* Cart page */
.cart-layout {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .cart-layout {
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.1fr);
    align-items: flex-start;
  }
}

.cart-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
}

@media (max-width: 640px) {
  .cart-item {
    grid-template-columns: minmax(0, 1fr);
  }
}

.cart-thumb {
  width: 88px;
  height: 88px;
  border-radius: 0.9rem;
  overflow: hidden;
}

.cart-name {
  font-size: 0.9rem;
  font-weight: 500;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.qty-input {
  width: 3rem;
  text-align: center;
}

.cart-summary {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

/* Auth / Simple pages */
.center-shell {
  min-height: calc(100vh - var(--header-height) - 9rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 3rem;
}

.auth-card {
  max-width: 380px;
  width: 100%;
}

.auth-heading {
  text-align: center;
  margin-bottom: 1.1rem;
}

.auth-heading h1 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.auth-heading p {
  font-size: 0.84rem;
  color: var(--color-muted);
}

.auth-footer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.link {
  color: var(--color-accent);
}

.link:hover {
  text-decoration: underline;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    align-items: stretch;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.85rem;
}

.contact-pill {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-primary);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: linear-gradient(to top, #020617, #020617);
  padding: 2.25rem 0 1.5rem;
}

.footer-top {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .footer-top {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  }
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
}

.footer-link {
  color: var(--color-muted);
}

.footer-link:hover {
  color: var(--color-text);
}

.footer-subscribe {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.social-row {
  display: flex;
  gap: 0.65rem;
}

.social-pill {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.social-pill:hover {
  color: var(--color-text);
  border-color: rgba(148, 163, 184, 0.8);
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-sm {
  margin-top: 0.75rem;
}

.mt-md {
  margin-top: 1.25rem;
}

.mt-lg {
  margin-top: 2rem;
}

.empty-state {
  padding: 3rem 1rem;
}

.empty-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  border: 1px dashed rgba(148, 163, 184, 0.5);
  font-size: 1.4rem;
  color: var(--color-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.7rem;
}

.badge-sale {
  background: rgba(234, 88, 12, 0.12);
  color: #fed7aa;
}

.badge-free {
  background: rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
}

.badge-hot {
  background: rgba(239, 68, 68, 0.16);
  color: #fecaca;
}

