/* ============================================================
   KEANU — Shop & Auth CSS
   ============================================================ */

/* ── Shop Layout ──────────────────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

/* ── Filter Sidebar ───────────────────────────────────────────── */
.filter-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(38,63,112,0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.filter-header {
  padding: 1.25rem 1.5rem;
  background: var(--gradient-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-header h3 {
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-body { padding: 1.25rem; }

.filter-group { margin-bottom: 1.5rem; }

.filter-group-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-gray);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(38,63,112,0.07);
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--dark-gray);
  transition: color var(--transition-fast);
}

.filter-check:hover { color: var(--navy); }

.filter-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--navy);
  cursor: pointer;
}

.filter-check .count {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--mid-gray);
  background: var(--off-white);
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-pill);
}

/* ── Price Range ──────────────────────────────────────────────── */
.price-range-wrap { padding: 0.5rem 0; }

.price-range-input {
  width: 100%;
  accent-color: var(--navy);
  cursor: pointer;
  height: 4px;
}

.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 0.5rem;
}

/* ── Color Swatches ───────────────────────────────────────────── */
.color-swatches { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.color-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  position: relative;
}

.color-swatch:hover, .color-swatch.active {
  border-color: var(--navy);
  transform: scale(1.12);
}

.color-swatch.active::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* ── Size Pills ───────────────────────────────────────────────── */
.size-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.size-pill {
  padding: 0.3rem 0.7rem;
  border: 1.5px solid rgba(38,63,112,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-gray);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.size-pill:hover, .size-pill.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* ── Products Grid ────────────────────────────────────────────── */
.products-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.products-count {
  font-size: 0.88rem;
  color: var(--mid-gray);
}

.products-count strong { color: var(--charcoal); }

.sort-select {
  padding: 0.55rem 2.5rem 0.55rem 1rem;
  border: 1.5px solid rgba(38,63,112,0.12);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--dark-gray);
  outline: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23263F70' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.sort-select:focus { border-color: var(--navy); }

.view-toggle { display: flex; gap: 0.3rem; }

.view-btn {
  /* 44×44px minimum touch target */
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid-gray);
  background: var(--off-white);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.view-btn.active {
  background: var(--navy);
  color: var(--white);
}
@media (hover: hover) {
  .view-btn:hover {
    background: var(--navy);
    color: var(--white);
  }
}

/* ── Product Detail ───────────────────────────────────────────── */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.product-gallery { position: sticky; top: calc(var(--header-h) + 1rem); }

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(38,63,112,0.08);
  margin-bottom: 0.75rem;
  background: var(--off-white);
  aspect-ratio: 3/4;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-main:hover img { transform: scale(1.03); }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.gallery-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--off-white);
  transition: all var(--transition-fast);
}

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--gold); }

.product-detail-info {}

.product-detail-category {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.product-detail-name {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.product-detail-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.price-big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(38,63,112,0.08);
}

.product-desc {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.variant-section { margin-bottom: 1.5rem; }

.variant-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(38,63,112,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  /* Minimum 44px height for easy touch */
  width: 44px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  background: rgba(38,63,112,0.04);
  transition: all var(--transition-fast);
  cursor: pointer;
}

@media (hover: hover) {
  .qty-btn:hover { background: var(--navy); color: var(--white); }
}

.qty-input {
  width: 52px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  background: var(--white);
}

.add-to-cart-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ── Cart ─────────────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(38,63,112,0.07);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 88px; height: 110px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(38,63,112,0.08);
  background: var(--off-white);
  flex-shrink: 0;
}

.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-name { font-weight: 700; color: var(--charcoal); margin-bottom: 0.35rem; }
.cart-item-variant { font-size: 0.82rem; color: var(--mid-gray); margin-bottom: 0.75rem; }
.cart-item-remove { font-size: 0.8rem; color: var(--danger); cursor: pointer; font-weight: 600; }
.cart-item-remove:hover { text-decoration: underline; }

.cart-item-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}

/* Order Summary */
.order-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(38,63,112,0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.order-summary-header {
  padding: 1.25rem 1.5rem;
  background: var(--gradient-navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.order-summary-body { padding: 1.5rem; }

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--dark-gray);
}

.summary-line.total {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal);
  padding-top: 0.75rem;
  border-top: 2px solid rgba(38,63,112,0.1);
  margin-top: 0.5rem;
}

.summary-line.total span:last-child { color: var(--navy); }

/* ── Auth ─────────────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-panel-left {
  background: var(--gradient-hero);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.auth-panel-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(196,154,85,0.15) 0%, transparent 60%);
}

.auth-left-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.auth-left-logo { height: 80px; width: auto; margin-bottom: 2rem; }

.auth-left-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.auth-left-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto 2rem;
}

.auth-features { display: flex; flex-direction: column; gap: 1rem; text-align: left; }

.auth-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.auth-feature i {
  width: 28px; height: 28px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.auth-panel-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: var(--white);
  overflow-y: auto;
}

.auth-form-wrap {
  width: 100%;
  max-width: 420px;
}

.auth-form-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.auth-form-sub {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 2rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--light-gray);
  font-size: 0.85rem;
}

.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(38,63,112,0.1);
}

.auth-switch {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--mid-gray);
}

.auth-switch a { color: var(--navy); font-weight: 700; }
.auth-switch a:hover { color: var(--gold); }

/* ── Dashboard ────────────────────────────────────────────────── */
.dashboard-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  min-height: calc(100dvh - var(--header-h));
  padding: 2rem;
  /* Safe area on sides and bottom */
  padding-inline: max(2rem, env(safe-area-inset-left) + 1rem);
  padding-bottom: max(2rem, env(safe-area-inset-bottom) + 1rem);
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .dash-sidebar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .dash-nav-link {
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }
}

