.minimal-btn {
    padding: 0;
    border: none;
    background: none;

}

.center-it {
    margin-left: auto;
    margin-right: auto;
}

.center-vertical {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 200px;
  border: 3px solid green; */
}

.cart-item-count {
  position: absolute;
  top: 15px;
  right: -10px;
  background-color: #fa6767;
  color: white;
  border-radius: 50%;
  padding: 5px 5px;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 10px;
  height: 15px;
}

.product-image {
  width: 100px; /* Default size */
  height: auto;
  transition: width 0.3s ease; /* Smooth transition */
}

.product-image.expanded {
  width: 200px; /* Expanded size */
}

.text-white {
  color: #fff !important; /* Expanded size */
}

.transparent-bg {
  background-color: rgba(255, 255, 255, 0.2); /* White background with 50% */
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.off-white-color {
  color:rgb(216, 216, 216) !important;
}

.d-lg-inline-flex-always {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.navbar-collapse-no {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

.force-show {
  display: inline-flex !important;
  /* visibility: visible !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 1000 !important;
  position: relative !important;
  position: static !important; */
}

.gray-column {
  background-color: #0c0000 !important; /* Light gray background */
}

.tour-confirm {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.tour-confirm-content {
  background-color: var(--ct-secondary-bg);
  color: var(--ct-body-color);
  margin: 15% auto;
  padding: 20px;
  border: 1px solid var(--ct-border-color);
  border-radius: var(--ct-border-radius);
  width: 300px;
  max-width: 80%;
  text-align: center;
  box-shadow: var(--ct-box-shadow);
}

.tour-confirm h2 {
  margin-top: 0;
  color: var(--ct-primary);
}

.tour-confirm-buttons {
  margin-top: 20px;
}

.tour-confirm-buttons button {
  margin: 0 10px;
}

/* Cart Mobile Responsive Styles */
@media (max-width: 767.98px) {
  .cart-table-container {
    display: none;
  }

  .cart-mobile-container {
    display: block;
  }

  .cart-mobile-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid #e9ecef;
  }

  .cart-mobile-item-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 4px;
  }

  .cart-mobile-item-info {
    flex: 1;
    margin-left: 12px;
  }

  .cart-mobile-item-title {
    font-weight: 600;
    font-size: 16px;
    color: #212529;
    margin-bottom: 4px;
  }

  .cart-mobile-item-details {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
  }

  .cart-mobile-quantity-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin: 12px 0;
  }

  .cart-mobile-quantity-label {
    font-weight: 600;
    font-size: 14px;
    color: #495057;
    margin-bottom: 12px;
    display: block;
  }

  .cart-mobile-quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .cart-mobile-qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    background: white;
    color: #495057;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    touch-action: manipulation;
  }

  .cart-mobile-qty-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
  }

  .cart-mobile-qty-btn:active {
    background: #dee2e6;
    transform: scale(0.95);
  }

  .cart-mobile-qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    background: white;
    touch-action: manipulation;
  }

  .cart-mobile-qty-input:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  }

  .cart-mobile-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
  }

  .cart-mobile-price-label {
    font-size: 14px;
    color: #6c757d;
  }

  .cart-mobile-price-value {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
  }

  .cart-mobile-delete-btn {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 12px;
    width: 100%;
  }

  .cart-mobile-delete-btn:hover {
    background: #c82333;
  }

  .cart-mobile-delete-btn:active {
    background: #bd2130;
  }
}

@media (min-width: 768px) {
  .cart-table-container {
    display: block;
  }

  .cart-mobile-container {
    display: none;
  }
}

/* Enhanced quantity input for all devices */
.cart-quantity-input {
  min-width: 60px;
  text-align: center;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .cart-quantity-input {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}