/* Colores Basados en el Logo */
:root {
  --markekint-primary: #d9e6f8;
  --markekint-secondary: #ffd700;
  --markekint-light: #ededed;
  --markekint-dark: #2e2e2e;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
}

/* Navbar */
.navbar-light {
  background-color: #f8f9fa;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
  background-color: var(--markekint-primary);
}

.navbar-brand span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
}

.navbar-brand .logo {
  width: auto;
  height: 40px;
}

.nav-link.active {
  font-weight: bold;
  color: #007bff !important;
}

.nav-link:hover {
  color: #0056b3 !important;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #ffffff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-light {
  border-color: var(--markekint-secondary);
  color: var(--markekint-secondary);
}

.btn-outline-light:hover {
  background-color: var(--markekint-secondary);
  color: var(--markekint-dark);
}

footer {
  background-color: var(--markekint-primary);
}

/* Sidebar */
.list-group-item.active {
  background-color: var(--markekint-primary);
  border-color: var(--markekint-primary);
  color: white;
}

.list-group-item {
  transition: all 0.3s ease;
}

.list-group-item:hover {
  background-color: var(--markekint-secondary);
  color: var(--markekint-dark);
}

/* Productos */
#productGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

#productGrid .card {
  border: none;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 20px;
}

#productGrid .card img {
  height: 200px;
  object-fit: cover;
}

#productGrid .card-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

#productDetails {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#productGrid .btn {
  border-radius: 20px;
}

.product-card {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  max-height: 200px;
  object-fit: cover;
}
.card-body {
  padding: 1rem;
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card-text {
  color: #555;
}

.card .btn {
  width: 100%;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.row.g-4 {
  gap: 20px;
}

.product-detail-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.product-images img {
  border-radius: 5px;
  margin: 10px 0;
}

.product-images img:hover {
  transform: scale(1.1);
}

.product-card .btn {
  background-color: var(--markekint-primary);
  color: white;
  border: none;
}

.product-card .btn:hover {
  background-color: var(--markekint-secondary);
  color: var(--markekint-dark);
}

.modal-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: 5px;
  border: 2px solid var(--markekint-light);
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.modal-image:hover {
  transform: scale(1.1);
  border-color: var(--markekint-secondary);
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.image-focus {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
  padding: 10px;
  background-color: #f8f9fa;
  margin-bottom: 20px;
  border-radius: 8px;
}

.image-focus img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilos para el carrusel */
.image-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: inset 0px -1px 4px rgba(0, 0, 0, 0.1);
}

.image-carousel .thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.image-carousel .thumbnail:hover {
  transform: scale(1.1);
  border-color: #4caf50;
}

.image-carousel .thumbnail.active {
  border-color: #4caf50;
  outline: 2px solid #4caf50;
  transform: scale(1.2);
}

.image-carousel {
  scroll-behavior: smooth;
}

#productDetails ul {
  list-style-type: none;
  padding: 0;
}

#productDetails ul li {
  margin-bottom: 10px;
}

.modal-header.bg-markekint {
  background-color: #007bff;
}

.modal-content {
  border-radius: 10px;
}

.modal-title {
  font-weight: bold;
}

#redeemCouponForm .form-control {
  border-radius: 8px;
}

#redeemCouponForm button {
  border-radius: 8px;
  font-size: 16px;
}

#uploadTicketModal .modal-header {
  background-color: #28a745;
  color: white;
}

#uploadTicketModal .btn-success {
  background-color: #28a745;
  border: none;
}
