* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0.08);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  color: #1a1a2e;
  background: #f5f5f7;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 0 24px;
}

.search-filter > .container {
  padding: 0;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* Header */
.header {
  background: #F8C361;
  border-bottom: 1px solid #f0f0f2;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
}

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

.logo-img {
  height: 60px;
  width: 60px;
  display: block;
}

.header-nav-wrapper {
  border-top: 1px solid #eee;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: 3rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-link {
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #e94560;
}

.contact-btn {
  background: #e94560;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
}

.contact-btn:hover {
  background: #d63851;
  color: #fff;
}

/* Header search */
.header-search {
  flex: 1;
  max-width: 320px;
  margin: 0 1.5rem;
}

.header-search-input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 2px solid #e8e8ed;
  border-radius: 8px;
  font-size: 0.85rem;
  outline: none;
  background: #f5f5f7;
  transition: all 0.2s;
}

.header-search-input:focus {
  border-color: #e94560;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}

/* Category carousel */
.category-carousel {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.category-carousel::-webkit-scrollbar { display: none; }

.carousel-group-btn {
  flex: 0 0 auto;
  width: 140px;
  height: 150px;
  border-radius: 0;
  border: none;
  background: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  transition: all 0.2s;
  scroll-snap-align: start;
}

.carousel-group-btn:hover {
  opacity: 0.9;
}

.carousel-group-btn.active {
  border: none;
  box-shadow: none;
}

.carousel-group-label {
  position: relative;
  z-index: 2;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: none;
  width: 100%;
  text-align: center;
  padding: 0.35rem 0.5rem;
  backdrop-filter: none;
}

.carousel-group-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  z-index: 1;
}

/* Product group badge */
.product-group {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #e94560;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

/* Hero */
.hero {
  color: #fff;
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-bg-slides {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 1.15rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #e94560;
  color: #fff;
}

.btn-primary:hover {
  background: #d63851;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233,69,96,0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: #ccc;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 4px;
}

.btn-secondary:hover {
  border-color: #e94560;
  color: #fff;
}

.btn-danger {
  background: #dc3545;
  color: #fff;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 4px;
}

.btn-danger:hover {
  background: #c82333;
}

.btn-success {
  background: #28a745;
  color: #fff;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 4px;
}

.btn-success:hover {
  background: #218838;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #555;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

/* Search & Filter */
.search-filter {
  padding: 0;
  background: #ffffff;
  border-bottom: none;
  position: sticky;
  top: 61px;
  z-index: 50;
}

.search-bar input {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 2px solid #e8e8ed;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  background: #f5f5f7;
  transition: all 0.2s;
}

.search-bar input:focus {
  border-color: #e94560;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}

.filters {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
  padding: 0 24px;
}

.brand-filter-section {
  margin-top: 0.75rem;
  overflow: hidden;
  padding: 0 24px;
}

.filter-btn {
  padding: 0.45rem 1.2rem;
  border: none;
  border-radius: 4px;
  background: #f2f2f5;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: #555;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: #e8e8ed;
  color: #e94560;
}

.filter-btn.active {
  background: #e94560;
  color: #fff;
}

.brand-filter-section {
  margin-top: 0.75rem;
  overflow: hidden;
}

.brand-filter-section .brand-grid {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.brand-filter-section .brand-grid::-webkit-scrollbar { display: none; }

.brand-filter-section .brand-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s;
  scroll-snap-align: start;
}

.brand-filter-section .brand-card:hover {
  background: #f8f8fa;
}

.brand-filter-section .brand-card.active {
  background: #fff5f6;
}

.brand-filter-section .brand-card-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-filter-section .brand-card-name {
  font-size: 0.7rem;
  font-weight: 500;
  color: #555;
  text-align: center;
  line-height: 1.15;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.5rem;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.3rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s;
}

.brand-card:hover {
  background: #f8f8fa;
}

.brand-card.active {
  background: #fff5f6;
}

.brand-card-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand-card-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: #555;
  text-align: center;
  line-height: 1.15;
}

/* Products */
.products {
  padding: 0.25rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 0;
  scroll-margin-top: 240px;
  min-height: 50vh;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.3s ease;
  scroll-margin-top: 250px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.06);
}

.product-image {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #fff;
}

.product-info {
  padding: 1.2rem;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.product-category {
  font-size: 0.75rem;
  color: #e94560;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.product-brand {
  font-size: 0.7rem;
  color: #888;
  font-weight: 500;
  margin-bottom: 0.3rem;
  display: block;
}

.product-color {
  font-size: 0.7rem;
  color: #999;
  font-weight: 400;
  margin-bottom: 0.3rem;
  display: block;
}

.product-color-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 0.3rem;
}

.color-chip {
  font-size: 0.65rem;
  padding: 1px 6px;
  border-radius: 8px;
  background: #f0f0f0;
  color: #555;
  display: inline-block;
}

.product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.3rem;
}

.product-size-tag {
  font-size: 0.65rem;
  padding: 0.1rem 0.4rem;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #888;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.15s;
}
.product-size-tag:hover { border-color: #e94560; color: #e94560; }
.product-size-tag.size-oos { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.product-size-tag.size-oos:hover { border-color: #ddd; color: #888; }

.product-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: #1a1a2e;
  margin-top: 0.3rem;
}

.empty-state {
  display: none;
  text-align: center;
  padding: 5rem 0;
  color: #999;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: -0.5px;
}

/* How to Order */
.how-to-order {
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.step {
  padding: 1.5rem 1rem;
  border-radius: 12px;
  background: #f5f5f7;
  transition: transform 0.2s;
}

.step:hover {
  transform: translateY(-3px);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e94560;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.step p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* About */
.about {
  background: #fff;
}

.about p {
  max-width: 700px;
  margin: 0 auto 1rem;
  text-align: center;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about a {
  color: #e94560;
  text-decoration: none;
  font-weight: 600;
}

/* Footer */
.footer {
  background: #1a1a2e;
  color: #8e8e93;
  text-align: center;
  padding: 2.5rem 0;
  font-size: 0.85rem;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: rgba(0,0,0,0.06);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(0,0,0,0.1);
  color: #333;
}

.modal-content {
  display: flex;
  flex-direction: column;
}

.modal-image-container {
  position: relative;
}

.modal-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  background: #f0f0f0;
  cursor: pointer;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.06);
  color: #666;
  border: none;
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.1);
  color: #333;
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-dot.active {
  background: #fff;
}

.carousel-dot:hover {
  background: rgba(255,255,255,0.8);
}

.modal-info {
  padding: 1.5rem 2rem 2rem;
}

.modal-info h2 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.modal-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e94560;
  margin-bottom: 0.3rem;
}

.modal-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #888;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.modal-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.modal-size-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #666;
  background: #f5f5f7;
}

.modal-size-btn {
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  color: #333;
  background: #f5f5f7;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.15s;
}
.modal-size-btn:hover { border-color: #e94560; color: #e94560; }
.modal-size-btn.size-oos { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.modal-size-btn.size-oos:hover { border-color: #ddd; color: #999; }

.modal-color-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: all 0.15s;
  padding: 0;
  display: block;
}

.modal-color-btn:hover {
  border-color: #e94560;
}

.modal-desc {
  color: #666;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  font-size: 0.85rem;
}

/* Maintenance Overlay */
.maintenance-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1a1a2e;
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.maintenance-overlay.active {
  display: flex;
}
.maintenance-overlay.active.admin-mode {
  display: block;
}

.maintenance-content {
  text-align: center;
  color: #fff;
  max-width: 500px;
}

.maintenance-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.maintenance-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.maintenance-content p {
  color: #bbb;
  font-size: 1.1rem;
  line-height: 1.6;
}

.maintenance-follow {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.maintenance-follow a {
  color: #e94560;
  text-decoration: none;
  font-weight: 600;
}

.maintenance-admin-btn {
  margin-top: 2rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: #ccc;
  border-radius: 8px;
}

.maintenance-admin-btn:hover {
  border-color: #e94560;
  color: #fff;
}

/* Admin Panel */
.admin-panel {
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: left;
  padding: 1.5rem 2rem;
  box-sizing: border-box;
  overflow-y: auto;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-tab-btn {
  padding: 6px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ccc;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s;
}
.admin-tab-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.admin-tab-btn.active { background: #e94560; border-color: #e94560; color: #fff; }
.admin-tab-content { padding: 0; }
.admin-header h2 {
  font-size: 1.5rem;
}

.admin-header-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2rem;
}

.admin-form h3, .admin-list h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #e94560;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #e94560;
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.form-image-upload-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-sizes-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.form-sizes-area input {
  flex: 1;
  padding: 0.4rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.85rem;
  outline: none;
}

.form-sizes-area input:focus {
  border-color: #e94560;
}

.form-size-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  min-height: 28px;
}

.form-size-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #e94560;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.form-size-tag-remove {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0.7;
}

.form-size-tag-remove:hover {
  opacity: 1;
}

.form-size-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.form-size-preset {
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.15s;
}

.form-size-preset:hover {
  border-color: #e94560;
  color: #fff;
}

.form-size-preset.active {
  background: #e94560;
  border-color: #e94560;
  color: #fff;
}

.variant-row {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
}

.variant-row .form-variant-color {
  width: auto;
  min-width: 140px;
  padding: 0.4rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.85rem;
  outline: none;
}

.variant-row .variant-remove-btn {
  margin-left: 6px;
  vertical-align: middle;
  padding: 2px 8px;
  font-size: 0.8rem;
}

.variant-row .variant-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.form-image-upload-area input[type="file"] {
  display: none;
}

.form-image-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.form-image-preview .image-wrapper {
  position: relative;
  display: inline-block;
}

.form-image-preview img,
.form-image-preview video {
  max-width: 120px;
  max-height: 120px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
}

.form-image-preview .image-wrapper {
  position: relative;
}

.form-image-preview .video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: #fff;
  text-shadow: 0 0 8px rgba(0,0,0,0.6);
  pointer-events: none;
}

.product-image-video {
  width: 100%;
  aspect-ratio: 1;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-video .video-play-icon {
  font-size: 40px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
  opacity: 0.8;
}

.form-image-preview .remove-image {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dc3545;
  color: #fff;
  border: none;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.form-actions {
  display: flex;
  gap: 0.5rem;
}

.admin-product-list {
  padding-right: 0.5rem;
}

.admin-product-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
}

.admin-product-item:hover {
  background: rgba(255,255,255,0.08);
}

.admin-product-item img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.admin-product-item-info {
  flex: 1;
  min-width: 0;
}

.admin-product-item-info .name {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-product-item-info .meta {
  font-size: 0.8rem;
  color: #aaa;
}

.admin-categories {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.admin-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.admin-category-group h4 {
  color: #e94560;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.admin-list-toolbar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.admin-search-input {
  flex: 1;
  min-width: 160px;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.85rem;
  outline: none;
}

.admin-search-input:focus {
  border-color: #e94560;
}

.admin-filter-select {
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
}

.admin-filter-select:focus {
  border-color: #e94560;
}

.admin-filter-select option {
  background: #1a1a2e;
  color: #fff;
}

.admin-panel select option {
  background: #fff;
  color: #333;
}

.admin-tag-label {
  cursor: text;
}

.admin-tag-label[contenteditable="true"] {
  outline: 1px solid #e94560;
  background: rgba(233,69,96,0.1);
  border-radius: 2px;
  padding: 0 2px;
}

.admin-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  min-height: 32px;
}

.admin-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #fff;
}

.admin-tag-remove {
  cursor: pointer;
  color: #dc3545;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  margin-left: 0.15rem;
}

.admin-tag-remove:hover {
  color: #ff6b7a;
}

.admin-add-category {
  display: flex;
  gap: 0.4rem;
}

.admin-add-category input {
  flex: 1;
  padding: 0.4rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.85rem;
  outline: none;
}

.admin-add-category input:focus {
  border-color: #e94560;
}

.admin-product-item-actions {
  display: flex;
  gap: 0.3rem;
  flex-shrink: 0;
}

/* Fullscreen Image Viewer */
.fullscreen-viewer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  touch-action: none;
  overflow: hidden;
}

.fullscreen-viewer.active {
  display: flex;
}

.fullscreen-track-container {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
}

.fullscreen-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.fullscreen-slide {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fullscreen-slide img {
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 4px;
}

.fullscreen-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(0,0,0,0.08);
  border: none;
  color: #333;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.fullscreen-close:hover {
  background: rgba(0,0,0,0.15);
}

.fullscreen-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(0,0,0,0.5);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 10;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .nav.open {
    display: flex;
  }

  .nav-link {
    padding: 0.5rem 0;
  }

  .hero {
    padding: 4rem 0;
    min-height: 400px;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0;
    scroll-margin-top: 380px;
  }

  .product-image {
    height: 180px;
  }

  .product-card {
    border-radius: 0;
    box-shadow: none;
    scroll-margin-top: 380px;
  }

  .product-info {
    padding: 0.5rem;
  }

  .product-name {
    font-size: 0.85rem;
  }

  .products {
    padding: 0.25rem 0;
  }
  .products .container {
    padding: 0 0.5rem 0 0.5rem;
  }
  #catalogHeader {
    padding: 0 0.75rem;
  }

  .search-filter {
    top: 55px;
    padding: 0;
    border-bottom: none;
  }
  .search-filter .container {
    padding: 0;
  }
  .search-filter .filters {
    padding: 0 0.75rem 0.6rem;
    margin-top: 0;
  }
  .search-filter .brand-filter-section {
    padding: 0 0.75rem 0.6rem;
    margin-top: 0;
  }
  .header-search {
    max-width: none;
    margin: 0 0.75rem;
  }
  .header-search-input {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }
  .carousel-group-btn {
    width: 33.33%;
    height: 165px;
    border-radius: 0;
    border: none;
  }
  .carousel-group-btn.active {
    border: none;
    box-shadow: none;
  }
  .category-carousel {
    gap: 0;
    padding: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .carousel-group-label {
    font-size: 0.7rem;
    padding: 0.25rem 0.4rem;
    background: none;
    color: #fff;
    backdrop-filter: none;
  }
  .filters {
    gap: 0.3rem;
    margin-top: 0.4rem;
  }
  .filter-btn {
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
  }

  .modal {
    max-width: 100%;
    border-radius: 12px;
  }

  .modal-image {
    height: 75vh;
  }

  .modal-info {
    padding: 1rem 1.25rem 1.5rem;
  }

  .modal-info h2 {
    font-size: 1.15rem;
  }

  .maintenance-icon {
    font-size: 3rem;
  }

  .maintenance-content h2 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .brand-filter-section .brand-grid {
    gap: 0.5rem;
  }
  .brand-filter-section .brand-card-logo {
    width: 56px;
    height: 56px;
  }
  .brand-filter-section .brand-card-name {
    font-size: 0.6rem;
  }
  .brand-filter-section .brand-card {
    padding: 0.3rem;
  }
  .brand-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.3rem;
  }
  .brand-card-logo {
    width: 64px;
    height: 64px;
  }
  .brand-card-name {
    font-size: 0.65rem;
  }

  .admin-categories-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 1.5rem;
  }

  .steps {
    gap: 1rem;
  }

  #liveModal {
    padding: 0 !important;
    align-items: stretch !important;
  }
  #liveModal > div {
    max-width: 100% !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
  }
  #liveModal #modalMainImg {
    height: 50vh !important;
  }
  #liveModal .modal-close-mobile {
    position: fixed !important;
    top: 12px !important;
    right: 16px !important;
    background: rgba(0,0,0,0.4) !important;
    border: none !important;
    font-size: 24px !important;
    cursor: pointer !important;
    color: #fff !important;
    z-index: 20 !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (min-width: 769px) {
  .category-carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    justify-content: center;
    gap: 12px;
  }
}

