@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Geist+Mono&display=swap');

:root {
  /* ElevenLabs Color Palette */
  --white: #ffffff;
  --light: #f5f5f5;
  --warm-stone: rgba(245,242,239,0.8);
  --black: #000000;
  --dark-gray: #4e4e4e;
  --warm-gray: #777169;
  --border: #e5e5e5;
  --border-subtle: rgba(0,0,0,0.05);

  /* ElevenLabs Shadow System (the signature) */
  --shadow-inset: rgb(255,255,255) 0px 0px 0px 0px inset, rgba(0,0,0,0.075) 0px 0px 0px 0.5px inset;
  --shadow-card: rgba(0,0,0,0.06) 0px 0px 0px 1px, rgba(0,0,0,0.04) 0px 1px 2px, rgba(0,0,0,0.04) 0px 2px 4px;
  --shadow-elevated: rgba(0,0,0,0.4) 0px 0px 1px, rgba(0,0,0,0.04) 0px 4px 4px;
  --shadow-warm: rgba(78,50,23,0.04) 0px 6px 16px;
  
  /* Spacing (8px grid) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 100px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-card: 24px;
  --radius-pill: 9999px;
  --radius-warm-btn: 30px;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.50;
  letter-spacing: 0.16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .section-title {
  color: var(--black);
  font-weight: 300;
}

p {
  color: var(--dark-gray);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section {
  padding: var(--space-10) 0;
}

.section-gray {
  background: var(--light);
}

/* Label / Sub-info */
.section-label, .label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--warm-gray);
  margin-bottom: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 36px;
  line-height: 1.17;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-2) 0;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
}

.brand i {
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: var(--space-4);
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-gray);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--black);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-actions .icon-link, .search-btn {
  background: none;
  border: none;
  color: var(--black) !important; /* Force visible */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.2s ease;
  position: relative;
}

.cart-badge-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  background: #ff3b30; /* Bright red for visibility */
  border: 2px solid var(--white);
  border-radius: 50%;
  display: none; /* Controlled by JS but starts hidden */
}

.nav-actions .icon-link:hover, .search-btn:hover {
  color: var(--black);
}

.nav-cta {
  background: var(--black);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-icons-group {
  display: flex;
  align-items: center;
  gap: 2px;
  background: #f0f0f0; /* Use a static light color for contrast */
  padding: 4px 6px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,0,0,0.05);
}

.nav-cta:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  padding: var(--space-5) 0;
  background: radial-gradient(circle at 10% 20%, rgba(245, 242, 239, 0.3) 0%, rgba(255, 255, 255, 0) 50%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: var(--space-8);
}

.hero-text h1 {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin-bottom: var(--space-3);
}

.hero-text p {
  font-size: 19px;
  color: var(--dark-gray);
  margin-bottom: var(--space-5);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-2);
}

.hero-visual {
  position: relative;
  max-width: 440px;
  width: 100%;
  margin-left: auto;
}

.slider-container {
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  aspect-ratio: 1 / 1.2;
  max-height: 520px;
  background: var(--light);
}

.slides {
  display: flex;
  height: 100%;
}

.slides img {
  min-width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-2);
}

/* Buttons */
.btn-black {
  background: var(--black);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.btn-warm {
  background: var(--warm-stone);
  color: var(--black);
  padding: 12px 28px;
  border-radius: var(--radius-warm-btn);
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-warm);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-elevated);
}

.btn-add {
  width: 100%;
  background: var(--black);
  color: var(--white);
  padding: 10px;
  border-radius: var(--radius-md);
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Sections & Headers */
.section-header {
  margin-bottom: var(--space-8);
}

.section-header.align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-around;
  padding: var(--space-5) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-10);
}

.stat-item {
  text-align: center;
}

.stat-label {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--warm-gray);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 15px;
  font-weight: 500;
}

/* Cards & Grids */
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-4);
  justify-content: center;
}

.book-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s ease;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
}

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

.book-media {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--light);
}

.book-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-2);
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.book-card:hover .book-media img {
  transform: scale(1.05);
}

.book-info {
  padding: var(--space-3);
}

.book-info h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.new-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.old-price {
  font-size: 13px;
  color: var(--warm-gray);
  text-decoration: line-through;
}

/* Deal Of The Day */
.deal-section {
  background: var(--white);
  padding: var(--space-8) 0;
}

.deal-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-10);
  background: var(--warm-stone);
  padding: var(--space-12) var(--space-10);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-warm);
}

.deal-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

.deal-text h3 {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}

.deal-text h2 {
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 300;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -1.5px;
}

.deal-text p {
  font-size: 18px;
  color: var(--dark-gray);
  margin: 0;
  max-width: 440px;
  line-height: 1.6;
}

.deal-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.deal-visual video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .deal-card {
    grid-template-columns: 1fr;
    padding: var(--space-5);
  }
}

/* About Section Split */
.about-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: var(--space-8);
}

.about-text p {
  margin-bottom: var(--space-3);
  max-width: 500px;
}

.visual-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

.stack-item {
  background: var(--white);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
}

.item-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--warm-gray);
  margin-bottom: 4px;
}

.item-value {
  font-size: 24px;
  font-weight: 300;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-4);
  justify-content: center;
}

.review-card {
  background: var(--white);
  padding: var(--space-5);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.user-avatar {
  width: 44px;
  height: 44px;
  background: var(--warm-stone);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--black);
  font-size: 14px;
}

