* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    padding: 20px;
}

a {
    color: #8b4513;
}
        
a:hover {
    color: #654321;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header {
    overflow: hidden;
}

.header-images {
    display: flex;
    width: 100%;
    height: 64px;
}

.header-images img {
    height: 64px;
    display: block;
}

.header-images img:first-child {
    width: 191px;
    flex-shrink: 0;
}

.header-images img:last-child {
    width: 100%;
    flex-grow: 1;
    object-fit: cover;
}

.title-section {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 15px 30px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    padding: 15px 30px;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #8b4513;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #654321;
    text-decoration: underline;
}

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

.breadcrumb-part {
    color: #666;
}

.breadcrumb-current {
    color: #2c3e50;
    font-weight: 500;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.image-item img {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.image-item img:hover {
    transform: scale(1.02);
}

h1 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

.content {
    padding: 30px;
}

/* Info Grid Layout */
.info-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

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

.info-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #8b4513;
}

.info-item.full-width {
    grid-column: 1 / -1;
    border-left: 4px solid #d4af37;
}

.info-label {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.info-value {
    color: #666;
}

.description {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.description h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.availability {
    margin-bottom: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #9b59b6;
}

.availability h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.availability-circle {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 8px;
    border: 2px solid #34495e;
}

.availability-circle.full {
    background-color: #34495e;
}

.availability-circle.half {
    background: linear-gradient(90deg, #34495e 50%, transparent 50%);
}

.availability-circle.empty {
    background-color: transparent;
}

.images-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.image-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.image-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-style: normal;
}

.image-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-item.no-image {
    color: #999;
}

.image-item.no-image h4 {
    color: #2c3e50;
    font-style: normal;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    h1 {
        font-size: 1.4rem;
    }
    
    .content {
        padding: 20px;
    }
    
    .images-grid {
        grid-template-columns: 1fr;
    }
    
    .header-images {
        height: 48px;
    }
    
    .header-images img {
        height: 48px;
    }
    
    .header-images img:first-child {
        width: 143px;
    }
    
    .title-section {
        padding: 12px 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}