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

:root {
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --text-color: #231F20;
    --muted-text: #231F20;
    --border-color: #eeeeee;
    --accent-color: #d4af37;
    --container-width: 600px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: #7A7A7A;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
    -webkit-font-smoothing: antialiased;
}

.page-container {
    background-color: var(--card-bg);
    width: 100%;
    max-width: var(--container-width);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

.brand-logo {
    width: 100%;
    max-width: 269px;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.brand-logo svg, .brand-logo img {
    width: 100%;
    height: auto;
}

.brand-logo img {
    max-width: 240px;
}

.brand-logo::after {
    display: none;
}

.bottle-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.bottle-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.product-info {
    text-align: center;
    margin-bottom: 2rem;
}

.product-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 0.75rem;
    color: #797979;
}

.product-doc {
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 1rem;
    color: #7A7A7A;
}

.product-details {
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
    color: #7A7A7A;
}

.ingredients-section {
    width: 100%;
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #797979;
}

.ingredients-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
    color: #7A7A7A;
}

.nutrition-section {
    width: 100%;
    margin-bottom: 3rem;
}

.nutrition-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    overflow: hidden;
    color: #6D6D6D;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.nutrition-table th {
    background-color: #F2F2F2;
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 700;
    color: #6D6D6D;
    border-bottom: 1px solid #E8E8E8;
}

.nutrition-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #E8E8E8;
    vertical-align: middle;
}

.nutrition-table td.energy-top {
    border-bottom: none;
    padding-bottom: 0.2rem;
}

.nutrition-table td.energy-bottom {
    padding-top: 0.2rem;
}

.nutrition-table tr:last-child td,
.nutrition-table td.no-border {
    border-bottom: none;
}

.nutrition-table .label {
    text-align: left;
    font-weight: 700;
}

.nutrition-table .sub-label {
    padding-left: 2rem;
    font-weight: 300;
    color: #999;
}

.nutrition-table .value-cell {
    text-align: right;
    width: 80px;
    padding-right: 0.5rem;
    font-weight: 400;
}

.nutrition-table .unit-cell {
    text-align: left;
    width: 60px;
    padding-left: 0.5rem;
    font-weight: 400;
}

.nutrition-table thead .value-header {
    text-align: right;
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
}

.footer-logos {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 0;
    border-top: none;
}

.produced-in {
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
    color: #797979;
}

.responsible-consumption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sustainable {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sustainable-title, .responsible-title {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    text-align: center;
    color: #7A7A7A;
}

.icon-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.responsible-consumption img, .sustainable img {
    height: 35px;
}

.distributor-section {
    text-align: center;
    max-width: 450px;
}

.distributor-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    color: #797979;
}

.distributor-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 1.5rem;
    color: #7A7A7A;
}

.distributor-logo {
    height: 45px;
    margin-bottom: 0.5rem;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    body {
        padding: 0;
    }
    .page-container {
        padding: 2rem 1.25rem;
    }
}
