/**
 * Frontend CSS - Otel Rezervasyon Sistemi
 * Oda görüntüleme ve rezervasyon formu stilleri
 */

/* Oda Archive Sayfası - /oda/ sayfası tasarımı */
.oda-archive {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.oda-archive .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.oda-archive .page-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.oda-archive .page-title {
    font-size: 36px;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.oda-archive .page-title::before {
    content: "🏨";
    font-size: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.oda-archive .archive-description {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.oda-archive .oda-listesi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.no-odalar {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}

.no-odalar h3 {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 24px;
}

.no-odalar p {
    color: #868e96;
    font-size: 16px;
    line-height: 1.6;
}

/* Tüm Odalar Listeleme Sayfası */
.rooms-listing-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.rooms-listing-header {
    text-align: center;
    margin-bottom: 50px;
}

.rooms-listing-title {
    font-size: 36px;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    font-size: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.rooms-listing-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.6;
}

.rooms-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.no-rooms-message {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}

.no-rooms-message h2 {
    color: #6c757d;
    margin-bottom: 15px;
}

.no-rooms-message p {
    color: #868e96;
    font-size: 16px;
}

/* Room Card Stilleri */
.room-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.room-card:hover::before {
    opacity: 1;
}

.room-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.room-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    z-index: 2;
}

.room-card-content {
    padding: 25px;
}

.room-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #2c3e50;
    line-height: 1.3;
}

.room-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.room-card-title a:hover {
    color: #667eea;
}

.room-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.room-card-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #7f8c8d;
}

.meta-icon {
    font-size: 14px;
}

.room-card-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.room-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f1f3f4;
}

.room-card-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-amount {
    font-size: 24px;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
}

.price-currency {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 600;
    margin-top: 2px;
}

.room-card-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.room-card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.room-card-button:hover::before {
    left: 100%;
}

.room-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    color: white;
}

.button-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.room-card-button:hover .button-icon {
    transform: translateX(3px);
}

/* Oda Kartları - Modern Tasarım */
.oda-listesi-shortcode {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.oda-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.oda-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.oda-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.oda-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.oda-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.oda-card:hover .oda-card-image img {
    transform: scale(1.08);
}

.oda-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.oda-card-content {
    padding: 25px;
}

.oda-card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #2c3e50;
    line-height: 1.2;
}

.oda-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.oda-card-title a:hover {
    color: #667eea;
}

.oda-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #7f8c8d;
}

.oda-card-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 6px 10px;
    border-radius: 15px;
    font-weight: 600;
}

.oda-card-meta-item i {
    color: #667eea;
    font-size: 14px;
}

.oda-card-description {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.oda-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.oda-card-feature {
    background: #f8fafc;
    color: #475569;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.oda-card-feature:hover {
    background: #e2e8f0;
    color: #334155;
    border-color: #cbd5e1;
}

.oda-card-feature .feature-icon-small {
    margin-right: 6px;
    font-size: 14px;
}

.oda-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f1f3f4;
}

.oda-card-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.oda-card-price-amount {
    font-size: 28px;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
}

.oda-card-price-currency {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
    margin-top: 2px;
}

.oda-card-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.oda-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    color: white;
}

/* Oda Detay Sayfası */
.oda-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: transparent;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Genel container düzeltmeleri */
.oda-detail * {
    max-width: 100%;
    box-sizing: border-box;
}

.oda-detail-content,
.oda-detail-main,
.oda-detail-sidebar,
.rezervasyon-form,
.oda-detail-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


.oda-detail-header {
    margin-bottom: 40px;
    background: transparent;
    padding: 30px;
    position: relative;
}

.oda-header-content {
    position: relative;
    z-index: 2;
}

.oda-header-simple {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.oda-title-section {
    text-align: center;
    position: relative;
}

.oda-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    text-align: center;
}

.oda-code-badge {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.oda-meta-simple {
    background: transparent;
    padding: 20px 0;
}

.oda-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.oda-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.2s ease;
}

.oda-meta-item:hover {
    transform: none;
    box-shadow: none;
}

.meta-icon {
    font-size: 1.8rem;
    opacity: 0.8;
    flex-shrink: 0;
}

.meta-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.2;
}

.meta-value.price {
    color: #e74c3c;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Sade Animasyonlar */
.oda-meta-item {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .oda-detail-title {
        font-size: 1.8rem;
    }
    
    .oda-meta-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .oda-meta-item {
        gap: 10px;
    }
    
    .meta-icon {
        font-size: 1.5rem;
    }
    
    .meta-value.price {
        font-size: 1rem;
    }
    
    .meta-label {
        font-size: 0.7rem;
    }
    
    .meta-value {
        font-size: 0.9rem;
    }
}

.oda-detail-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #333;
}

