/* Product Page Specific Styles */

/* Light mode (default) */
:root {
  --btn-theme-color: #5a6268;
  --btn-theme-hover-color: #495057;
  --link-color: #5a6268;
  --link-hover-color: #495057;
}

/* Button styles - override default blue theme */
.btn-theme {
  background-color: var(--btn-theme-color);
  border-color: var(--btn-theme-color);
  color: #fff;
}

.btn-theme:hover {
  background-color: var(--btn-theme-hover-color);
  border-color: var(--btn-theme-hover-color);
  color: #fff;
}

/* Quantity buttons */
.quantity-down,
.quantity-up {
  background-color: #e9ecef;
  color: #495057;
  border: 1px solid #ced4da;
}

.quantity-down:hover,
.quantity-up:hover {
  background-color: #dee2e6;
}

/* Links */
a {
  color: var(--link-color);
}

a:hover {
  color: var(--link-hover-color);
}

/* Badges */
.badge.bg-theme {
  background-color: var(--btn-theme-color) !important;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  :root {
    --btn-theme-color: #8197a4;
    --btn-theme-hover-color: #a3b1bc;
    --link-color: #8197a4;
    --link-hover-color: #a3b1bc;
  }
  
  .quantity-down,
  .quantity-up {
    background-color: #444;
    color: #e0e0e0;
    border-color: #666;
  }
  
  .quantity-down:hover,
  .quantity-up:hover {
    background-color: #555;
  }
  
  .qty-input {
    background-color: #2d2d2d;
    border-color: #444;
    color: #e0e0e0;
  }
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .cart-form {
    flex-direction: column;
    gap: 10px;
  }
  
  .quantity-input {
    width: 100%;
  }
  
  .btn-theme {
    width: 100%;
  }
}