/* Styles for product detail pages */
body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin-top: 80px; /* Account for fixed header */
}

.product-page-container {
    max-width: 960px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--bg-alt);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.product-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.product-header h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-header .coming-soon {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-sm);
    margin-left: 10px;
    vertical-align: middle;
}

.product-header .tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.product-content {
    margin-bottom: 2.5rem;
}

.product-content h2 {
    font-size: 2rem;
    color: var(--text-headings); /* Assuming a variable like this exists or use --text */
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light); /* Assuming a lighter border variable */
}

.product-content p,
.product-content ul {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body); /* Assuming a body text variable */
    margin-bottom: 1rem;
}

.product-content ul {
    list-style: disc;
    padding-left: 20px;
}

.product-content li {
    margin-bottom: 0.5rem;
}

.product-cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 1.5rem;
    text-align: center;
}

.product-cta-button:hover {
    background-color: var(--primary-hover);
    color: white;
}

.product-image-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--border);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-page-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .product-header h1 {
        font-size: 2.4rem;
    }

    .product-content h2 {
        font-size: 1.8rem;
    }

    .product-cta-button {
        width: 100%;
        padding: 1rem;
    }
}
