.product-button-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.add-to-cart:disabled {
        opacity: 0.6;
        border: none;
        cursor: pointer;
        text-align: center;
        cursor: not-allowed;
        transition: background-color 0.3s ease-in-out;
    }
.wishlist-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #DF3500;
    cursor: pointer;
    text-align: center;
    padding: 5px;
}

.wishlist-btn:hover {
    color: white;
}

.tabs-container {
    text-align: center;
    margin-bottom: 30px;
}

.category-title {
    font-size: 1.5rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: lighter;
    color: #333;
    margin-top: 3%;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 12%;
    margin-left: 5%;
    margin-top: 2%;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tab-item {
    padding: 12px 25px;
    border-radius: 50px;
    border: 2px solid #28a745;
    color: #28a745;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    margin: 0 10px;
}

.tab-item.active {
    background-color: #28a745;
    color: white;
}

.tab-item:hover {
    background-color: #28a745;
    color: white;
}

.tab-content {
    margin-top: 20px;
}

.out-of-stock-overlay {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: red;
    font-size: 22px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    z-index: 2;
    white-space: nowrap;
}

#global-response-message {
  display: none;
  text-align: center;
  margin-top: 0;
  padding: 10px;
  background-color: #f8f9fa;
  border: 1px solid #ccc;
  color: #333;
  font-weight: bold;
  border-radius: 5px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
