/* ===========================
   Stay Pages Common Styles
   =========================== */

/* Header */
.stay-header {
    text-align: center;
    margin-bottom: 30px;
}

.stay-header-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 10px;
}

.stay-header-description {
    font-size: 16px;
    color: #636e72;
    margin: 0;
}

/* ===========================
   Booking Page Styles
   =========================== */

.booking-content {
    max-width: 1140px;
    margin: 40px auto;
    padding: 0 20px;
}

.booking-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #673AB7;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 13px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    height: 48px;
    line-height: 1.6;
}

select.form-control {
    padding: 13px 40px 13px 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

/* Date Input Styles - Safari and Mobile Compatible */
input[type="date"].form-control {
    position: relative;
    padding-right: 40px;
    cursor: pointer;
}

/* Calendar icon for all browsers */
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: transparent;
    color: #673AB7;
    position: absolute;
    right: 12px;
}

/* Enhance calendar icon visibility on mobile */
@media (max-width: 768px) {
    input[type="date"]::-webkit-calendar-picker-indicator {
        width: 24px;
        height: 24px;
        right: 10px;
    }
}

textarea.form-control {
    height: auto;
}

select.form-control option {
    padding: 8px;
    line-height: 1.6;
}

.booking-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.total-price {
    font-size: 24px;
    font-weight: 700;
    color: #673AB7;
    margin-top: 20px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #673AB7;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #512DA8;
}

.info-box {
    background: rgba(103, 58, 183, 0.1);
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #673AB7;
    margin-bottom: 20px;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-right: 8px;
    vertical-align: middle;
}

.form-group label input[type="checkbox"] {
    margin-top: -2px;
}

/* ===========================
   Search Page Styles
   =========================== */

.search-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 20px auto 40px;
    position: relative;
    max-width: 1200px;
}

.btn-search {
    padding: 12px;
    background: #673AB7;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-search:hover {
    background: #512DA8;
}

.search-container {
    margin-right: auto;
    margin-left: auto;
}

.filter-sidebar {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    margin-bottom: 16px;
}

.filter-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #673AB7;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.filter-option {
    margin-bottom: 8px;
}

.filter-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.filter-option input[type="checkbox"] {
    margin-right: 8px;
}

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-range input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 13px;
}

.hotel-list {
    padding-left: 20px;
}

.hotel-list .row {
    justify-content: center;
}

.hotel-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.hotel-list-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.sort-options {
    display: flex;
    gap: 10px;
}

