.product-layout-838 {
    font-family: sans-serif;
    color: #333;
}

/* Hero */
.pl-hero {
    position: relative;
    max-height: 200px;
    overflow: hidden;
    background: #f9f9f9;
    margin-bottom: 40px;
    border-radius: 8px;
    min-height: 200px;
}
.pl-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.7); /* Light overlay for readability */
    z-index: 1;
}
.pl-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    height: 100%;
    align-items: center;
}
.pl-hero-left, .pl-hero-right {
    flex: 1;
    min-width: 300px;
    padding: 10px;
}
.pl-hero-left p {
    margin: 0;
    font-size: 1.1em;
    color: #333;
    font-weight: 600;
}
.pl-hero-right h1 {
    margin: 0;
    font-size: 2em;
    color: #111;
}

/* Details Section */
.pl-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.pl-images {
    flex: 1;
    min-width: 300px;
}
.pl-main-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: opacity 0.3s;
}
.pl-thumbnail {
    display: flex;
    gap: 10px;
}
.pl-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
}
.pl-thumbnail img:hover {
    border-color: #0073aa;
}

.pl-info {
    flex: 1;
    min-width: 300px;
}
.pl-category {
    font-size: 0.9em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}
.pl-rating {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1.2em;
}
.pl-rating .filled, .pl-rating .half {
    color: #ffb900;
}

.pl-sub-desc {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pl-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.pl-btn {
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.pl-btn-brochure {
    background: #0073aa;
    color: #fff;
}
.pl-btn-brochure:hover {
    background: #005177;
    color: #fff;
}
.pl-btn-enquire {
    background: transparent;
    color: #0073aa;
    border: 2px solid #0073aa;
}
.pl-btn-enquire:hover {
    background: #0073aa;
    color: #fff;
}

/* Full Width */
.pl-full-width {
    border-top: 1px solid #eee;
    padding-top: 40px;
}
.pl-description, .pl-reviews {
    margin-bottom: 40px;
}
.pl-description h3, .pl-reviews h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #222;
}

@media (max-width: 768px) {
    .pl-hero {
        max-height: none;
    }
}