/* Global Styles */
:root {
    --primary-color: #FF344F; /* Red */
    --primary-dark: #d61c35; /* Darker Red */
    --secondary-color: #2c3e50; /* Dark Slate Blue - Headings/Text */
    --accent-color: #f5a623; /* Orange/Gold - Stars, Highlights */
    --background-light: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --radius: 8px;
    --shadow: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-hover: 0 10px 25px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #ffffff;
    color: var(--text-color);
    line-height: 1.7; /* Increased line height for better readability */
    font-size: 16px;
    padding-top: 90px; /* Header yüksekliği kadar boşluk */
}

input, button, select, textarea {
    font-family: 'Outfit', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dashboard Specific Container Override */
.container.dashboard-layout {
    max-width: 1400px; /* Wider container for dashboard pages */
}

/* Buttons */
.btn {
    padding: 12px 24px; /* Larger touch target */
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    text-align: center;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(255, 52, 79, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px) translateZ(0);
    box-shadow: 0 6px 8px rgba(255, 52, 79, 0.3);
}

.btn-light {
    background-color: #f0f4f8;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: #e1e8ef;
}

.btn-light-blue {
    background-color: #fff0f2;
    color: var(--primary-color);
}

.btn-light-blue:hover {
    background-color: #ffe0e6;
}

.btn-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--text-color);
}

.btn-outline:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    padding: 20px 0; /* Initial padding */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    will-change: padding, box-shadow;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.header.shrink {
    padding: 10px 0; /* Reduced padding on scroll */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.logo i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

/* Airbnb Style Header Elements */
.header-search-bar {
    display: flex;
    justify-content: center;
}

.search-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 40px;
    padding: 8px 8px 8px 24px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    width: 300px;
    transform: translateZ(0);
}

.search-button:hover {
    box-shadow: 0 2px 4px rgba(0,0,0,0.18);
    transform: scale(1.01);
}

.search-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.search-icon-circle {
    background-color: var(--primary-color);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
}

.host-link {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 22px;
    transition: background 0.2s;
    color: var(--secondary-color);
}

.host-link:hover {
    background: #f7f7f7;
}

.globe-btn {
    background: transparent;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-color);
    transition: background 0.2s;
}

.globe-btn:hover {
    background: #f7f7f7;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 5px 5px 12px;
    border: 1px solid #ddd;
    border-radius: 22px;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    margin-left: 5px;
    background: white;
    transform: translateZ(0);
}

.user-menu-btn:hover {
    box-shadow: 0 2px 4px rgba(0,0,0,0.18);
}

.user-menu-btn i {
    color: #666;
    font-size: 1rem;
}

.user-avatar-small img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px; /* Increased height */
    background-image: url('https://images.unsplash.com/photo-1571896349842-6e53ce41e887?q=80&w=1000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* Slightly darker overlay for better text contrast */
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px; /* Adjusted width */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
    color: var(--white);
    font-weight: 400;
}

/* Search Bar */
.search-bar {
    background: var(--white);
    padding: 12px 24px;
    border-radius: 50px; /* More rounded */
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    max-width: 950px; /* Adjusted width */
    margin: 0 auto;
    color: var(--text-color);
}

.search-item {
    flex: 1;
    text-align: left;
    border-right: 1px solid #eee;
    padding: 5px 20px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.search-item:first-child {
    flex: 2; /* Balanced space */
}

.search-item.search-dates {
    flex: 1.8; /* More space for dates */
}

.search-item:focus-within {
    background-color: #fff5f7;
}

.search-item:focus-within .input-group i {
    color: var(--primary-color);
    transition: color 0.3s;
}

.search-item:last-of-type {
    border-right: none;
}

.search-item label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-group i {
    color: #aaa;
}

.input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.search-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 30px;
}

/* Sections */
.section {
    padding: 80px 0; /* Increased padding */
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

/* Grid Layouts */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: var(--shadow-hover);
}

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Zoom effect on hover */
/* .card:hover .card-image {
    transform: scale(1.05); 
} */

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
    color: var(--secondary-color);
    /* Title alignment fix */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.4rem; /* Ensures consistent height for 1 or 2 lines */
}

