/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&family=Orbitron:wght@400;700&display=swap');

:root {
  /* Colors - Pastel Dream Theme */
  --color-bg: #fffcf9;
  /* Creamy White */
  --color-bg-secondary: #ffffff;
  --color-primary: #ffb7b2;
  /* Pastel Pink */
  --color-secondary: #b5ead7;
  /* Pastel Mint */
  --color-accent: #ff9aa2;
  /* Salmon */
  --color-text: #6d6875;
  /* Warm Gray */
  --color-text-dim: #b5b5c3;

  /* Glassmorphism - Light Mode */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.8);
  --glass-blur: blur(12px);

  /* Gradients */
  --gradient-main: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --gradient-dark: linear-gradient(to bottom, transparent, rgba(255, 183, 178, 0.1));

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
}

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 183, 178, 0.2), transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(181, 234, 215, 0.2), transparent 25%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Noto Sans JP', sans-serif;
  /* Soften font */
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #7d7685;
  margin-bottom: var(--spacing-sm);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--spacing-md) 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo span {
  font-family: 'Orbitron', sans-serif;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

nav ul {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
}

nav a {
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  white-space: nowrap;
}

/* Mobile-only components (hidden by default) */
.mobile-menu-toggle,
.mobile-nav,
.mobile-overlay,
.bottom-nav {
  display: none;
}

/* Hamburger Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--color-primary);
  text-shadow: 0 0 8px rgba(255, 183, 178, 0.5);
}

nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.btn-icon {
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
}

.btn-icon:hover {
  color: var(--color-primary);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-accent);
  color: white;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: -80px;
  /* Offset header height */
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, var(--color-bg) 0%, transparent 50%, var(--color-bg) 100%);
  z-index: -1;
  opacity: 0.5;
}

.hero-content {
  max-width: 600px;
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: white;
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  color: var(--color-text);
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 10px rgba(255, 183, 178, 0.3);
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: #555;
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 1);
}

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.1rem;
  color: var(--color-text-dim);
  margin-bottom: var(--spacing-lg);
  max-width: 480px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-weight: 700;
  border-radius: 4px;
  /* Slightly squarish for tech feel */
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  border-radius: 25px;
  /* Round buttons */
  box-shadow: 0 5px 15px rgba(255, 183, 178, 0.4);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 183, 178, 0.6);
  background: var(--color-accent);
}

/* Feature Grid */
.section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xs);
}

.section-title p {
  color: var(--color-primary);
}

/* Shop Layout */
.shop-layout {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
}

.filters {
  width: 250px;
  flex-shrink: 0;
  position: sticky;
  align-self: flex-start;
  /* Ensure it doesn't stretch */
  top: 100px;
  /* Adjust based on header height */
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  /* Thin scrollbar for webkit */
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) transparent;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: var(--spacing-md);
  backdrop-filter: var(--glass-blur);
}

.filters h3 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 8px;
}

.filters h4 {
  font-size: 0.9rem;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-dim);
}

/* Search Bar */
.search-bar {
  position: relative;
  margin-bottom: var(--spacing-md);
}

.search-bar input {
  width: 100%;
  background: white;
  border: 2px solid #e0e0e0;
  color: var(--color-text);
  padding: 10px 35px 10px 12px;
  border-radius: 20px;
  outline: none;
  font-family: inherit;
}

.search-bar input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 183, 178, 0.2);
}

.search-bar i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-dim);
}

/* Checkboxes */
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  user-select: none;
}

.checkbox-container input {
  display: none;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
  /* Clear border */
  border-radius: 3px;
  position: relative;
  transition: 0.2s;
  background: white;
  /* Ensure white bg */
}

.checkbox-container:hover .checkmark {
  border-color: var(--c);
  box-shadow: 0 0 5px var(--c);
}

.checkbox-container input:checked+.checkmark {
  background: var(--c);
  border-color: var(--c);
  box-shadow: 0 0 8px var(--c);
}