.oda-detail-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.oda-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.oda-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #666;
}

.oda-detail-meta-item i {
    color: #0073aa;
    font-size: 18px;
}

.oda-detail-gallery {
    margin-bottom: 40px;
}

.oda-detail-gallery-main {
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.oda-detail-gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.oda-detail-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.oda-detail-gallery-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.oda-detail-gallery-thumb.active {
    border-color: #0073aa;
}

.oda-detail-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oda-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.oda-detail-main {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.oda-detail-sidebar {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.oda-detail-section {
    margin-bottom: 25px;
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.oda-detail-section:last-child {
    margin-bottom: 0;
}

.oda-detail-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #2c3e50;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-icon {
    font-size: 1.3rem;
    opacity: 0.7;
}

.oda-detail-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.oda-detail-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.oda-detail-feature i {
    color: #0073aa;
    font-size: 16px;
}

.oda-detail-feature.available {
    background: #d4edda;
    color: #155724;
}

.oda-detail-feature.available i {
    color: #28a745;
}

/* Ana Container */
.oda-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    background: transparent;
}

/* Rezervasyon Formu */
.rezervasyon-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 30px 20px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
    position: sticky;
    top: 20px;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.rezervasyon-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #f39c12, #e74c3c);
}

.rezervasyon-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.rezervasyon-form-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rezervasyon-form-title::before {
    content: '🏨';
    font-size: 32px;
}

.rezervasyon-form-group {
    margin-bottom: 30px;
    position: relative;
}

.rezervasyon-form-label {
    display: block;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 25px;
    text-align: left;
}

.rezervasyon-form-label[for="date_range"] {
    padding-left: 0;
}

.rezervasyon-form-label[for="checkin_date"]::before {
    content: '📅';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.rezervasyon-form-label[for="checkout_date"]::before {
    content: '📅';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.rezervasyon-form-label[for="adults"]::before {
    content: '👥';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.rezervasyon-form-label[for="children"]::before {
    content: '👶';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.rezervasyon-form-label[for="guest_name"]::before {
    content: '👤';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.rezervasyon-form-label[for="guest_email"]::before {
    content: '📧';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.rezervasyon-form-label[for="guest_phone"]::before {
    content: '📞';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.rezervasyon-form-label[for="special_requests"]::before {
    content: '💬';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.rezervasyon-form-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #fff;
    position: relative;
    max-width: 100%;
}

.rezervasyon-form-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.rezervasyon-form-input:invalid {
    border-color: #333;
    box-shadow: none;
}

.rezervasyon-form-input::placeholder {
    color: #95a5a6;
    font-style: italic;
}

.rezervasyon-form-input.unavailable-date {
    border-color: #e74c3c;
    background-color: #fdf2f2;
    color: #e74c3c;
}

.rezervasyon-form-input.unavailable-date:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

/* Date Range Picker Stilleri */
.date-range-picker {
    position: relative;
    display: block;
}

.date-range-input {
    cursor: pointer;
    background-color: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    padding: 18px 25px;
    font-size: 16px;
    color: #2c3e50;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.date-range-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}


/* Date Picker Popup Stilleri */
.date-picker-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
    overflow: hidden;
}

.date-picker-popup.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.date-picker-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
    box-sizing: border-box;
    margin: 0 auto;
}

.date-picker-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-picker-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.date-picker-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.date-picker-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.date-picker-body {
    padding: 20px;
}

.date-range-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #e1e8ed;
}

.date-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.date-info-item:last-child {
    margin-bottom: 0;
}

.date-label {
    font-weight: 600;
    color: #2c3e50;
}

.date-value {
    font-weight: 700;
    color: #3498db;
    background: white;
    padding: 4px 8px;
    border-radius: 6px;
    min-width: 80px;
    text-align: center;
}

.date-picker-month-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.month-prev, .month-next {
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.month-prev:hover, .month-next:hover {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    transform: scale(1.1);
}

.current-month-year {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.date-picker-calendar {
    margin-bottom: 20px;
}

.date-picker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 10px;
}

.weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #7f8c8d;
    padding: 8px 4px;
}

.date-picker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.date-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.date-day:hover {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    transform: scale(1.1);
}

.date-day.selected {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.date-day.range-start {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    font-weight: 700;
}

.date-day.range-end {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    font-weight: 700;
}

.date-day.in-range {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1976d2;
    font-weight: 600;
}

.date-day.unavailable {
    background: #f8d7da;
    color: #721c24;
    cursor: not-allowed;
    opacity: 0.6;
}

.date-day.unavailable:hover {
    transform: none;
    background: #f8d7da;
}

.date-day.other-month {
    color: #bdc3c7;
}

.date-day.today {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    font-weight: 700;
}

.date-picker-footer {
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    gap: 12px;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
    z-index: 10001;
}

.date-picker-clear, .date-picker-confirm {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    position: relative;
    z-index: 10002;
    display: block;
    visibility: visible;
    opacity: 1;
}

.date-picker-clear {
    background: #e74c3c;
    color: white;
}

.date-picker-clear:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.date-picker-confirm {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.date-picker-confirm:hover {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rezervasyon-form-input[type="date"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.rezervasyon-form-input[type="date"]:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Tarih Seçici Label Stilleri */
.rezervasyon-form-label[for*="giris_tarihi"]::before {
    content: "📅";
    margin-right: 0;
    font-size: 16px;
}

.rezervasyon-form-label[for*="cikis_tarihi"]::before {
    content: "📅";
    margin-right: 0;
    font-size: 16px;
}

/* Tarih Seçici Grup Stilleri */
.rezervasyon-form-row {
    position: relative;
}

.rezervasyon-form-row::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    pointer-events: none;
    z-index: -1;
}

/* Tarih Seçici Hover Efektleri */
.rezervasyon-form-input[type="date"]:hover::before {
    content: "📅";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #3498db;
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%);
    }
    40% {
        transform: translateY(-60%);
    }
    60% {
        transform: translateY(-40%);
    }
}

/* Tarih Seçici Focus Animasyonu */
.rezervasyon-form-input[type="date"]:focus {
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Tarih Seçici Placeholder Stili */
.rezervasyon-form-input[type="date"]::-webkit-datetime-edit-text {
    color: #95a5a6;
    font-style: italic;
}

.rezervasyon-form-input[type="date"]::-webkit-datetime-edit-month-field,
.rezervasyon-form-input[type="date"]::-webkit-datetime-edit-day-field,
.rezervasyon-form-input[type="date"]::-webkit-datetime-edit-year-field {
    color: #2c3e50;
    font-weight: 500;
}

/* Tarih Seçici Dropdown Stili */
.rezervasyon-form-input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    color: #3498db;
    cursor: pointer;
    border-radius: 4px;
    padding: 4px;
    transition: all 0.3s ease;
}

.rezervasyon-form-input[type="date"]::-webkit-calendar-picker-indicator:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: scale(1.1);
}


/* Tarih Seçici Etkileşim Stilleri */
.rezervasyon-form-input[type="date"].date-hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.rezervasyon-form-input[type="date"].date-focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(52, 152, 219, 0.3);
    border-color: #3498db;
}

.rezervasyon-form-input[type="date"].date-click {
    transform: scale(0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rezervasyon-form-input[type="date"].date-selected {
    animation: dateSelected 0.6s ease-in-out;
}

.rezervasyon-form-input[type="date"].date-changed {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-color: #27ae60;
    color: #27ae60;
}

@keyframes dateSelected {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

/* Tarih Seçici Tooltip */
.date-picker-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.date-picker-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #2c3e50;
}

.date-picker-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Tarih Seçici Grup Animasyonu */
.rezervasyon-form-row {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tarih Seçici Label Animasyonu */
.rezervasyon-form-label[for*="giris_tarihi"],
.rezervasyon-form-label[for*="cikis_tarihi"] {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Tarih Seçici */
/* Oda Archive Responsive */
@media (max-width: 768px) {
    .oda-archive {
        padding: 30px 15px;
    }
    
    .oda-archive .page-title {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }
    
    .oda-archive .page-title::before {
        font-size: 32px;
    }
    
    .oda-archive .archive-description {
        font-size: 16px;
    }
    
    .oda-archive .oda-listesi {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .oda-archive {
        padding: 20px 10px;
    }
    
    .oda-archive .page-title {
        font-size: 24px;
    }
}

/* Rooms Listing Responsive */
@media (max-width: 768px) {
    .rooms-listing-page {
        padding: 30px 15px;
    }
    
    .rooms-listing-title {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }
    
    .title-icon {
        font-size: 32px;
    }
    
    .rooms-listing-subtitle {
        font-size: 16px;
    }
    
    .rooms-listing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .room-card-content {
        padding: 20px;
    }
    
    .room-card-title {
        font-size: 20px;
    }
    
    .room-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .room-card-button {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .rooms-listing-page {
        padding: 20px 10px;
    }
    
    .rooms-listing-title {
        font-size: 24px;
    }
    
    .room-card-content {
        padding: 15px;
    }
    
    .room-card-title {
        font-size: 18px;
    }
    
    .price-amount {
        font-size: 20px;
    }
}

/* Oda Kartları Responsive */
@media (max-width: 768px) {
    .oda-listesi-shortcode {
        padding: 0 15px;
    }
    
    .oda-listesi {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .oda-card {
        border-radius: 12px;
    }
    
    .oda-card-image {
        height: 220px;
    }
    
    .oda-card-content {
        padding: 20px;
    }
    
    .oda-card-title {
        font-size: 20px;
    }
    
    .oda-card-meta {
        gap: 15px;
    }
    
    .oda-card-meta-item {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .oda-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .oda-card-button {
        text-align: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .oda-listesi-shortcode {
        padding: 0 10px;
    }
    
    .oda-card-content {
        padding: 15px;
    }
    
    .oda-card-title {
        font-size: 18px;
    }
    
    .oda-card-price-amount {
        font-size: 24px;
    }
    
    .oda-card-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .rezervasyon-form-input[type="date"] {
        background-size: 18px 18px;
        padding-right: 40px;
    }
    
    
    .date-picker-tooltip {
        font-size: 11px;
        padding: 6px 10px;
    }
}

.rezervasyon-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rezervasyon-form-price {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.rezervasyon-form-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rezervasyon-form-price-amount {
    font-size: 22px;
    font-weight: 700;
    color: #2ecc71;
    margin: 0;
    letter-spacing: -0.5px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.rezervasyon-form-button {
    width: 100%;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    max-width: 100%;
}

.rezervasyon-form-button::before {
    content: '✨';
    font-size: 20px;
}

.rezervasyon-form-button:hover {
    background: linear-gradient(135deg, #2980b9, #27ae60);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.rezervasyon-form-button:active {
    transform: translateY(-1px);
}

.rezervasyon-form-button:disabled {
    background: linear-gradient(135deg, #bdc3c7, #95a5a6);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.rezervasyon-form-button:disabled::before {
    content: '⏳';
}

/* Success Message Styles */
.rezervasyon-success-message {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 2px solid #c3e6cb;
    box-shadow: 0 4px 15px rgba(21, 87, 36, 0.1);
    position: relative;
    overflow: hidden;
}

.rezervasyon-success-message::before {
    content: '🎉';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    opacity: 0.7;
}

.rezervasyon-success-message h4 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rezervasyon-success-message p {
    margin: 5px 0;
    font-size: 15px;
    line-height: 1.5;
}

/* Ödeme Bilgileri Bölümü Stilleri */
.oda-detail-payment {
    margin-top: 20px;
}

.payment-text {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

/* Kurallar Bölümü Stilleri */
.oda-detail-rules {
    margin-top: 20px;
}

.rules-text {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.rule-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #e74c3c;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.rule-item:hover {
    background: #fff5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.rule-item-full {
    grid-column: 1 / -1;
}

.rule-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.rule-content {
    flex: 1;
}

.rule-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.rule-text {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

.rule-subsection {
    margin-bottom: 15px;
}

.rule-subsection:last-child {
    margin-bottom: 0;
}

.rule-subsection strong {
    color: #2c3e50;
    font-weight: 600;
}

/* İptal Şartları Bölümü Stilleri */
.oda-detail-cancellation {
    margin-top: 20px;
}

.cancellation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.cancellation-item {
    background: #fff5f5;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #e74c3c;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cancellation-item:hover {
    background: #ffeaea;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.cancellation-item-full {
    grid-column: 1 / -1;
}

.cancellation-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cancellation-content {
    flex: 1;
}

.cancellation-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.cancellation-text {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

/* Konum Bilgileri Bölümü Stilleri */
.oda-detail-location {
    margin-top: 20px;
}

.location-text {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.location-item {
    background: #f0fff4;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #27ae60;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.location-item:hover {
    background: #e8f5e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.location-item-full {
    grid-column: 1 / -1;
}

.location-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.location-content {
    flex: 1;
}

.location-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.location-text {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.location-link {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 8px;
}

.location-link:hover {
    color: #1e8449;
    background: rgba(39, 174, 96, 0.2);
    transform: translateY(-1px);
}

/* Ödeme Bilgileri Bölümü Stilleri */
.oda-detail-payment {
    margin-top: 20px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.payment-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.payment-item:hover {
    background: #e3f2fd;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.payment-item-full {
    grid-column: 1 / -1;
}

.payment-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-content {
    flex: 1;
}

.payment-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-method {
    background: #3498db;
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.payment-status {
    font-size: 18px;
    font-weight: 700;
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
}

.payment-notes {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
    background: rgba(52, 152, 219, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #3498db;
}

/* Yeni Eklenen Özellikler Stilleri */
.oda-ek-ozellikler {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.oda-ozellik-bolum {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.oda-ozellik-bolum:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.oda-ozellik-baslik {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
    display: flex;
    align-items: center;
    gap: 10px;
}

.oda-ozellik-icerik {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Kurallar Stilleri */
.oda-kural-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #e74c3c;
}

.oda-kural-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.oda-kural-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* İptal Şartları Stilleri */
.oda-iptal-item {
    background: #fff5f5;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #e74c3c;
}

.oda-iptal-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.oda-iptal-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Ödeme Bilgileri Stilleri */
.oda-odeme-item {
    background: #f0f8ff;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #3498db;
}

.oda-odeme-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.oda-odeme-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.odeme-yontemleri {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.odeme-yontem {
    background: #3498db;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.odeme-yontem:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

/* Konum Bilgileri Stilleri */
.oda-konum-item {
    background: #f0fff4;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #27ae60;
}

.oda-konum-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.oda-konum-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.konum-link {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 8px;
}

.konum-link:hover {
    color: #1e8449;
    background: rgba(39, 174, 96, 0.2);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .oda-detail {
        padding: 0 10px;
    }
    
    .rezervasyon-form {
        padding: 35px;
        margin: 0 0 30px 0;
    }
    
    .rezervasyon-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .rezervasyon-form-title {
        font-size: 20px;
    }
    
    .rezervasyon-form-button {
        padding: 15px 25px;
        font-size: 16px;
    }
}

/* Oda Listesi */
.oda-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Gelişmiş Filtreleme Stilleri */
.oda-listesi-filters {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.filters-header {
    text-align: center;
    margin-bottom: 30px;
}

.filters-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.filter-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.filters-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0;
    font-weight: 500;
}

.filters-form {
    max-width: 100%;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

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

.label-icon {
    font-size: 16px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.filter-input {
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
    color: #2c3e50;
}

.filter-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.filter-input:hover {
    border-color: #bdc3c7;
}

.filter-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.filter-button {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 140px;
    height: 48px;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    line-height: 1;
}

.filter-button.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    width: 140px;
    height: 48px;
    border-radius: 25px;
}

.filter-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
}

.filter-button.secondary {
    background: white;
    color: #6c757d;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 140px;
    height: 48px;
    border-radius: 25px;
}

.filter-button.secondary:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.button-icon {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Oda Detay Başlık Tasarımı - Sadeleştirilmiş */
.oda-detail-header {
    background: transparent;
    padding: 40px 0;
    margin-bottom: 40px;
}

.oda-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.oda-header-simple {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.oda-title-section {
    text-align: center;
}

.oda-detail-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.oda-code-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.oda-meta-simple {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.oda-meta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.oda-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
}

.meta-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.meta-value {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.meta-value.price {
    font-size: 18px;
    color: #e74c3c;
    font-weight: 700;
}

/* Galeri Tasarımı */
.oda-detail-gallery {
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gallery-main-image {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px 0 0 0;
}

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

.gallery-thumb-image {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-thumb-image:nth-child(2) {
    border-radius: 0 12px 0 0;
}

.gallery-thumb-image:nth-child(3) {
    border-radius: 0 0 0 12px;
}

.gallery-thumb-image:nth-child(4) {
    border-radius: 0 0 12px 0;
}

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

.gallery-more-button {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 12px 0;
}

.gallery-more-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.gallery-more-icon {
    font-size: 32px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.gallery-more-text {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-more-count {
    font-size: 14px;
    opacity: 0.9;
}

.gallery-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-more-overlay-text {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-zoom-icon {
    font-size: 24px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.gallery-main-image:hover .gallery-overlay,
.gallery-thumb-image:hover .gallery-overlay {
    opacity: 1;
}

.gallery-main-image:hover img,
.gallery-thumb-image:hover img {
    transform: scale(1.05);
}

.gallery-more-button:hover .gallery-more-overlay {
    opacity: 1;
}

/* Galeri Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.modal-open {
    opacity: 1;
}

.gallery-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 90vw;
    max-height: 95vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.gallery-modal.modal-open .gallery-modal-content {
    transform: scale(1);
}

.gallery-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.gallery-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.gallery-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery-modal-close:hover {
    background: #e9ecef;
    color: #2c3e50;
}

.gallery-modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.gallery-modal-main {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    min-height: 500px;
    max-height: 80vh;
    padding: 40px;
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-main img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

.gallery-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.gallery-nav-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #2c3e50;
    font-size: 28px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.gallery-nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

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

.gallery-modal-thumbs {
    display: flex;
    gap: 12px;
    padding: 20px 25px;
    overflow-x: auto;
    background: white;
    border-top: 1px solid #e9ecef;
    flex-shrink: 0;
}

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

.gallery-modal-thumbs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.gallery-modal-thumbs::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.gallery-modal-thumbs::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.gallery-modal-thumb {
    flex-shrink: 0;
    width: 85px;
    height: 85px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-modal-thumb.active {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.3);
    transform: scale(1.05);
}

.gallery-modal-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-modal-thumb:hover img {
    transform: scale(1.1);
}


/* Oda Detay Sayfası Gelişmiş Stilleri */

/* Oda Bilgileri Grid */
.oda-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.oda-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 15px 10px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 100px;
    box-sizing: border-box;
}

.oda-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.3));
    flex-shrink: 0;
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.info-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

/* Fiyat Bilgileri */
.oda-detail-price-info {
    margin-bottom: 30px;
}

.price-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.price-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
}

.price-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}

.price-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    filter: drop-shadow(0 2px 8px rgba(243, 156, 18, 0.3));
}

.price-content {
    flex: 1;
}

.price-label {
    font-size: 14px;
    color: #856404;
    font-weight: 600;
    margin-bottom: 5px;
}

.price-value {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 700;
}

/* Oda Özellikleri Grid - Sade ve Modern Tasarım */
.oda-detail-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.oda-detail-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    position: relative;
    min-height: 120px;
}

.oda-detail-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.oda-detail-feature .feature-icon {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.oda-detail-feature:hover .feature-icon {
    background: #e5e7eb;
    color: #374151;
}

.oda-detail-feature .feature-text {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* Durum Göstergesi */
.oda-detail-feature .status-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.oda-detail-feature.available .status-indicator {
    background: #10b981;
    color: white;
}

.oda-detail-feature.available .status-indicator::before {
    content: "✓";
}

.oda-detail-feature.not-available .status-indicator {
    background: #ef4444;
    color: white;
}

.oda-detail-feature.not-available .status-indicator::before {
    content: "✕";
}

.feature-icon {
    font-size: 18px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    filter: drop-shadow(0 2px 4px rgba(40, 167, 69, 0.3));
}

.feature-text {
    font-size: 15px;
    color: #155724;
    font-weight: 600;
}

/* Ekstra Hizmetler */
.oda-detail-services {
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 12px;
    border: 1px solid rgba(33, 150, 243, 0.2);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.2);
}

.service-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    border-radius: 50%;
    filter: drop-shadow(0 2px 8px rgba(33, 150, 243, 0.3));
}

.service-content {
    flex: 1;
}

.service-name {
    font-size: 16px;
    color: #0d47a1;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-status {
    font-size: 14px;
    color: #1565c0;
    font-weight: 600;
}

/* Check-in Bilgileri */
.oda-detail-checkin-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.checkin-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    border-radius: 12px;
    border: 1px solid rgba(156, 39, 176, 0.2);
    transition: all 0.3s ease;
}

.checkin-info-item.full-width {
    grid-column: 1 / -1;
}

.checkin-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.2);
}

.checkin-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    border-radius: 50%;
    filter: drop-shadow(0 2px 8px rgba(156, 39, 176, 0.3));
}

.checkin-content {
    flex: 1;
}

.checkin-label {
    font-size: 14px;
    color: #4a148c;
    font-weight: 600;
    margin-bottom: 5px;
}

.checkin-value {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .oda-archive .oda-listesi {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Genel mobil düzeltmeleri */
    * {
        box-sizing: border-box;
        max-width: 100%;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        margin: 0;
        padding: 0;
    }
    
    body {
        position: relative;
    }
    
    .oda-detail {
        padding: 10px;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        margin: 0;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .oda-detail-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
    .oda-detail-main,
    .oda-detail-sidebar {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 15px;
        margin: 0;
        overflow: hidden;
    }
    
    .oda-detail-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .oda-detail-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Oda Detay Responsive */
    .oda-detail-section-title {
        font-size: 1.1rem;
        gap: 6px;
    }
    
    .section-icon {
        font-size: 1.2rem;
    }
    
    .oda-detail-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .price-info-grid,
    .oda-detail-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .oda-detail-feature {
        padding: 15px 12px;
        min-height: 100px;
    }
    
    .oda-detail-feature .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .oda-detail-feature .feature-text {
        font-size: 13px;
    }
    
    /* Tablet'te sticky form'u kapat */
    .rezervasyon-form {
        position: relative;
        top: auto;
        margin-bottom: 25px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 20px 15px;
    }
    
    .rezervasyon-form-button {
        padding: 15px 20px;
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .services-grid,
    .oda-detail-checkin-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .oda-info-item {
        padding: 12px 8px;
        min-height: 90px;
    }
    
    .price-info-item,
    .service-item,
    .checkin-info-item {
        padding: 15px;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .price-icon,
    .service-icon,
    .checkin-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    /* Galeri Responsive */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 150px);
        gap: 8px;
    }
    
    .gallery-main-image {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    
    .gallery-modal-content {
        max-width: 95vw;
        max-height: 95vh;
        width: 95vw;
    }
    
    .gallery-modal-main {
        min-height: 300px;
        max-height: 70vh;
        padding: 20px;
    }
    
    .gallery-modal-main img {
        max-width: 90%;
        max-height: 90%;
        width: auto;
        height: auto;
    }
    
    /* Mobilde harita butonlarını büyüt */
    .gallery-nav-btn {
        width: 65px;
        height: 65px;
        font-size: 32px;
        min-width: 65px;
        min-height: 65px;
    }
    
    .gallery-modal-nav {
        padding: 0 15px;
    }
    
    /* Mobilde tarih seçici butonlarını büyüt */
    .date-picker-clear, .date-picker-confirm {
        padding: 15px 30px;
        font-size: 18px;
        min-width: 100px;
        min-height: 50px;
    }
    
    .date-picker-footer {
        padding: 25px 20px;
        gap: 15px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: #f8f9fa;
        border-top: 1px solid #dee2e6;
        z-index: 10003;
    }
    
    /* Yeni Özellikler Mobil */
    .oda-ek-ozellikler {
        margin: 20px 0;
        gap: 20px;
    }
    
    .oda-ozellik-bolum {
        padding: 20px;
        border-radius: 12px;
    }
    
    .oda-ozellik-baslik {
        font-size: 20px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .oda-ozellik-icerik {
        gap: 15px;
    }
    
    .oda-kural-item,
    .oda-iptal-item,
    .oda-odeme-item,
    .oda-konum-item {
        padding: 15px;
        border-radius: 8px;
    }
    
    .oda-kural-item h4,
    .oda-iptal-item h4,
    .oda-odeme-item h4,
    .oda-konum-item h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .odeme-yontemleri {
        gap: 8px;
    }
    
    .odeme-yontem {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .konum-link {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    /* Ödeme Bilgileri Mobil */
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .payment-item {
        padding: 15px;
        border-radius: 8px;
    }
    
    .payment-icon {
        font-size: 20px;
    }
    
    .payment-name {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .payment-methods {
        gap: 6px;
    }
    
    .payment-method {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .payment-status {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .payment-notes {
        font-size: 13px;
        padding: 12px;
    }
    
    /* Kurallar, İptal ve Konum Mobil */
    .rules-grid,
    .cancellation-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .rule-item,
    .cancellation-item,
    .location-item {
        padding: 15px;
        border-radius: 8px;
    }
    
    .rule-icon,
    .cancellation-icon,
    .location-icon {
        font-size: 20px;
    }
    
    .rule-name,
    .cancellation-name,
    .location-name {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .rule-text,
    .payment-text,
    .rules-text,
    .cancellation-text,
    .location-text {
        font-size: 15px;
    }
    
    .location-link {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .gallery-modal-header {
        padding: 15px;
    }
    
    .gallery-modal-title {
        font-size: 18px;
    }
    
    .gallery-modal-thumbs {
        padding: 15px;
        gap: 8px;
    }
    
    .gallery-modal-thumb {
        width: 60px;
        height: 60px;
    }
    
    /* Başlık Responsive - Sadeleştirilmiş */
    .oda-detail-header {
        padding: 30px 0;
    }
    
    .oda-header-content {
        padding: 0 15px;
    }
    
    .oda-detail-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .oda-code-badge {
        padding: 6px 16px;
        font-size: 12px;
    }
    
    .oda-meta-simple {
        padding: 20px;
    }
    
    .oda-meta-row {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .oda-meta-item {
        padding: 8px 0;
    }
    
    .meta-label {
        font-size: 13px;
    }
    
    .meta-value {
        font-size: 15px;
    }
    
    .meta-value.price {
        font-size: 16px;
    }
    
    .oda-detail-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .oda-detail-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .oda-info-item {
        padding: 10px 6px;
        min-height: 80px;
    }
    
    .oda-detail-feature {
        padding: 15px 12px;
        min-height: 90px;
    }
    
    .info-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .oda-detail-feature .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .oda-detail-feature .feature-text {
        font-size: 12px;
    }
    
    /* Mobile'da sticky form'u kapat */
    .rezervasyon-form {
        position: relative;
        top: auto;
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 15px 10px;
    }
    
    .rezervasyon-form-button {
        padding: 12px 15px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .rezervasyon-form-row {
        grid-template-columns: 1fr;
    }
    
    .oda-archive .oda-listesi {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .oda-listesi-filters {
        padding: 20px;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .filter-button {
        width: 100%;
    }
    
    .filter-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-button {
        width: 100%;
    }
    
    .oda-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .oda-card-button {
        text-align: center;
    }
}

/* iPhone 11 ve benzeri cihazlar için özel düzeltmeler */
@media (max-width: 414px) and (max-height: 896px) {
    * {
        box-sizing: border-box;
        max-width: 100vw;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 0;
    }
    
    .oda-detail {
        padding: 5px;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        margin: 0;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .oda-detail-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .oda-detail-main,
    .oda-detail-sidebar {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 10px;
    }
    
    .rezervasyon-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 10px 5px;
        margin: 5px 0;
    }
    
    .gallery-modal-content {
        max-width: 100vw;
        width: 100vw;
        margin: 0;
        border-radius: 0;
    }
    
    .gallery-modal-main {
        min-height: 60vh;
        max-height: 60vh;
        padding: 10px;
    }
    
    .gallery-nav-btn {
        width: 75px;
        height: 75px;
        font-size: 40px;
        min-width: 75px;
        min-height: 75px;
    }
    
    /* iPhone 11'de tarih seçici butonlarını daha da büyüt */
    .date-picker-clear, .date-picker-confirm {
        padding: 18px 35px;
        font-size: 20px;
        min-width: 120px;
        min-height: 55px;
    }
    
    .date-picker-footer {
        padding: 30px 20px;
        gap: 20px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: #f8f9fa;
        border-top: 1px solid #dee2e6;
        z-index: 10003;
    }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlar için */
    body {
        overflow-x: hidden;
    }
    
    .oda-detail {
        padding: 5px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .oda-detail-main,
    .oda-detail-sidebar {
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .oda-detail-title {
        font-size: 20px;
    }
    
    .oda-detail-gallery-main img {
        height: 200px;
    }
    
    /* Rezervasyon formu çok küçük ekranlar */
    .rezervasyon-form {
        padding: 10px 5px;
        margin: 10px 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .rezervasyon-form-button {
        padding: 10px 12px;
        font-size: 13px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .rezervasyon-form-input {
        padding: 12px 15px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Galeri modal çok küçük ekranlar */
    .gallery-modal-content {
        max-width: 98vw;
        width: 98vw;
        margin: 1vw;
    }
    
    .gallery-modal-main {
        min-height: 250px;
        max-height: 60vh;
        padding: 10px;
    }
    
    .gallery-modal-main img {
        max-width: 95%;
        max-height: 95%;
    }
    
    /* Çok küçük ekranlarda harita butonlarını daha da büyüt */
    .gallery-nav-btn {
        width: 70px;
        height: 70px;
        font-size: 36px;
        min-width: 70px;
        min-height: 70px;
    }
    
    .gallery-modal-nav {
        padding: 0 10px;
    }
    
    /* Çok küçük ekranlarda tarih seçici butonlarını büyüt */
    .date-picker-clear, .date-picker-confirm {
        padding: 16px 32px;
        font-size: 19px;
        min-width: 110px;
        min-height: 52px;
    }
    
    .date-picker-footer {
        padding: 28px 20px;
        gap: 18px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: #f8f9fa;
        border-top: 1px solid #dee2e6;
        z-index: 10003;
    }
}

/* Loading States */
.oda-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.oda-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error States */
.oda-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #f5c6cb;
    margin: 20px 0;
}

/* Success States */
.oda-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #c3e6cb;
    margin: 20px 0;
}

/* Print Styles */
@media print {
    .oda-card-button,
    .oda-listesi-filters {
        display: none;
    }
    
    .oda-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
