@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --purple: #272264;
    --blue: #0088CC;
    --card-bg: #f7f7f7;
    --container-width: 1400px;
}

/* 🔥 PAGE OFFSET — DOES NOT TOUCH NAVBAR */
.page-offset {
    padding-top: 90px; /* adjust if navbar height changes */
}

/* HERO */
.hero-box {
    background: var(--purple);
    color: #fff;
    padding: 70px 30px;
    text-align: center;
}

.hero-title {
    font-size: 38px;
    font-weight: 800;
}
.product-img
.hero-sub {
    font-size: 18px;
    opacity: 0.95;
}

/* PAGE LAYOUT */
.page-wrap {
    max-width: var(--container-width);
    margin: 40px auto;
    padding: 0 30px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT */
.left-column {
    flex: 1;
}

.left-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card {
    background: var(--card-bg);
    padding: 28px;
    border-radius: 14px;
    border: 1px solid #e6e6e6;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.card ul {
    padding-left: 22px;
    line-height: 1.7;
}

/* RIGHT */
.right-card {
    width: 420px;
    background: var(--card-bg);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #e6e6e6;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);

    position: static;
    top: 110px; /* below navbar + hero spacing */
}

.product-img {
    width: 100%;
    height: 252px;
    object-fit: contain;
    border-radius: 10px;
}

.price {
    font-size: 30px;
    margin: 20px 0;
    color: var(--purple);
}

.card-actions {
    margin-top: 12px;
    font-size: 14px;
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .page-wrap {
        flex-direction: column;
    }

    .right-card {
        width: 100%;
        position: static;
    }
}

/* Buttons side by side and center aligned */
.button-group {
    display: flex;
    gap: 15px; /* space between buttons */
    margin-top: 20px;
    justify-content: center; /* center align buttons */
}

/* Make both buttons identical in size */
.button-group .add-cart,
.button-group .buy-now {
    flex: 1; /* equal width */
    padding: 14px;
    font-size: 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    color: #fff;
}

/* Add to Cart style */
.button-group .add-cart {
    background: var(--blue);
}

/* Buy Now style */
.button-group .buy-now {
    background: var(--blue); 
}

.add-cart,
.go-to-cart,
.start-test {
    width: 100%;
    padding: 14px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}