.sort-btn {
    padding: 8px 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.sort-btn:hover,
.sort-btn.active {
    background: #673AB7;
    color: white;
    border-color: #673AB7;
}

/* Hotel Card Styles (Tour-List Style) */
.hotel-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hotel-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.hotel-card__image {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.hotel-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-card__img {
    transform: scale(1.05);
}

.hotel-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #673AB7 0%, #512DA8 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hotel-card__category-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #3E2723;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.hotel-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 8px;
}

.hotel-card__header {
    margin-bottom: 4px;
}

.hotel-card__title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #3E2723;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hotel-card__description {
    margin: 0;
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

.hotel-card__title:hover {
    color: #673AB7;
}

.hotel-card__rating {
    margin: 4px 0;
}

.rating-info {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #666666;
    gap: 10px;
}

.location-section {
    display: flex;
    align-items: center;
    background: rgba(103, 58, 183, 0.15);
    padding: 5px 10px;
    border-radius: 12px;
    gap: 4px;
}

.tag-section {
    display: flex;
    align-items: center;
    background: rgba(156, 39, 176, 0.15);
    padding: 5px 10px;
    border-radius: 12px;
    gap: 4px;
}

.location-section .location-icon {
    color: #673AB7;
    font-size: 12px;
}

.location-section .location-text {
    font-weight: 600;
    color: #3E2723;
    font-size: 12px;
}

.tag-section .tag-icon {
    color: #9C27B0;
    font-size: 12px;
}

.tag-section .tag-text {
    color: #3E2723;
    font-weight: 500;
    font-size: 12px;
}

.facilities-section {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.facility-icon {
    color: #673AB7;
    font-size: 14px;
}

.hotel-card__info {
    margin-top: auto;
}

.hotel-card__badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hotel-rooms-info, .hotel-grade-info, .hotel-price-info {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.hotel-icon {
    color: #673AB7;
    margin-right: 6px;
    font-size: 13px;
}

.hotel-rooms-text, .hotel-grade-text, .hotel-price-text {
    font-size: 13px;
    font-weight: 600;
    color: #3E2723;
}

.hotel-price-info {
    background: linear-gradient(135deg, #673AB715 0%, #512DA815 100%);
    border: 1px solid #673AB730;
}

.hotel-price-info .hotel-icon {
    color: #512DA8;
}

.hotel-price-text {
    color: #673AB7;
    font-weight: 700;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ===========================
   View/Detail Page Styles
   =========================== */

.hotel-detail-hero {
    background: #f8f9fa;
    padding: 40px 20px;
}

.hotel-gallery {
    margin-bottom: 30px;
}

.gallery-main {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Thumbnails Wrapper */
.gallery-thumbnails-wrapper {
    position: relative;
}

/* Thumbnails Container */
.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(103, 58, 183, 0.3) transparent;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(103, 58, 183, 0.3);
    border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb:hover {
    background: rgba(103, 58, 183, 0.5);
}

.gallery-thumbnail {
    flex: 0 0 auto;
    width: 120px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.gallery-thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery-thumbnail.active {
    border-color: #673AB7;
    box-shadow: 0 0 0 1px #673AB7;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.hotel-content {
    padding: 40px 0;
}

.hotel-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hotel-rating {
    color: #f39c12;
    font-size: 18px;
    margin-bottom: 20px;
}

.info-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.facilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-box {
    position: sticky;
    top: 20px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #673AB7;
    margin-bottom: 20px;
}

.btn-book {
    width: 100%;
    padding: 15px;
    background: #673AB7;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-book:hover {
    background: #512DA8;
}

/* Nearby Hotels Styles */
.nearby-hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.nearby-hotel-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.nearby-hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.nearby-hotel-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.nearby-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nearby-hotel-card:hover .nearby-hotel-image img {
    transform: scale(1.1);
}

.nearby-hotel-content {
    padding: 16px;
}

.nearby-hotel-name {
    font-size: 16px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 8px;
}

.nearby-hotel-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.nearby-hotel-rating i {
    color: #FFC107;
    font-size: 14px;
}

.nearby-hotel-rating span {
    font-weight: 600;
    color: #2d3436;
    font-size: 14px;
}

.nearby-hotel-distance {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: #636e72;
    font-size: 13px;
}

.nearby-hotel-distance i {
    color: #673AB7;
    font-size: 12px;
}

/* Landmarks Styles */
.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.landmark-card {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.landmark-card:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.landmark-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #673AB7 0%, #512DA8 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.landmark-icon i {
    color: white;
    font-size: 20px;
}

.landmark-content {
    flex: 1;
}

.landmark-name {
    font-size: 15px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 4px;
}

.landmark-distance {
    font-size: 13px;
    color: #673AB7;
    font-weight: 600;
    margin-bottom: 4px;
}

.landmark-desc {
    font-size: 12px;
    color: #636e72;
    margin: 0;
}

/* Room Selection Styles */
.room-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.room-card:hover {
    border-color: #673AB7;
    box-shadow: 0 4px 12px rgba(103, 58, 183, 0.15);
}

.room-card.selected {
    border-color: #673AB7;
    background: rgba(103, 58, 183, 0.05);
}

.room-image {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-header {
    margin-bottom: 10px;
}

.room-name {
    font-size: 20px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 5px;
}

.room-capacity {
    color: #636e72;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-capacity i {
    color: #673AB7;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.room-feature-tag {
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    color: #495057;
}

.room-description {
    color: #636e72;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    gap: 15px;
}

.room-quantity {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.room-quantity-label {
    font-size: 12px;
    color: #636e72;
    font-weight: 600;
}

.counter-group-small {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FAFAFA;
    padding: 4px;
    border-radius: 6px;
}

.counter-group-small button {
    width: 28px;
    height: 28px;
    border: none;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #673AB7;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    font-weight: 600;
}

.counter-group-small button:hover {
    background: #673AB7;
    color: white;
    transform: scale(1.05);
}

.counter-group-small button:active {
    transform: scale(0.95);
}

.counter-group-small input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    color: #2d3436;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.room-price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #673AB7;
}

.room-price-label {
    font-size: 13px;
    color: #636e72;
}

.btn-select-room {
    padding: 10px 24px;
    background: #673AB7;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-room:hover {
    background: #512DA8;
    transform: translateY(-1px);
}

.btn-select-room.selected {
    background: #28a745;
}

/* Booking Summary in Sidebar */
.booking-summary {
    border-top: 2px solid #e9ecef;
    padding-top: 15px;
    margin-top: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.no-room-selected {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 14px;
}

/* Booking Form Styles */
.booking-form-group {
    margin-bottom: 20px;
}

.booking-form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
}

.booking-form-label i {
    color: #673AB7;
    font-size: 14px;
}

.booking-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #F5F5F5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #2d3436;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.booking-form-input:focus {
    outline: none;
    border-color: #673AB7;
    box-shadow: 0 0 0 4px rgba(103, 58, 183, 0.1);
}

.counter-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FAFAFA;
    padding: 8px;
    border-radius: 8px;
}

.counter-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #673AB7;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.counter-btn:hover {
    background: #673AB7;
    color: white;
    transform: scale(1.05);
}

.counter-btn:active {
    transform: scale(0.95);
}

.counter-input {
    flex: 1;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: #2d3436;
}

.booking-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.booking-total-label {
    font-size: 16px;
    font-weight: 600;
    color: #636e72;
}

.booking-total-amount {
    font-size: 24px;
    font-weight: 700;
    color: #673AB7;
}

.booking-card__divider {
    height: 1px;
    background: #F5F5F5;
    margin: 20px 0;
}

.booking-card__note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px;
    background: rgba(103, 58, 183, 0.1);
    border-radius: 8px;
    font-size: 13px;
    color: #636e72;
}

.booking-card__note i {
    font-size: 16px;
    color: #673AB7;
    flex-shrink: 0;
}

/* Search Conditions Styles */
.search-conditions-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.search-conditions-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3436;
}

.search-conditions-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.search-condition-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-condition-label {
    font-size: 13px;
    font-weight: 600;
    color: #636e72;
}

.btn-search-rooms {
    width: 100%;
    padding: 12px 24px;
    background: #673AB7;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-search-rooms:hover {
    background: #512DA8;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(103, 58, 183, 0.3);
}

.btn-search-rooms:active {
    transform: translateY(0);
}

/* ===========================
   Gallery Navigation Arrows
   =========================== */

/* Gradient overlays for left and right */
.gallery-thumbnails-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(to left, transparent, rgba(248, 249, 250, 0.95));
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-thumbnails-wrapper.has-left-scroll::before {
    opacity: 1;
}

.gallery-thumbnails-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(to right, transparent, rgba(248, 249, 250, 0.95));
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-thumbnails-wrapper.has-right-scroll::after {
    opacity: 1;
}

/* Scroll hint arrows */
.gallery-scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #673AB7;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-scroll-hint:hover {
    color: #512DA8;
    transform: translateY(-50%) scale(1.2);
}

.gallery-scroll-hint:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-scroll-hint.left {
    left: 30px;
    animation: slideRight 1.5s ease-in-out infinite;
}

.gallery-scroll-hint.right {
    right: 30px;
    animation: slideLeft 1.5s ease-in-out infinite;
}

@keyframes slideLeft {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(-50%) translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) translateX(-10px);
    }
}

