/* ========================================
   New Pages: Track, Wishlist, Deals, FAQ, Seller
   ======================================== */

/* ============ TRACK ORDER ============ */
.track-hero {
  background: linear-gradient(135deg, #f8f6f3 0%, #ede5d8 100%);
  padding: 40px 0 60px;
  text-align: center;
}

.track-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin: 12px 0 12px;
}

.track-hero > .container > p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.track-form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  text-align: left;
}

.track-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.track-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.track-field small {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.track-input-wrap {
  position: relative;
}

.track-input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.track-input-wrap input {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}

.track-input-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

.btn-track {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.track-demo-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(21, 101, 192, 0.08);
  color: var(--new);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}

.track-demo-hint i {
  color: var(--new);
  font-size: 0.95rem;
}

.track-demo-hint code {
  background: var(--bg);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'SF Mono', Monaco, monospace;
  font-weight: 600;
  cursor: pointer;
}

/* Tracking Result */
.track-result {
  padding: 40px 0 60px;
}

.track-header-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 32px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 24px;
}

.track-header-info {
  flex: 1;
}

.track-order-id {
  font-size: 0.85rem;
  opacity: 0.85;
  display: inline-block;
  margin-bottom: 6px;
}

.track-header-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.track-header-info p {
  font-size: 0.95rem;
  opacity: 0.95;
}

.track-header-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.track-progress-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}

.track-progress-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.track-timeline {
  position: relative;
  padding-left: 16px;
}

.track-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.track-step {
  position: relative;
  padding-left: 60px;
  padding-bottom: 28px;
}

.track-step:last-child {
  padding-bottom: 0;
}

.track-step-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  z-index: 1;
}

.track-step.completed .track-step-icon {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.track-step.current .track-step-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(139, 111, 71, 0.2);
  animation: pulse 2s infinite;
}

.track-step.pending .track-step-icon {
  background: var(--bg);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(139, 111, 71, 0.2); }
  50% { box-shadow: 0 0 0 12px rgba(139, 111, 71, 0.05); }
}

.track-step-content strong {
  display: block;
  font-size: 0.98rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.track-step.pending .track-step-content strong {
  color: var(--text-muted);
}

.track-step-content > span {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.track-step-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.track-driver {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.track-driver-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.track-driver > div {
  flex: 1;
}

.track-driver strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

.track-driver span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.track-driver span i {
  color: #f59e0b;
}

.track-call-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.track-call-btn:hover {
  background: #1b5e20;
  transform: scale(1.05);
}

.track-map-card {
  margin-bottom: 24px;
}

.track-map {
  position: relative;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(139, 111, 71, 0.15), rgba(139, 111, 71, 0.05)),
    repeating-linear-gradient(0deg, #ede5d8 0px, #ede5d8 50px, #f8f6f3 50px, #f8f6f3 100px),
    repeating-linear-gradient(90deg, #ede5d8 0px, #ede5d8 50px, #f8f6f3 50px, #f8f6f3 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.track-map-overlay {
  background: var(--bg);
  padding: 24px 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  width: 90%;
}

.track-map-overlay i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.track-map-overlay h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.track-map-overlay > p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.track-map-overlay strong {
  color: var(--primary);
}

.track-map-route {
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-point {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.route-point i {
  font-size: 0.9rem;
  color: var(--primary);
  margin: 0;
}

.route-line {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.route-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--success), var(--primary));
  border-radius: 3px;
  transition: width 1s ease;
  position: relative;
}

.route-progress::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.3);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(139, 111, 71, 0.1); }
}

.track-details-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.track-detail-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.track-detail-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.track-detail-card h3 i {
  color: var(--primary);
}

.track-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.track-item:last-of-type {
  border-bottom: none;
}

.track-item img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.track-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--dark);
}

.track-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