.card-grid {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--spacing-md);
}

.rarity-header {
  grid-column: 1 / -1;
  font-size: 1.5rem;
  color: var(--color-primary);
  border-bottom: 2px solid var(--glass-border);
  padding-bottom: 8px;
  margin-top: var(--spacing-md);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background: #fffcf9;
  /* Light background for modal */
  color: #555;
  border: 2px solid var(--color-primary);
  margin: 5% auto;
  width: 90%;
  max-width: 800px;
  position: relative;
  box-shadow: 0 0 50px rgba(255, 183, 178, 0.2);
  border-radius: 20px;
  overflow: hidden;
  animation: slideUp 0.3s;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: 0.2s;
}

.close-modal:hover {
  color: var(--color-primary);
}

.modal-body {
  display: flex;
  flex-wrap: wrap;
}

.modal-image {
  flex: 1;
  min-width: 300px;
  background: #fff0f5;
  /* Very light pink background */
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-image img {
  max-width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.modal-details {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-details h2 {
  font-size: 1.8rem;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.modal-price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--color-text);
}

.modal-desc-box {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.stats-list {
  list-style: none;
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding-top: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stats-list li {
  display: flex;
  align-items: center;
}

.stats-list li span.label {
  font-weight: bold;
  margin-right: 8px;
  min-width: 40px;
}

/* Stat Colors */
.stat-lv {
  color: #2e7d32;
}

/* Green */
.stat-dp {
  color: #d32f2f;
}

/* Red */
.stat-cost {
  color: #1565c0;
}

/* Blue */
.stat-code {
  color: #666;
  font-family: monospace;
}

.stat-color {
  color: #f57c00;
}

.stat-rarity {
  color: #7b1fa2;
}

/* Bottom Navigation Bar (Hidden on Desktop) */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}

.bottom-nav ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
}

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: bold;
  color: var(--color-text-dim);
  text-decoration: none;
}

.bottom-nav a.active {
  color: var(--color-primary);
}

.bottom-nav i {
  font-size: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
    /* Space for bottom nav */
  }

  header {
    padding: 8px 0;
  }

  .nav-container {
    padding: 0 var(--spacing-md);
  }

  /* Hamburger Menu Toggle */
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
  }

  nav .desktop-nav {
    display: none;
  }

  /* Mobile Nav Overlay */
  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg);
    z-index: 2000;
    padding: 80px 40px;
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    border-left: 1px solid var(--glass-border);
  }

  .mobile-nav.active {
    right: 0;
  }

  .mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
  }

  .mobile-nav a {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-text);
    white-space: normal;
  }

  .mobile-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

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

  /* Bottom Navigation Bar */
  .bottom-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  }

  .bottom-nav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
  }

  .bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--color-text-dim);
    text-decoration: none;
  }

  .bottom-nav a.active {
    color: var(--color-primary);
  }

  .bottom-nav i {
    font-size: 1.25rem;
  }

  .logo span {
    font-size: 1.1rem;
    letter-spacing: 0;
  }

  .logo-img {
    height: 32px;
  }

  .hero {
    min-height: 50vh;
    padding: 80px 0 20px;
    text-align: center;
    margin-top: 0;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .shop-layout {
    flex-direction: column;
  }

  .filters {
    width: 100%;
    position: relative;
    top: 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    max-height: none;
  }

  .filter-toggle-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 10px 0;
    color: var(--color-primary);
    font-weight: bold;
    cursor: pointer;
  }

  .filter-content {
    display: none;
    padding-top: 15px;
  }

  .filter-content.active {
    display: block;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .card-image {
    height: 180px;
  }

  .card-info {
    padding: 10px;
  }

  .card-info h3 {
    font-size: 0.85rem;
    line-height: 1.3;
    min-height: 2.6em;
  }

  .price {
    font-size: 0.9rem;
  }

  .btn-add {
    width: 32px;
    height: 32px;
  }

  .modal-content {
    margin: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 0;
    overflow-y: auto;
  }

  .modal-body {
    flex-direction: column;
  }

  .modal-image {
    padding: 20px;
  }

  .modal-details {
    padding: 30px 20px;
  }

  .modal-price {
    font-size: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .card-grid {
    gap: 8px;
  }

  .card-image {
    height: 160px;
  }
}


.product-card {
  background: white;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 15px 30px rgba(255, 183, 178, 0.3);
}

.card-image {
  height: 320px;
  width: 100%;
  background: #fff0f5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  max-width: 90%;
  max-height: 90%;
  transition: transform 0.5s ease;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover .card-image img {
  transform: scale(1.05);
}

/* Holo Effect Overlay */
.holo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(125deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.4) 47%,
      rgba(255, 183, 178, 0.6) 50%,
      rgba(255, 255, 255, 0.4) 53%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: color-dodge;
}

.product-card:hover .holo-overlay {
  opacity: 1;
}

/* Sold Out Styles */
.card-image.sold-out img {
  filter: grayscale(1) opacity(0.5);
}

.sold-out-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  background: rgba(211, 47, 47, 0.9);
  color: white;
  padding: 10px 20px;
  font-size: 1.5rem;
  font-weight: 900;
  border: 3px solid white;
  border-radius: 8px;
  z-index: 5;
  pointer-events: none;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.btn-add:disabled {
  background: #ccc !important;
  cursor: not-allowed;
  transform: none !important;
}


.card-info {
  padding: var(--spacing-md);
}

.card-info h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #4a4a4a;
  /* Darker for better readability */
  font-weight: 800;
  /* Bolder */
  font-family: 'Noto Sans JP', sans-serif;
  min-height: 2.8em;
  /* Ensure 2 lines alignment */
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--spacing-sm);
  margin-bottom: 8px;
}

