/* * Premium Single Product Page Styles
 * High-conversion layout, borderless cards, deep shadows
 */

.product-page-wrapper {
    padding: 40px 0 80px;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: #64748b;
}

.breadcrumb a {
    color: var(--primary-color, #2563eb);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Layout Grid */
.product-details-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
}

/* Left Content (Image & Description) */
.product-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-image-card {
    background: var(--card-bg, #ffffff);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    border: 1px solid #f1f5f9;
}

.product-desc-card {
    background: var(--card-bg, #ffffff);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-desc-card h2 {
    font-size: 1.5rem;
    color: var(--text-color, #334155);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.product-description-text {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Right Sidebar (Checkout & Seller Info) */
.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.checkout-action-card {
    background: var(--card-bg, #ffffff);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-price-display {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-color, #334155);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.license-type {
    font-size: 0.9rem;
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    vertical-align: middle;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 0.95rem;
}

.feature-list li svg {
    width: 18px;
    height: 18px;
    stroke: #10b981;
    stroke-width: 2.5;
    fill: none;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-buy-now {
    display: block;
    width: 100%;
    text-align: center;
    background: #10b981;
    color: #ffffff;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-buy-now:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-live-demo {
    display: block;
    width: 100%;
    text-align: center;
    background: #f8fafc;
    color: #334155;
    border: 2px solid #e2e8f0;
    padding: 14px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-live-demo:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.seller-info-card {
    background: var(--card-bg, #ffffff);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.seller-info-card h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.seller-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.seller-avatar {
    width: 50px;
    height: 50px;
    background: #1e293b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.seller-details {
    flex-grow: 1;
}

.seller-name {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.05rem;
}

.seller-badge {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .product-details-container {
        grid-template-columns: 1fr; /* Switch to single column */
    }
    
    .product-sidebar {
        grid-row: 1; /* Move buy box to the top on mobile */
    }
    
    .product-main-content {
        grid-row: 2;
    }
}