@keyframes slideRight {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(-50%) translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) translateX(10px);
    }
}


/* ===========================
   Mobile Responsive
   =========================== */

/* Search Page Mobile */
@media (max-width: 992px) {
    .hotel-card__image {
        width: 220px;
        height: 160px;
    }

    .hotel-card__content {
        padding: 16px;
    }

    .hotel-card__title {
        font-size: 16px;
    }

    .hotel-card__description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .stay-header h1 {
        font-size: 20px;
    }

    .stay-header-title {
        font-size: 24px;
    }

    .stay-header-description {
        font-size: 14px;
    }

    .search-form {
        margin: 15px 15px 30px;
        padding: 20px;
    }

    .filter-sidebar {
        margin-bottom: 20px;
        position: relative;
        max-height: none;
    }

    .hotel-list {
        padding-left: 0;
        padding-top: 20px;
    }

    .hotel-list-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .sort-options {
        overflow-x: auto;
        width: 100%;
    }

    .hotel-card {
        flex-direction: column;
    }

    .hotel-card__image {
        width: 100%;
        height: 180px;
    }

    .hotel-card__content {
        padding: 16px;
    }

    .hotel-card__title {
        font-size: 16px;
    }

    .hotel-card__description {
        font-size: 13px;
    }

    .rating-info {
        font-size: 12px;
    }

    .hotel-card__badges {
        gap: 8px;
    }

    .hotel-rooms-info, .hotel-grade-info, .hotel-price-info {
        padding: 5px 10px;
    }

    .hotel-rooms-text, .hotel-grade-text, .hotel-price-text {
        font-size: 12px;
    }

    /* View/Detail Page Mobile */
    .nearby-hotels-grid {
        grid-template-columns: 1fr;
    }

    .landmarks-grid {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 300px;
    }

    .gallery-thumbnail {
        width: 100px;
        height: 70px;
    }

    /* Hotel header mobile styles */
    .hotel-header {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Room cards mobile styles */
    .room-card {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .room-image {
        width: 100%;
        height: 200px;
    }

    .room-name {
        font-size: 18px;
    }

    .room-capacity {
        font-size: 13px;
        flex-wrap: wrap;
    }

    .room-features {
        gap: 6px;
    }

    .room-feature-tag {
        font-size: 12px;
        padding: 3px 8px;
    }

    .room-description {
        font-size: 13px;
    }

    .room-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .room-price {
        justify-content: center;
    }

    .room-price-amount {
        font-size: 20px;
    }

    .btn-select-room {
        width: 100%;
        padding: 12px 24px;
    }

    .info-section {
        padding: 20px 15px;
    }

    .price-box {
        position: relative;
        top: 0;
        margin-top: 20px;
    }
}

input[type="date"] {
    position: relative;
}

/* 전체 영역을 클릭 가능하게 확장 */
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent;
}