/* Catalog View */
.catalog-mode .hero,
.catalog-mode .how-to-order,
.catalog-mode .about,
.catalog-mode .footer { display: none; }

.catalog-mode .search-filter { padding-top: 1rem; }

#catalogHeader {
  padding: 0 24px;
}

.catalog-back {
  display: inline-block;
  font-size: 0.9rem;
  color: #e94560;
  text-decoration: none;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.catalog-back:hover { text-decoration: underline; }

.catalog-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-card {
  animation: fadeIn 0.4s ease both;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }
.product-card:nth-child(9) { animation-delay: 0.45s; }
.product-card:nth-child(10) { animation-delay: 0.5s; }
.product-card:nth-child(11) { animation-delay: 0.55s; }
.product-card:nth-child(12) { animation-delay: 0.6s; }
.product-card:nth-child(13) { animation-delay: 0.65s; }
.product-card:nth-child(14) { animation-delay: 0.7s; }
.product-card:nth-child(15) { animation-delay: 0.75s; }

/* Stock */
.product-stock {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.3rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
}
.product-stock.in-stock { color: #2e7d32; background: #e8f5e9; }
.product-stock.out-of-stock { color: #c62828; background: #ffebee; }

.btn-add-cart {
  display: block;
  width: 100%;
  margin-top: 0.6rem;
  padding: 0.5rem;
  border: none;
  border-radius: 8px;
  background: #e94560;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-add-cart:hover { background: #d63851; }

.product-name { cursor: pointer; }
.product-name:hover { color: #e94560; }

/* Account Button */
.account-toggle {
  position: relative;
  background: none;
  border: none;
  color: #1a1a2e;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  margin-right: 0.2rem;
}
.account-toggle:hover { color: #e94560; }

/* Account Modal */
.account-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account-modal {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.account-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
}
.account-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #eee;
}
.account-tab {
  flex: 1;
  padding: 0.6rem 1rem;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  color: #888;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.account-tab.active {
  color: #e94560;
  border-bottom-color: #e94560;
}
.account-form-group {
  margin-bottom: 1rem;
}
.account-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 0.3rem;
}
.account-form-group input,
.account-form-group textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 2px solid #e8e8ed;
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.account-form-group input:focus,
.account-form-group textarea:focus {
  border-color: #e94560;
}
.account-btn-primary {
  width: 100%;
  padding: 0.75rem;
  background: #e94560;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.account-btn-primary:hover { background: #d63851; }
.account-btn-logout { background: #666; margin-top: 1rem; }
.account-btn-logout:hover { background: #555; }
.account-error {
  font-size: 0.8rem;
  color: #c62828;
  margin-top: 0.5rem;
  min-height: 1.2em;
}
.account-profile { text-align: center; }
.account-avatar { margin-bottom: 0.8rem; }
.account-detail { font-size: 1rem; font-weight: 600; margin-bottom: 0.2rem; }
.account-detail-label { font-size: 0.85rem; color: #888; font-weight: 400; }
.account-detail-address { font-size: 0.85rem; color: #666; font-weight: 400; margin-top: 0.3rem; }

/* Checkout Modal */
.checkout-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); z-index: 1100;
  display: flex; align-items: center; justify-content: center;
}
.checkout-modal {
  background: #fff; border-radius: 12px; padding: 1.5rem 1.5rem 1.8rem;
  width: 90%; max-width: 420px; position: relative;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.checkout-modal-close {
  position: absolute; top: 0.6rem; right: 0.8rem;
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: #888; line-height: 1;
}
.checkout-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.checkout-header h3 { font-size: 1.2rem; margin: 0; }
.checkout-po {
  font-size: 0.85rem; font-weight: 700; color: #555;
  background: #f5f5f7; padding: 0.5rem 0.8rem; border-radius: 6px;
  margin-bottom: 1rem; text-align: center; letter-spacing: 0.5px;
}
.checkout-items { font-size: 0.85rem; margin-bottom: 1rem; }
.checkout-item {
  display: flex; justify-content: space-between; padding: 0.3rem 0;
  border-bottom: 1px solid #f0f0f0; gap: 0.5rem;
}
.checkout-item-name { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.checkout-item-qty { color: #888; white-space: nowrap; }
.checkout-item-price { font-weight: 600; white-space: nowrap; }
.checkout-totals { border-top: 2px solid #e94560; padding-top: 0.6rem; margin-bottom: 0.6rem; }
.checkout-total-row { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 0.2rem 0; }
.checkout-deposit-row { font-weight: 700; color: #e94560; font-size: 1rem; }
.checkout-deposit-amt { font-size: 1.1rem; }
.checkout-note { font-size: 0.8rem; color: #888; margin-bottom: 1rem; text-align: center; }
.checkout-actions { display: flex; flex-direction: column; gap: 0.6rem; }
.checkout-btn {
  width: 100%; padding: 0.75rem; border: none; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: background 0.2s;
  text-align: center;
}
.checkout-btn-copy { background: #f0f0f0; color: #333; }
.checkout-btn-copy:hover { background: #e0e0e0; }
.checkout-btn-email { background: #1976d2; color: #fff; }
.checkout-btn-email:hover { background: #1565c0; }
.checkout-btn-msg { background: #e94560; color: #fff; }
.checkout-btn-msg:hover { background: #d63851; }
.checkout-copied {
  text-align: center; font-size: 0.8rem; color: #2e7d32;
  margin-top: 0.5rem; opacity: 0; transition: opacity 0.3s;
  min-height: 1.2em;
}
.checkout-copied.show { opacity: 1; }

/* Cart Toggle Button */
.cart-toggle {
  position: relative;
  background: none;
  border: none;
  color: #1a1a2e;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}
.cart-badge {
  position: absolute;
  top: 0;
  right: -2px;
  background: #e94560;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart Slideout */
.cart-slideout {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  z-index: 100000;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.cart-slideout.active { right: 0; }

.cart-slideout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #eee;
}
.cart-slideout-header h3 { font-size: 1.1rem; margin: 0; }

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
  padding: 0 0.25rem;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-item {
  display: flex;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}
.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  background: #f0f0f0;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-size { font-size:0.7rem; font-weight:600; color:#e94560; margin-top:2px; }
.cart-item-color { font-size:0.7rem; font-weight:500; color:#888; margin-top:1px; }
.cart-item-price { font-size: 0.8rem; color: #e94560; font-weight: 600; margin-bottom: 4px; }
.cart-item-qty { display: flex; align-items: center; gap: 0.5rem; }
.cart-qty-btn {
  width: 26px; height: 26px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background 0.2s;
}
.cart-qty-btn:hover { background: #f5f5f5; }
.cart-item-remove {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #bbb;
  cursor: pointer;
  padding: 0 0.25rem;
  flex-shrink: 0;
}
.cart-item-remove:hover { color: #e94560; }

.cart-total {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: right;
  border-top: 1px solid #eee;
}
.cart-total-row { font-size: 1rem; }
.cart-deposit-row { font-size: 0.85rem; color: #e94560; font-weight: 600; margin-top: 4px; }

.cart-footer { padding: 0 1.5rem 1.2rem; }
.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: #e94560;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.cart-checkout-btn:hover { background: #d63851; }

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: auto; }

/* Cart Notification */
.cart-notification {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  white-space: nowrap;
  max-width: 90vw;
  text-align: center;
}
.cart-notification.active { opacity: 1; }

@media (max-width: 768px) {
  .cart-toggle { margin-left: auto; }
  .cart-slideout { width: 100vw; max-width: 100vw; }
}

.loading-spinner { display: none; flex-direction: column; align-items: center; justify-content: center; padding: 3rem 0; grid-column: 1/-1; }
.loading-spinner.active { display: flex; }
.spinner { width: 40px; height: 40px; border: 4px solid #f0f0f0; border-top-color: #e94560; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-spinner span { margin-top: 12px; color: #888; font-size: 0.85rem; }