.card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.card-price {
    margin-top: auto;
    padding-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-badge i {
    color: var(--accent-color);
}

/* Promo Section */
.promo-banner {
    height: 350px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.promo-content {
    position: relative;
    z-index: 1;
    max-width: 550px;
}

.promo-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.promo-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.promo-banner .btn {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 60px, #f7f7f7 100%);
    padding: 48px 0 24px;
    border-top: none;
    margin-top: 0;
    font-size: 14px;
    color: #222;
}

.footer-inspiration {
    margin-bottom: 48px;
}

.footer-inspiration h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

.footer-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.footer-tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #717171;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.tab-btn.active, .tab-btn:hover {
    color: #222;
    border-bottom-color: #222;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 24px 8px;
}

.inspiration-item a {
    display: flex;
    flex-direction: column;
    color: #222;
    font-size: 14px;
    text-decoration: none;
}

.inspiration-item span {
    font-weight: 600;
    display: block;
}

.inspiration-item .desc {
    font-weight: 400;
    color: #717171;
    margin-top: 2px;
}

.show-more {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 5px;
    font-weight: 600 !important;
    text-decoration: underline !important;
}

.footer-divider {
    height: 1px;
    background-color: #ddd;
    margin: 24px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #222;
    font-weight: 400;
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.footer-col ul li a:hover {
    text-decoration: underline;
    color: #222;
    padding-left: 0; /* Override previous hover effect */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: none;
    font-size: 14px;
    color: #222;
}

.footer-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.footer-left p {
    margin-bottom: 0;
}

.footer-left .dot {
    margin: 0 5px;
}

.footer-left a:hover {
    text-decoration: underline;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-btn {
    background: none;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #222;
    padding: 0;
}

.footer-btn:hover {
    text-decoration: underline;
}

.social-icons-simple {
    display: flex;
    gap: 20px;
    margin-left: 10px;
}

.social-icons-simple a {
    color: #222;
    font-size: 18px;
    transition: color 0.2s;
}

.social-icons-simple a:hover {
    color: #000;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-right {
        width: 100%;
        justify-content: flex-start;
    }
    
    .inspiration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Hotel Detail Page Styles --- */

.page-content {
    padding-top: 40px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 12px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-item.relative {
    position: relative;
}

.view-all-photos {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    color: var(--text-color);
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    font-weight: 600;
}

.view-all-photos:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

/* Hotel Layout */
.hotel-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

/* Hotel Details */
.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.hotel-header h1 {
    font-size: 2.4rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.location {
    color: var(--text-light);
    font-size: 1.05rem;
}

.stars {
    color: var(--accent-color);
    margin-left: 10px;
    letter-spacing: 2px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-badge .score {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 52, 79, 0.2);
}

.rating-text {
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.3;
}

.rating-text span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.hotel-description {
    color: var(--text-color);
    margin-bottom: 50px;
    line-height: 1.9;
    font-size: 1.1rem;
}

.section-block {
    margin-bottom: 40px;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.02);
}

.section-block h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5f5f5;
    color: var(--secondary-color);
}

/* Fix for sidebar alignment */
.hotel-details .section-block:last-child {
    margin-bottom: 0;
}

/* Room List */
.room-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.room-card {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    background: #fff;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.room-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px) translateZ(0);
    border-color: #d0d0d0;
}

.room-image {
    width: 340px;
    min-height: 240px;
    flex-shrink: 0;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.room-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.room-amenities {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.room-amenities span i {
    color: var(--primary-color);
    margin-right: 5px;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-footer .price strong {
    font-size: 1.4rem;
    display: block;
    color: var(--secondary-color);
}

.room-footer .price span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    color: var(--text-color);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    font-weight: 500;
    transform: translateZ(0);
}

.amenity-item:hover {
    background: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 52, 79, 0.1);
    transform: translateY(-3px) translateZ(0);
}

.amenity-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Map */
.map-placeholder img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* Reviews */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 0;
    transition: box-shadow 0.3s ease;
    transform: translateZ(0);
}

.review-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.review-header h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

.review-header .stars {
    font-size: 0.9rem;
    margin-left: 0;
}

.review-card p {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
}

/* Booking Sidebar */
.booking-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    align-self: start; /* Prevents stretching and ensures sticky works */
    z-index: 100;
}

.booking-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.booking-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.price-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.price-period {
    color: var(--text-light);
    font-size: 1rem;
    margin-left: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.input-with-icon input, .form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.input-with-icon input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 52, 79, 0.1);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    cursor: pointer;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF344F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
}

/* Hotel Detail Hero Section */
.hotel-hero-header {
    height: 65vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: #fff;
    margin-top: -1px; /* Fix gap if any */
}

.hotel-hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
}

