.single-room-page {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    padding-top: 50px; 
}


.room-gallery-section {
    padding: 2rem 0 0;
    background: #fff;
}

.room-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;

}

.main-image {
    border-radius: 16px;
    overflow: hidden;
	max-height: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

.main-image:hover img {
    transform: scale(1.03);
}

.side-images {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;

}

.side-image {
    position: relative;
	height: 340px !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

.side-image:hover img {
    transform: scale(1.03);
}

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

.side-image:hover .view-all-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.view-all-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.view-all-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}


.room-content-section {
    padding: 3rem 0 6rem;
}

.room-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.room-main-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}


.room-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8e8e8;
}

.room-location-s {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
}
.room-title {
    font-family: 'Lustria', serif;
    font-size: clamp(2.25rem, 4vw, 2rem);
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.room-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.room-location i {
    color: #999;
    font-size: 1rem;
}

.room-section {
    padding: 2rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.room-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.room-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}


.room-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f0f4f8;
    border-color: #d0d7de;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.feature-item i {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 0.25rem;
}



.room-description {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.room-description p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
    font-weight: 400;
}


.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.amenity-item:hover {
    background: #f0f4f8;
    border-color: #d0d7de;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.amenity-item i {
    color: #2c2c2c;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.amenity-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
}

.kitchenette-info,
.pavilion-info,
.breakfast-info {
    display: grid;
    gap: 1rem;
}

