/* =====================================================================
   LAYOUT PADRÃO — Ritzy Repeat (loja EUA)
   ---------------------------------------------------------------------
   Réplica da loja antiga em WordPress (tema Woostify + Elementor).
   Tokens tirados do site original: acento #c54513 (barra de aviso e menu),
   botões pretos, container de 1140px, corpo em Fira Sans 14/#555 e títulos
   de seção em Open Sans 800/36px.

   Tudo aqui é escopado em `.layout-padrao` — o style.css global continua
   valendo para os Layouts 2/3/4/5 sem nenhuma interferência.
   ===================================================================== */

.layout-padrao {
    --rr-accent: #c54513;
    --rr-accent-dark: #a03910;
    --rr-ink: #2b2b2b;
    --rr-text: #555;
    --rr-line: #e6e6e6;
    --rr-soft: #f7f5f3;
    --rr-black: #000;
    --rr-wrap: 1140px;

    background: #fff;
    color: var(--rr-text);
    font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

.layout-padrao h1, .layout-padrao h2, .layout-padrao h3,
.layout-padrao h4, .layout-padrao h5, .layout-padrao h6 {
    font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--rr-ink);
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 14px;
}
.layout-padrao a { color: var(--rr-ink); text-decoration: none; }
.layout-padrao a:hover { color: var(--rr-accent); }
.layout-padrao img { max-width: 100%; height: auto; }

.rr-wrap { max-width: var(--rr-wrap); margin: 0 auto; padding: 0 15px; }
.rr-section { padding: 50px 0; }
.rr-section-sm { padding: 30px 0; }

/* Título de seção (Open Sans 800, como no original) */
.layout-padrao .rr-h2 {
    font-family: "Open Sans", "Fira Sans", sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #000;
    letter-spacing: .8px;
    text-align: center;
    margin: 0 0 34px;
}
.layout-padrao .rr-h2-alt {
    font-family: "Fira Sans", sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: var(--rr-ink);
    letter-spacing: normal;
}
@media (max-width: 767px) {
    .layout-padrao .rr-h2, .layout-padrao .rr-h2-alt { font-size: 26px; }
}

