/* ════════════════════════════════════════════════════════════════════════════
   STORE & SETTINGS STYLES
   ════════════════════════════════════════════════════════════════════════════ */

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.store-item {
  background: #151515;
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.store-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
  border-color: #f5d76e;
}

.store-item .icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.store-item .name {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

.store-item .price {
  color: #d4af37;
  font-size: 18px;
  font-weight: bold;
}

.settings-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.settings-group {
  background: #151515;
  border: 2px solid #d4af37;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.settings-group h3 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 18px;
}

.settings-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #333;
}

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

.settings-item .label {
  color: #fff;
  font-size: 16px;
}

.settings-item input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: #d4af37;
  cursor: pointer;
}

.settings-item select {
  padding: 8px 12px;
  background: #000;
  border: 1px solid #444;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.settings-item select:focus {
  border-color: #d4af37;
  outline: none;
}

@media (max-width: 768px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .store-item .icon {
    font-size: 36px;
  }
  
  .store-item .name {
    font-size: 14px;
  }
  
  .store-item .price {
    font-size: 16px;
  }
}