.track-item-price {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.track-total {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: 8px;
  border-top: 2px solid var(--dark);
  font-weight: 600;
  font-size: 1rem;
}

.track-total strong {
  font-size: 1.15rem;
  color: var(--primary);
}

.track-address {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
}

.track-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.track-help {
  padding: 60px 0;
  background: var(--bg-light);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.help-card {
  text-align: center;
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.help-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.help-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.help-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ============ WISHLIST ============ */
.wishlist-section {
  padding: 32px 0 60px;
}

.wishlist-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.wishlist-header h1 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.wishlist-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.wishlist-actions {
  display: flex;
  gap: 8px;
}

.wishlist-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.wishlist-stats {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.wishlist-stats strong {
  color: var(--dark);
  font-weight: 700;
}

.wishlist-filters {
  display: flex;
  gap: 6px;
}

.filter-btn {
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

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

.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.wishlist-empty {
  text-align: center;
  padding: 80px 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 2px dashed var(--border);
}

.wishlist-empty > i {
  font-size: 4rem;
  color: var(--border);
  margin-bottom: 20px;
}

.wishlist-empty h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.wishlist-empty p {
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.wishlist-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.wishlist-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.wishlist-item-image {
  aspect-ratio: 1;
  background: var(--bg-light);
  overflow: hidden;
  position: relative;
}

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

.wishlist-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--danger);
  font-size: 0.85rem;
  z-index: 2;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wishlist-remove:hover {
  background: var(--danger);
  color: #fff;
  transform: scale(1.05);
}

.wishlist-item-info {
  padding: 16px;
}

.wishlist-item-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wishlist-item-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.wishlist-item-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
}

.wishlist-cta {
  text-align: center;
}

/* ============ DEALS ============ */
.deals-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.deals-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 111, 71, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.deals-hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.deals-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--danger);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  animation: pulse-tag 2s infinite;
}

@keyframes pulse-tag {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.deals-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.1;
}

.deals-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.deals-hero p strong {
  color: var(--primary-light);
  font-weight: 700;
}

.countdown-wrap {
  margin-bottom: 28px;
}

.countdown-label {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 12px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.countdown-unit {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 20px;
  border-radius: var(--radius);
  min-width: 80px;
}

.countdown-unit strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 4px;
}

.countdown-unit span {
  font-size: 0.72rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-sep {
  font-size: 1.8rem;
  font-weight: 700;
  opacity: 0.4;
}

.deals-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

/* Promo Codes */
.promo-codes-section {
  padding: 60px 0;
}

.promo-codes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.promo-code-card {
  position: relative;
  padding: 24px;
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}

.promo-code-card:hover {
  border-color: var(--primary);
  border-style: solid;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.promo-code-card.hot {
  background: linear-gradient(135deg, rgba(198, 40, 40, 0.08), rgba(198, 40, 40, 0.02));
  border-color: var(--danger);
}

.hot-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  padding: 4px 10px;
  background: var(--danger);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 12px;
  text-transform: uppercase;
}

.promo-code-discount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.promo-code-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.promo-code-card > p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.promo-code-tag {
  display: flex;
  align-items: center;
  border: 1.5px dashed var(--text-muted);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 8px;
}

.promo-code-tag code {
  flex: 1;
  padding: 10px;
  font-family: 'SF Mono', Monaco, monospace;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--dark);
  font-size: 0.88rem;
}

.copy-btn {
  padding: 10px 14px;
  background: var(--dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.copy-btn:hover {
  background: var(--primary);
}

.copy-btn.copied {
  background: var(--success);
}

.promo-expiry {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Deals Grid */
.deals-section {
  padding: 0 0 60px;
}

.deals-filter {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.deal-filter-btn {
  padding: 7px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

.deal-filter-btn:hover {
  border-color: var(--primary);
}

.deal-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.deal-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.deal-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.deal-image {
  position: relative;
  aspect-ratio: 1.2;
  background: var(--bg-light);
  overflow: hidden;
}

.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.deal-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  background: var(--danger);
  color: #fff;
  font-weight: 800;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  z-index: 2;
}

.deal-stock {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(198, 40, 40, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.deal-stock i {
  font-size: 0.7rem;
}

.deal-info {
  padding: 18px;
}

.deal-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
  min-height: 2.6em;
}

.deal-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.deal-price-now {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}

.deal-price-was {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.deal-savings {
  font-size: 0.82rem;
  color: var(--success);
  margin-bottom: 12px;
}

.deal-savings strong {
  font-weight: 700;
}

.deal-progress {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.deal-progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.deal-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--success), var(--danger));
  border-radius: 3px;
  transition: width 0.6s ease;
}

.deal-progress span {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}

.deals-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.deals-empty i {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.3;
}

.deals-empty h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

/* ============ FAQ ============ */
.faq-hero {
  background: linear-gradient(135deg, #f8f6f3 0%, #ede5d8 100%);
  padding: 50px 0;
  text-align: center;
}

.faq-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 12px 0 12px;
  color: var(--dark);
}

.faq-hero > .container > p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 28px;
}

.faq-search {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.faq-search > i {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
}

.faq-search input {
  width: 100%;
  padding: 18px 60px 18px 56px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
  outline: none;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.faq-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 111, 71, 0.1);
}

#faqSearchClear {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

#faqSearchClear:hover {
  background: var(--border);
  color: var(--dark);
}

.faq-popular-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.faq-popular-tags > span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.popular-tag {
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

.popular-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.faq-section {
  padding: 50px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: flex-start;
}

.faq-sidebar {
  position: sticky;
  top: 140px;
}

.faq-sidebar h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-categories {
  margin-bottom: 24px;
}

.faq-cat-btn {
  width: 100%;
  text-align: left;
  padding: 11px 16px;
  background: var(--bg);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.faq-cat-btn i {
  color: var(--primary);
  width: 16px;
  text-align: center;
}

.faq-cat-btn span:not(:first-of-type) {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-light);
  padding: 2px 8px;
  border-radius: 10px;
}

.faq-cat-btn:hover {
  background: var(--bg-light);
}

.faq-cat-btn.active {
  background: rgba(139, 111, 71, 0.08);
  border-color: var(--primary);
  color: var(--primary);
}

.faq-cat-btn.active span:not(:first-of-type) {
  background: var(--primary);
  color: #fff;
}

.faq-contact-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
}

.faq-contact-card i {
  font-size: 1.8rem;
  margin-bottom: 8px;
  opacity: 0.9;
}

.faq-contact-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.faq-contact-card p {
  font-size: 0.82rem;
  opacity: 0.9;
  margin-bottom: 14px;
  line-height: 1.5;
}

.faq-contact-card .btn {
  background: var(--bg);
  color: var(--primary);
  border-color: var(--bg);
  width: 100%;
}

.faq-contact-card .btn:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.faq-main {
  min-width: 0;
}

.faq-result-info {
  padding: 12px 16px;
  background: rgba(21, 101, 192, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--text);
  font-size: 0.9rem;
}

.faq-result-info em {
  font-weight: 600;
  color: var(--primary);
}

.faq-no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.faq-no-results i {
  font-size: 3rem;
  opacity: 0.3;
  margin-bottom: 16px;
}

.faq-no-results h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.faq-no-results a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.faq-category-group {
  margin-bottom: 32px;
}

.faq-category-group h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.faq-category-group .faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 8px;
  transition: all var(--transition);
}

.faq-category-group .faq-item[open] {
  border-color: var(--primary);
}

.faq-category-group .faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
  gap: 16px;
}

.faq-category-group .faq-item summary span {
  flex: 1;
}

.faq-category-group .faq-item summary i {
  color: var(--primary);
  font-size: 0.85rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-category-group .faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-category-group .faq-item p {
  padding: 0 20px 18px;
  color: var(--text);
  line-height: 1.7;
  font-size: 0.92rem;
}

.faq-category-group .faq-item p a {
  color: var(--primary);
  text-decoration: underline;
}

.faq-hidden {
  display: none !important;
}

.faq-highlight {
  background: rgba(245, 158, 11, 0.3);
  padding: 0 2px;
  border-radius: 2px;
}

.faq-cta {
  padding: 40px 0 60px;
}

/* ============ SELLER ============ */
.seller-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 70px 0;
}

.seller-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.seller-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 12px 0 14px;
  line-height: 1.1;
}

.seller-hero > .container > .seller-hero-content > p {
  font-size: 1.05rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 32px;
}

.seller-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.seller-stats > div {
  text-align: center;
}

.seller-stats strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 4px;
}

