:root {
    /* Cores */
    --Green-500: hsl(158, 36%, 37%);
    --Green-700: hsl(158, 42%, 18%);
    --Black: hsl(212, 21%, 14%);
    --Grey: hsl(228, 12%, 48%);
    --Cream: hsl(30, 38%, 92%);
    --White: hsl(0, 0%, 100%);
}

/* Estilos base */
body {
    background-color: var(--Cream);
    font-size: 14px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

/* Card principal */
.product-card {
    background-color: var(--White);
    border-radius: 10px;
    overflow: hidden;
    max-width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0, 0.05);
}

/* Imagem do produto */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Seção de informações */
.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Categoria */
.product-category {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--Grey);
    pointer-events: none;
}

/* Título */
.product-title {
    font-family: 'Fraunces';
    color: var(--Black);
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    pointer-events: none;
}

/* Descrição */
.product-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--Grey);
    pointer-events: none;
}

/* Preços */
.product-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    pointer-events: none;
}

.current-price {
    font-family: 'Fraunces';
    font-weight: 700;
    color: var(--Green-500);
    font-size: 2rem;
}

.original-price {
    text-decoration: line-through;
    font-size: 0.9rem;
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--Grey);
}

/* Botão */
.add-to-cart-btn {
    background-color: var(--Green-500);
    color: var(--White);
    font-family: 'Montserrat';
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
}

.add-to-cart-btn:hover {
    background-color: var(--Green-700);
}

/* Responsividade para telas pequenas */
@media (max-width: 600px) {
    .product-card {
        grid-template-columns: 1fr;
    }

    .product-image img {
        max-height: 300px;
    }

    .product-info {
        padding: 1.5rem;
    }
}