/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #111111;
  --primary-light: #1a1a1a;
  --accent: #cc1b2b;
  --accent-hover: #a81523;
  --gold: #f5c518;
  --gold-hover: #d4a90f;
  --bg: #ffffff;
  --bg-card: #fff;
  --text: #111111;
  --text-secondary: #555;
  --text-light: #888;
  --border: #ddd;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 2px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.15);
  --max-width: 1200px;
  --header-height: 72px;
  --transition: 200ms ease;
}

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Impact', Arial Narrow, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

/* === Layout === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.section { padding: 4rem 0; }
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 2.5rem;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  color: #fff;
  height: var(--header-height);
}
.site-header .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 56px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}
.main-nav a {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.7;
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  opacity: 1;
  color: var(--gold);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.cart-link:hover { opacity: 1; }
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--gold);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  gap: 0.5rem;
}
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Oswald', sans-serif;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-gold {
  background: var(--gold);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}
.btn-gold:hover { background: var(--gold-hover); }
.btn-secondary {
  background: var(--primary);
  color: #fff;
}
.btn-secondary:hover { background: var(--primary-light); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--text); }

/* === Hero === */
.hero {
  background: #fff;
  color: var(--text);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }
.hero__logo {
  max-width: 320px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  padding: 8px;
  background: var(--bg);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero h1 .text-gold { color: var(--gold); }
.hero h1 .text-accent { color: var(--accent); }
.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

/* === Features === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.feature {
  text-align: center;
  padding: 1.5rem;
}
.feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid var(--gold);
}
.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.feature p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* === Product Grid === */
.store-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.store-header h1 { font-size: 1.75rem; }
.store-filters {
  display: flex;
  gap: 0.75rem;
}
.filter-select {
  padding: 0.5rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.product-card a { display: block; }
.product-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3f4f6;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.05); }
.product-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e8e0 0%, #f0f0ea 100%);
}
.product-card__info {
  padding: 1rem;
}
.product-card__info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  min-height: 2.8em;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.price {
  font-weight: 700;
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
}
.price--old {
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 0.5rem;
}
.price--big { font-size: 1.5rem; }
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-secondary);
}

/* === Section subtitle === */
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

/* === Top 10 === */
.section--top10 {
  background: var(--primary);
  color: #fff;
  padding: 4rem 0;
}
.section--top10 .section-title { color: var(--gold); }
.section--top10 .section-subtitle { color: rgba(255,255,255,.6); }
.section--top10 .empty-state { color: rgba(255,255,255,.4); }
.top10-grid {
  max-width: 1000px;
  margin: 0 auto;
}
.top10-list {
  max-width: 800px;
  margin: 0 auto;
}

/* === Product Detail === */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.product-detail__gallery { position: sticky; top: calc(var(--header-height) + 2rem); }
.product-detail__main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f3f4f6;
}
.product-detail__info h1 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.product-detail__desc {
  color: var(--text-secondary);
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
  }
.product-form .form-group {
  margin-bottom: 1.25rem;
}
.product-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

/* Color swatches */
.color-selector { display: flex; gap: 0.5rem; }
.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  outline: none;
}
.color-swatch:hover { transform: scale(1.1); }
.color-swatch.active { border-color: var(--gold); box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--gold); }

/* Size buttons */
.size-selector { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.size-btn {
  min-width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.size-btn:hover { border-color: var(--text); }
.size-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.size-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Quantity */
.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-btn {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 40px;
  text-align: center;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--border); }
.qty-input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  font-weight: 600;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }


/* Cart elements */
.cart-td-thumb { width: 60px; }
.cart-thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 4px; }
.cart-variant { color: var(--text-light); }
.cart-remove-btn { background: none; border: none; color: var(--accent); cursor: pointer; font-size: 1.1rem; }
.cart-remove-btn:hover { color: var(--accent-hover); }
.btn-continue { margin-bottom: 0.75rem; }
/* === Cart === */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.cart-table th {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 2px solid var(--border);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}
.cart-table td {
  padding: 1rem 0.75rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-summary {
  max-width: 400px;
  margin-left: auto;
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.cart-summary__total {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  border-top: 2px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 1rem;
}
.cart-summary .btn { margin-top: 1.5rem; }
.cart-empty {
  text-align: center;
  padding: 4rem 1rem;
}
.cart-empty p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* === Alerts === */
.alert {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* === Forms === */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.form-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
}

/* === Footer === */
.site-footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer-col p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.6;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
  transition: opacity var(--transition);
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero { padding: 3rem 0; }
  .hero__logo { max-width: 220px; }
  .product-detail { grid-template-columns: 1fr; gap: 2rem; }
  .product-detail__gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .store-header { flex-direction: column; align-items: flex-start; }
  .store-filters { flex-wrap: wrap; width: 100%; }
  .store-filters form { flex-wrap: wrap; width: 100%; }
  .filter-select { flex: 1; min-width: 0; }
  .main-nav { display: none; }
  .logo img { height: 44px; }
  .btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .product-card__info { padding: 0.75rem; }
  .product-card__info h3 { font-size: 0.85rem; }
  .section { padding: 2rem 0; }
  .container { padding: 0 1rem; }

  /* Cart responsive */
  .cart-table, .cart-table thead, .cart-table tbody, .cart-table th, .cart-table td, .cart-table tr {
    display: block;
  }
  .cart-table thead { display: none; }
  .cart-table tr { margin-bottom: 1rem; border: 1px solid var(--border); border-radius: var(--radius); padding: 0.75rem; }
  .cart-table td { padding: 0.4rem 0; border: none; text-align: left; }
  .cart-summary { max-width: 100%; }

  /* Qty */
  .cart-table td form[action="/cart/update"] { display: block !important; }
  .qty-btn {
  -webkit-appearance: none;
  appearance: none; flex-shrink: 0; min-width: 40px; -webkit-appearance: none; appearance: none; }
  .qty-selector { width: 100%; justify-content: center; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .feature { padding: 1rem 0.5rem; }
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--text);
}
.breadcrumb .sep {
  margin: 0 0.4rem;
  opacity: 0.5;
}
.breadcrumb .current {
  color: var(--text);
  font-weight: 500;
}

/* Top 10 Slider */
.top10-slider {
  overflow: hidden;
  position: relative;
}
.top10-slider__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
}
.top10-slider__slide {
  flex: 0 0 calc(25% - 0.75rem);
  min-width: 0;
}
.top10-slider__slide .product-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f3f4f6;
}
.top10-slider__slide .product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top10-slider__slide .product-card__info {
  padding: 0.75rem 0;
}
.top10-slider__slide .product-card__info h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #fff;
  min-height: 2.6em;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top10-slider__slide .price {
  color: var(--gold);
}
.top10-slider__slide a {
  display: block;
  text-decoration: none;
}