.hotel-hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.hotel-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
    color: var(--white);
}

.hotel-hero-content .location {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.btn-hero {
    background: rgba(255,255,255,0.2);
    /* backdrop-filter: blur(10px); */
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    border-radius: 30px;
}

.btn-hero:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Section Navigation */
.section-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 80px; /* Header height approx */
    z-index: 900;
    margin-bottom: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: top 0.3s ease;
}

/* Adjust section nav top when header shrinks */
.header.shrink + .section-nav, 
.header.shrink ~ .section-nav { /* General sibling selector just in case */
    top: 60px; /* Reduced header height */
}
/* Note: CSS sibling selectors might not work if elements are not siblings. 
   We will handle this via JS or ensure structure. 
   In hotel-detail.html, section-nav is not a direct sibling of header usually? 
   Wait, header is at top of body, section-nav is after hero. 
   So they are siblings in body. Yes.
   But hero is between them. So general sibling ~ works.
*/

.section-nav ul {
    display: flex;
    gap: 40px;
    padding: 0;
    overflow-x: auto;
}

.section-nav a {
    display: block;
    padding: 20px 5px;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    font-size: 1rem;
}

.section-nav a:hover, .section-nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Custom Select Design */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
    min-width: 100px; /* Ensure minimum width */
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px; /* Minimal padding */
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    background: transparent; /* Transparent background to blend in */
    border: none; /* No border */
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.custom-select-trigger span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px; /* Prevent text overflow */
}

.custom-select-trigger:after {
    content: '\f078'; /* FontAwesome chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7rem;
    color: #aaa;
    margin-left: 8px;
    transition: transform 0.3s;
}

.custom-select.open .custom-select-trigger:after {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.custom-options {
    position: absolute;
    display: block;
    top: calc(100% + 15px); /* Push down slightly */
    left: -10px;
    min-width: 180px; /* Wider dropdown */
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
    overflow-y: auto; /* Enable vertical scrolling */
    max-height: 300px; /* Limit height */
    padding: 5px 0; /* Padding inside dropdown */
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: block;
    padding: 10px 20px;
    font-size: 0.95rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: none; /* Remove border */
}

.custom-option:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 25px; /* Subtle hover animation */
}

.custom-option.selected {
    background-color: #fff0f2;
    color: var(--primary-color);
    font-weight: 600;
}

.custom-option.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: transparent !important;
    padding-left: 20px !important;
}

/* Search Modal */
.search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    
    /* Optimized transition */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    transform: translateZ(0);
    will-change: opacity, visibility;
    
    /* Removed backdrop-filter to prevent lag */
    /* backdrop-filter: blur(5px); */
}

.search-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    background: #fff;
    width: 100%;
    padding: 30px 0 50px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%) translateZ(0);
    transition: transform 0.25s ease-out;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.search-modal-overlay.active .search-modal {
    transform: translateY(0);
}

.search-modal-content {
    max-width: 850px;
    margin: 0 auto;
}

.search-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f7f7f7;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s;
}

.search-modal-close:hover {
    background: #eee;
    transform: rotate(90deg);
}

/* Skeleton Loading */
.skeleton {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 8px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.8rem;
    border-radius: 4px;
}

.skeleton-title {
    height: 1.8rem;
    margin-bottom: 1.2rem;
    width: 70%;
    border-radius: 6px;
}

.skeleton-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
}

/* Refined Skeleton Styles */
.skeleton-input {
    height: 50px; /* Matches real input height approx */
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 0; /* Margin handled by form-group */
}

