/**
 * BLCO Single Product Detail Page Styles
 */

/* Product Detail Wrapper */
.blco-single-product {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blco-product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Product Images Section */
.blco-product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blco-main-image {
    width: 100%;
    max-width: 100%;
    height: 500px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}

.blco-main-image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    margin: 0;
}

/* Product Gallery Thumbnails */
.blco-product-gallery {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.blco-gallery-thumb {
    width: 120px;
    height: 120px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    padding: 5px;
}

.blco-gallery-thumb:hover {
    border-color: #C00024;
}

.blco-gallery-thumb.active {
    border-color: #C00024;
}

.blco-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Product Info Section */
.blco-product-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blco-product-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin: 0 0 15px 0;
}

/* Brand Image */
.blco-product-images .blco-brand-image {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    display: inline-block;
}

.blco-brand-image img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(0%);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.blco-brand-image:hover img {
    opacity: 0.8;
}

.blco-product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.blco-product-description p {
    margin: 0 0 15px 0;
}

.blco-product-description p:last-child {
    margin-bottom: 0;
}

/* Key Features List */
.blco-key-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blco-key-features li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.blco-key-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #C00024;
    font-size: 20px;
    line-height: 1;
}

/* Product Actions (Buttons) */
.blco-product-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.blco-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
}

.blco-btn-outline {
    background: #fff;
    color: #C00024;
    border-color: #C00024;
}

.blco-btn-outline:hover {
    background: #C00024;
    color: #fff;
}

.blco-btn-primary {
    background: #C00024;
    color: #fff;
    border-color: #C00024;
}

.blco-btn-primary:hover {
    background: #a0001a;
    border-color: #a0001a;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 968px) {
    .blco-product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blco-product-gallery {
        justify-content: flex-start;
    }

    .blco-gallery-thumb {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .blco-single-product {
        padding: 20px 15px;
    }

    .blco-product-title {
        font-size: 24px;
    }

    .blco-main-image {
        height: 400px;
    }

    .blco-main-image img {
        padding: 15px;
    }

    .blco-brand-image img {
        max-width: 100px;
        max-height: 50px;
    }

    .blco-product-actions {
        gap: 12px;
    }

    .blco-btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .blco-gallery-thumb {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .blco-product-title {
        font-size: 20px;
    }

    .blco-main-image {
        height: 300px;
    }

    .blco-main-image img {
        padding: 10px;
    }

    .blco-brand-image {
        margin-bottom: 15px;
    }

    .blco-brand-image img {
        max-width: 80px;
        max-height: 40px;
    }

    .blco-product-description {
        font-size: 15px;
    }

    .blco-key-features li {
        font-size: 14px;
        padding: 8px 0 8px 20px;
    }
}

