.product-title-width {
    height: 40px !important;
}

.product-image {
    max-height: 211px;
    min-height: 210px;
}

.hide {
    display: none;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.cart-icon-wrapper i {
    color: #555; /* Softer than black */
    transition: color 0.2s ease;
}

.cart-icon-wrapper:hover i {
    color: #333; /* Slightly darker on hover */
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background-color: #dd3842;
    color: white;
    font-size: 11px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
}

#generalModal .modal-body {
    background-color: white;
}

.input-container {
    position: relative;
}

.input-container i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Prevents the icon from interfering with input */
}

.input-container input {
    padding-left: 54px !important;
    width: 100%;
    padding: 8px;
    font-size: 16px;
}