@media (max-width: 768px) {
  .top10-slider__slide {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

/* Legal pages */
.legal-content h1 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.legal-content h2 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.legal-content h3 { font-size: 1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-content p { margin-bottom: 0.75rem; line-height: 1.7; color: var(--text-secondary); }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.4rem; line-height: 1.6; color: var(--text-secondary); }
.legal-content .text-muted { font-size: 0.9rem; }
.legal-content .recesso-form { font-style: italic; padding: 0.5rem 1rem; border-left: 3px solid var(--border); margin: 0.5rem 0; }

/* === Account Avatar Button === */
.account-avatar {
  position: relative;
  display: flex;
  align-items: center;
}
.account-avatar__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: var(--accent);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  padding: 0;
  text-transform: uppercase;
}
.account-avatar__btn:hover,
.account-avatar__btn.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(245,197,24,0.3);
}
.account-avatar__btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.account-avatar__btn svg.avatar-icon {
  width: 20px;
  height: 20px;
}

/* Avatar Dropdown */
.account-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  z-index: 200;
  overflow: hidden;
}
.account-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (hover: hover) {
  .account-avatar:hover .account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.account-dropdown__header {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}
.account-dropdown__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.account-dropdown__email {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}
.account-dropdown__links {
  padding: 0.4rem 0;
}
.account-dropdown__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--text);
  transition: background var(--transition);
}
.account-dropdown__link:hover {
  background: #f5f5f5;
}
.account-dropdown__link svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}
.account-dropdown__divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}
.account-dropdown__link--danger {
  color: var(--accent);
}
.account-dropdown__link--danger:hover {
  background: #fef2f2;
}

/* === Avatar Picker (Profile page) === */
.avatar-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.avatar-section__preview {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid var(--border);
  background: var(--accent);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0.75rem;
  position: relative;
  cursor: pointer;
  transition: border-color var(--transition);
  text-transform: uppercase;
}
.avatar-section__preview:hover {
  border-color: var(--gold);
}
.avatar-section__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-section__edit-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-card);
}
.avatar-section__edit-badge svg {
  width: 12px;
  height: 12px;
}
.avatar-section__name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.avatar-section__email {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* Avatar Picker Panel */
.avatar-picker {
  display: none;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  width: 100%;
  text-align: center;
}
.avatar-picker.open {
  display: block;
}
.avatar-picker__title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.avatar-picker__grid {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.avatar-picker__option {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f5f5f5;
  padding: 0;
}
.avatar-picker__option:hover {
  transform: scale(1.1);
  border-color: var(--text-light);
}
.avatar-picker__option.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.3);
}
.avatar-picker__option img,
.avatar-picker__option svg {
  width: 100%;
  height: 100%;
}
.avatar-picker__option svg {
  padding: 8px;
}
.avatar-picker__upload {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  background: none;
}
.avatar-picker__upload:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.avatar-picker__remove {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.avatar-picker__remove:hover {
  opacity: 1;
}

/* === Delete Account Redesign === */
.delete-account-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}
.delete-account-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.delete-account-trigger:hover {
  background: #fef2f2;
}
.delete-account-trigger__text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.delete-account-trigger__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fef2f2;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.delete-account-trigger__icon svg {
  width: 18px;
  height: 18px;
}
.delete-account-trigger__label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.delete-account-trigger__desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1px;
}
.delete-account-trigger__arrow {
  color: var(--text-light);
  transition: transform var(--transition);
}
.delete-account-trigger__arrow.rotated {
  transform: rotate(180deg);
}
.delete-account-body {
  display: none;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid #fecaca;
}
.delete-account-body.open {
  display: block;
}
.delete-account-body__warning {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}
.delete-account-body__warning svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.delete-account-body__warning p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #991b1b;
}