.seller-stats span {
  font-size: 0.82rem;
  opacity: 0.7;
}

.seller-benefits {
  padding: 60px 0;
}

.seller-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.seller-benefit {
  padding: 32px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}

.seller-benefit:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(139, 111, 71, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--primary);
}

.seller-benefit h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.seller-benefit p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.seller-process {
  padding: 60px 0;
  background: var(--bg-light);
}

.seller-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.seller-step {
  text-align: center;
}

.seller-step .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(139, 111, 71, 0.3);
}

.seller-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.seller-step p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.seller-apply {
  padding: 60px 0;
}

.apply-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.apply-header {
  text-align: center;
  margin-bottom: 32px;
}

.apply-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin: 8px 0 6px;
}

.apply-header p {
  color: var(--text-light);
}

.apply-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
}

.apply-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.apply-step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition);
}

.apply-step.active .apply-step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.apply-step.completed .apply-step-circle {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.apply-step span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.apply-step.active span {
  color: var(--dark);
  font-weight: 600;
}

.apply-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  max-width: 80px;
  margin: 0 12px;
  margin-bottom: 28px;
  transition: background var(--transition);
}

.apply-step-line.completed {
  background: var(--success);
}

.apply-panel {
  display: none;
}

.apply-panel.active {
  display: block;
  animation: fadeInUp 0.3s ease;
}

.apply-panel > h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  text-align: center;
}

