.product-page {
    padding: 80px 20px;
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.product-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-hero {
    margin-bottom: 50px;
    text-align: center;
}

.product-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 14px;
    color: var(--color-brand);
}

.product-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-text-soft);
    line-height: 1.7;
    font-size: 1.05rem;
}

.product-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
     max-height: 520px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-info {
    background: var(--color-surface);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-dark);
    height: 100%;
}

.click-here {
    text-align:center;
    font-size:14px;
    color:var(--color-text-muted);
    margin:14px 0 26px;
    padding-bottom:14px;
    border-bottom: 1px solid rgba(212,160,52,.45);
    width:60%;
    margin-left:auto;
    margin-right:auto;
}

.product-info h2,
.product-info h3 {
    margin-bottom: 14px;
    color: var(--color-text);
}

.product-info h3 {
    margin-top: 26px;
}

.product-info p {
    color: var(--color-text-soft);
    line-height: 1.75;
    margin-bottom: 14px;
}

.product-info ul {
    margin: 0 0 10px 20px;
    padding: 0;
}

.product-info li {
    color: var(--color-text-soft);
    line-height: 1.75;
    margin-bottom: 8px;
}

.product-cta {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2.1rem;
    }

    .product-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-info {
        padding: 24px;
    }

    .product-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .product-image img {
        height: auto;
        aspect-ratio: 4 / 5;
    }
}