.dashboard-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(38,63,112,0.08);
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.dashboard-sidebar:hover {
  box-shadow: var(--shadow-md);
}

.dash-sidebar-head {
  background: var(--gradient-navy);
  padding: 1.75rem 1.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
}

.dash-avatar {
  width: 72px; height: 72px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--white);
  margin: 0 auto 0.85rem;
  border: 3px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform var(--transition-spring);
}

.dashboard-sidebar:hover .dash-avatar {
  transform: scale(1.06) rotate(3deg);
}

.dash-user-name { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.dash-user-email { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 0.25rem; word-break: break-all; }

.dash-sidebar-nav { padding: 0.85rem; }

.dash-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-md);
  color: var(--dark-gray);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-base);
  margin-bottom: 0.2rem;
}

.dash-nav-link i {
  width: 20px;
  text-align: center;
  color: var(--navy);
  font-size: 0.95rem;
  transition: transform var(--transition-fast);
}

.dash-nav-link:hover {
  background: rgba(38,63,112,0.05);
  color: var(--navy);
}

.dash-nav-link:hover i {
  transform: scale(1.15) translateX(2px);
}

.dash-nav-link.active {
  background: rgba(38,63,112,0.08);
  color: var(--navy);
  font-weight: 700;
  box-shadow: inset 3px 0 0 var(--navy);
}

/* ── Dashboard Stats Cards ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(38,63,112,0.06);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 0 0 0 80px;
  opacity: 0.06;
}

.stat-card.navy::before  { background: var(--navy); }
.stat-card.gold::before  { background: var(--gold); }
.stat-card.green::before { background: var(--success); }

.stat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.stat-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: var(--white);
}

.stat-card.navy .stat-icon  { background: var(--gradient-navy); }
.stat-card.gold .stat-icon  { background: var(--gradient-gold); }
.stat-card.green .stat-icon { background: linear-gradient(135deg, #16a34a, #22c55e); }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--mid-gray);
  font-weight: 500;
}

/* ── Dashboard Tables ── */
.table-responsive {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(38,63,112,0.08);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(38,63,112,0.03);
  margin-top: 1rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  text-align: left;
}

.admin-table th {
  padding: 1rem 1.5rem;
  background: rgba(38,63,112,0.03);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-gray);
  border-bottom: 2px solid rgba(38,63,112,0.08);
  white-space: nowrap;
}

.admin-table td {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid rgba(38,63,112,0.05);
  vertical-align: middle;
  color: var(--dark-gray);
  transition: background var(--transition-fast);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: rgba(38,63,112,0.02);
}

.admin-table td strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.9rem;
}

/* ── Checkout ─────────────────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.checkout-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(38,63,112,0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.checkout-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.5rem;
  background: rgba(38,63,112,0.03);
  border-bottom: 1px solid rgba(38,63,112,0.07);
}

.checkout-step-num {
  width: 28px; height: 28px;
  background: var(--gradient-navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.checkout-card-title { font-weight: 700; font-size: 0.95rem; color: var(--charcoal); }

.checkout-card-body { padding: 1.5rem; }

/* ── Responsive shop/auth ─────────────────────────────────────── */
@media (max-width: 1000px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-panel-left { display: none; }
  .dashboard-layout { grid-template-columns: 1fr; padding: 1rem; }
  .dashboard-sidebar { position: static; }
}

@media (max-width: 640px) {
  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-item-price { grid-column: 2; }
  /* Ensure auth panel fills screen correctly on small devices */
  .auth-panel-right { padding: 2rem 1.25rem; }
  .auth-form-wrap { max-width: 100%; }
  /* Product detail on small screens */
  .add-to-cart-row { flex-direction: column; }
  .add-to-cart-row .btn { width: 100%; }
  /* Filter sidebar as collapsible on small screens */
  .shop-layout { gap: 1rem; }
}

/* ── PAGINATION ────────────────────────────────────────────── */
.pagination-nav {
  display: flex;
  justify-content: center;
  margin: 3rem 0 1rem;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  align-items: center;
}

.pagination .page-item {
  margin: 0;
}

.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  border-radius: var(--radius-md, 8px);
  background: var(--off-white, #f9fafb);
  color: var(--charcoal, #1a2942);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.pagination .page-link:hover {
  background: var(--gold-pale, #fffaf0);
  color: var(--gold-dark, #b58500);
  border-color: rgba(212,175,55,0.3);
}

.pagination .page-item.active .page-link {
  background: var(--navy, #1a2942);
  color: #fff;
  border-color: var(--navy, #1a2942);
}

/* ── LIST VIEW ─────────────────────────────────────────────── */
#products-grid.list-view-active {
  grid-template-columns: 1fr;
}

#products-grid.list-view-active .product-card {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#products-grid.list-view-active .product-card-img {
  width: 250px;
  flex-shrink: 0;
  border-right: 1px solid rgba(0,0,0,0.05);
}

#products-grid.list-view-active .product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 2rem;
}

@media (max-width: 640px) {
  #products-grid.list-view-active .product-card {
    flex-direction: column;
  }
  #products-grid.list-view-active .product-card-img {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  #products-grid.list-view-active .product-card-body {
    padding: 1rem;
  }
}
