.categories__card img{margin:10px auto 0;width:52px;}
.categories__card:hover img{filter: brightness(0) invert(1);}
.categories__title{margin-bottom:0!important;font-weight:400;}

.bulletList li{margin-bottom:10px;}

/* Search Suggestions Styles */
.header__search--widget {
    position: relative;
}

.header__search--form {
    display: flex;
    position: relative;
    width: 100%;
}

.header__search--widget .search-suggestions-box {
    position: absolute;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    max-height: 400px !important;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    box-sizing: border-box;
    margin-top: 0.25rem !important;
}

.suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suggestion-item {
    padding: 1.25rem 1.5rem !important;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    width: 100%;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f9fafb;
}

.suggestion-item a {
    display: flex;
    align-items: center;
    gap: 1.25rem !important;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

.suggestion-item img {
    width: 6rem !important;
    height: 6rem !important;
    object-fit: cover;
    border-radius: 0.75rem !important;
    flex-shrink: 0;
}

.suggestion-content {
    flex-grow: 1;
    min-width: 0;
    padding: 0 !important;
    margin: 0 !important;
}

.suggestion-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    color: #111827;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
}

.suggestion-price {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #ef4444;
    margin: 0 !important;
    padding: 0 !important;
}

.no-suggestions {
    padding: 2rem 1.75rem !important;
    font-size: 1.125rem !important;
    text-align: center;
    color: #6b7280;
}

.hidden {
    display: none !important;
}

/* Ensure search container is properly sized */
.header__search--form {
    position: relative;
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .suggestion-item {
        padding: 1.25rem 1.5rem !important;
        min-height: 100px;
    }
    
    .suggestion-item img {
        width: 5rem !important;
        height: 5rem !important;
    }
    
    .suggestion-title {
        font-size: 1.125rem !important;
    }
    
    .suggestion-price {
        font-size: 1rem !important;
    }
    
    .no-suggestions {
        padding: 1.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

/* Checkout page form styling */
.checkout__mian .form-control {
    height: 40px;
    padding: 8px 12px;
    font-size: 14px;
}

.checkout__mian input[type="text"],
.checkout__mian input[type="email"],
.checkout__mian input[type="password"],
.checkout__mian input[type="number"] {
    height: 40px;
    padding: 8px 12px;
    font-size: 14px;
}

/* Checkout page button styling */
.checkout__mian .btn {
    height: 40px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Link buttons */
.checkout__mian a.btn {
    height: 40px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Apply coupon button */
#apply_coupon {
    height: 40px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.5;
}

/* Place booking button */
.checkout__submit--section .btn {
    height: 45px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
}

/* Address card styling fix */
.address__card .form-check-input {
    margin-top: 2px;
}

/* Payment method card styling fix */
.payment__method--card .form-check-input {
    margin-top: 2px;
}

/* Modal close button */
.modal-header .btn-close {
    padding: 8px;
    margin: -8px -8px -8px auto;
}