.user-name {
  font-size: 15px;
  font-weight: 500;
}

.user-status {
  font-size: 12px;
  color: var(--warm-gray);
  font-family: var(--font-mono);
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: var(--space-2);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--black);
  font-size: 14px;
}

.review-stars i {
  color: var(--black);
}

.review-stars i.isax-star-1 {
  color: var(--black);
}

/* Login Page */
.login-body {
  background: var(--bg-canvas);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.login-card {
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elevated);
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--border-subtle);
}

.login-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.login-header h2 {
  font-size: 24px;
  font-weight: 300;
  margin-top: var(--space-2);
}

.form-group {
  margin-bottom: var(--space-3);
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--warm-gray);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-canvas);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-4);
  font-size: 13px;
}

.form-footer a {
  color: var(--dark-gray);
  text-decoration: none;
}

.form-footer a:hover {
  color: var(--black);
}

.login-btn {
  width: 100%;
  background: var(--black);
  color: var(--white);
  padding: 12px;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin-top: var(--space-5);
  transition: opacity 0.2s ease;
}

.login-btn:hover {
  opacity: 0.9;
}

.login-alt {
  text-align: center;
  margin-top: var(--space-5);
  font-size: 13px;
  color: var(--warm-gray);
}

.login-alt a {
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
}

/* Footer */
.footer {
  background: var(--white);
  padding: var(--space-8) 0 var(--space-4);
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.footer-info h3 {
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--warm-gray);
}

.footer-links {
  display: flex;
  gap: var(--space-3);
}

.footer-links a {
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--black);
}

/* Shadow Utility */
.shadow-warm { box-shadow: var(--shadow-warm); }
.card-shadow { box-shadow: var(--shadow-card); }

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    order: 2;
  }
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }
  .about-split {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .deal-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-8) var(--space-4);
  }
  .deal-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .deal-visual {
    height: 300px;
  }
}

/* Cart Page */
.cart-header {
  margin-bottom: var(--space-10);
}

.cart-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-8);
  align-items: flex-start;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cart-item {
  background: var(--white);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border-subtle);
}

.cart-item-info h4 {
  margin-bottom: 4px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.quantity-controls button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: none;
  cursor: pointer;
}

.cart-summary {
  background: var(--white);
  padding: var(--space-6);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  position: sticky;
  top: 100px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-3);
  font-size: 14px;
}

.summary-item-info {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.remove-item-btn {
  background: none;
  border: none;
  color: var(--warm-gray);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.15s ease;
}

.remove-item-btn:hover {
  color: var(--black);
}

.summary-row.total {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-3);
  margin-top: var(--space-2);
  font-weight: 700;
  font-size: 18px;
}

.remove-btn {
  background: none;
  border: none;
  color: #ff4d4d;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

.empty-cart-msg {
  text-align: center;
  padding: var(--space-10);
  background: var(--bg-canvas);
  border-radius: var(--radius-md);
  color: var(--warm-gray);
  grid-column: span 2;
}

/* Responsive Cart */
@media (max-width: 768px) {
  .cart-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 40px;
  }
  .section-title {
    font-size: 28px;
  }
  .stats {
    flex-wrap: wrap;
    gap: var(--space-4);
  }
  .stat-item {
    width: 100%;
  }
}

/* Cart Drawer - Added by Antigravity */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--white);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 480px) {
  .cart-drawer {
    max-width: 100%;
  }
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-size: 20px;
  font-weight: 300;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-6) var(--space-8);
}

.drawer-item {
  display: flex;
  align-items: center; 
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border-subtle);
}

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

.drawer-item-img {
  width: 64px;
  height: 84px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--warm-stone);
  flex-shrink: 0;
}

.drawer-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.drawer-item-info h4 {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 500;
}

.drawer-item-info p {
  font-size: 13px;
  color: var(--dark-gray);
  margin: 0;
}

.drawer-remove-btn {
  background: none;
  border: none;
  color: var(--dark-gray);
  cursor: pointer;
  padding: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.drawer-remove-btn:hover {
  color: #ff3b30;
  background: rgba(255, 59, 48, 0.05);
  transform: scale(1.1);
}

.cart-drawer-footer {
  padding: var(--space-8);
  background: var(--warm-stone);
  border-top: 1px solid var(--border-subtle);
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  font-size: 18px;
  font-weight: 500;
}

.checkout-btn {
  display: block;
  width: 100%;
  background: var(--black);
  color: var(--white);
  padding: 16px;
  text-align: center;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  transition: filter 0.2s ease;
}

.checkout-btn:hover {
  filter: brightness(1.2);
}

.empty-cart-msg {
  text-align: center;
  padding: var(--space-10) 0;
  color: var(--dark-gray);
}

/* User Profile Styles */
.auth-section {
  display: flex;
  align-items: center;
}

.user-profile {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.user-avatar:hover {
  transform: scale(1.05);
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  padding: 16px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.user-profile:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown .user-name {
  display: block;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 2px;
}

.user-dropdown .user-role {
  display: block;
  font-size: 12px;
  color: var(--warm-gray);
  margin-bottom: 12px;
}

.logout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--light);
  border: none;
  border-radius: var(--radius-md);
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.logout-btn:hover {
  background: var(--black);
  color: var(--white);
}

.logout-btn i {
  width: 16px;
  height: 16px;
}