.price {
  font-size: 1.1rem;
  font-weight: 800;
  /* Bolder */
  color: var(--color-primary);
}

.btn-add {
  padding: 8px 16px;
  background: #f0f0f0;
  color: var(--color-text);
  border: none;
  border-radius: 50%;
  /* Round */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.btn-add:hover {
  background: var(--color-primary);
  color: white;
  transform: rotate(90deg);
}

/* Footer */
footer {
  border-top: 1px solid #eee;
  background: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: var(--spacing-sm);
}

.footer-col a {
  color: var(--color-text-dim);
}

.footer-col a:hover {
  color: var(--color-primary);
}

.copyright {
  text-align: center;
  color: var(--color-text-dim);
  font-size: 0.9rem;
  padding-top: var(--spacing-md);
  border-top: 1px solid #f0f0f0;
}

/* Utilities */
.hidden {
  display: none !important;
}

/* Hero Box Art Replacement */
.hero-box-art {
  width: 100%;
  max-width: 800px;
  /* Increased for banner */
  height: auto;
  display: block;
  margin: 0 auto var(--spacing-md) auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}


.hero-box-art:hover {
  transform: scale(1.02);
}

/* Toast Notification */
.toast-notification {
  position: absolute;
  padding: 8px 16px;
  background: white;
  color: var(--color-text);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 183, 178, 0.2);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3000;
  opacity: 0;
  transform: translate(-50%, -100%) translateY(10px);
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: bold;
  font-size: 0.85rem;
  pointer-events: none;
  white-space: nowrap;
}

.toast-notification.active {
  opacity: 1;
  transform: translate(-50%, -100%) translateY(0);
}

.toast-notification i {
  color: var(--color-primary);
  font-size: 1rem;
}

/* Quantity Selector Component */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 2px;
  border: 1px solid #eee;
  width: fit-content;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.qty-btn:hover {
  background: var(--color-primary);
  color: white;
}

.qty-input {
  width: 35px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: bold;
  font-size: 0.9rem;
  color: var(--color-text);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}