/* Botões ------------------------------------------------------------ */
.rr-btn {
    display: inline-block;
    background: var(--rr-black);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 40px;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
    text-align: center;
    line-height: 1.6;
}
.rr-btn:hover { background: var(--rr-accent); color: #fff; }
.rr-btn-accent { background: var(--rr-accent); border-radius: 3px; padding: 12px 24px; font-size: 15px; font-weight: 600; }
.rr-btn-accent:hover { background: var(--rr-accent-dark); color: #fff; }
.rr-btn-outline {
    display: inline-block; border: 2px solid #fff; color: #fff; background: transparent;
    padding: 12px 34px; border-radius: 3px; font-weight: 600; font-size: 15px;
}
.rr-btn-outline:hover { background: #fff; color: var(--rr-ink); }
.rr-btn-ghost {
    display: inline-block; border: 1px solid var(--rr-ink); color: var(--rr-ink);
    background: transparent; padding: 11px 30px; font-weight: 600; border-radius: 3px;
}
.rr-btn-ghost:hover { background: var(--rr-ink); color: #fff; }
.rr-btn[disabled], .rr-btn.is-disabled { background: #bdbdbd; cursor: not-allowed; }

/* =====================================================================
   Barra de aviso + cabeçalho
   ===================================================================== */
.rr-topbar {
    background: var(--rr-accent);
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 10px 15px;
}
.rr-topbar a { color: #fff; text-decoration: underline; }

.rr-header { background: #fff; border-bottom: 1px solid var(--rr-line); position: relative; z-index: 40; }
.rr-header-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    max-width: var(--rr-wrap); margin: 0 auto; padding: 0 15px; min-height: 76px;
}
.rr-logo { display: flex; align-items: center; flex-shrink: 0; }
.rr-logo img { max-height: 47px; width: auto; display: block; }
.rr-logo-text {
    font-family: "Open Sans", sans-serif; font-weight: 800; font-size: 22px;
    letter-spacing: 2px; text-transform: uppercase; color: var(--rr-ink);
}

.rr-nav { display: flex; align-items: center; gap: 26px; }
.rr-nav a {
    font-size: 16px; color: var(--rr-ink); padding: 20px 0; display: inline-block;
    position: relative; white-space: nowrap;
}
.rr-nav a:hover, .rr-nav a.is-active { color: var(--rr-accent); }

.rr-tools { display: flex; align-items: center; gap: 18px; }
.rr-tool { display: inline-flex; align-items: center; gap: 6px; position: relative; color: var(--rr-ink); }
.rr-tool svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.rr-tool:hover { color: var(--rr-accent); }
.rr-cart-total { font-size: 14px; font-weight: 600; }
.rr-badge {
    position: absolute; top: -7px; right: -9px; min-width: 17px; height: 17px; padding: 0 4px;
    background: var(--rr-accent); color: #fff; border-radius: 999px; font-size: 11px;
    font-weight: 700; display: flex; align-items: center; justify-content: center; line-height: 1;
}

.rr-burger { display: none; background: none; border: 0; padding: 6px; cursor: pointer; color: var(--rr-ink); }
.rr-burger svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Busca em gaveta */
.rr-search-drawer { display: none; border-top: 1px solid var(--rr-line); background: #fff; padding: 18px 0; }
.rr-search-drawer.is-open { display: block; }
.rr-search-form { display: flex; max-width: 640px; margin: 0 auto; gap: 0; }
.rr-search-form input {
    flex: 1; border: 1px solid var(--rr-line); border-right: 0; padding: 12px 16px;
    font: inherit; outline: none;
}
.rr-search-form input:focus { border-color: var(--rr-accent); }
.rr-search-form button { background: var(--rr-black); color: #fff; border: 0; padding: 0 26px; cursor: pointer; font-weight: 700; }

@media (max-width: 991px) {
    .rr-burger { display: inline-flex; }
    .rr-nav {
        position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column;
        align-items: stretch; gap: 0; border-bottom: 1px solid var(--rr-line); display: none;
        box-shadow: 0 18px 30px rgba(0, 0, 0, .08);
    }
    .rr-nav.is-open { display: flex; }
    .rr-nav a { padding: 14px 20px; border-bottom: 1px solid var(--rr-line); }
    .rr-header-inner { min-height: 64px; }
    .rr-cart-total { display: none; }
}

/* =====================================================================
   Hero
   ===================================================================== */
.rr-hero { position: relative; overflow: hidden; background: #efe9e4; }
.rr-hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    animation: rr-kenburns 20s ease-out infinite alternate;
}
@keyframes rr-kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .rr-hero-bg { animation: none; } }
.rr-hero-inner {
    position: relative; max-width: var(--rr-wrap); margin: 0 auto; padding: 0 15px;
    min-height: 560px; display: flex; align-items: center; justify-content: center;
    text-align: center; flex-direction: column;
}
.rr-hero-content { background: rgba(255, 255, 255, .0); padding: 30px 0; }
.rr-hero h1 { color: #fff; font-size: 46px; font-weight: 700; margin: 0 0 12px; text-shadow: 0 2px 18px rgba(0, 0, 0, .35); }
.rr-hero p { color: #fff; font-size: 17px; margin: 0 0 26px; text-shadow: 0 2px 14px rgba(0, 0, 0, .35); }
@media (max-width: 767px) {
    .rr-hero-inner { min-height: 380px; }
    .rr-hero h1 { font-size: 30px; }
}

/* Boas-vindas */
.rr-welcome { text-align: center; padding: 46px 0 10px; }
.rr-welcome p { max-width: 760px; margin: 0 auto 22px; font-size: 16px; color: var(--rr-text); }
.rr-welcome strong { color: var(--rr-ink); }

/* =====================================================================
   Grade e card de produto
   ===================================================================== */
.rr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.rr-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 991px) { .rr-grid, .rr-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 479px) { .rr-grid, .rr-grid-3 { grid-template-columns: 1fr; } }

.rr-card { display: flex; flex-direction: column; text-align: center; background: #fff; }
.rr-card-media {
    display: block; position: relative; overflow: hidden; background: #f6f4f2;
    aspect-ratio: 5 / 6;
}
.rr-card-media img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: opacity .45s ease, transform .6s ease;
}
.rr-card-img-hover { opacity: 0; }
.rr-card-media:hover .rr-card-img-hover { opacity: 1; }
.rr-card-media:hover .rr-card-img { opacity: 0; }
.rr-card-media:hover img { transform: scale(1.04); }
.rr-card-badge {
    position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--rr-accent);
    color: #fff; font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 2px;
}
.rr-card-body { padding: 16px 6px 0; display: flex; flex-direction: column; align-items: center; gap: 7px; }
.rr-card-cat { font-size: 13px; color: #8a8a8a; }
.layout-padrao .rr-card-title { font-size: 19px; font-weight: 700; line-height: 1.4; margin: 0; }
.rr-card-title a { color: #000; }
.rr-card-title a:hover { color: var(--rr-accent); }
.rr-card-price { font-size: 16px; color: var(--rr-ink); }
.rr-card-price del { color: #9a9a9a; margin-right: 8px; font-size: 14px; }
.rr-card-price ins { text-decoration: none; font-weight: 600; }
.rr-card-btn {
    display: inline-block; background: var(--rr-black); color: #fff; font-size: 14px; font-weight: 700;
    padding: 10px 40px; border: 0; cursor: pointer; margin-top: 4px; font-family: inherit;
    transition: background .2s ease;
}
.rr-card-btn:hover { background: var(--rr-accent); color: #fff; }
.rr-card-out { font-size: 13px; color: #b00020; font-weight: 600; margin-top: 6px; }

/* =====================================================================
   Bloco "Featured Products" (galeria + texto)
   ===================================================================== */
.rr-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.rr-feature.is-reversed .rr-feature-media { order: 2; }
@media (max-width: 991px) {
    .rr-feature, .rr-feature.is-reversed { grid-template-columns: 1fr; gap: 26px; }
    .rr-feature.is-reversed .rr-feature-media { order: 0; }
}
.rr-feature-media { position: relative; }
.rr-carousel { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.rr-carousel::-webkit-scrollbar { display: none; }
.rr-carousel a { flex: 0 0 calc(33.333% - 10px); scroll-snap-align: start; }
.rr-carousel img { width: 100%; aspect-ratio: 5/6; object-fit: cover; display: block; }
@media (max-width: 479px) { .rr-carousel a { flex: 0 0 calc(50% - 7px); } }
.rr-carousel-nav { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.rr-carousel-nav button {
    width: 36px; height: 36px; border: 1px solid var(--rr-line); background: #fff; cursor: pointer;
    border-radius: 50%; color: var(--rr-ink); font-size: 16px; line-height: 1;
}
.rr-carousel-nav button:hover { background: var(--rr-ink); color: #fff; border-color: var(--rr-ink); }
.rr-feature-text h2 { font-size: 30px; font-weight: 600; margin-bottom: 16px; }
.rr-feature-text p { margin: 0 0 14px; font-size: 15px; }
.rr-feature-text p.rr-lead { font-weight: 700; color: var(--rr-ink); font-size: 17px; }
.rr-feature-price { font-size: 22px; font-weight: 700; color: var(--rr-ink); margin: 0 0 18px; }

/* Título animado ("Best selling products") */
.layout-padrao .rr-animated-title { text-align: center; font-size: 43px; font-weight: 600; color: var(--rr-ink); margin: 0; }
.rr-animated-title .rr-underline {
    position: relative; display: inline-block;
    background-image: linear-gradient(transparent 62%, rgba(197, 69, 19, .28) 62%);
    background-repeat: no-repeat; background-size: 0 100%;
    animation: rr-underline 2.4s ease forwards;
}
@keyframes rr-underline { to { background-size: 100% 100%; } }
@media (max-width: 767px) { .layout-padrao .rr-animated-title { font-size: 27px; } }

/* =====================================================================
   Nossa história
   ===================================================================== */
.rr-story { background: var(--rr-soft); }
.rr-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
@media (max-width: 991px) { .rr-story-inner { grid-template-columns: 1fr; gap: 26px; } }
.rr-story img { width: 100%; display: block; }
.rr-story h2 { font-size: 32px; font-weight: 600; }
.rr-story p { margin: 0 0 14px; font-size: 15px; }

/* =====================================================================
   Localização, horário e mapa
   ===================================================================== */
.rr-location { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: start; }
@media (max-width: 991px) { .rr-location { grid-template-columns: 1fr; gap: 26px; } }
.rr-location h2 { font-size: 24px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.rr-location p { margin: 0 0 10px; }
.rr-hours { list-style: none; margin: 12px 0 22px; padding: 0; max-width: 360px; }
.rr-hours li {
    display: flex; justify-content: space-between; gap: 16px;
    padding: 7px 0; border-bottom: 1px dashed var(--rr-line);
}
.rr-hours li span:first-child { font-weight: 600; color: var(--rr-ink); }
.rr-map { position: relative; width: 100%; aspect-ratio: 4/3; background: #eee; }
.rr-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* =====================================================================
   Avaliações da loja (Google)
   ===================================================================== */
.rr-reviews-head { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 26px; }
.rr-reviews-head strong { color: var(--rr-ink); font-size: 16px; }
.rr-stars { display: inline-flex; gap: 2px; vertical-align: middle; }
.rr-stars svg { width: 17px; height: 17px; }
.rr-stars svg.is-on { fill: #fbbc04; }
.rr-stars svg.is-off { fill: #dadce0; }
.rr-reviews {
    display: grid; grid-auto-flow: column; grid-auto-columns: minmax(275px, 1fr);
    gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px;
    scrollbar-width: thin;
}
.rr-review {
    scroll-snap-align: start; background: #fff; border: 1px solid var(--rr-line);
    border-radius: 6px; padding: 18px; display: flex; flex-direction: column; gap: 10px;
}
.rr-review-top { display: flex; align-items: center; gap: 11px; }
.rr-review-avatar {
    width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
    background: var(--rr-accent); color: #fff; display: flex; align-items: center;
    justify-content: center; font-weight: 700; font-size: 17px;
}
.rr-review-name { font-weight: 600; color: var(--rr-ink); font-size: 15px; }
.rr-review-date { font-size: 12px; color: #8a8a8a; }
.rr-review-text { font-size: 14px; color: var(--rr-text); margin: 0; }
.rr-review-src { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: #8a8a8a; margin-top: auto; }
.rr-review-src img, .rr-review-src svg { width: 15px; height: 15px; }

/* =====================================================================
   Formulário de contato
   ===================================================================== */
.rr-form { display: grid; gap: 14px; max-width: 680px; }
.rr-form label { font-weight: 600; color: var(--rr-ink); display: block; margin-bottom: 5px; font-size: 14px; }
.rr-form input, .rr-form textarea, .rr-form select {
    width: 100%; border: 1px solid var(--rr-line); padding: 11px 14px; font: inherit;
    color: var(--rr-ink); background: #fff; border-radius: 2px;
}
.rr-form input:focus, .rr-form textarea:focus { outline: none; border-color: var(--rr-accent); }
.rr-form textarea { min-height: 140px; resize: vertical; }
.rr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .rr-form-row { grid-template-columns: 1fr; } }

.rr-alert { padding: 13px 16px; border-radius: 3px; margin-bottom: 18px; font-size: 14px; }
.rr-alert-ok { background: #e7f6ec; color: #1b5e20; border: 1px solid #b7e0c3; }
.rr-alert-err { background: #fdecea; color: #922; border: 1px solid #f5c2c0; }

/* =====================================================================
   Rodapé
   ===================================================================== */
.rr-footer { background: #000; color: #d6d6d6; padding: 56px 0 0; margin-top: 60px; }
.rr-footer h3 { color: #fff; font-size: 20px; font-weight: 600; margin: 0 0 16px; }
.layout-padrao .rr-footer-title { color: #fff; font-size: 27px; font-weight: 600; margin: 0 0 18px; }
.rr-footer p { margin: 0 0 9px; color: #cfcfcf; font-size: 14px; }
.rr-footer a { color: #fff; font-weight: 700; }
.rr-footer a:hover { color: var(--rr-accent); }
.rr-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
@media (max-width: 991px) { .rr-footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.rr-footer-links { list-style: none; margin: 0; padding: 0; }
.rr-footer-links li { margin-bottom: 9px; }
.rr-footer-links a { font-weight: 400; color: #cfcfcf; }
.rr-footer-links a:hover { color: #fff; }
.rr-footer-hours { list-style: none; margin: 10px 0 18px; padding: 0; max-width: 320px; }
.rr-footer-hours li { display: flex; justify-content: space-between; gap: 14px; padding: 4px 0; color: #cfcfcf; }
.rr-review-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.rr-review-cta a {
    display: inline-flex; align-items: center; gap: 8px; border: 1px solid #3a3a3a;
    padding: 9px 15px; border-radius: 3px; font-weight: 600; font-size: 13px; color: #fff;
}
.rr-review-cta a:hover { border-color: var(--rr-accent); background: rgba(197, 69, 19, .15); color: #fff; }
.rr-footer-pay { margin-top: 26px; }
.rr-footer-pay img { max-height: 30px; width: auto; }
.rr-footer-bottom {
    border-top: 1px solid #232323; margin-top: 44px; padding: 20px 0; text-align: center;
    color: #9a9a9a; font-size: 13px;
}
.rr-footer-bottom a { color: #cfcfcf; font-weight: 400; }

/* =====================================================================
   Páginas internas (vitrine, produto, institucionais, carrinho)
   ===================================================================== */
.rr-page-head { background: var(--rr-soft); padding: 34px 0; margin-bottom: 44px; text-align: center; }
.layout-padrao .rr-page-head h1 { font-size: 34px; font-weight: 600; margin: 0 0 8px; }
.rr-crumbs { font-size: 13px; color: #8a8a8a; }
.rr-crumbs a { color: #8a8a8a; }
.rr-crumbs a:hover { color: var(--rr-accent); }
.rr-crumbs span + span::before { content: "/"; margin: 0 8px; color: #c7c7c7; }

.rr-prose { max-width: 860px; margin: 0 auto; }
.rr-prose h2 { font-size: 24px; font-weight: 600; margin: 34px 0 12px; }
.rr-prose h3 { font-size: 18px; font-weight: 700; margin: 24px 0 8px; }
.rr-prose p { margin: 0 0 14px; font-size: 15px; }
.rr-prose ul, .rr-prose ol { margin: 0 0 16px; padding-left: 22px; }
.rr-prose li { margin-bottom: 7px; font-size: 15px; }
.rr-prose strong { color: var(--rr-ink); }
.rr-prose table { width: 100%; border-collapse: collapse; margin: 0 0 18px; }
.rr-prose th, .rr-prose td { border: 1px solid var(--rr-line); padding: 10px 12px; text-align: left; font-size: 14px; }
.rr-prose th { background: var(--rr-soft); color: var(--rr-ink); }

.rr-faq { border-top: 1px solid var(--rr-line); }
.rr-faq details { border-bottom: 1px solid var(--rr-line); padding: 16px 0; }
.rr-faq summary { cursor: pointer; font-weight: 600; color: var(--rr-ink); font-size: 16px; list-style: none; position: relative; padding-right: 28px; }
.rr-faq summary::-webkit-details-marker { display: none; }
.rr-faq summary::after { content: "+"; position: absolute; right: 4px; top: -2px; font-size: 22px; color: var(--rr-accent); font-weight: 400; }
.rr-faq details[open] summary::after { content: "–"; }
.rr-faq p, .rr-faq ul { margin: 12px 0 0; font-size: 15px; }

/* Vitrine */
.rr-shop-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.rr-shop-bar p { margin: 0; color: #8a8a8a; }
.rr-shop-bar select { border: 1px solid var(--rr-line); padding: 9px 12px; font: inherit; background: #fff; }

/* Produto */
.rr-product { display: grid; grid-template-columns: 1.05fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 991px) { .rr-product { grid-template-columns: 1fr; gap: 28px; } }
.rr-gallery { display: grid; grid-template-columns: 88px 1fr; gap: 14px; align-items: start; }
@media (max-width: 560px) { .rr-gallery { grid-template-columns: 1fr; } }
.rr-gallery-thumbs { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 560px) { .rr-gallery-thumbs { flex-direction: row; overflow-x: auto; } }
.rr-gallery-thumbs button {
    border: 1px solid var(--rr-line); background: none; padding: 0; cursor: pointer; overflow: hidden;
    flex: 0 0 auto; width: 88px;
}
.rr-gallery-thumbs button.is-active { border-color: var(--rr-ink); }
.rr-gallery-thumbs img { display: block; width: 100%; aspect-ratio: 5/6; object-fit: cover; }
.rr-gallery-main { background: #f6f4f2; }
.rr-gallery-main img { width: 100%; display: block; aspect-ratio: 5/6; object-fit: cover; }

.layout-padrao .rr-product-title { font-size: 28px; font-weight: 700; color: #000; margin: 0 0 14px; line-height: 1.35; }
.rr-product-price { font-size: 26px; color: var(--rr-ink); margin: 0 0 6px; font-weight: 600; }
.rr-product-price del { color: #9a9a9a; font-size: 18px; font-weight: 400; margin-right: 10px; }
.rr-product-note { font-size: 13px; color: #8a8a8a; margin: 0 0 18px; }
.rr-product-stock { font-size: 14px; margin: 0 0 18px; }
.rr-in-stock { color: #1b7f3b; font-weight: 600; }
.rr-out-stock { color: #b00020; font-weight: 600; }
.rr-buy { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; margin-bottom: 18px; }
.rr-qty { display: flex; align-items: center; border: 1px solid var(--rr-line); }
.rr-qty button { width: 40px; background: none; border: 0; font-size: 18px; cursor: pointer; color: var(--rr-ink); }
.rr-qty input { width: 54px; text-align: center; border: 0; border-left: 1px solid var(--rr-line); border-right: 1px solid var(--rr-line); padding: 12px 0; font: inherit; }
.rr-buy .rr-btn { flex: 1; min-width: 190px; }
.rr-meta { border-top: 1px solid var(--rr-line); padding-top: 16px; font-size: 14px; }
.rr-meta div { margin-bottom: 7px; }
.rr-meta span { color: #8a8a8a; }
.rr-trust { margin-top: 20px; }
.rr-trust img { max-width: 100%; }

.rr-tabs { margin-top: 56px; }
.rr-tablist { display: flex; gap: 0; border-bottom: 1px solid var(--rr-line); flex-wrap: wrap; }
.rr-tablist button {
    background: none; border: 0; border-bottom: 2px solid transparent; padding: 13px 22px;
    font: inherit; font-weight: 600; color: #8a8a8a; cursor: pointer;
}
.rr-tablist button.is-active { color: var(--rr-ink); border-bottom-color: var(--rr-accent); }
.rr-tabpanel { padding: 26px 0; display: none; }
.rr-tabpanel.is-active { display: block; }

.rr-product-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }
@media (max-width: 767px) { .rr-product-nav { grid-template-columns: 1fr; } }
.rr-product-nav a { display: flex; gap: 12px; align-items: center; font-size: 13px; color: #8a8a8a; }
.rr-product-nav a img { width: 56px; height: 66px; object-fit: cover; }
.rr-product-nav .rr-pn-next { justify-content: flex-end; text-align: right; }
.rr-product-nav strong { display: block; color: var(--rr-ink); font-size: 14px; font-weight: 600; }

/* Carrinho / checkout dentro do layout padrão herdam o style.css global;
   aqui só alinhamos tipografia e botões para não destoar. */
.layout-padrao .btn,
.layout-padrao .btn-primary { border-radius: 0; font-weight: 700; }
.layout-padrao main { min-height: 40vh; }

/* Descrição: marcadores das listas e linha divisória. */
.layout-padrao .rr-prose ul li { list-style: disc; }
.layout-padrao .rr-prose ol li { list-style: decimal; }
.layout-padrao .rr-prose h4 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; }
.layout-padrao .rr-prose hr { border: 0; border-top: 1px solid var(--rr-line); margin: 20px 0; }
