@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

body {
    font-family: 'Outfit', sans-serif;
}
section#main-body {
    min-height: 65vh;
}
.primary-bg-color {
    background-color: #eaeaea;
}
header.header .navbar {
  background-color: #000;
}
header.header .navbar a {
  color: #fff;
}
header.header .navbar .dropdown-menu {
    background-color: #000;
}
header.header .logo-img {
  max-width: 200px;
  max-height: 38px;
}
header.header .main-navbar-wrapper{
  background-color: #353535;
}
header.header .toolbar .nav-link {
    background: #000000;
    border: 1px solid #00ff00;
    color: #00ff00;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #000!important;
    background-color: #00ff00;
}
.badge-success{
    
    background: #00ff00;
    color: #000000;
}
header.header .toolbar .nav-link:focus, header.header .toolbar .nav-link:hover {
    color: #000;
    background: #00ff00;
}
footer.footer {
    background-color: #353535;
}
.card-header, .card, .mc-promo-login, .mc-promo-manage, #order-standard_cart .products .product {
    border: none!important;
}
.sidebar .card-header{
    background-color: rgb(241 241 241);
}
.sidebar .card-sidebar i.card-minimise{
    color: rgb(241 241 241)!important;
}
.header-lined p {
    font-size: 13px;
    color: #76787b;
}
#order-standard_cart .products .product div.product-desc, #order-standard_cart .products .product footer {
    float: none!important;
    width: 100%!important;
    margin: 0!important;
}
#order-standard_cart .cart-sidebar {
    width: 22%!important;
}   

.btn {
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  background-size: 200% auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.btn:hover:not(:disabled):not(.disabled) {
  background-position: right center;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  filter: brightness(1.05);
}
.btn-primary {
  background-image: linear-gradient(45deg, #007bff, #00a2ff);
}
.btn-success {
  background-image: linear-gradient(45deg, #28a745, #5dd45d);
}
.btn-danger {
  background-image: linear-gradient(45deg, #dc3545, #ff4b5c);
}
.btn-warning {
  background-image: linear-gradient(45deg, #ffc107, #ff9900);
  color: #222;
}
.btn-info {
  background-image: linear-gradient(45deg, #17a2b8, #48d1e0);
}
.btn-dark { 
  background-image: linear-gradient(45deg, #353535, #555b61);
}
.btn-default {
  background-image: linear-gradient(45deg, #f8f9fa, #e9ecef);
  color: #333;
  border: 1px solid #ddd;
}
.btn:disabled,
.btn.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background-image: linear-gradient(45deg, #b0b0b0, #cfcfcf);
  color: #eee;
}
.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.product {
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 4px 25px rgba(0,0,0,.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.product-desc ul, .product-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}

.product-desc li {
  font-size: 0.85rem;
  color: #737373;
  margin: 1px 0;
  display: flex;
  align-items: center;
}
.product-info li {
font-size: 0.75rem;
margin: 1px 0;
}

.product-desc i {
  color: #28a745;
  font-size: 1rem;
}

.product-pricing .price {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}

.btn-order-now {
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  transition: all 0.3s ease;
}

.btn-order-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.product * {
  position: relative;
  z-index: 1;
}

.alert {
  padding: 14px 20px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid transparent;
  color: #fff;
  transition: all 0.3s ease;
  animation: fadeIn 0.25s ease-out;
  backdrop-filter: blur(6px);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
.alert-success {
  background: linear-gradient(120deg, #22c55e 0%, #16a34a 100%);
  border-color: rgba(34,197,94,0.3);
}
.alert-warning {
  background: linear-gradient(120deg, #facc15 0%, #eab308 100%);
  border-color: rgba(250,204,21,0.4);
  color: #1a1a1a;
}
.alert-danger, .alert-error {
  background: linear-gradient(120deg, #ef4444 0%, #dc2626 100%);
  border-color: rgba(239,68,68,0.3);
}
.alert-info {
  background: linear-gradient(120deg, #3b82f6 0%, #2563eb 100%);
  border-color: rgba(59,130,246,0.3);
}
.alert-secondary {
  background: linear-gradient(120deg, #9ca3af 0%, #6b7280 100%);
  border-color: rgba(156,163,175,0.4);
  color: #1a1a1a;
}
.alert:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.sidebar .list-group-item.active, .sidebar .list-group-item.active:focus, .sidebar .list-group-item.active:hover {
    background-color: #2dac47;
}
#order-standard_cart .products .product header {
background: #fff!important;
border-bottom: 1px solid rgba(0, 0, 0, .07);
}

#order-standard_cart .product-info .product-title {
padding: 1rem;
border-bottom: 1px solid rgba(0, 0, 0, .07);
}
.view-cart-items .item small{
    color: #bd0404;
    font-size: 94%;
}
#order-standard_cart .order-summary {
    background-color: #fff!important;
    border-bottom: none!important;
}
#order-standard_cart .order-summary h2 {
    color: #000!important;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}
#order-standard_cart .order-summary .total-due-today .amt {
    font-size: 3.2em!important;
}
.master-breadcrumb, .breadcrumb {
    
    background-color: #fff!important;
}
#order-standard_cart .order-summary .loader {
    
    color: #2eac48!important;
}
.product-configurable-options .card {
    border-radius: .45rem;
}
.server-actions button {
    border-radius: 10px;
    font-weight: 600;
    padding: 16px 0;
}
.server-actions {
    display: flex;
    gap: 10px;
}
.server-btn:hover,.server-btn:focus,.server-btn:active {
    background-image: linear-gradient(45deg, #2dac47, #2dac47);
}

.server-btn:hover span,
.server-btn:focus span,
.server-btn:active span {
    display: none;
}

.verification-banner.email-verification .btn.btn-action, .verification-banner.email-verification .btn.btn-action:active, .verification-banner.email-verification .btn.btn-action[disabled]:hover {
    color: #50525f;
}
@media (max-width: 576px) {
header.header .logo-img {
    max-width: 142px;
    max-height: 27px;
}
header.header .toolbar .nav-link {
    font-size: .6em;
}
    
}