.skeleton-label {
    height: 16px;
    width: 120px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.skeleton-btn {
    height: 48px; /* Matches .btn padding */
    width: 140px;
    border-radius: var(--radius);
}

.skeleton-image-list {
    width: 100%;
    height: 100%;
    min-height: 220px;
}

.skeleton-table-header {
    height: 40px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 4px;
    opacity: 0.7;
}

.skeleton-table-row {
    height: 60px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 8px;
    border-bottom: 1px solid #eee;
}

/* Additional Skeleton Styles */
.skeleton-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.skeleton-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.skeleton-input {
    height: 45px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.skeleton-label {
    height: 15px;
    width: 30%;
    margin-bottom: 10px;
    border-radius: 4px;
}

.skeleton-row {
    height: 60px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 8px;
}

.skeleton-btn {
    height: 40px;
    width: 120px;
    border-radius: 8px;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Adjustments for Hotel Detail Layout */
.hotel-details-wrapper {
    padding-top: 0;
}

@media (max-width: 768px) {
    .hotel-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .hero-right {
        align-items: flex-start;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }
    
    .hotel-hero-content h1 {
        font-size: 2.5rem;
    }

    /* Navbar Mobile */
    .header-container {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }

    .header-search-bar {
        justify-content: flex-end;
    }

    .search-button {
        width: auto;
        padding: 8px;
        border-radius: 50%;
        border: none;
        box-shadow: none;
    }

    .search-text {
        display: none;
    }

    .search-icon-circle {
        width: 36px;
        height: 36px;
    }

    .header-right {
        display: none; /* Simplify for mobile */
    }

    .user-menu-btn {
        margin-left: 0;
        padding: 5px;
        border: none;
    }
    
    .user-menu-btn i {
        display: none;
    }

    .user-avatar-small img {
        width: 36px;
        height: 36px;
    }

    /* Mobile Bottom Bar */
    .mobile-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px 20px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        border-top: 1px solid #eee;
    }

    .mobile-price-info {
        display: flex;
        flex-direction: column;
    }

    .mobile-price-info .price {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--text-color);
    }

    .mobile-price-info .period {
        font-size: 0.8rem;
        color: var(--text-light);
    }

    .mobile-bottom-bar .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* Adjustments */
    .hotel-layout {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 250px;
    }
    
    .gallery-item:not(.main) {
        display: none; /* Show only main image on mobile */
    }
    
    .gallery-item.main {
        grid-column: 1 / -1;
        grid-row: 1 / -1;
    }
    
    .view-all-photos {
        bottom: 15px;
        right: 15px;
    }

    .section-nav ul {
        gap: 15px;
    }
    
    .section-nav a {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) {
    .mobile-bottom-bar {
        display: none;
    }
}

/* --- List Page Styles --- */

.page-header-section {
    padding: 60px 0 40px;
    background: #fcfcfc;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumbs i {
    font-size: 0.7rem;
}

.page-header-section h1 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.list-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    padding-bottom: 60px;
    margin-top: 30px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 110px;
    height: fit-content;
}

.filter-box {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.filter-box h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.map-widget {
    height: 120px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    border-radius: 8px;
}

.map-widget .btn {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    padding: 8px 16px;
}

.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-range-inputs input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.checkbox-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-color);
    user-select: none;
    white-space: nowrap;
}

.checkbox-item:last-child {
    margin-bottom: 0;
}

.checkbox-item input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    min-height: 15px !important;
    max-width: 15px !important;
    max-height: 15px !important;
    border: 1.5px solid #d0d0d0 !important;
    border-radius: 3px !important;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    background-color: #fff !important;
    flex-shrink: 0;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
}

.checkbox-item input[type="checkbox"]:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3e%3C/svg%3E") !important;
    background-size: 10px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.checkbox-item:hover input[type="checkbox"] {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 52, 79, 0.1);
}

/* Results List */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.sort-dropdown select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.9rem;
    background: #fff;
    cursor: pointer;
    outline: none;
}

.sort-dropdown select:focus {
    border-color: var(--primary-color);
}

/* Hotel List Card */
.hotel-list-card {
    display: flex;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    transform: translateZ(0);
    margin-bottom: 20px;
}

.hotel-list-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px) translateZ(0);
}

.hotel-list-image {
    width: 280px;
    min-height: 228.9px;
    position: relative;
    flex-shrink: 0;
}

