/* Tourbulance Brand Colors - Removed CSS variables, using direct color codes */

/* Otel Detay Sayfası Ana Stil */
.otel-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #F9FAFB;
}

/* Breadcrumbs */
.otel-breadcrumbs {
    margin-bottom: 20px;
    padding: 12px 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #4B5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ff6600;
}

.breadcrumb-item.active {
    color: #111827;
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #9CA3AF;
}

/* Header */
.otel-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #E5E7EB;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.otel-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #111728;
}

.otel-location {
    font-size: 16px;
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-icon {
    font-size: 18px;
}

/* Galeri Bölümü */
.gallery-with-info { 
    display:grid; 
    grid-template-columns: 1fr 350px; 
    gap:20px; 
    align-items:start; 
    margin-bottom:40px; 
}
.otel-gallery-section {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    border: 1px solid #E5E7EB;
    margin-bottom: 40px;
}

.gallery-info-side { 
    position:sticky; 
    top:20px; 
    height:fit-content; 
}

/* Viewer */
.viewer { display:none !important; position:relative !important; padding:12px !important; background:#fff !important; border-radius:8px !important; box-shadow:0 2px 8px rgba(0,0,0,0.06) !important; }
.viewer.active { display:block !important; }
.viewer .main { position:relative !important; height:60vh !important; min-height:380px !important; background:#0b0b0b !important; border-radius:8px !important; overflow:hidden !important; display:flex !important; align-items:center !important; justify-content:center !important; }
.viewer .main img { max-width:100% !important; max-height:100% !important; width:auto !important; height:auto !important; object-fit:contain !important; display:block !important; }
.viewer .nav { position:absolute !important; top:50% !important; transform:translateY(-50%) !important; z-index:3 !important; background:rgba(0,0,0,0.45) !important; color:#fff !important; border:none !important; width:40px !important; height:40px !important; border-radius:50% !important; cursor:pointer !important; font-size:22px !important; line-height:40px !important; text-align:center !important; }
.viewer .nav:hover { background:rgba(0,0,0,0.6) !important; }
.viewer .nav.prev { left:14px !important; }
.viewer .nav.next { right:14px !important; }
.viewer .fullscreen { position:absolute !important; right:10px !important; top:10px !important; z-index:3 !important; background:rgba(0,0,0,0.45) !important; color:#fff !important; border:none !important; width:36px !important; height:36px !important; border-radius:6px !important; cursor:pointer !important; }
.viewer .thumbs { display:flex !important; gap:10px !important; overflow-x:auto !important; overflow-y:hidden !important; padding:12px 4px 4px !important; margin-top:10px !important; visibility:visible !important; opacity:1 !important; min-height:74px !important; }
.viewer .thumbs::-webkit-scrollbar { height:6px !important; }
.viewer .thumbs::-webkit-scrollbar-track { background:#f1f1f1 !important; border-radius:3px !important; }
.viewer .thumbs::-webkit-scrollbar-thumb { background:#888 !important; border-radius:3px !important; }
.viewer .thumbs::-webkit-scrollbar-thumb:hover { background:#555 !important; }
.viewer .thumb { border:none !important; padding:0 !important; background:#fff !important; flex:0 0 auto !important; width:130px !important; height:74px !important; border-radius:8px !important; overflow:hidden !important; cursor:pointer !important; opacity:0.85 !important; box-shadow:0 1px 3px rgba(0,0,0,0.08) !important; display:block !important; visibility:visible !important; min-width:130px !important; }
.viewer .thumb img { width:100% !important; height:100% !important; object-fit:cover !important; display:block !important; visibility:visible !important; opacity:1 !important; }
.viewer .thumb.active { outline:2px solid #ff6600 !important; opacity:1 !important; }

/* Additional specificity for thumbs to ensure visibility */
.otel-gallery-section .viewer .thumbs,
.otel-gallery-section .viewer.active .thumbs {
    display:flex !important;
    visibility:visible !important;
    opacity:1 !important;
}

.otel-gallery-section .viewer .thumb,
.otel-gallery-section .viewer.active .thumb {
    display:block !important;
    visibility:visible !important;
    opacity:0.85 !important;
}

.otel-gallery-section .viewer .thumb img,
.otel-gallery-section .viewer.active .thumb img {
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
}

@media (max-width:768px){
  .viewer .main { height:48vh !important; min-height:260px !important; }
  .viewer .thumb { width:100px !important; height:62px !important; min-width:100px !important; }
}

.gallery-category-tabs {
    display: flex;
    background: #F3F4F6;
    border-bottom: 2px solid #E5E7EB;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.gallery-cat-btn {
    padding: 15px 25px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #4B5563;
    white-space: nowrap;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
}

.gallery-cat-btn:hover {
    background: #E5E7EB;
    color: #1F2937;
}

.gallery-cat-btn.active {
    background: #fff;
    color: #ff6600;
    border-bottom-color: #ff6600;
    font-weight: 600;
}

.gallery-content {
    display: none;
    padding: 20px;
}

.gallery-content.active {
    display: block;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    display: block;
    background: #f5f5f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Ana İçerik ve Sidebar Layout */
.otel-main-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: -32px;
}

/* Sol İçerik */
.otel-content-left {
    min-width: 0;
}

.otel-section {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

/* Oda Tipleri */
.room-types-list { list-style:none; margin:0; padding:0; }
.room-list-item { 
    display:flex; 
    align-items:center; 
    gap:12px; 
    background:#fff; 
    border:1px solid #E5E7EB; 
    border-radius:8px; 
    padding:12px; 
    margin-bottom:8px; 
    transition: all 0.2s ease; 
}
.room-list-item:hover { 
    border-color: #D1D5DB;
    background: #F9FAFB;
}
.room-list-thumb { 
    width:80px; 
    height:56px; 
    border-radius:6px; 
    overflow:hidden; 
    background:#F3F4F6; 
    flex:0 0 auto; 
}
.room-list-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.room-list-body { 
    display:flex; 
    align-items:center; 
    gap:12px; 
    flex:1; 
    justify-content:space-between; 
}
.room-list-title { 
    font-weight:500; 
    font-size:14px;
    color:#374151;
    cursor:pointer;
    transition: color 0.2s ease;
    flex:1;
}
.room-list-title:hover {
    color: #ff6600;
}
.room-detail-link { 
    background: transparent;
    color: #ff6600;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #ff6600;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.room-detail-link:hover { 
    background: #ff6600;
    color: #fff;
}

/* Room modal */
.room-modal-content { max-width:900px; }
.room-modal-title { margin:0 0 12px 0; font-size:20px; font-weight:700; }
.room-modal-viewer { position:relative; background:#111; border-radius:8px; padding:8px; }
.room-modal-viewer .rm-main { height:35vh; min-height:240px; max-height:400px; display:flex; align-items:center; justify-content:center; background:#000; border-radius:6px; overflow:hidden; }
.room-modal-viewer .rm-main img { max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; }
.room-modal-viewer .rm-nav { position:absolute; top:calc(50% - 20px); transform:translateY(-50%); z-index:3; background:rgba(0,0,0,0.45); color:#fff; border:none; width:40px; height:40px; border-radius:50%; cursor:pointer; font-size:22px; line-height:40px; text-align:center; }
.room-modal-viewer .rm-nav.prev { left:14px; }
.room-modal-viewer .rm-nav.next { right:14px; }
.room-modal-viewer .rm-fullscreen { position:absolute; right:14px; top:14px; z-index:3; background:rgba(0,0,0,0.45); color:#fff; border:none; width:36px; height:36px; border-radius:6px; cursor:pointer; }
.room-modal-viewer .rm-thumbs { display:flex; gap:6px; overflow-x:auto; padding:6px 2px 0; }
.room-modal-viewer .rm-thumb { border:none; padding:0; background:#fff; width:100px; height:60px; border-radius:6px; overflow:hidden; cursor:pointer; opacity:.9; }
.room-modal-viewer .rm-thumb img { width:100%; height:100%; object-fit:cover; }
.room-modal-desc { margin-top:12px; font-size:14px; color:#444; }
.room-modal-features { display:flex; flex-wrap:wrap; gap:6px; margin-top:12px; }

/* Events Widget */
.events-list { list-style:none; margin:0; padding:0; }
.event-list-item { 
    display:flex; 
    gap:12px; 
    background:#fff; 
    border:1px solid #E5E7EB; 
    border-radius:12px; 
    padding:16px; 
    margin-bottom:12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}
.event-list-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    border-color: #D1D5DB;
}
.event-list-thumb { width:100px; height:70px; border-radius:8px; overflow:hidden; background:#f0f0f0; flex:0 0 auto; }
.event-list-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.event-list-body { flex:1; display:flex; flex-direction:column; gap:6px; }
.event-list-title { 
    font-weight:600; 
    color:#374151; 
    font-size:14px;
    cursor:pointer;
    transition: color 0.2s ease;
}
.event-list-title:hover {
    color: #ff6600;
}
.event-list-date { font-size:12px; color:#666; display:flex; align-items:center; gap:4px; }
.event-detail-link { 
    background: #ff6600;
    color:#fff; 
    text-decoration:none; 
    font-weight:600; 
    padding:10px 18px; 
    border-radius:8px; 
    box-shadow: 0 2px 4px rgba(255, 102, 0, 0.3);
    font-size:13px; 
    align-self:flex-start;
    transition: all 0.2s ease;
}
.event-detail-link:hover { 
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(255, 102, 0, 0.4);
    background: #ff8533;
}

/* Event Modal */
.event-modal-content { max-width:100%; }
.event-modal-title { margin:0 0 12px 0; font-size:20px; font-weight:700; }
.event-modal-image { margin-bottom:12px; border-radius:8px; overflow:hidden; }
.event-modal-image img { width:100%; height:auto; display:block; }
.event-modal-date { margin-bottom:12px; font-size:14px; color:#444; display:flex; align-items:center; gap:6px; }
.event-modal-desc { font-size:14px; color:#444; line-height:1.6; }

/* Otel Hakkında */
.about-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

/* Feature Badge Stilleri */
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid;
    transition: all 0.15s ease;
}

.feature-badge.free {
    background: transparent;
    color: #111728;
    border-color: rgba(17, 23, 40, 0.2);
}

.feature-badge.paid {
    background: transparent;
    color: #cc5200;
    border-color: rgba(255, 102, 0, 0.3);
}

.feature-badge:hover {
    opacity: 0.9;
}

.badge-icon {
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

/* Accordion Bölümü - Tema CSS override için !important kullanıldı */
.otel-section.accordion-section .accordion-container,
.accordion-container {
    border: 1px solid #E5E7EB !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #fff !important;
}

.otel-section.accordion-section .accordion-item,
.accordion-item {
    border-bottom: 1px solid #E5E7EB !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
}

.otel-section.accordion-section .accordion-item:last-child,
.accordion-item:last-child {
    border-bottom: none !important;
}

.otel-section.accordion-section .accordion-header,
.accordion-header {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 18px 20px !important;
    background: #F9FAFB !important;
    border: none !important;
    border-color: transparent !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: left !important;
    border-radius: 8px !important;
    margin-bottom: 4px !important;
    gap: 12px !important;
    color: #1F2937 !important;
}

.otel-section.accordion-section .accordion-header:hover,
.accordion-header:hover {
    background: #F3F4F6 !important;
    border: none !important;
    border-color: transparent !important;
}

.otel-section.accordion-section .accordion-header.active,
.accordion-header.active {
    background: #ff6600 !important;
    color: #fff !important;
    box-shadow: 0 2px 4px rgba(255, 102, 0, 0.2) !important;
    border: none !important;
    border-color: transparent !important;
}

.otel-section.accordion-section .accordion-header.active .accordion-title,
.accordion-header.active .accordion-title {
    color: #fff !important;
}

.otel-section.accordion-section .accordion-header.active .accordion-icon,
.accordion-header.active .accordion-icon {
    color: #fff !important;
    transform: rotate(45deg) !important;
}

.otel-section.accordion-section .accordion-title,
.accordion-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    flex: 1 !important;
    min-width: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    padding-right: 12px !important;
    color: #1F2937 !important;
}

.otel-section.accordion-section .accordion-icon,
.accordion-icon {
    font-size: 24px !important;
    font-weight: 400 !important;
    transition: transform 0.3s ease !important;
    line-height: 1 !important;
    color: #4B5563 !important;
    flex-shrink: 0 !important;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
}

.accordion-content.open {
    max-height: 2000px;
}

.accordion-text {
    padding: 20px;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    background: transparent;
}

.accordion-text p {
    margin-bottom: 12px;
    background: transparent;
}

.accordion-features {
    padding: 0 20px 20px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.accordion-feature-item {
    width: auto;
    flex: 0 0 auto;
}

/* Sidebar */
.otel-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* Price & Booking Widget - Horizontal (Galeri Üstü) */
.price-booking-widget-horizontal {
    background: #fff;
    padding: 24px;
    margin-top: 60px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.price-display-section-horizontal {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid #E5E7EB;
    flex: 0 0 auto;
}

.price-display-section-horizontal .price-label { 
    font-size: 13px; 
    color: #4B5563; 
    font-weight: 500; 
    margin-bottom: 4px;
}

.price-display-section-horizontal .price-amount { 
    font-size: 28px; 
    font-weight: 700; 
    color: #ff6600;
    line-height: 1.4;
    margin-bottom: 4px;
}

.price-display-section-horizontal .price-note { 
    font-size: 12px; 
    color: #6B7280; 
    margin: 0; 
}

.booking-trigger-btn-horizontal {
    flex: 1;
    min-width: 200px;
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(255, 102, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.booking-trigger-btn-horizontal .btn-text-line1,
.booking-trigger-btn-horizontal .btn-text-line2 {
    display: block;
    line-height: 1.3;
}

.booking-trigger-btn-horizontal:hover {
    background: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 102, 0, 0.4);
}

.call-us-button-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 15px;
    flex: 0 0 auto;
    min-width: 200px;
}

.call-us-button-horizontal:hover {
    background: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 102, 0, 0.4);
    color: #fff;
}

.call-us-button-horizontal .call-icon {
    font-size: 20px;
}

.call-us-button-horizontal .call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.call-us-button-horizontal .call-label {
    font-size: 13px;
    opacity: 0.9;
}

.call-us-button-horizontal .call-number {
    font-size: 16px;
    font-weight: 700;
}

/* Price & Booking Widget - Sidebar (Eski stil - kaldırıldı) */
.price-booking-widget .price-content { 
    text-align:center; 
    padding-bottom:20px;
    border-bottom:1px solid #E5E7EB;
    margin-bottom:20px;
}
.price-display-section {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 20px;
}
.price-display-section .price-label { 
    font-size: 13px; 
    color: #4B5563; 
    font-weight: 500; 
    margin-bottom: 4px;
}
.price-display-section .price-amount { 
    font-size: 28px; 
    font-weight: 700; 
    color: #ff6600;
    line-height: 1.4;
    margin-bottom: 4px;
}
.price-display-section .price-note { 
    font-size: 12px; 
    color: #6B7280; 
    margin: 0; 
}
.booking-trigger-btn {
    width: 100%;
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(255, 102, 0, 0.3);
    margin-bottom: 20px;
}
.booking-trigger-btn:hover {
    background: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 102, 0, 0.4);
}
.booking-section {
    margin-bottom: 20px;
}

/* Booking Form */
.booking-form { display:flex; flex-direction:column; gap:12px; }
.form-field { display:flex; flex-direction:column; gap:4px; }
.form-field label { font-size:13px; font-weight:600; color:#374151; }
.form-field input,
.form-field textarea { 
    padding:12px; 
    border:1px solid #D1D5DB; 
    border-radius:8px; 
    font-size:14px;
    transition: all 0.2s ease;
    background: #fff;
}
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}
.booking-submit-btn { 
    background: #ff6600;
    color:#fff; 
    border:none; 
    padding:14px; 
    border-radius:8px; 
    font-weight:600; 
    cursor:pointer; 
    transition:all 0.2s ease;
    box-shadow: 0 2px 4px rgba(255, 102, 0, 0.3);
}
.booking-submit-btn:hover { 
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(255, 102, 0, 0.4);
    background: #ff8533;
}
.booking-submit-btn:disabled { opacity:0.6; cursor:not-allowed; transform: none; }
.booking-message.success { background:#D1FAE5; color:#065F46; border:1px solid #A7F3D0; }
.booking-message.error { background:#FEE2E2; color:#991B1B; border:1px solid #FECACA; }

/* WhatsApp Button */
.whatsapp-button { display:flex; align-items:center; justify-content:center; gap:8px; background:#25D366; color:#fff; text-decoration:none; padding:14px; border-radius:8px; font-weight:600; transition:background 0.3s;font-size:15px; }
.whatsapp-button:hover { background:#20BA5A; color:#fff; }
.whatsapp-icon { font-size:20px; }

/* Call Us Button */
.call-us-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}
.call-us-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 15px;
}
.call-us-button:hover {
    background: #ff8533;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(255, 102, 0, 0.4);
}
.call-icon {
    font-size: 20px;
}
.call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.call-label {
    font-size: 13px;
    opacity: 0.9;
}
.call-number {
    font-size: 16px;
    font-weight: 700;
}

.sidebar-widget {
    background: #fff;
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    border: 1px solid #E5E7EB;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #1F2937;
    padding-bottom: 12px;
    border-bottom: 2px solid #E5E7EB;
}

.important-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-info-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.important-info-list li:last-child {
    border-bottom: none;
}

.important-info-list li::before {
    content: "•";
    color: #ff6600;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 8px;
}

.credit-cards-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credit-cards-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.credit-cards-list li:last-child {
    border-bottom: none;
}

.installments {
    background: rgba(255, 102, 0, 0.1);
    color: #cc5200;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.map-link {
    display: block;
    padding: 12px;
    background: #ff6600;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Booking Modal */
.otel-booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.otel-booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.otel-booking-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

.otel-booking-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #6B7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.otel-booking-modal-close:hover {
    background: #F3F4F6;
    color: #111827;
}

.otel-booking-modal-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #111827;
    padding-right: 40px;
}

.booking-price-display {
    background: #FEF3C7;
    border: 1px solid #FCD34D;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    text-align: center;
}

.booking-price-label {
    font-size: 14px;
    color: #92400E;
    font-weight: 500;
    margin-right: 8px;
}

.booking-price-value {
    font-size: 20px;
    color: #92400E;
    font-weight: 700;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.booking-form .form-row.form-row-phone {
    grid-template-columns: 1fr auto 1fr;
}

.form-field-phone {
    min-width: 120px;
}

.country-code-select {
    padding: 12px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.country-code-select:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.booking-privacy-notice {
    font-size: 12px;
    color: #6B7280;
    margin: 20px 0;
    line-height: 1.6;
}

.booking-privacy-notice .privacy-link {
    color: #ff6600;
    text-decoration: underline;
    cursor: pointer;
}

.booking-privacy-notice .privacy-link:hover {
    color: #ff8533;
}

.booking-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}

.booking-close-btn {
    background: #F3F4F6;
    color: #374151;
    border: 1px solid #D1D5DB;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.booking-close-btn:hover {
    background: #E5E7EB;
    border-color: #9CA3AF;
}

@media screen and (max-width: 768px) {
    .price-booking-widget-horizontal {
        flex-direction: column;
        align-items: stretch;
    }
    
    .price-display-section-horizontal {
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
        padding: 0 0 20px 0;
        margin-bottom: 20px;
    }
    
    .booking-trigger-btn-horizontal,
    .call-us-button-horizontal {
        width: 100%;
        min-width: auto;
    }
    
    .booking-trigger-btn-horizontal {
        flex: none;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form .form-row.form-row-phone {
        grid-template-columns: 1fr;
    }
    
    .form-field-phone {
        min-width: auto;
    }
    
    .otel-booking-modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .booking-form-actions {
        flex-direction: column-reverse;
    }
    
    .booking-close-btn,
    .booking-submit-btn {
        width: 100%;
    }
}

/* Responsive Tasarım */
@media screen and (max-width: 1200px) {
    .otel-main-content {
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media screen and (max-width: 1200px) {
    .gallery-with-info { grid-template-columns: 1fr 300px; }
}

@media screen and (max-width: 992px) {
    .gallery-with-info { grid-template-columns: 1fr; }
    .otel-main-content {
        grid-template-columns: 1fr;
    }
    
    .otel-sidebar {
        position: static;
    }
    
    .room-types-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .gallery-with-info { gap:12px; }
    .otel-detail-container {
        padding: 15px;
    }
    
    .otel-title {
        font-size: 24px;
    }
    
    .gallery-category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .gallery-cat-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .otel-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .room-types-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion-header {
        padding: 15px;
    }
    
    .accordion-title {
        font-size: 15px;
        padding-right: 8px;
    }
}

@media screen and (max-width: 480px) {
    .otel-detail-container {
        padding: 10px;
    }
    
    .otel-title {
        font-size: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-cat-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .otel-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .feature-badge {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Print Stilleri */
@media print {
    .otel-detail-container {
        max-width: 100%;
    }
    
    .gallery-category-tabs,
    .accordion-icon,
    .map-link {
        display: none;
    }
    
    .gallery-content,
    .accordion-content {
        display: block !important;
        max-height: none !important;
    }
    
    .otel-main-content {
        grid-template-columns: 1fr;
    }
    
    .otel-section {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item,
.room-type-card,
.accordion-item {
    animation: fadeIn 0.4s ease;
}

/* Loading State */
.loading-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Fancybox Özelleştirme */
.fancybox__container {
    --fancybox-bg: rgba(17, 24, 39, 0.92);
}
.fancybox__container .fancybox__content { 
    max-width: 650px; 
    border-radius: 12px;
    overflow: hidden;
}
.fancybox__content .room-modal-content { 
    max-width: 100%; 
    padding: 24px;
    background: #fff;
}
.fancybox__content .event-modal-content { 
    max-width: 100%; 
    padding: 24px;
    background: #fff;
}

/* Accessibility İyileştirmeleri */
.gallery-cat-btn:focus,
.accordion-header:focus,
.map-link:focus {
    outline: 2px solid #ff6600;
    outline-offset: 2px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Seçim Rengi */
::selection {
    background: #ff6600;
    color: #fff;
}

::-moz-selection {
    background: #ff6600;
    color: #fff;
}
