.product-wrapper {
    max-width: 820px;
    margin: 24px auto;
}
.product-card {
    max-width: 100%;
    background: var(--card);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: var(--shadow);
}

.product-card h1 {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 800;
}

.product-sub {
    font-size: 14px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.product-top {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.product-image {
    width: 110px;
}

.product-desc {
    font-size: 14px;
    line-height: 1.4;
}

.ingredients-line {
    margin-top: 10px;
}

/* SECTION BAR */
.section-bar {
    background: #574427;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    margin: 20px 0 14px;
    font-size: 16px;
}

/* INGREDIENTS */
.ingredient {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.ingredient img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
}


.ingredient h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

.ingredient p {
    margin: 0;
    font-size: 14px;
}

/* TEXT STYLES */
.highlight {
    font-weight: 600;
    margin: 16px 0;
}

.subheading {
    margin-top: 18px;
    font-size: 15px;
    font-weight: 700;
}

.compact {
    font-size: 14px;
    margin: 6px 0;
}

/* ANALYSIS GRID */
.analysis {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 20px;
    font-size: 14px;
    margin: 10px 0;
}

/* FINE PRINT */
.fine-print {
    margin-top: 16px;
    font-size: 12px;
    opacity: 0.7;
    text-align: center;
}

.back-btn {
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
}

.back-btn:hover {
    text-decoration: underline;
}

@media (max-width: 1100px) {

    .product-card {
        padding: 24px;
    }

    .product-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-image {
        width: 140px;
    }

    .ingredient {
        gap: 12px;
    }

    .ingredient img {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 700px) {

    .product-card {
        margin: 16px;
        padding: 18px;
    }

    .product-card h1 {
        font-size: 22px;
    }

    .product-sub {
        font-size: 13px;
    }

    .product-top {
        gap: 14px;
    }

    .product-image {
        width: 120px;
    }

    .product-desc {
        font-size: 13px;
    }

    .section-bar {
        font-size: 14px;
        padding: 6px 10px;
    }

    .ingredient {
        align-items: flex-start;
    }

    .ingredient img {
        width: 60px;
        height: 60px;
    }

    .ingredient h3 {
        font-size: 14px;
    }

    .ingredient p {
        font-size: 13px;
        line-height: 1.35;
    }

    .analysis {
        font-size: 13px;
        gap: 4px 14px;
    }

    .fine-print {
        font-size: 11px;
    }
}