.kitchenette-item,
.pavilion-item,
.breakfast-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.kitchenette-item:hover,
.pavilion-item:hover,
.breakfast-item:hover {
    background: #f0f4f8;
    border-color: #d0d7de;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.kitchenette-item i,
.pavilion-item i,
.breakfast-item i {
    color: #2c2c2c;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.kitchenette-item span,
.pavilion-item span,
.breakfast-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.room-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.room-amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.room-amenity-item:hover {
    background: #f0f4f8;
    border-color: #d0d7de;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.room-amenity-item i {
    color: #2c2c2c;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.room-amenity-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.pricing-info {
    display: grid;
    gap: 1.5rem;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #d0d7de;
}

.pricing-item i {
    color: #2c2c2c;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.pricing-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    font-weight: 600;
    min-width: 100px;
}

.pricing-value {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-left: auto;
}
  


.bathroom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.bathroom-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.bathroom-item:hover {
    background: #f0f4f8;
    border-color: #d0d7de;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bathroom-item i {
    color: #2c2c2c;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.bathroom-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}


.view-grid {
    display: grid;
    gap: 1rem;
}

.view-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.view-item:hover {
    background: #f0f4f8;
    border-color: #d0d7de;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.view-item i {
    color: #2c2c2c;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.view-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}


.worth-knowing {
    display: grid;
    gap: 1rem;
}

.worth-knowing-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.worth-knowing-item:hover {
    background: #f0f4f8;
    border-color: #d0d7de;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.worth-knowing-item i {
    color: #2c2c2c;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.worth-knowing-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.5;
}


.things-to-know {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.things-to-know h3 {
    font-family: 'Lustria', serif;
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.things-to-know ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.things-to-know li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.5;
    transition: all 0.2s ease;
}

.things-to-know li:hover {
    background: #fafbfc;
    border-color: #e0e0e0;
}

.things-to-know li i {
    color: #2c2c2c;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.things-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.things-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.thing-group {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.thing-group:hover {
    background: #f0f4f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.thing-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
    margin: 0 0 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.thing-detail {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #2c2c2c;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

.custom-things {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.custom-thing-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #2c2c2c;
    transition: all 0.3s ease;
}

.custom-thing-item:hover {
    background: #f0f4f8;
    transform: translateY(-1px);
}

.custom-thing-item i {
    color: #2c2c2c;
    font-size: 1rem;
    flex-shrink: 0;
}

.custom-thing-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}


.location-content {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.location-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}


.room-sidebar {
    position: sticky;
    top: 6rem;
    height: fit-content;
}

.reservation-form-container {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 2.5rem;
}

.price-display {
    margin-bottom: 2rem;
	display: none;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    color: #333;
     font-size: 1.5rem;
}

.price{

    margin-bottom: 0.5rem;
    color: #333;
     font-size: 2rem;
     font-weight: 600;
}

.price-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.daily-price {
    font-family: 'Lustria', serif;
    font-size: 2.25rem;
    font-weight: 400;
    color: #1a1a1a;
}

.currency {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #333;
    font-weight: 500;
}


.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #333;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c2c2c;
    box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.reservation-btn {
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.reservation-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 44, 44, 0.3);
}

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


@media (max-width: 1400px) {
    .room-content-container {
        max-width: 1200px;
        grid-template-columns: 1fr 380px;
        gap: 3rem;
    }
}

@media (max-width: 1200px) {
    .room-content-container {
        grid-template-columns: 1fr 350px;
        gap: 2.5rem;
    }
    
    .room-gallery-container,
    .room-content-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 968px) {
    .room-content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .room-sidebar {
        position: static;
        order: -1;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .things-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .room-gallery-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .room-content-section {
        padding: 2rem 0;
    }
    
    .room-gallery-container,
    .room-content-container {
        padding: 0 1rem;
    }
    
    .room-main-content {
        padding: 2rem;
        border-radius: 8px;
    }
    
    .room-title {
        font-size: 2.5rem;
    }
    
    .room-features {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem 0.75rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .bathroom-grid {
        grid-template-columns: 1fr;
    }
    
    .amenity-item,
    .bathroom-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .view-item,
    .worth-knowing-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    .side-image
	{
		height: 200px !important;
	}
    .things-to-know {
        padding: 1.5rem;
        border-radius: 8px;
    }
    
    .thing-group {
        padding: 1.25rem;
    }
    
    .reservation-form-container {
        padding: 2rem;
    }
    
    .room-gallery-container {
        height: 550px;
        grid-template-columns: 1fr;
        grid-template-rows: 2fr 1fr;
    }
    
    .side-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }
}

@media (max-width: 480px) {
    .room-title {
        font-size: 2rem;
    }
    
    .daily-price {
        font-size: 2rem;
    }
    
    .room-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.75rem 0.5rem;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .amenity-item,
    .bathroom-item,
    .thing-group {
        padding: 1rem;
    }
    
    .amenity-item,
    .bathroom-item {
        gap: 0.5rem;
    }
    
    .view-item,
    .worth-knowing-item {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .amenity-item span,
    .bathroom-item span,
    .view-item span,
    .worth-knowing-item span {
        font-size: 0.85rem;
    }
    
    .things-to-know {
        padding: 1rem;
    }
    
    .things-to-know li {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .room-main-content {
        padding: 1.5rem;
    }
    
    .reservation-form-container {
        padding: 1.5rem;
    }
    
    .room-gallery-container {
        height: 500px;
    }
}


.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 4rem;
    right: 8rem;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.modal-gallery {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-image-container {
    position: relative;
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

#modalImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-prev {
    left: 2rem;
}

.modal-next {
    right: 2rem;
}

.modal-prev:hover,
.modal-next:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.modal-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    max-width: 100%;
    justify-content: center;
}

.modal-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.modal-thumbnail.active {
    border-color: #ffffff;
    transform: scale(1.1);
}

.modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-counter {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}


@media (max-width: 768px) {
    .modal-content {
        padding: 1rem;
		width: 94%;
    }
    
    .modal-close {
        top: 10rem;
        right: 3rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .modal-image-container {
        height: 60%;
        margin-bottom: 1rem;
    }
    
    .modal-prev,
    .modal-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .modal-prev {
        left: 1rem;
    }
    
    .modal-next {
        right: 1rem;
    }
    
    .modal-thumbnail {
        width: 60px;
        height: 45px;
    }
    
    .modal-thumbnails {
        gap: 0.5rem;
        padding: 0.5rem 0;
    }
    
    /* Responsywne style dla nowych sekcji */
    .room-amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .kitchenette-item,
    .pavilion-item,
    .breakfast-item,
    .room-amenity-item,
    .pricing-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .pricing-label {
        min-width: 80px;
        font-size: 0.9rem;
    }
    
    .pricing-value {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .room-amenities-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .kitchenette-item,
    .pavilion-item,
    .breakfast-item,
    .room-amenity-item {
        padding: 0.875rem;
        gap: 0.5rem;
    }
    
    .pricing-item {
        padding: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .pricing-label {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .pricing-value {
        font-size: 0.9rem;
        margin-left: 0;
    }
}