body {
  background-color: #0d1117;
  color: #ffffff;
  font-family: "Cairo", sans-serif;
  line-height: 1.6;
}

/*
* Buttons
*/
.btn-primary {
  background-color: var(--bs-primary)!important;
  border-color: var(--bs-primary)!important;
  color: #fff;
}
.btn-outline-primary {
  background-color: transparent !important;
  border-color: var(--bs-primary) !important;
  color: var(--bs-primary) !important;
}
.btn-secondary {
  background-color: var(--bs-secondary)!important;
  border-color: var(--bs-secondary)!important;
  color: #fff;
}
.btn-outline-secondary {
  background-color: transparent !important;
  border-color: var(--bs-secondary) !important;
  color: var(--bs-secondary) !important;
}
.btn-gradient {
  background: var(--bs-primary);
  border: none;
  border-radius: 25px;
  color: white;
  transition: all 0.3s ease;
}

/*
* Inputs
*/
.form-control, .form-select {
  background-color: var(--bs-dark) !important;
  color: #ffffff !important;
}

/*
* Backgrounds
*/
.bg-primary {
  background-color: var(--bs-primary) !important;
}
.bg-secondary {
  background-color: var(--bs-secondary) !important;
}

/*
* Alerts
*/
.bottom-alert.alert {
  position: fixed;
  bottom: 0px;
  width: 100%;
  margin-bottom: 0px;
  border-radius: 0px;
  color: #fff;
  border: none;
}
.bottom-alert.alert.alert-danger {
  background-color: var(--bs-danger);
}
.bottom-alert.alert.alert-success {
  background-color: var(--bs-success);
}

/*
* Typography
*/
.text-primary {
  color: var(--bs-primary) !important;
}

/*
* Borders
*/
.border-primary {
  border-color: var(--bs-primary) !important;
}
.rounded-20 {
  border-radius: 20px !important;
}

.navbar-dark-custom {
  background-color: #161b22 !important;
  border-bottom: 1px solid #30363d;
}

.gift-card-image {
  width: 100%;
  max-height: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 70vh;
}

.card-dark {
  background-color: #21262d;
  border: 1px solid #30363d;
  color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.bg-dark-section {
  background-color: #161b22;
}

.text-muted-dark {
  color: #8b949e !important;
}

.form-control-dark {
  background-color: #21262d;
  border: 1px solid #30363d;
  color: #ffffff;
}

.form-control-dark::placeholder {
  color: #8b949e;
}

.form-control-dark:focus {
  background-color: #21262d;
  border-color: #0d6efd;
  color: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.dropdown-menu-dark {
  background-color: #21262d;
  border: 1px solid #30363d;
}

.footer-dark {
  background-color: #0d1117;
  border-top: 1px solid #30363d;
}

.whatsapp-contact-icon {
  position: fixed;
  background-color: #075E54;
  bottom: 10px;
  right: 10px;
  text-align: center;
  border-radius: 50px;
  padding: 2px 12px;
}
.whatsapp-contact-icon a {
  color: #fff;
  font-size: 32px;
}

/*
* Product Details
*/
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #ffffff;
  background-color: #161b22;
  border-color: #30363d #30363d #161b22;
}
.denomination-card.active {
  border-color: var(--bs-primary);
}

/*
* Profile
*/
.profile-side-card {
	border-radius: 20px;
}
.profile-side-card ul li{
	padding: 10px;
}
.profile-side-card ul li.active{
	border-radius: 12px;
	background-color: var(--bs-primary);
}
.profile-side-card ul li.active a {
  color: #ffffff;
}

/*
* Cart page
*/
.cart-item .item-image {
  width: 100px;
  object-fit: cover;
  border-radius: 8px;
}
.cart-item .item-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.cart-item .item-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--bs-primary);
}
.cart-item .quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-item .remove-btn {
  color: var(--danger-color);
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cart-item .remove-btn:hover {
  color: #c82333;
}
.cart-item .cart-summary {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 2rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}
.summary-row:last-child {
  border-bottom: none;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--bs-dark);
}
.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.empty-cart-icon {
  font-size: 4rem;
  color: var(--bs-secondary);
  margin-bottom: 1rem;
}