.apply-form .form-field small {
  font-weight: normal;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.checkbox-card {
  cursor: pointer;
}

.checkbox-card input {
  position: absolute;
  opacity: 0;
}

.checkbox-card > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-align: center;
}

.checkbox-card > div i {
  font-size: 1.4rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.checkbox-card > div span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

.checkbox-card:hover > div {
  border-color: var(--primary-light);
}

.checkbox-card input:checked ~ div {
  border-color: var(--primary);
  background: rgba(139, 111, 71, 0.05);
}

.checkbox-card input:checked ~ div i {
  color: var(--primary);
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.radio-card {
  cursor: pointer;
  position: relative;
}

.radio-card input {
  position: absolute;
  opacity: 0;
}

.radio-card span {
  display: block;
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-align: center;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.radio-card:hover span {
  border-color: var(--primary-light);
}

.radio-card input:checked ~ span {
  border-color: var(--primary);
  background: rgba(139, 111, 71, 0.05);
  color: var(--primary);
  font-weight: 600;
}

.apply-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  gap: 12px;
}

.apply-actions .btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

.apply-success {
  text-align: center;
  padding: 32px 0;
}

.success-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--success);
  font-size: 3.5rem;
}

.apply-success h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.apply-success p {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.apply-success p strong {
  color: var(--primary);
  font-family: 'SF Mono', Monaco, monospace;
  background: var(--bg-light);
  padding: 2px 8px;
  border-radius: 4px;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.seller-testimonials {
  padding: 60px 0;
  background: var(--bg-light);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .track-details-grid {
    grid-template-columns: 1fr;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .promo-codes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seller-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seller-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-layout {
    grid-template-columns: 240px 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  /* Track */
  .track-hero h1 {
    font-size: 1.6rem;
  }

  .track-form-card {
    padding: 24px 20px;
  }

  .track-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .track-header-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .track-header-info h2 {
    font-size: 1.4rem;
  }

  .track-progress-card {
    padding: 20px;
  }

  .track-step {
    padding-left: 50px;
  }

  .track-actions {
    flex-direction: column;
  }

  .track-actions .btn {
    width: 100%;
  }

  /* Wishlist */
  .wishlist-header {
    flex-direction: column;
  }

  .wishlist-actions {
    width: 100%;
  }

  .wishlist-actions .btn {
    flex: 1;
  }

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

  /* Deals */
  .deals-hero {
    padding: 40px 0;
  }

  .deals-hero h1 {
    font-size: 2rem;
  }

  .countdown-unit {
    min-width: 60px;
    padding: 10px 12px;
  }

  .countdown-unit strong {
    font-size: 1.4rem;
  }

  .countdown-sep {
    font-size: 1.3rem;
  }

  .promo-codes-grid {
    grid-template-columns: 1fr;
  }

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

  .deal-info {
    padding: 14px;
  }

  .deal-info h3 {
    font-size: 0.88rem;
  }

  .deal-price-now {
    font-size: 1.15rem;
  }

  /* FAQ */
  .faq-hero h1 {
    font-size: 1.7rem;
  }

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

  .faq-sidebar {
    position: relative;
    top: 0;
  }

  .faq-categories {
    display: flex;
    overflow-x: auto;
    gap: 6px;
    margin-bottom: 20px;
    scrollbar-width: none;
  }

  .faq-categories::-webkit-scrollbar {
    display: none;
  }

  .faq-cat-btn {
    flex-shrink: 0;
    margin-bottom: 0;
    white-space: nowrap;
  }

  .faq-sidebar h3 {
    display: none;
  }

  .faq-contact-card {
    margin-top: 20px;
  }

  /* Seller */
  .seller-hero h1 {
    font-size: 1.9rem;
  }

  .seller-stats {
    gap: 16px;
  }

  .seller-stats strong {
    font-size: 1.5rem;
  }

  .seller-benefits-grid {
    grid-template-columns: 1fr;
  }

  .seller-steps {
    grid-template-columns: 1fr;
  }

  .apply-card {
    padding: 24px 20px;
  }

  .apply-steps {
    margin-bottom: 24px;
  }

  .apply-step-line {
    max-width: 30px;
  }

  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .radio-group {
    grid-template-columns: 1fr;
  }

  .apply-actions {
    flex-direction: column-reverse;
  }

  .apply-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .countdown {
    gap: 4px;
  }

  .countdown-unit {
    min-width: 50px;
    padding: 8px 10px;
  }

  .countdown-unit strong {
    font-size: 1.2rem;
  }

  .countdown-unit span {
    font-size: 0.65rem;
  }

  .deals-grid {
    grid-template-columns: 1fr;
  }
}
