:root {
    --arredonda-label-desconto: 4px;
    --fundonacional: #e8f5e9;
    --fontenacional: #2e7d32;
    --bordanacional: #4caf50;
    --fonte-vendidos: #1976d2;
    --back-vendidos: #e3f2fd;
    --back-exclusivo2: #fff3e0;
    --fonte-exclusivo2: #e65100;
    --product-truck-background: #4A90E2;
    --product-truck-color: #ffffff;
    --bordaboxfretelocali: 6px;
    --product-free-shipping-color: #27ae60;
    --product-free-shipping-color2: #333;
    --product-localization-color: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.header-icons svg {
    color: #666;
    cursor: pointer;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.header-icons {
    display: flex;
    gap: 1rem;
}

.icon-btn {
    cursor: pointer;
    padding: 0.5rem;
}

/* Breadcrumb */
.breadcrumb {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 2rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Product Section */
.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Product Images */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    position: relative;
}

/* Product Variations Grid */
.variations-wrapper {
    margin-top: 1rem;
}

.variation-model-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
}

.variation-model-title span {
    font-weight: 400;
    color: #666;
}

.product-variations {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.6rem;
    max-width: 350px;
}

.variation-item {
    cursor: pointer;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    aspect-ratio: 1/1;
}

.variation-item:hover {
    border-color: #4A90E2;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.variation-item.active {
    border-color: #4A90E2;
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3), 0 4px 12px rgba(74, 144, 226, 0.4);
    transform: scale(1.05);
}

.variation-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
}

.main-image img,
.main-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s;
}

.image-arrow:hover {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image-arrow-left {
    left: 10px;
}

.image-arrow-right {
    right: 10px;
}

.video-control-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s;
    z-index: 10;
}

.video-control-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-control-btn .play-icon,
.video-control-btn .pause-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.video-control-btn .play-icon svg,
.video-control-btn .pause-icon svg {
    width: 24px;
    height: 24px;
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
}

.product-info > * {
    margin-bottom: 0.8rem;
}

.product-info > *:last-child {
    margin-bottom: 0;
}

.labels-titulo {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    align-items: center;
}

.labels-titulo span {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    white-space: nowrap;
}

.labels-titulo svg {
    flex-shrink: 0;
}