.hotel-list-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: var(--text-color);
    transition: all 0.2s;
}

.favorite-btn:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.hotel-list-content {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.hotel-list-info {
    flex: 1;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hotel-type {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.hotel-header-info h2 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotel-header-info h2 a:hover {
    color: var(--primary-color);
}

.hotel-header-info .location {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.hotel-features span {
    padding-right: 10px;
    border-right: 1px solid #eee;
}

.hotel-features span:last-child {
    border-right: none;
}

.highlight-green {
    color: #27ae60;
    font-weight: 600;
}

.review-score {
    display: flex;
    align-items: center;
    gap: 10px;
}

.score-badge {
    background: var(--primary-dark);
    color: #fff;
    font-weight: 700;
    padding: 6px 8px;
    border-radius: 6px 6px 6px 0;
    font-size: 1rem;
}

.score-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.score-text strong {
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.score-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.hotel-list-price {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
    min-width: 180px;
    border-left: 1px solid #f0f0f0;
    padding-left: 20px;
}

.price-details {
    margin-bottom: 15px;
}

.price-details .nights {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.price-details .price {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-details .taxes {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Responsive List Page */
@media (max-width: 900px) {
    .list-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none; /* Hide sidebar on mobile for now, or make it a modal */
    }

    .hotel-list-card {
        flex-direction: column;
    }

    .hotel-list-image {
        width: 100%;
        height: 200px;
    }

    .hotel-list-content {
        flex-direction: column;
        gap: 20px;
    }

    .hotel-list-price {
        border-left: none;
        padding-left: 0;
        align-items: flex-start;
        text-align: left;
        border-top: 1px solid #f0f0f0;
        padding-top: 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .price-details {
        margin-bottom: 0;
    }
}

/* --- Dashboard & Profile Styles --- */

.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 80px;
    min-height: 80vh;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.user-profile-brief, .business-brief, .business-profile-brief {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.business-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.business-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-business {
    display: inline-block;
    padding: 6px 12px;
    background: #e6f4ea;
    color: #1e8e3e;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}

.user-avatar-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    position: relative;
}

.user-avatar-large img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.edit-avatar-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.edit-avatar-btn:hover {
    transform: scale(1.1);
}

.business-icon {
    width: 80px;
    height: 80px;
    background: #fff0f2;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 15px;
}

.user-profile-brief h3, .business-brief h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.user-profile-brief p, .business-brief p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.2s;
}

.dashboard-nav a:hover, .dashboard-nav a.active {
    background: #fff5f7;
    color: var(--primary-color);
}

.dashboard-nav a i {
    width: 20px;
    text-align: center;
}

.logout-link {
    margin-top: 20px;
    color: #e74c3c !important;
}

.logout-link:hover {
    background: #fceae9 !important;
    color: #c0392b !important;
}

.sidebar-cta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.sidebar-cta p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Dashboard Content */
.content-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.content-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

/* Forms */
.profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.profile-form .form-group {
    margin-bottom: 20px;
}

.profile-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.profile-form .checkbox-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
    gap: 8px;
}

.profile-form .checkbox-group {
    display: grid;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    gap: 5px 20px;
    margin-top: 10px;
    width: fit-content;
}

.profile-form input, 
.profile-form textarea, 
.profile-form .custom-select-trigger {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #fff;
}

.profile-form input, 
.profile-form .custom-select-trigger {
    height: 50px;
    padding: 0 15px;
}

.profile-form textarea {
    padding: 15px;
    resize: vertical;
}

.profile-form .custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-form .custom-select.open .custom-select-trigger {
    border-color: var(--primary-color);
}

.profile-form .custom-options {
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    min-width: 100%;
}

.profile-form input:focus, .profile-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-actions {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateZ(0);
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.stat-card:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-icon.blue { background: #fff0f2; color: #FF344F; }
.stat-icon.green { background: #e6f4ea; color: #1e8e3e; }
.stat-icon.orange { background: #fef7e0; color: #f9ab00; }
.stat-icon.purple { background: #f3e8fd; color: #9334e6; }

/* Semantic Colors */
.stat-icon.income { background: #e6f4ea; color: #1e8e3e; }
.stat-icon.bookings { background: #fff0f2; color: #FF344F; }
.stat-icon.views { background: #f3e8fd; color: #9334e6; }
.stat-icon.rating { background: #fef7e0; color: #f9ab00; }

.stat-info h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 500;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-trend {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-trend.positive { color: #1e8e3e; }
.stat-trend.negative { color: #d93025; }
.stat-trend.neutral { color: #5f6368; }

/* Data Tables */
.card-header-flex, .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.view-all-link, .view-all {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.table-responsive {
    overflow-x: auto;
}

.data-table, .dashboard-table, .simple-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th, .dashboard-table th, .simple-table th {
    text-align: left;
    padding: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.data-table td, .dashboard-table td, .simple-table td {
    padding: 15px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
    color: var(--text-color);
}

.data-table tr:last-child td, .dashboard-table tr:last-child td, .simple-table tr:last-child td {
    border-bottom: none;
}

.user-cell, .guest-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-cell img, .guest-info img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.confirmed { background: #e6f4ea; color: #1e8e3e; }
.status-badge.pending { background: #fef7e0; color: #b06000; }
.status-badge.cancelled { background: #fceae9; color: #c5221f; }

.btn-icon {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s;
}

.btn-icon:hover {
    background: #f5f5f5;
    color: var(--text-color);
}

/* Destination Cards */
.destination-card {
    border: none;
    box-shadow: none;
    background: transparent;
}

.destination-card .card-image {
    height: 350px;
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    position: relative;
    transition: transform 0.3s ease;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.destination-card:hover .card-image {
    transform: translateY(-5px) translateZ(0);
}

.destination-card .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
    border-radius: 0 0 16px 16px;
}

.destination-overlay {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
}

.destination-overlay h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.6rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.destination-overlay p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.feature-item:hover {
    transform: translateY(-10px) translateZ(0);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 52, 79, 0.08); /* Very light primary color */
    color: var(--primary-color);
    border-radius: 20px; /* Softer square */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateZ(0);
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(-5deg) translateZ(0);
    box-shadow: 0 10px 20px rgba(255, 52, 79, 0.3);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Search Selects */
.search-select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    padding:  5px 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select-divider {
    width: 1px;
    height: 20px;
    background: #eee;
    margin: 0 10px;
}

.search-select option {
    color: #333;
    padding: 10px;
}

.hotel-list-image .card-badge {
    right: auto;
    left: 15px;
}

/* Curated Collections */
.collections-section {
    padding-bottom: 40px;
}

.collection-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    display: block;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.collection-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-image {
    transform: scale(1.05);
}

.collection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
}

.collection-content h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.collection-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Blog Section */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--primary-color);
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
}

.newsletter-box {
    background: var(--secondary-color);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); /* Subtle pattern */
}

.newsletter-content {
    max-width: 500px;
}

.newsletter-content h2 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 2rem;
}

.newsletter-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
    margin-left: 40px;
}

.newsletter-form .input-group {
    background: #fff;
    padding: 5px;
    border-radius: 50px;
    display: flex;
}

.newsletter-form input {
    border: none;
    padding: 15px 25px;
    flex: 1;
    border-radius: 50px;
    outline: none;
}

.newsletter-form button {
    border-radius: 50px;
    padding: 12px 30px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #ffffff;
    padding-bottom: 80px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-content {
    margin-bottom: 25px;
}

.quote-icon {
    font-size: 2rem;
    color: #eee;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 1.05rem;
    color: var(--text-color);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--secondary-color);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Mobile App Section */
.mobile-app-section {
    padding: 80px 0;
    background-color: #fff;
}

.mobile-app-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mobile-app-content {
    flex: 1;
    max-width: 50%;
    z-index: 2;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-app-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.mobile-app-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 90%;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #222;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.app-btn:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.app-btn i {
    font-size: 1.8rem;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn-text span {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-btn-text strong {
    font-size: 1rem;
    font-weight: 600;
}

.mobile-app-image {
    flex: 1;
    position: relative;
    width: 50%;
    min-height: 100%;
}

.mobile-app-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.mobile-app-wrapper:hover .mobile-app-image img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .mobile-app-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .mobile-app-content {
        max-width: 100%;
        padding: 50px 30px;
        text-align: center;
        align-items: center;
    }

    .mobile-app-content p {
        max-width: 100%;
    }

    .app-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .mobile-app-image {
        width: 100%;
        height: 300px;
        min-height: auto;
    }
    
    .mobile-app-image img {
        position: relative;
    }
}

/* DataTables Custom Styling */
.dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: right;
    margin-bottom: 15px;
}

.dataTables_wrapper .dataTables_filter label {
    font-weight: 500;
    color: var(--secondary-color);
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    padding: 8px 12px;
    outline: none;
    transition: border-color 0.3s;
    margin-left: 10px;
    font-family: 'Outfit', sans-serif;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 52, 79, 0.1);
}

.dataTables_wrapper .dataTables_info {
    float: left;
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.dataTables_wrapper .dataTables_paginate {
    float: right;
    margin-top: 20px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 6px 12px;
    margin-left: 5px;
    border-radius: var(--radius);
    border: 1px solid #e0e0e0;
    background: #fff;
    color: var(--text-color) !important;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #f8f9fa !important;
    border-color: #d0d0d0;
    color: var(--text-color) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #fff !important;
    border-color: #eee !important;
}

table.dataTable {
    border-collapse: collapse !important;
    width: 100% !important;
}

table.dataTable thead th, table.dataTable thead td {
    border-bottom: 1px solid #eee !important;
}

table.dataTable.no-footer {
    border-bottom: none !important;
}

/* Map Price Marker */
.price-marker {
    background-color: white;
    border-radius: 28px;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 12px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0.1);
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.price-marker:hover {
    background-color: #222;
    color: white;
    transform: scale(1.1);
    z-index: 100;
}

.price-marker::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
    transition: border-top-color 0.2s;
}

.price-marker:hover::after {
    border-top-color: #222;
}

/* FontAwesome Fixes */
.fa-solid, .fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}
.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}
.fa-regular, .far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}

/* SweetAlert2 Custom Theme */
div:where(.swal2-container) div:where(.swal2-popup) {
    border-radius: 20px !important;
    font-family: 'Outfit', sans-serif !important;
    padding: 2rem !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

div:where(.swal2-container) .swal2-title {
    color: var(--secondary-color) !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    padding-bottom: 1rem !important;
}

div:where(.swal2-container) .swal2-html-container {
    color: var(--text-light) !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
}

div:where(.swal2-container) .swal2-actions {
    gap: 1rem;
    margin-top: 1.5rem !important;
}

div:where(.swal2-container) button.swal2-styled {
    border-radius: var(--radius) !important;
    padding: 14px 30px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    margin: 0 !important; /* Reset swal margins */
}

div:where(.swal2-container) button.swal2-confirm {
    background-color: var(--primary-color) !important;
    background-image: none !important;
}

div:where(.swal2-container) button.swal2-confirm:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 52, 79, 0.3) !important;
}

div:where(.swal2-container) button.swal2-cancel {
    background-color: #f0f4f8 !important;
    color: var(--secondary-color) !important;
    background-image: none !important;
}

div:where(.swal2-container) button.swal2-cancel:hover {
    background-color: #e1e8ef !important;
    transform: translateY(-2px);
}

/* Skeleton Loading z-index Fix */
.swal2-container {
    z-index: 9999 !important;
}

div:where(.swal2-icon) {
    border-width: 3px !important;
    transform: scale(0.9);
}

div:where(.swal2-icon).swal2-warning {
    color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

div:where(.swal2-icon).swal2-error {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

div:where(.swal2-icon).swal2-success {
    color: #28a745 !important;
    border-color: #28a745 !important;
}

div:where(.swal2-icon).swal2-info {
    color: #17a2b8 !important;
    border-color: #17a2b8 !important;
}

div:where(.swal2-icon).swal2-question {
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

/* SweetAlert Overflow Fix */
.swal-no-overflow {
    overflow: visible !important;
}
.swal-no-overflow .swal2-html-container {
    overflow: visible !important;
}

/* Custom SweetAlert Select */
.custom-swal-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
    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' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
    margin-top: 10px;
}

.custom-swal-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 52, 79, 0.1);
}

