﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 70px;
}

button,
a {
    color: inherit;
    font: inherit;
}

button,
a,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
}

button:focus,
button:focus-visible,
a:focus,
a:focus-visible,
input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible,
select:focus,
select:focus-visible {
    outline: 0;
    box-shadow: none;
}

.top-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 900;
    background: #ffffff;
}

.main-bar {
    height: 48px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 8px;
    padding: 0 10px;
    background: #ffffff;
    color: #050505;
}

.brand-name {
    justify-self: center;
    max-width: 100%;
    overflow: hidden;
    color: #050505;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1;
    text-decoration: none;
    text-overflow: clip;
    white-space: nowrap;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.icon-button,
.language-button {
    position: relative;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.icon-button {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
}

.icon-button svg {
    display: block;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: #050505;
    stroke-width: 1.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-button {
    width: 30px;
}

.language-button {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 38px;
    height: 30px;
    color: #050505;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.chevron {
    width: 10px;
    height: 10px;
    border-right: 1px solid #050505;
    border-bottom: 1px solid #050505;
    transform: translateY(-2px) rotate(45deg);
}

.announcement-bar {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

.announcement-track {
    display: flex;
    width: max-content;
    animation: announcement-scroll 24s linear infinite;
}

.announcement-track span {
    flex: 0 0 auto;
    padding-right: 34px;
    color: rgb(99, 30, 35);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.product-page {
    background: #ffffff;
}

.product-gallery {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.product-main-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #ffffff;
}

.product-main-image img {
    display: block;
    width: min(100vw, 414px);
    height: min(100vw, 414px);
    object-fit: contain;
}

.product-thumbnails {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    margin-top: 0;
    padding: 14px 10px 16px 14px;
    overflow-x: auto;
    scrollbar-width: none;
}

.product-thumbnails::-webkit-scrollbar {
    display: none;
}

.thumbnail-button {
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
    border: 1px solid transparent;
    padding: 0;
    background: #ffffff;
    cursor: pointer;
}

.thumbnail-button.is-active {
    border-color: #050505;
}

.thumbnail-button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 0 8px 32px;
    background: #ffffff;
    color: #030303;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;
    color: #030303;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.65;
}

.breadcrumb a {
    text-decoration: none;
}

.product-promo {
    width: calc(100% - 16px);
    margin: 0 auto 12px;
    padding: 11px 12px;
    background: rgb(99, 30, 35);
    color: #ffffff;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
}

.product-info h1 {
    margin: 0 0 13px;
    color: #000000;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    color: #111111;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

.stars {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 0 0 auto;
}

.stars svg {
    width: 14px;
    height: 14px;
    fill: #dfa90f;
}

.sku {
    margin: 0 0 17px;
    color: #727272;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 9px;
    color: #000000;
}

.price-row strong {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.price-row span {
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.old-price {
    margin: 0 0 20px;
    color: #777777;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-decoration: line-through;
}

.option-title {
    margin: 0 0 10px;
    color: #050505;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.35;
}

.option-title strong {
    font-weight: 700;
}

.color-options {
    display: flex;
    align-items: center;
    gap: 5px;
}

.color-option {
    position: relative;
    width: 48px;
    height: 48px;
    border: 1px solid #9e9e9e;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #ffffff;
    cursor: pointer;
}

.color-option.is-selected {
    border-color: #050505;
    box-shadow: inset 0 0 0 2px #ffffff, 0 0 0 1px #050505;
}

.color-gold {
    background: #e6ca5b;
}

.color-rose {
    background: #efbf9e;
}

.color-silver {
    background: linear-gradient(135deg, #d8d8d8 0 47%, #a9a9a9 48% 52%, #d8d8d8 53% 100%);
}

.favorite-inline {
    width: 100%;
    margin: 32px 0 28px;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: #050505;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.favorite-inline svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: #050505;
    stroke-width: 1.8;
    stroke-linejoin: round;
}

.video-stories {
    margin-top: 0;
}

.video-stories h2 {
    margin: 0 0 8px;
    color: #050505;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}

.stories-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 4px 2px;
    scrollbar-width: none;
}

.stories-row::-webkit-scrollbar {
    display: none;
}

.story-thumb {
    position: relative;
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    border: 2px solid #d2b892;
    border-radius: 50%;
    padding: 3px;
    background: #ffffff;
    cursor: pointer;
}

.story-thumb::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.story-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.product-accordion {
    margin-top: 34px;
    border-bottom: 1px solid #e4e4e4;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.accordion-item {
    border-top: 1px solid #e4e4e4;
}

.accordion-trigger {
    width: 100%;
    min-height: 36px;
    border: 0;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    color: #050505;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.accordion-trigger span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.accordion-trigger svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.accordion-trigger strong {
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.accordion-item.is-open .accordion-trigger {
    background: #f8f8f8;
}

.accordion-item.is-open .accordion-trigger strong {
    font-size: 0;
}

.accordion-item.is-open .accordion-trigger strong::before {
    content: "-";
    font-size: 11px;
}

.accordion-panel {
    display: none;
    padding: 28px 14px 24px;
    background: #ffffff;
    color: #050505;
}

.accordion-item.is-open .accordion-panel {
    display: block;
}

.accordion-panel h3 {
    margin: 0 0 18px;
    color: #000000;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.18;
}

.accordion-panel p {
    margin: 0 0 17px;
    color: #050505;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.28;
}

.accordion-panel p:last-child {
    margin-bottom: 0;
}

.accordion-panel ul {
    margin: 0;
    padding-left: 18px;
}

.accordion-panel li {
    margin-bottom: 12px;
    color: #050505;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
}

.shipping-summary {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.shipping-form,
.checkout-shipping-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 8px;
}

.shipping-form input,
.shipping-form button,
.checkout-shipping-form input,
.checkout-shipping-form button {
    height: 38px;
    border: 1px solid #d8d8d8;
    background: #ffffff;
    font-family: inherit;
    font-size: 11px;
}

.shipping-form input,
.checkout-shipping-form input {
    min-width: 0;
    padding: 0 12px;
}

.shipping-form button,
.checkout-shipping-form button {
    border-color: #050505;
    background: #050505;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.cep-link {
    display: inline-block;
    margin: 10px 0 18px;
    color: #555555;
    font-size: 10px;
}

.shipping-summary > p {
    margin: 0 0 18px;
    font-size: 11px;
    font-weight: 500;
}

.shipping-summary > p strong {
    font-weight: 800;
}

.shipping-summary > p a {
    margin-left: 8px;
    color: #050505;
    text-decoration: underline;
}

.shipping-summary h3 {
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 800;
}

.shipping-option {
    width: 100%;
    min-height: 64px;
    margin-bottom: 12px;
    border: 1px solid transparent;
    padding: 15px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    background: #f1f1f1;
    color: #050505;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
}

.shipping-option strong,
.shipping-option em {
    color: #050505;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
}

.shipping-option span {
    display: block;
}

.shipping-option small {
    display: block;
    margin-top: 7px;
    color: #777777;
    font-size: 10px;
    font-weight: 500;
}

.shipping-option.is-selected {
    border-color: #050505;
    background: #ffffff;
}

.payment-details {
    border: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #050505;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
}

.payment-details svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.moments-section {
    margin: 70px -8px 0;
    overflow: hidden;
    background: #ffffff;
    color: #050505;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    text-align: center;
}

.moments-carousel {
    width: 100%;
    overflow: hidden;
}

.moments-track {
    display: flex;
    width: max-content;
    animation: moments-scroll 38s linear infinite;
}

.moments-track img {
    flex: 0 0 86px;
    width: 86px;
    height: 86px;
    display: block;
    object-fit: cover;
}

.moments-section h2 {
    margin: 64px 24px 20px;
    color: #000000;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0;
}

.moments-section p {
    margin: 0 auto;
    max-width: 340px;
    padding: 0 20px;
    color: #050505;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.75;
}

.editorial-block {
    margin: 44px -8px 0;
    padding: 0 24px;
    text-align: center;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.editorial-block img {
    width: 100%;
    height: auto;
    display: block;
}

.editorial-block h2 {
    margin: 12px auto 22px;
    max-width: 330px;
    color: #000000;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.45;
}

.editorial-block p {
    margin: 0 auto;
    max-width: 330px;
    padding: 0;
    color: #050505;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.8;
}

.surprise-strip {
    margin: 28px -8px 38px;
    padding: 0 16px;
    background: #ffffff;
}

.surprise-strip img {
    width: 100%;
    height: auto;
    display: block;
}

.related-section,
.reviews-section,
.newsletter {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.related-section h2,
.buy-together h2 {
    margin: 0 0 12px;
    color: #050505;
    font-size: 13px;
    font-weight: 800;
}

.product-card-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
}

.product-card-row::-webkit-scrollbar {
    display: none;
}

.mini-product-card {
    position: relative;
    flex: 0 0 132px;
    min-height: 236px;
    padding: 8px;
    background: #f8f8f8;
}

.mini-heart {
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 1;
    width: 22px;
    height: 22px;
    border: 0;
    padding: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
}

.mini-heart svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: #050505;
    stroke-width: 1.8;
}

.mini-product-card img {
    width: 100%;
    height: 108px;
    display: block;
    object-fit: contain;
    background: #ffffff;
}

.mini-product-card h3 {
    margin: 8px 0 5px;
    color: #050505;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.35;
}

.mini-stars {
    color: #dfa90f;
    font-size: 10px;
    line-height: 1;
}

.mini-product-card strong {
    display: block;
    margin-top: 5px;
    color: #050505;
    font-size: 12px;
    font-weight: 800;
}

.mini-product-card span {
    display: block;
    margin-top: 2px;
    color: #777777;
    font-size: 9px;
    text-decoration: line-through;
}

.mini-product-card > button:last-child {
    margin-top: 8px;
    width: 72px;
    height: 24px;
    border: 0;
    background: rgb(99, 30, 35);
    color: #ffffff;
    font-size: 9px;
    font-weight: 600;
}

.reviews-section {
    margin-top: 28px;
    padding-top: 8px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.reviews-tabs {
    width: max-content;
    margin: 0 auto 16px;
    padding: 4px;
    display: flex;
    gap: 4px;
    background: #f7f7f7;
    border-radius: 6px;
}

.reviews-tabs button {
    border: 0;
    border-radius: 5px;
    padding: 10px 14px;
    background: transparent;
    color: #7b8190;
    font-size: 11px;
    font-weight: 800;
}

.reviews-tabs button:first-child {
    background: #ffffff;
    color: #424957;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .07);
}

.reviews-section h2 {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 12px;
    color: #1f2937;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.reviews-section h2 span {
    color: #ffb833;
    font-size: 16px;
}

.reviews-section h2 small {
    color: #8b95a1;
    font-size: 13px;
    font-weight: 700;
}

.review-bars p {
    margin: 0 0 10px;
    display: grid;
    grid-template-columns: 72px 1fr 34px;
    align-items: center;
    gap: 8px;
    color: #8b95a1;
    font-size: 12px;
    font-weight: 600;
}

.review-bars i {
    height: 7px;
    display: block;
    overflow: hidden;
    background: #e5e5e5;
    border-radius: 999px;
}

.review-bars b {
    height: 100%;
    display: block;
    background: #ff8f00;
    border-radius: inherit;
}

.review-button {
    width: 100%;
    height: 42px;
    margin: 18px 0 20px;
    border: 0;
    border-radius: 4px;
    background: #111827;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-card {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 18px 14px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.review-card .review-stars {
    margin-bottom: 16px;
    color: #ffb833;
    font-size: 18px;
    letter-spacing: 1px;
}

.review-card h3 {
    margin: 0 0 12px;
    color: #5f6877;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.review-card img {
    display: block;
    width: 58px;
    height: 58px;
    margin: 0 0 14px;
    border-radius: 5px;
    object-fit: cover;
}

.review-card small {
    color: #8b95a1;
    font-size: 11px;
    font-weight: 700;
}

.more-reviews {
    display: block;
    width: 92px;
    height: 44px;
    margin: 32px auto 34px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0;
    background: #ffffff;
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
}

.newsletter {
    margin: 32px -8px 0;
    padding: 28px 18px 32px;
    background: #f5f3ef;
    text-align: center;
}

.newsletter h2 {
    margin: 0 0 10px;
    color: #050505;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.newsletter p {
    margin: 0 auto 18px;
    max-width: 280px;
    color: #3f3f3f;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
}

.newsletter .newsletter-message {
    margin: 12px auto 0;
    color: rgb(99, 30, 35);
    font-size: 11px;
    font-weight: 700;
}

.newsletter input {
    width: 100%;
    height: 42px;
    border: 1px solid #cfcac1;
    padding: 0 14px;
    background: #ffffff;
    color: #050505;
    font-family: inherit;
    font-size: 12px;
    text-align: left;
}

.newsletter button {
    width: 100%;
    height: 42px;
    margin-top: 10px;
    border: 0;
    background: #050505;
    color: #ffffff;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-footer {
    padding: 0 18px 34px;
    background: #f5f3ef;
    color: #050505;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.site-footer details {
    border-top: 1px solid #eeeeee;
}

.site-footer details:last-of-type {
    border-bottom: 1px solid #eeeeee;
}

.site-footer summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.site-footer summary::-webkit-details-marker {
    display: none;
}

.site-footer summary::after {
    content: "+";
}

.site-footer details[open] summary::after {
    content: "-";
}

.site-footer details p {
    margin: 0 0 14px;
    color: #555555;
    font-size: 10px;
    line-height: 1.5;
}

.site-footer ul {
    margin: 0;
    padding: 0 0 16px;
    list-style: none;
}

.site-footer li {
    margin-bottom: 9px;
    color: #4c4c4c;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.45;
}

.footer-brand {
    margin: 28px auto 18px;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
}

.payment-flags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
}

.payment-flags span {
    border: 1px solid #dddddd;
    padding: 3px 5px;
    background: #fafafa;
    font-size: 8px;
    font-weight: 700;
}

.copyright {
    margin: 0;
    color: #777777;
    font-size: 8px;
    line-height: 1.5;
    text-align: center;
}

.footer-methods {
    padding-top: 22px;
}

.footer-methods h3 {
    margin: 0 0 10px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px;
}

.footer-badges span {
    min-width: 38px;
    height: 24px;
    border: 1px solid #dad6cd;
    border-radius: 2px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #2b2b2b;
    font-size: 8px;
    font-weight: 800;
}

.footer-badges.shipping span {
    min-width: 70px;
}

.footer-badges .barcode::before {
    content: "|||||";
    letter-spacing: 1px;
}

.story-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.72);
}

.story-modal.is-open {
    display: flex;
}

.story-viewer {
    position: relative;
    width: min(100vw, 414px);
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    background: #000000;
    color: #ffffff;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.story-progress {
    position: absolute;
    z-index: 4;
    left: 10px;
    right: 46px;
    top: 8px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
}

.story-progress span {
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
}

.story-progress i {
    display: block;
    width: 0%;
    height: 100%;
    background: #ffffff;
}

.story-progress span.is-complete i,
.story-progress span.is-active i {
    width: var(--story-progress, 0%);
}

.story-progress span.is-complete i {
    --story-progress: 100%;
}

.story-sound,
.story-close {
    position: absolute;
    z-index: 5;
    top: 21px;
    width: 34px;
    height: 34px;
    border: 0;
    padding: 0;
    display: grid;
    place-items: center;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
}

.story-sound {
    left: 14px;
}

.story-close {
    right: 13px;
}

.story-sound svg,
.story-close svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.story-sound .sound-on {
    display: none;
}

.story-sound.is-sound-on .sound-on {
    display: block;
}

.story-sound.is-sound-on .sound-off {
    display: none;
}

.story-frame-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.story-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #111111;
    pointer-events: none;
}

.story-tap-zone {
    position: absolute;
    top: 58px;
    bottom: 150px;
    z-index: 3;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.story-prev-zone {
    left: 0;
    width: 28%;
}

.story-pause-zone {
    left: 28%;
    width: 34%;
}

.story-next-zone {
    right: 0;
    width: 38%;
}

.story-paused {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 6;
    width: 74px;
    height: 74px;
    display: none;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.34);
    transform: translate(-50%, -50%);
}

.story-paused svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.story-viewer.is-paused .story-paused {
    display: grid;
}

.story-side-actions {
    position: absolute;
    z-index: 5;
    right: 10px;
    bottom: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.story-side-actions button {
    width: 42px;
    border: 0;
    padding: 0;
    display: grid;
    place-items: center;
    gap: 2px;
    background: transparent;
    color: #ffffff;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.story-side-actions svg {
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 50%;
    fill: #ffffff;
    stroke: #ffffff;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    background: rgba(0, 0, 0, 0.26);
}

.story-like.is-liked svg {
    fill: #ffffff;
}

.story-product-card {
    position: absolute;
    z-index: 5;
    left: 14px;
    right: 62px;
    bottom: 28px;
    padding: 10px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(5px);
}

.story-product-main {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.story-product-main img {
    width: 55px;
    height: 55px;
    border-radius: 3px;
    object-fit: cover;
    background: #ffffff;
}

.story-product-main h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.25;
}

.story-product-main p {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.story-product-main strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.story-product-main span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    text-decoration: line-through;
}

.story-product-card > button {
    width: 100%;
    height: 36px;
    border: 0;
    border-radius: 3px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    color: #111111;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.story-product-card > button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.side-menu,
.cart-added-modal,
.checkout-drawer {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
    visibility: hidden;
}

.side-menu::before,
.cart-added-modal::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    transition: opacity .22s ease;
}

.side-menu.is-open,
.cart-added-modal.is-open,
.checkout-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

.side-menu.is-open::before,
.cart-added-modal.is-open::before {
    opacity: 1;
}

.side-menu-panel {
    position: relative;
    width: min(100vw, 378px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    color: #050505;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    transform: translateX(-100%);
    transition: transform .26s ease;
}

.side-menu.is-open .side-menu-panel {
    transform: translateX(0);
}

.side-menu-account {
    height: 54px;
    border-bottom: 1px solid #ededed;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 500;
}

.side-menu-account > svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.side-menu-account a {
    text-decoration: underline;
}

.side-menu-close,
.cart-added-close,
.checkout-close {
    border: 0;
    padding: 0;
    display: grid;
    place-items: center;
    background: transparent;
    color: #050505;
    cursor: pointer;
}

.side-menu-close {
    width: 34px;
    height: 34px;
    margin-left: auto;
}

.side-menu-close svg,
.cart-added-close svg,
.checkout-close svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.side-menu-links {
    display: flex;
    flex-direction: column;
}

.side-menu-links a {
    min-height: 51px;
    border-bottom: 1px solid #ededed;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #050505;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.side-menu-links a.muted {
    color: #878787;
}

.side-menu-links a.sale {
    color: #b00020;
}

.side-menu-links span {
    font-size: 23px;
    font-weight: 400;
}

.side-menu-track {
    min-height: 80px;
    margin-top: auto;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.side-menu-track svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
}

.fixed-buy-bar {
    position: fixed;
    z-index: 950;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58px;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: stretch;
    background: #ffffff;
    box-shadow: 0 -1px 8px rgba(0, 0, 0, .12);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.fixed-buy-bar button {
    font-family: inherit;
    cursor: pointer;
}

.fixed-quantity {
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    background: #ffffff;
}

.fixed-quantity button {
    height: 100%;
    border: 0;
    background: #ffffff;
    color: #050505;
    font-size: 18px;
}

.fixed-quantity strong {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

.fixed-buy-button,
.cart-finalize-button,
.checkout-start {
    border: 0;
    background: rgb(99, 30, 35);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.cart-added-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 14px 20px;
    background: #ffffff;
    color: #000000;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    transform: translateY(100%);
    transition: transform .24s ease;
}

.cart-added-modal.is-open .cart-added-panel {
    transform: translateY(0);
}

.cart-added-close {
    position: absolute;
    top: 12px;
    right: 11px;
    width: 31px;
    height: 31px;
}

.cart-added-panel h2 {
    margin: 0 36px 18px 0;
    font-size: 16px;
    font-weight: 800;
}

.cart-added-product {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.cart-added-product img {
    width: 42px;
    height: 64px;
    object-fit: contain;
}

.cart-added-product p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.7;
}

.cart-gift-product {
    border-top: 1px solid #eeeeee;
    padding-top: 14px;
}

.cart-gift-product span,
.checkout-gift-product strong {
    color: #050505;
}

.cart-gift-product s,
.checkout-gift-product s {
    margin-right: 6px;
    color: #8b8b8b;
    font-weight: 500;
}

.cart-added-total,
.checkout-total,
.checkout-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-added-total {
    margin-bottom: 18px;
}

.cart-added-total strong,
.cart-added-total em {
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
}

.cart-finalize-button {
    width: 100%;
    height: 44px;
}

.checkout-drawer {
    background: #ffffff;
    transform: translateX(100%);
    transition: transform .3s ease, visibility .3s ease;
}

.checkout-drawer.is-open {
    transform: translateX(0);
}

.checkout-panel {
    min-height: 100vh;
    background: #ffffff;
    color: #000000;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.checkout-title {
    height: 40px;
    border-top: 1px solid #bdbdbd;
    padding: 0 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-title h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.checkout-close {
    width: 31px;
    height: 31px;
}

.checkout-countdown {
    min-height: 40px;
    padding: 6px 12px 5px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    background: rgb(99, 30, 35);
    color: #ffffff;
}

.checkout-countdown strong {
    font-size: 11px;
    font-weight: 800;
    text-align: right;
}

.checkout-countdown span {
    margin-left: 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.checkout-countdown small {
    grid-column: 2;
    margin-top: -4px;
    font-size: 7px;
    font-weight: 700;
}

.checkout-product {
    min-height: 116px;
    padding: 16px 12px 12px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 48px;
    column-gap: 16px;
    align-items: start;
}

.checkout-product img {
    width: 44px;
    height: 66px;
    object-fit: contain;
}

.checkout-product p {
    margin: 4px 0 14px;
    font-size: 12px;
    font-weight: 500;
}

.checkout-product > button {
    border: 0;
    background: transparent;
    font-size: 10px;
    text-align: right;
}

.checkout-product > button:disabled {
    color: rgb(99, 30, 35);
    font-weight: 800;
    opacity: 1;
}

.checkout-product > strong {
    grid-column: 3;
    justify-self: end;
    margin-top: -22px;
    font-size: 14px;
    font-weight: 800;
}

.checkout-gift-product {
    border-top: 1px solid #f0f0f0;
    min-height: 96px;
    padding-top: 12px;
}

.checkout-gift-product > strong {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-end;
    margin-top: -18px;
}

.gift-badge {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    border: 1px solid rgb(99, 30, 35);
    padding: 3px 6px;
    color: rgb(99, 30, 35);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.checkout-quantity {
    width: 80px;
    height: 29px;
    border: 1px solid #c9c9c9;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.checkout-quantity button {
    border: 0;
    background: #ffffff;
}

.checkout-quantity strong {
    display: grid;
    place-items: center;
    color: #0057b8;
    font-size: 12px;
}

.checkout-coupon {
    padding: 18px 12px 10px;
    border-top: 1px solid #f0f0f0;
}

.checkout-coupon label {
    display: block;
    margin-bottom: 14px;
    font-size: 12px;
}

.checkout-coupon label::before {
    content: "1%";
    margin-right: 8px;
    border: 1px solid #050505;
    padding: 0 2px;
    font-size: 8px;
}

.checkout-coupon div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 78px;
    gap: 8px;
}

.checkout-coupon input,
.checkout-coupon button {
    height: 38px;
    border: 1px solid #a9a9a9;
    background: #ffffff;
    font-family: inherit;
}

.checkout-coupon input {
    padding: 0 12px;
    color: #050505;
    font-size: 12px;
}

.checkout-coupon input::placeholder {
    color: #b8b8b8;
}

.coupon-message {
    margin: 8px 0 0;
    color: rgb(99, 30, 35);
    font-size: 10px;
    font-weight: 700;
}

.checkout-line {
    padding: 18px 12px 26px;
    border-bottom: 1px solid #efefef;
    font-size: 12px;
}

.checkout-line small {
    font-size: 8px;
}

.checkout-shipping-box {
    padding: 14px 12px 12px;
    border-bottom: 1px solid #efefef;
}

.checkout-shipping-options {
    margin-top: 12px;
}

.checkout-shipping {
    width: 100%;
    min-height: 78px;
    border: 0;
    border-bottom: 1px solid #efefef;
    padding: 0 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    color: #777777;
    font-family: inherit;
    font-size: 12px;
}

.checkout-shipping span::before {
    content: "↝";
    margin-right: 8px;
    color: #050505;
}

.checkout-shipping strong {
    color: #050505;
    font-size: 18px;
    font-weight: 400;
}

.checkout-total {
    padding: 28px 12px 18px;
}

.checkout-total > strong {
    font-size: 16px;
    font-weight: 800;
}

.checkout-total div {
    text-align: right;
}

.checkout-total em {
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
}

.checkout-total span {
    display: block;
    margin-top: 8px;
    font-size: 10px;
}

.checkout-start {
    width: calc(100% - 24px);
    height: 44px;
    margin: 0 12px;
}

@keyframes announcement-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes moments-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 360px) {
    .main-bar {
        grid-template-columns: 28px minmax(0, 1fr) auto;
        column-gap: 4px;
        padding: 0 6px;
    }

    .brand-name {
        font-size: 11px;
        letter-spacing: 2.6px;
    }

    .header-actions {
        gap: 4px;
    }

    .icon-button {
        width: 25px;
        height: 30px;
    }

    .language-button {
        min-width: 31px;
        gap: 4px;
        font-size: 11px;
    }

    .icon-button svg {
        width: 18px;
        height: 18px;
    }

    .chevron {
        width: 8px;
        height: 8px;
    }

    .announcement-track {
        animation-duration: 20s;
    }

    .announcement-track span {
        font-size: 9px;
        padding-right: 28px;
    }

    .product-main-image {
        min-height: 0;
    }

    .product-main-image img {
        width: 100vw;
        height: 100vw;
        max-width: 414px;
        max-height: 414px;
    }

    .product-thumbnails {
        gap: 14px;
        margin-top: 0;
        padding: 12px 8px 14px 10px;
    }

    .thumbnail-button {
        flex-basis: 68px;
        width: 68px;
        height: 68px;
    }

    .product-info {
        padding-inline: 8px;
    }

    .breadcrumb {
        font-size: 9.5px;
        margin-bottom: 15px;
    }

    .product-promo {
        font-size: 16px;
    }

    .product-info h1 {
        font-size: 21px;
    }

    .rating-row {
        font-size: 11px;
    }

    .stars svg {
        width: 13px;
        height: 13px;
    }

    .color-option {
        width: 44px;
        height: 44px;
    }

    .favorite-inline {
        margin-top: 30px;
        margin-bottom: 27px;
    }

    .video-stories h2 {
        font-size: 14px;
    }

    .story-thumb {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
    }

    .product-accordion {
        margin-top: 32px;
    }

    .accordion-trigger {
        min-height: 35px;
        padding-inline: 10px;
    }

    .accordion-trigger span {
        font-size: 10px;
    }

    .accordion-panel {
        padding: 25px 12px 22px;
    }

    .accordion-panel h3 {
        font-size: 14px;
    }

    .moments-section {
        margin-top: 68px;
    }

    .moments-section h2 {
        margin-top: 60px;
        font-size: 20px;
    }

    .moments-section p {
        max-width: 320px;
        font-size: 10px;
    }

    .editorial-block {
        padding-inline: 20px;
    }

    .editorial-block h2 {
        font-size: 20px;
    }

    .editorial-block p {
        font-size: 10px;
    }
}

@media (max-width: 320px) {
    .brand-name {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .product-thumbnails {
        padding-left: 34px;
    }
}


.brand-logo {
    display: grid;
    place-items: center;
}

.brand-logo img {
    display: block;
    width: min(190px, 54vw);
    max-height: 24px;
    object-fit: contain;
}

.product-page[hidden],
.tracking-page[hidden] {
    display: none;
}

.tracking-page {
    background: #ffffff;
    color: #050505;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.tracking-hero h1 {
    margin: 0;
    padding: 34px 16px 22px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.tracking-hero img {
    display: block;
    width: 100%;
    max-height: 230px;
    object-fit: cover;
    object-position: center top;
    background: #eeeeec;
}

.tracking-card {
    width: calc(100% - 32px);
    max-width: 520px;
    margin: 48px auto 92px;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    padding: 28px 18px 14px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.tracking-card h2 {
    margin: 0 0 26px;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
}

.tracking-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.tracking-tabs button {
    border: 0;
    border-bottom: 3px solid #cccccc;
    padding: 0 6px 11px;
    background: transparent;
    color: #5f6270;
    font-size: 13px;
    cursor: pointer;
}

.tracking-tabs button.is-active {
    border-color: #050505;
    color: #050505;
}

.tracking-form {
    display: grid;
    gap: 14px;
}

.tracking-form label {
    height: 38px;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 8px;
    border: 1px solid #dddddd;
    border-radius: 3px;
    padding: 0 10px;
}

.tracking-form svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #909090;
    stroke-width: 1.5;
}

.tracking-form input {
    min-width: 0;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: 12px;
}

.tracking-form button,
.coupon-form button,
.coupon-success button {
    height: 39px;
    border: 0;
    border-radius: 3px;
    background: #050505;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.tracking-form p {
    margin: 0;
    color: #0c7a3b;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.tracking-card small {
    display: block;
    margin-top: 10px;
    color: #c6bac1;
    font-size: 9px;
    text-align: right;
}

.tracking-copy {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 26px 70px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
}

.tracking-copy h2 {
    margin: 42px 0 28px;
    font-size: 15px;
    line-height: 1.35;
}

.fixed-buy-bar {
    bottom: 66px;
}

.bottom-navigation {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 920;
    height: 66px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    border-top: 1px solid #dedede;
    background: #ffffff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
}

.bottom-navigation button,
.bottom-navigation a {
    min-width: 0;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    border: 0;
    padding: 4px 2px;
    background: transparent;
    color: #111111;
    font-size: 10px;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.bottom-navigation img,
.bottom-navigation svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.bottom-navigation svg {
    fill: none;
    stroke: #050505;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bottom-home {
    transform: translateY(-14px);
}

.home-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: #050505;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.32);
}

.coupon-popup,
.service-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.55);
}

.coupon-popup.is-open,
.service-popup.is-open {
    display: flex;
}

.coupon-panel,
.service-panel {
    position: relative;
    width: min(100%, 360px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    border-radius: 6px;
    background: #ffffff;
    color: #050505;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.coupon-panel {
    padding: 28px 20px 22px;
}

.popup-close,
.service-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.popup-close svg,
.service-close svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.coupon-logo,
.service-logo {
    display: block;
    width: 220px;
    max-width: 78%;
    margin: 0 auto 18px;
}

.coupon-panel h2 {
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.25;
    text-align: center;
}

.coupon-form {
    display: grid;
    gap: 10px;
}

.coupon-form input:not([type="checkbox"]) {
    height: 42px;
    border: 1px solid #dddddd;
    padding: 0 12px;
    font: inherit;
    font-size: 13px;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    line-height: 1.35;
}

.coupon-success {
    text-align: center;
}

.coupon-success h3 {
    margin: 4px 0 8px;
    font-size: 22px;
}

.coupon-success p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.45;
}

.checkout-discount {
    color: #0c7a3b;
}

.service-panel {
    padding: 0 18px 18px;
    background: linear-gradient(rgba(20, 20, 20, 0.72), rgba(20, 20, 20, 0.72)), url("https://i.postimg.cc/sgNkQDD5/Imagem-Produto-01.png") center/cover;
    color: #ffffff;
}

.service-logo {
    width: 250px;
    margin-top: 36px;
    filter: brightness(0) invert(1);
}

.service-panel p {
    margin: 0 -18px 18px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.26);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.service-panel button:not(.service-close),
.service-panel a {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    margin-top: 10px;
    border: 0;
    border-radius: 4px;
    padding: 0 14px;
    background: #242424;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.service-panel button:not(.service-close)::before,
.service-panel a::before {
    content: "";
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    margin-right: 10px;
    border-radius: 50%;
    background: #31c85a;
    box-shadow: inset 0 0 0 4px #31c85a;
}

.service-panel button:not(.service-close)::before {
    background: #ffffff;
    box-shadow: inset 0 0 0 2px #222222;
}

@media (min-width: 700px) {
    .tracking-hero img {
        max-height: 310px;
        object-fit: contain;
    }
}

.bottom-navigation {
    border-top: 4px solid #1e1e1e;
    box-shadow: none;
}

.bottom-navigation button,
.bottom-navigation a {
    font-size: 10px;
    font-weight: 600;
}

.bottom-navigation img,
.bottom-navigation svg {
    width: 25px;
    height: 25px;
}

.bottom-home {
    transform: translateY(-16px);
}

.home-mark {
    width: 64px;
    height: 64px;
    border-width: 3px;
    font-size: 0;
    background: #050505 url("https://i.postimg.cc/7YqbKV3Y/10c2e1780433661ab1bc439087af6508f9a57bb8.png") center/42px 42px no-repeat;
}

.tracking-hero img {
    max-height: 285px;
    object-fit: cover;
    object-position: center top;
}


.fixed-buy-bar {
    bottom: 82px;
}

.bottom-navigation {
    height: 70px;
}

.bottom-navigation button,
.bottom-navigation a {
    gap: 0;
    padding: 4px 2px 6px;
}

.bottom-navigation img,
.bottom-navigation svg {
    width: 45px;
    height: 45px;
}

.bottom-home {
    transform: translateY(-18px);
}

.home-mark {
    width: 66px;
    height: 66px;
    background-size: 44px 44px;
}

.bottom-navigation button,
.bottom-navigation a {
    overflow: visible;
}

.bottom-navigation img,
.bottom-navigation svg {
    width: 62px;
    height: 52px;
    object-fit: contain;
}

.bottom-navigation button:first-child img {
    width: 66px;
    height: 54px;
}

.bottom-navigation button:not(.bottom-home),
.bottom-navigation a {
    align-content: center;
}

.home-mark {
    width: 68px;
    height: 68px;
}

.bottom-navigation {
    height: 76px;
}

.bottom-navigation button:not(.bottom-home),
.bottom-navigation a {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-navigation img,
.bottom-navigation svg {
    width: min(76px, 19vw);
    height: 64px;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

.bottom-navigation button:first-child img,
.bottom-navigation button:nth-child(2) img,
.bottom-navigation button:nth-child(4) img,
.bottom-navigation button:nth-child(5) img {
    width: min(82px, 20vw);
    height: 66px;
}

.fixed-buy-bar {
    bottom: 88px;
}


.home-mark {
    background-size: 58px 58px;
}

.coupon-panel {
    padding: 0 0 22px;
    background: #eeeeee;
}

.coupon-header {
    min-height: 58px;
    display: grid;
    place-items: center;
    background: #050505;
    padding: 16px 44px 14px;
}

.coupon-header .coupon-logo {
    width: 220px;
    max-width: 100%;
    margin: 0;
    filter: brightness(0) invert(1);
}

.coupon-copy {
    margin: 22px auto 18px;
    max-width: 265px;
    color: #111111;
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
}

.coupon-form {
    padding: 0 22px;
}

.coupon-code {
    margin: 14px 0 12px;
    color: #050505;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
}

.coupon-success {
    padding: 28px 20px 0;
}

.coupon-success h3 {
    margin: 0 0 8px;
    color: #050505;
    font-size: 25px;
    font-weight: 800;
}

.coupon-success button {
    display: inline-block;
    width: auto;
    min-width: 140px;
    padding: 0 12px;
    font-size: 14px;
}

.tracking-form[data-mode="code"] .tracking-order-fields,
.tracking-form[data-mode="order"] .tracking-code-fields {
    display: none;
}

.tracking-form label:focus-within {
    border-color: #050505;
    box-shadow: 0 0 0 1px #050505 inset;
}

.tracking-form input:valid {
    color: #050505;
    font-weight: 600;
}

.tracking-form p#trackingMessage {
    color: rgb(99, 30, 35);
    font-weight: 800;
}

body {
    padding-bottom: 190px;
}

.main-bar {
    grid-template-columns: 34px minmax(0, 1fr) minmax(96px, auto);
}

.brand-name {
    min-width: 0;
    max-width: min(46vw, 220px);
    overflow: visible;
    font-size: 13px;
    letter-spacing: 3px;
    text-align: center;
    white-space: normal;
}

.color-gold {
    background: linear-gradient(135deg, #ead49a, #b8862f);
}

.color-silver {
    background: linear-gradient(135deg, #f1f1f1, #9f9f9f);
}

.color-option.is-unavailable {
    cursor: not-allowed;
    opacity: 0.45;
}

.color-option.is-unavailable::after {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    top: 50%;
    height: 2px;
    background: #050505;
    transform: rotate(-38deg);
}

.video-stories {
    margin-top: 14px;
}

.video-stories h2 {
    margin-bottom: 12px;
    font-size: 19px;
}

.stories-row {
    gap: 12px;
    padding: 0 2px 8px;
}

.story-thumb {
    flex-basis: 86px;
    width: 86px;
    height: 86px;
    overflow: hidden;
    border-color: rgb(99, 30, 35);
    padding: 3px;
}

.story-thumb::after {
    content: none;
}

.story-thumb iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 50%;
    background: #111111;
    object-fit: cover;
    pointer-events: none;
}

.accordion-trigger {
    min-height: 48px;
    padding: 0 14px;
}

.accordion-trigger span {
    font-size: 13px;
}

.accordion-trigger svg {
    width: 16px;
    height: 16px;
}

.accordion-trigger strong,
.accordion-item.is-open .accordion-trigger strong::before {
    font-size: 15px;
}

.accordion-panel {
    padding: 30px 16px 28px;
}

.accordion-panel h3 {
    font-size: 18px;
    line-height: 1.25;
}

.accordion-panel p,
.accordion-panel li {
    font-size: 14px;
    line-height: 1.45;
}

.product-info h1 {
    font-size: 24px;
    line-height: 1.2;
}

.option-title,
.price-installment,
.rating-row,
.favorite-inline {
    font-size: 13px;
}

.editorial-block h2,
.reviews-section h2,
.questions-mode h2,
.newsletter h2 {
    font-size: 22px;
    line-height: 1.25;
}

.editorial-block p,
.newsletter p,
.reviews-section p {
    font-size: 13px;
    line-height: 1.5;
}

.site-footer {
    padding-bottom: 168px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.footer-badges img {
    width: 44px;
    height: 28px;
    border: 1px solid #dddddd;
    border-radius: 3px;
    background: #ffffff;
    object-fit: contain;
    padding: 3px;
}

.footer-badges span {
    min-height: 28px;
}

.footer-badges .barcode {
    display: none;
}

.story-sound,
.story-close {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #050505;
}

.story-sound svg,
.story-close svg {
    width: 23px;
    height: 23px;
    stroke: currentColor;
}

.story-sound svg path {
    stroke: #000000;
}

.story-paused {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: none;
    place-items: center;
    background: rgba(255, 255, 255, 0.86);
    transform: translate(-50%, -50%);
}

.story-viewer.is-paused .story-paused {
    display: grid;
}

.story-play-icon {
    width: 52px;
    height: 52px;
}

.coupon-popup,
.service-popup,
.gift-popup,
.image-lightbox,
.action-loader {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.55);
}

.gift-popup.is-open,
.image-lightbox.is-open,
.action-loader.is-open {
    display: flex;
}

.action-loader {
    z-index: 1500;
    background: rgba(255, 255, 255, 0.74);
}

.action-loader span {
    width: 44px;
    height: 44px;
    border: 4px solid rgba(99, 30, 35, 0.18);
    border-top-color: rgb(99, 30, 35);
    border-radius: 50%;
    animation: action-spin 0.9s linear infinite;
}

@keyframes action-spin {
    to {
        transform: rotate(360deg);
    }
}

.gift-panel {
    position: relative;
    width: min(100%, 360px);
    border-radius: 6px;
    padding: 24px 18px 18px;
    background: #ffffff;
    color: #050505;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.gift-close,
.image-lightbox button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #050505;
    cursor: pointer;
}

.gift-close svg,
.image-lightbox button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.gift-panel h2 {
    margin: 0 38px 18px 0;
    font-size: 18px;
    line-height: 1.25;
}

.gift-option {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 14px;
    align-items: center;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    padding: 12px;
}

.gift-option img {
    width: 84px;
    height: 84px;
    object-fit: contain;
}

.gift-option strong,
.gift-option span,
.gift-option p {
    display: block;
    margin: 0 0 6px;
    font-size: 12px;
    line-height: 1.35;
}

.gift-option span {
    color: rgb(99, 30, 35);
    font-weight: 800;
}

.service-panel button:not(.service-close),
.service-panel a {
    gap: 10px;
}

.service-panel button:not(.service-close)::before,
.service-panel a::before {
    content: none;
}

.service-panel button:not(.service-close) img,
.service-panel a img {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    object-fit: cover;
}

.image-lightbox {
    z-index: 1400;
    background: rgba(0, 0, 0, 0.86);
}

.image-lightbox img {
    max-width: min(92vw, 720px);
    max-height: 86vh;
    border-radius: 6px;
    object-fit: contain;
}

.review-card img {
    cursor: zoom-in;
}

@media (max-width: 420px) {
    body {
        padding-bottom: 210px;
    }

    .main-bar {
        height: 54px;
        grid-template-columns: 34px minmax(0, 1fr) 92px;
        column-gap: 5px;
        padding-inline: 8px;
    }

    .header-actions {
        gap: 4px;
    }

    .icon-button,
    .language-button {
        width: 28px;
        min-width: 28px;
    }

    .brand-name {
        max-width: 43vw;
        font-size: 12px;
        letter-spacing: 2px;
        line-height: 1.15;
    }

    .story-thumb {
        flex-basis: 92px;
        width: 92px;
        height: 92px;
    }

    .video-stories h2 {
        font-size: 20px;
    }

    .site-footer {
        padding-bottom: 188px;
    }
}

@media (max-width: 340px) {
    .brand-name {
        max-width: 39vw;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .story-thumb {
        flex-basis: 84px;
        width: 84px;
        height: 84px;
    }
}

.main-bar {
    grid-template-columns: 34px minmax(0, 1fr) minmax(84px, auto);
}

.header-actions {
    justify-content: flex-end;
}

@media (max-width: 420px) {
    .main-bar {
        grid-template-columns: 32px minmax(0, 1fr) 88px;
    }

    .header-actions {
        gap: 3px;
    }

    .brand-name {
        max-width: 50vw;
    }
}

@media (max-width: 340px) {
    .main-bar {
        grid-template-columns: 30px minmax(0, 1fr) 84px;
    }

    .brand-name {
        max-width: 48vw;
    }
}

.questions-mode {
    padding: 22px 6px 48px;
}

.questions-mode .reviews-tabs {
    margin-bottom: 12px;
    padding: 6px;
    border-radius: 8px;
    background: #f7f8fb;
}

.questions-mode .reviews-tabs button {
    min-width: 96px;
    color: #8f95a3;
    font-size: 13px;
    font-weight: 800;
}

.questions-mode .reviews-tabs button.is-active {
    background: #ffffff;
    color: #343a46;
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06);
}

.questions-mode .reviews-section h2,
.questions-mode h2 {
    display: block;
    margin: 0 0 14px;
    color: #202633;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.questions-mode h2 small {
    display: block;
    margin-top: 5px;
    color: #b0b5c0;
    font-size: 12px;
    font-weight: 800;
}

.questions-mode .more-reviews,
.questions-mode .review-button {
    border-radius: 5px;
    font-weight: 800;
}

.questions-mode .reviews-list {
    gap: 0;
}

.question-card {
    border-top: 1px solid #eceff4;
    padding: 32px 0 34px;
    color: #2a3140;
    font-size: 12px;
}

.question-card:first-child {
    border-top: 0;
}

.question-meta,
.answer-meta {
    display: grid;
    grid-template-columns: 34px auto 1fr;
    align-items: center;
    column-gap: 8px;
    margin-bottom: 12px;
    color: #9097a6;
    font-weight: 800;
}

.question-meta span,
.answer-meta span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #745844;
    color: #111827;
    font-weight: 800;
}

.answer-meta span {
    border: 1px solid #eef0f4;
    background: #ffffff;
    color: #222a35;
}

.answer-meta {
    grid-template-columns: 34px auto 18px 1fr;
    margin-top: 16px;
}

.answer-meta i {
    width: 15px;
    height: 15px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #1dc448;
    color: #ffffff;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

.question-meta em,
.answer-meta em {
    font-style: normal;
    font-weight: 700;
}

.question-bubble,
.answer-bubble {
    margin: 0 0 0 43px;
    border-radius: 3px;
    padding: 13px 14px;
    background: #f4f5f7;
    color: #283040;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
}

.answer-bubble {
    font-weight: 700;
}

.questions-mode .reviews-tabs button:first-child {
    background: transparent;
    color: #8f95a3;
    box-shadow: none;
}

.questions-mode .review-button {
    display: block;
    height: 31px;
    margin: 12px 0 26px;
    background: #111827;
    color: #ffffff;
    font-size: 12px;
}

.checkout-drawer.is-open {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.checkout-panel {
    min-height: auto;
    padding-bottom: 108px;
}

.checkout-quantity strong,
.fixed-quantity strong {
    color: rgb(99, 30, 35);
}

.checkout-shipping-form {
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 10px;
}

.checkout-shipping-form input {
    height: 38px;
    border-color: #d1d1d1;
    font-size: 12px;
}

.checkout-shipping-form button {
    height: 38px;
    background: #050505;
    font-size: 12px;
}

.checkout-shipping-options {
    margin-top: 14px;
}

.checkout-shipping-options .shipping-option {
    min-height: 68px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    background: #f2f2f2;
    padding: 14px 18px;
}

.checkout-shipping-options .shipping-option.is-selected {
    border-color: #050505;
    background: #ffffff;
}

.reviews-mode .reviews-tabs button:first-child,
.questions-mode .reviews-tabs button:nth-child(2) {
    background: #ffffff;
    color: #343a46;
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06);
}

.reviews-mode .reviews-tabs button:nth-child(2) {
    background: transparent;
    color: #8f95a3;
    box-shadow: none;
}

.reviews-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 194px;
}

.reviews-tabs button,
.questions-mode .reviews-tabs button {
    width: 92px;
    min-width: 92px;
    padding-inline: 0;
    text-align: center;
}

.announcement-countdown {
    height: auto;
    min-height: 82px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    padding: 10px 12px 9px;
    overflow: visible;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    background: #ffffff;
    color: rgb(99, 30, 35);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    text-align: center;
}

.announcement-countdown > strong {
    max-width: 360px;
    color: rgb(99, 30, 35);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.announcement-timer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    color: rgb(99, 30, 35);
}

.announcement-timer span {
    min-width: 28px;
    display: grid;
    justify-items: center;
    line-height: 1;
}

.announcement-timer b,
.announcement-timer i {
    color: rgb(99, 30, 35);
    font-size: 19px;
    font-style: normal;
    font-weight: 800;
    line-height: 1;
}

.announcement-timer small {
    margin-top: 2px;
    color: #050505;
    font-size: 7px;
    font-weight: 500;
}

.announcement-track {
    display: none;
}

.product-promo {
    font-size: 15px;
    line-height: 1.25;
    padding-inline: 10px;
}

.announcement-ticker {
    height: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.announcement-ticker .announcement-track {
    display: flex;
    width: max-content;
    animation: announcement-scroll 24s linear infinite;
}

.announcement-ticker .announcement-track span {
    flex: 0 0 auto;
    padding-right: 34px;
    color: rgb(99, 30, 35);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.favorite-inline.is-favorited {
    border-color: rgb(99, 30, 35);
    color: rgb(99, 30, 35);
}

.favorite-inline.is-favorited svg {
    fill: rgb(99, 30, 35);
    stroke: rgb(99, 30, 35);
}

.search-panel {
    position: fixed;
    inset: 0;
    z-index: 1450;
    display: none;
    align-items: flex-start;
    background: #ffffff;
    color: #050505;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.search-panel.is-open {
    display: flex;
}

.search-form {
    width: 100%;
    height: 58px;
    display: grid;
    grid-template-columns: 42px 1fr 44px;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    background: #f7f7f7;
}

.search-form button {
    height: 100%;
    border: 0;
    padding: 0;
    display: grid;
    place-items: center;
    background: transparent;
    color: #333333;
    cursor: pointer;
}

.search-form svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.search-form input {
    width: 100%;
    min-width: 0;
    height: 100%;
    border: 0;
    background: transparent;
    color: #050505;
    font: inherit;
    font-size: 13px;
}

.search-form input::placeholder {
    color: #b8b8b8;
}

.checkout-shipping-form button:disabled,
.shipping-form button:disabled {
    opacity: 0.72;
    cursor: wait;
}

.main-bar {
    grid-template-columns: 34px minmax(0, 1fr) minmax(84px, auto);
}

.header-actions {
    justify-content: flex-end;
}

@media (max-width: 420px) {
    .main-bar {
        grid-template-columns: 32px minmax(0, 1fr) 88px;
    }

    .header-actions {
        gap: 3px;
    }

    .brand-name {
        max-width: 50vw;
    }
}

@media (max-width: 340px) {
    .main-bar {
        grid-template-columns: 30px minmax(0, 1fr) 84px;
    }

    .brand-name {
        max-width: 48vw;
    }
}