.quantitysell {
    display: inline-block;
    font-size: 0.75rem;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.pricing {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.price-current {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    order: 1;
}

.price-original {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    order: 2;
}

.discount-badge {
    background-color: #e74c3c;
    color: white;
    padding: 0.3rem 0.8rem;
    order: 3;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 7px;
}

.price-pix {
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: 500;
    margin-top: -8px;
    order: 4;
    flex-basis: 100%;
    margin-left: 0;
}

.payment-options {
    color: #4A90E2;
    text-decoration: none;
    font-size: 0.9rem;
}

.payment-options:hover {
    text-decoration: underline;
}

.special-offer {
    background-color: #27ae60;
    color: white;
    padding: 0.8rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

/* Product PIX Component */
.product-pix {
    display: flex;
    align-items: center;
    background-color: #27ae60;
    color: white;
    padding: 0.8rem;
    border-radius: 6px;
    gap: 0.5rem;
}

.product-pix svg {
    --pix-envio-simb: #ffffff;
    --pix-envio-tsimb: 24px;
    flex-shrink: 0;
}

.pix-container {
    flex: 1;
}

.pix-value {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.pix-value strong {
    --pix-envio-textdesc: #ffffff;
    font-size: 1rem;
}

.pix-value span {
    --pix-envio-textnopix: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.pix-envio {
    width: 100%;
    font-size: 0.85rem;
    margin-top: 0.2rem;
    opacity: 0.95;
}


/* Seller Info */
.mp_platinum {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.ui-seller-info {
    background-color: #fff;
    border-radius: 6px;
    padding: 0;
}

.ui-pdp-seller__reputation-info {
    display: flex;
    justify-content: center;
}

.ui-pdp-seller__list-description {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 6px;
}

.ui-pdp-seller__item-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 1.5rem 1rem;
    position: relative;
}

.ui-pdp-seller__item-separator::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background-color: #e0e0e0;
}

.ui-pdp-seller__item-description:last-child::after {
    display: none;
}

.ui-pdp-seller__sales-description {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    display: block;
}

.ui-pdp-seller__icon-description {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
    position: relative;
}

.ui-pdp-seller__icon-description svg {
    width: 32px;
    height: 32px;
}

.ui-pdp-seller__text-description {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.add-to-cart-btn {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.add-to-cart-btn:hover {
    background-color: #229954;
}

/* Secure Purchase Image */
.secure-purchase {
    margin-top: 1rem;
    text-align: center;
}

.secure-purchase-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Shipping Info */
.shipping-info {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    margin-top: 1rem;
}

.shipping-text {
    font-size: 0.95rem;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.shipping-text strong {
    color: #27ae60;
    font-weight: 600;
}

.delivery-info {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0;
}

.delivery-info strong {
    color: #333;
    font-weight: 600;
}

/* Purchase Notifications */
.purchase-notifications {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.purchase-notification {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-out;
}

.purchase-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.purchase-notification .bg-white {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 20px 12px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 280px;
}

.purchase-notification .flex {
    display: flex;
}

.purchase-notification .items-center {
    align-items: center;
}

.purchase-notification .gap-3 {
    gap: 12px;
}

.purchase-notification .w-10 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #27ae60;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.purchase-notification .rounded-full {
    border-radius: 50%;
}

.purchase-notification .flex-shrink-0 {
    flex-shrink: 0;
}

.purchase-notification .w-5 {
    width: 20px;
    height: 20px;
    color: white;
}

.purchase-notification .text-white {
    color: white;
}

.purchase-notification .min-w-0 {
    min-width: 0;
    flex: 1;
}

.purchase-notification .text-xs {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

.purchase-notification .text-muted-foreground {
    color: #666;
}

.purchase-notification .text-sm {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.purchase-notification .font-medium {
    font-weight: 500;
}

.purchase-notification .text-foreground {
    color: #333;
}

.purchase-notification .truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.trust-item svg {
    color: #4A90E2;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.trust-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #333;
}

.trust-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Payment Methods */
.payment-methods {
    margin-top: 1rem;
}

.payment-methods h4 {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #333;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-icon {
    padding: 0.5rem 1rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
}

/* Payment List 2 */
.payment-list2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-list2 .cartoes {
    width: 60px;
    height: 35px;
    border-radius: 4px;
    background-color: #f5f5f5;
    padding: 0.2rem;
}

@media (min-width: 640px) {
    #correcaoboleto {
        width: calc(45px - 0.4%) !important;
    }
}

@media (max-width: 640px) {
    #correcaoboleto {
        width: calc(45px - 0.4%) !important;
    }
}

/* Statistics */
.statistics {
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #666;
}

.statistics p {
    margin: 0.3rem 0;
}

/* Collapsible Sections */
.collapsible-section {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.collapsible-btn {
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.collapsible-btn:hover {
    background-color: #f9f9f9;
}

.arrow {
    transition: transform 0.3s;
}

.collapsible-btn.active .arrow {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding: 0 1rem;
}

.collapsible-content.active {
    max-height: 500px;
    padding: 1rem;
}

/* Description Section */
.description-section {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

.description-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.description-overview {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.description-section h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    color: #333;
}

.description-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.description-section li {
    margin: 0.5rem 0;
    color: #555;
    line-height: 1.7;
}

.description-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}


/* Reviews Section */
.reviews-section {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

/* Trust Features Section */
.trust-features-section {
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    width: 100%;
    max-width: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.trust-features-section .section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 2rem 2rem;
    width: 100%;
}

.section.section--page-width {
    padding-right: 0 !important;
    padding-bottom: 0 !important;
}

.trust-features-section .section-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.trust-features-section .group-block {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
}

.trust-features-section .icon-block {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.trust-features-section .icon-block__media {
    width: 38px;
    height: 38px;
    color: #4A90E2;
}

.trust-features-section .text-block {
    margin: 0;
}

.trust-features-section .text-block h3,
.trust-features-section .text-block p {
    margin: 0;
    color: #333;
}

.trust-features-section .text-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trust-features-section .text-block p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.trust-features-section rte-formatter {
    display: block;
}

.reviews-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
}

/* Reviews Summary */
.reviews-summary {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.rating-large {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.stars-large {
    font-size: 1.5rem;
    color: #FFD700;
    margin: 0.5rem 0;
}

.overall-rating p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.rating-breakdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-bar span:first-child {
    min-width: 80px;
    font-size: 0.9rem;
    color: #333;
}

.rating-bar span:last-child {
    min-width: 40px;
    font-size: 0.9rem;
    color: #666;
    text-align: right;
}

.rating-bar .bar {
    flex: 1;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar .fill {
    height: 100%;
    background-color: #FFD700;
    border-radius: 4px;
}

/* Review Items */
.review-item {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}

.review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.review-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.review-rating-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.review-stars {
    color: #FFD700;
    font-size: 1rem;
}

.verified-badge {
    font-size: 0.75rem;
    color: #27ae60;
    background-color: #e8f5e9;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.review-date {
    color: #565959;
    font-size: 13px;
    margin-top: 4px;
    margin-bottom: 8px;
}

.review-text {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.review-images {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.review-images img {
    width: 64px;
    height: 64px;
    border-radius: 4px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s;
}

.review-images img:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    padding: 3rem 2rem 1rem;
    border-top: 1px solid #e0e0e0;
}

.section-wrapper {
    width: 100%;
}

.section {
    max-width: 1200px;
    margin: 0 auto;
}

.menu {
    margin-bottom: 1rem;
}

.menu__heading {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem 0;
}

.menu__heading__accordion {
    display: none;
}

.menu__item {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.menu__item a {
    color: #666;
    text-decoration: none;
}

.menu__item a:hover {
    text-decoration: underline;
}

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-content {
    padding: 0.5rem 0;
}

.payment-box {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0px;
    max-width: 325px;
}

.payment-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 38px;
    border-radius: 6px;
    margin-top: 0.3rem;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid #ddd;
}

.payment-icon svg {
    width: 100%;
    height: 100%;
}

.margin--1a {
    margin-right: 5px !important;
}

.selos-wrap {
    display: flex;
    float: left;
    gap: 1rem;
    flex-wrap: wrap;
}

.selo {
    width: 100%;
    height: 55px;
    margin-top: 0.7rem;
    margin-right: 20px;
}

.selo img {
    display: block;
    margin: 0 auto;
    height: 35px;
    width: auto;
}

.footer-utilities {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-utilities__group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-utilities__text {
    color: #666;
    font-size: 0.75rem;
    text-decoration: none;
}

.footer-utilities__text:hover {
    text-decoration: underline;
}

.policy_list {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons__wrapper {
    display: flex;
    gap: 0.5rem;
}

.social-icons__icon-wrapper {
    display: flex;
}

.social-icons__icon {
    width: 20px;
    height: 20px;
    color: #666;
}

.social-icons__icon-label {
    display: none;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-item svg {
    color: #4A90E2;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #333;
}

.footer-item p {
    font-size: 0.9rem;
    color: #666;
}

.footer-center {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section p {
    color: #666;
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.payment-icons-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-icons-footer span {
    padding: 0.4rem 0.8rem;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #666;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.security-badges span {
    padding: 0.4rem 0.8rem;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #666;
    width: fit-content;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-media a {
    font-size: 1.5rem;
    text-decoration: none;
}

.copyright {
    text-align: right;
}

.copyright p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.copyright-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.copyright-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
}

.copyright-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .product-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .header-container {
        padding: 0 1rem;
    }

    .main-content {
        padding: 1rem;
    }

    .product-title {
        font-size: 1.4rem;
    }

    .labels-titulo {
        font-size: 0.7rem;
    }

    .labels-titulo span {
        font-size: 0.7rem;
        padding: 3px 10px !important;
    }

    .labels-titulo svg {
        width: 14px !important;
        height: 14px !important;
    }

    .price-current {
        font-size: 1.6rem;
    }

    .price-pix {
        font-size: 0.85rem;
    }

    .price-original {
        font-size: 1rem;
        margin-top: 7px;
    }

    .product-images {
        gap: 0.5rem;
    }

    .image-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .image-arrow-left {
        left: 5px;
    }

    .image-arrow-right {
        right: 5px;
    }

    .video-control-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .variation-model-title {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .product-variations {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }

    .variation-item {
        padding: 0;
    }

    .main-image {
        aspect-ratio: 3/4;
    }

    .shipping-info {
        padding: 1rem;
    }

    .purchase-notifications {
        bottom: 10px;
        right: 10px;
    }

    .purchase-notification .bg-white {
        max-width: 250px;
        padding: 10px 16px 10px 10px;
    }

    .trust-badges {
        gap: 0.8rem;
    }

    .trust-item {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
    }

    .trust-item svg {
        margin: 0 auto;
    }

    .payment-list2 {
        justify-content: center;
    }

    .payment-list2 .cartoes {
        width: 55px;
        height: 32px;
    }


    .review-container {
        padding: 1.5rem;
    }

    .review-navigation {
        padding: 0 0.5rem;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-center {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-utilities {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-utilities__group {
        flex-direction: column;
        width: 100%;
    }

    .policy_list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-icons__wrapper {
        justify-content: center;
    }

    .payment-box {
        max-width: 100%;
        justify-content: center;
    }

    .payment-icon {
        width: 50px;
        height: 35px;
    }

    .selos-wrap {
        justify-content: center;
        flex-wrap: wrap;
    }

    .selo {
        margin-right: 10px;
        margin-left: 10px;
    }

    .breadcrumb {
        padding: 0 1rem;
        font-size: 0.8rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .description-section {
        margin: 2rem 0;
        padding: 1rem 0;
    }

    .description-section h2 {
        font-size: 1.5rem;
    }

    .description-section h3 {
        font-size: 1.1rem;
    }

    .description-overview {
        font-size: 1rem;
    }

    .reviews-section h2 {
        font-size: 1.5rem;
    }

    .reviews-summary {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .overall-rating {
        min-width: auto;
    }

    .rating-large {
        font-size: 2.5rem;
    }

    .rating-bar span:first-child {
        min-width: 70px;
        font-size: 0.85rem;
    }

    .rating-bar span:last-child {
        min-width: 35px;
        font-size: 0.85rem;
    }

    .review-item {
        padding: 1rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .review-rating-badge {
        align-items: flex-start;
        flex-direction: row;
        gap: 0.5rem;
    }

    .trust-features-section {
        margin: 0;
        padding: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        width: 100vw;
    }

    .trust-features-section .section {
        padding: 1.5rem 1rem;
    }

    .trust-features-section .section-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-features-section .group-block {
        max-width: 100%;
        width: 100%;
    }

    .trust-features-section .icon-block__media {
        width: 32px;
        height: 32px;
    }

/* Offer Box */
.offer-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 6px;
    margin: 1rem 0;
}

.offer-box__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-box__media {
    width: 38px;
    height: 38px;
    color: #4A90E2;
}

.offer-box__body {
    flex: 1;
}

.offer-box__title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.3rem 0;
}

.offer-box__text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.offer-box__text p {
    margin: 0;
}

    .add-to-cart-btn {
        padding: 1rem 1.8rem;
        font-size: 1.1rem;
    }


    .product-pix {
        flex-wrap: wrap;
        padding: 0.7rem;
    }

    .product-pix svg {
        --pix-envio-tsimb: 20px;
    }

    .pix-value {
        font-size: 0.9rem;
    }

    .pix-envio {
        font-size: 0.8rem;
    }

    .ui-pdp-seller__list-description {
        flex-direction: row;
        gap: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .ui-pdp-seller__list-description::-webkit-scrollbar {
        display: none;
    }

    .ui-pdp-seller__item-description {
        padding: 1rem 0.5rem;
        min-width: 110px;
        flex-shrink: 0;
    }

    .ui-pdp-seller__item-separator::after {
        display: block;
        height: 50%;
    }

    .ui-pdp-seller__sales-description {
        font-size: 1.8rem;
    }

    .ui-pdp-seller__icon-description svg {
        width: 28px;
        height: 28px;
    }

    .ui-pdp-seller__text-description {
        font-size: 0.75rem;
    }

    .ui-pdp-seller__sales-description {
        font-size: 1.5rem;
    }

    .ui-pdp-seller__icon-description svg {
        width: 28px;
        height: 28px;
    }

    .ui-pdp-seller__text-description {
        font-size: 0.8rem;
    }


    .offer-box {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .offer-box__media {
        width: 32px;
        height: 32px;
    }

    .offer-box__title {
        font-size: 0.9rem;
    }

    .offer-box__text {
        font-size: 0.85rem;
    }

    .menu__heading {
        font-size: 0.9rem;
    }

    .menu__item {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 1.2rem;
    }

    .price-current {
        font-size: 1.4rem;
    }

    .price-pix {
        font-size: 0.8rem;
    }

    .labels-titulo {
        font-size: 0.65rem;
    }

    .labels-titulo span {
        font-size: 0.65rem;
        padding: 2px 3px !important;
    }

    .main-content {
        padding: 0.5rem;
    }

    .header-container {
        padding: 0 0.5rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .search-icon svg,
    .header-icons svg {
        width: 20px;
        height: 20px;
    }
}
