/**
 * Banner Section Block Styles
 */

.product-single-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: #fff;
}

/* Dark Overlay */
.product-single-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 32, 64, 0.6); /* Dark blueish overlay to match screenshot */
    z-index: 1;
}

.product-single-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Breadcrumbs */
.product-breadcrumbs {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-weight: 400;
}

.product-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.product-breadcrumbs a:hover {
    color: #fff;
    text-decoration: underline;
}

.product-breadcrumbs span {
    color: #fff;
}

/* Title */
.product-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Subtitle (if present) */
.product-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-top: 10px;
    max-width: 800px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-single-banner {
        min-height: 300px;
    }
    
    .product-title {
        font-size: 32px;
    }
    
    .product-subtitle {
        font-size: 16px;
    }
}
