/* Trust Inns Shortlist Plugin Styles */
/* Add your custom styles here */

.ti-shortlist .bg-image{
    min-height: 350px;
    margin-bottom: 20px;
}

/* Form Container */
.ti-form-container {
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
    position: sticky;
    top: 20px;
}

.ti-form-container .ti-form{
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}






/* Form Styling */
.ti-form {
    margin: 0;
}

.ti-form h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 1.3em;
    font-weight: 600;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
    text-align: left;
}

.ti-form p {
    margin-bottom: 18px;
}

.ti-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #495057;
    text-align: left;
    font-size: 16px;
}


.ti-form input[type="text"],
.ti-form input[type="email"],
.ti-form input[type="password"],
.ti-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.ti-form input[type="text"]:focus,
.ti-form input[type="email"]:focus,
.ti-form input[type="password"]:focus,
.ti-form textarea:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.ti-form textarea {
    height: 100px;
    resize: vertical;
    font-family: inherit;
}

/* Checkbox Styling */
.ti-form input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.1);
}

.ti-form label:has(input[type="checkbox"]) {
    font-weight: normal;
    font-size: 0.85em;
    color: #6c757d;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

/* Submit Button */
.ti-form button[type="submit"] {
    background: #009c9e;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
}

.ti-form button[type="submit"]:hover {
    background: #005a8b;
}

.ti-form button[type="submit"]:active {
    transform: translateY(1px);
}

/* Auth CTA Styling */
.ti-auth-cta {
    /* background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 6px;
    padding: 20px; */
    /* margin-top: 20px; */
    text-align: center;
}

.ti-auth-cta h4 {
    margin: 0 0 15px 0;
    color: #1976d2;
    font-size: 1.1em;
}

.ti-auth-cta p {
    margin: 0 0 15px 0;
    color: #424242;
    font-size: 0.9em;
    line-height: 1.5;
}

.ti-auth-cta .button {
    display: inline-block;
    background: #1976d2;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.ti-auth-cta .button:hover {
    background: #1565c0;
    color: white;
    text-decoration: none;
}

/* Saved Note */
.ti-saved-note {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.9em;
    margin-top: 15px;
}

/* Debug Styling */
.ti-debug {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    margin: 20px 0;
    font-family: monospace;
    font-size: 0.85em;
}

/* Success and Error Messages */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 0.9em;
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 0.9em;
}

/* Loading and Removing States */
.removing {
    opacity: 0.5;
    pointer-events: none;
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ti-form-container {
        position: static;
        margin-top: 20px;
    }
    
    .ti-form button[type="submit"] {
        padding: 16px 24px;
        font-size: 16px;
    }
}

.title-row {
    padding-top:50px;
}
.title-row .col-12{
    display: flex;
    justify-content: space-between;
}

.title-row .ti-badge{
    color:#009c9e;
}

.button-block{
    display: flex;
    justify-content: center;
}

.ti-shortlist .col-md-8 .col-md-6{
    margin-bottom: 30px;
}

.ti-shortlist .col-md-8 .col-md-6 .pub-info{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.ti-shortlist .col-md-8 .col-md-6 .pub-info button{
    margin-top: auto !important;
}


.ti-shortlist .col-md-8 .col-md-6 .pub-info .pubFeatureBox ul{
    padding-bottom: 20px;
}

/* Registration form messages */
.ti-register-message {
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid;
}

.ti-register-success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.ti-register-error {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* Wishlist count badge */
.ti-wishlist-count {
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
    display: inline-block;
    line-height: 1.2;
    margin-left: 5px;
    vertical-align: middle;
}

.ti-wishlist-count:empty {
    display: none;
}

/* Alternative styling for different header layouts */
.portal .ti-wishlist-count {
    position: relative;
    top: -8px;
    right: -8px;
    font-size: 10px;
    padding: 1px 4px;
    min-width: 16px;
}