@import 'product_detail.css';

/* Style 10: Obsidian Premium - Redesigned to be Elite and High-End */
.view-10 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1600px;
    padding: 0;
    background: #000;
    min-height: 100vh;
}


.view-10 .product-gallery {
    background: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 0;
    height: 100vh;
}

.view-10 .main-image {
    background: transparent;
    border: none;
    height: 85%;
    margin: 0;
}

.view-10 .main-image img {
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.view-10 .thumbnails {
    margin-top: 22rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    justify-content: center;
}

.view-10 .thumbnail {
    height: 320px;
    border-radius: 20px;
}

.view-10 .product-details {
    padding: 6rem 10%;
    color: #fff;
    background: linear-gradient(135deg, #0f172a 0%, #000 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.view-10 h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #fff, #666);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.view-10 .price-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 30px;
    margin: 2rem 0;
}

.view-10 .current-price {
    font-size: 4rem;
    color: #fff;
    font-weight: 200;
}

.view-10 .btn-primary {
    background: #fff !important;
    color: #000 !important;
    font-size: 1.2rem;
    letter-spacing: 2px;
    border-radius: 0;
    padding: 1.5rem 3rem;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.view-10 .btn-primary:hover {
    background: var(--accent) !important;
    transform: scale(1.02);
}

.view-10 .description-box {
    background: transparent;
    border: none;
    border-left: 2px solid var(--accent);
    border-radius: 0;
    padding: 0 0 0 2rem;
}

.view-10 .specs-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Similar Products Gallery Style for View 10 */
.view-10~.similar-products-section {
    max-width: 1400px;
    margin: 24rem auto 0;
    padding: 0 5% 4rem;
}

.view-10~.similar-products-section .product-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 25px !important;
    transition: all 0.4s ease !important;
}

.view-10~.similar-products-section .product-img-wrapper {
    background: #fff !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    margin: 15px !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
}

.view-10~.similar-products-section .product-info h3 a {
    color: #fff !important;
    font-weight: 300 !important;
}

.view-10~.similar-products-section .btn-icon {
    background: transparent !important;
    border: 1px solid var(--accent) !important;
    color: var(--accent) !important;
}

@media (max-width: 1024px) {
    .view-10 {
        grid-template-columns: 1fr;
    }

    .view-10 .product-gallery {
        height: auto;
        position: static;
        padding: 2rem;
    }

    .view-10 h1 {
        font-size: 3rem;
    }
}