/* ============================================================
   RK PERSONALIZADOS — main.css
   CSS puro (não requer build). Identidade: rosé/vinho/dourado.
   Fontes: Cormorant Garamond (títulos) · Great Vibes (script) · Jost (UI)
   ============================================================ */

:root {
  /* Paleta */
  --rk-bg: #fff5fa;
  --rk-rose: #b54477;
  --rk-rose-2: #d86e9c;
  --rk-rose-deep: #8e3460;
  --rk-plum: #5a2540;
  --rk-plum-2: #7a2e50;
  --rk-plum-3: #5a2e42;
  --rk-plum-4: #6e2e4c;
  --rk-gold: #fdd280;
  --rk-gold-dark: #e0a93d;
  --rk-gold-mid: #ecc98a;
  --rk-star: #fdc23e;
  --rk-text: #553142;
  --rk-text-soft: #7b5263;
  --rk-text-2: #6e4b5a;
  --rk-mute: #8a6675;
  --rk-mute-2: #a98293;
  --rk-border: #f2d9e4;
  --rk-border-2: #eec9da;
  --rk-border-3: #f3dce7;
  --rk-pink-bg: #fbe3ee;
  --rk-pink-bg-2: #fbe7f1;
  --rk-pink-chip: #fceef5;
  --rk-pink-line: #ebc9d9;
  --rk-peach: #f0cac5;
  --rk-wa: #25d366;

  /* Gradientes */
  --rk-rose-grad: linear-gradient(135deg, #b54477 0%, #d86e9c 100%);
  --rk-gold-grad: linear-gradient(90deg, #fdd280 0%, #e0a93d 50%, #fdd280 100%);

  /* Fontes */
  --rk-serif: 'Cormorant Garamond', Georgia, serif;
  --rk-script: 'Great Vibes', cursive;
  --rk-sans: 'Jost', system-ui, -apple-system, sans-serif;

  /* Sombra */
  --rk-shadow: 0 8px 24px rgba(181, 68, 119, 0.06);
  --rk-shadow-btn: 0 10px 26px rgba(181, 68, 119, 0.3);
  --rk-shadow-lift: 0 16px 34px rgba(181, 68, 119, 0.14);
}

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--rk-sans);
  color: var(--rk-text);
  background: var(--rk-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection {
  background: var(--rk-peach);
  color: var(--rk-plum-3);
}

a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

.rk-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}
.rk-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.rk-script {
  font-family: var(--rk-script);
}
.rk-serif {
  font-family: var(--rk-serif);
}

/* Screen-reader only */
.rk-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes rkToast {
  from {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes rkFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================================
   TOP STRIP
   ============================================================ */
.rk-topstrip {
  background: var(--rk-gold-grad);
  color: var(--rk-plum-4);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 16px;
  font-weight: 500;
}

/* ============================================================
   HEADER + NAV
   ============================================================ */
.rk-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 245, 250, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rk-border);
}
.rk-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.rk-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}
.rk-logo img {
  height: 64px;
  width: auto;
}

.rk-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}
.rk-nav__link {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--rk-sans);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #6b4456;
  padding: 8px 13px;
  border-radius: 999px;
  transition: all 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.rk-nav__link:hover {
  background: var(--rk-pink-bg-2);
  color: var(--rk-rose);
}
.rk-nav__link.is-active {
  background: var(--rk-pink-bg-2);
  color: var(--rk-rose);
  font-weight: 600;
}

.rk-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.rk-search {
  position: relative;
}
.rk-search__input {
  width: 160px;
  font-family: var(--rk-sans);
  font-size: 13px;
  color: var(--rk-text);
  background: #fff;
  border: 1px solid var(--rk-border-2);
  border-radius: 999px;
  padding: 9px 15px;
  outline: none;
  transition:
    border-color 0.15s ease,
    width 0.2s ease;
}
.rk-search__input:focus {
  border-color: var(--rk-rose-2);
}
.rk-search__results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 320px;
  max-width: 90vw;
  background: #fff;
  border: 1px solid var(--rk-border);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(90, 37, 64, 0.16);
  overflow: hidden;
  z-index: 60;
  max-height: 70vh;
  overflow-y: auto;
}
.rk-search__results.is-hidden {
  display: none;
}
.rk-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--rk-border);
  text-decoration: none;
  color: var(--rk-text);
  transition: background 0.12s ease;
}
.rk-search-item:last-child {
  border-bottom: none;
}
.rk-search-item:hover {
  background: var(--rk-pink-bg-2);
}
.rk-search-item__thumb {
  width: 44px;
  height: 52px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
  background: repeating-linear-gradient(
    135deg,
    #fff8fc,
    #fff8fc 8px,
    #fbe7f1 8px,
    #fbe7f1 16px
  );
  border: 1px solid #f1d3e1;
}
.rk-search-item__name {
  font-family: var(--rk-serif);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  color: var(--rk-plum-3);
}
.rk-search-item__price {
  font-size: 13px;
  color: var(--rk-rose);
  font-weight: 500;
}
.rk-search-item__cat {
  font-size: 11px;
  color: var(--rk-mute-2);
}

/* botão redondo (carrinho) */
.rk-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--rk-rose-grad);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(181, 68, 119, 0.28);
}
.rk-cart-btn__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--rk-gold);
  color: var(--rk-plum-4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rk-cart-btn__badge.is-hidden {
  display: none;
}

.rk-icon-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid var(--rk-border-2);
  color: var(--rk-rose);
  border-radius: 50%;
  cursor: pointer;
}

/* mobile menu */
.rk-mobile-menu {
  display: none;
  border-top: 1px solid var(--rk-border);
  background: rgba(255, 245, 250, 0.98);
}
.rk-mobile-menu.is-open {
  display: block;
}
.rk-mobile-menu__inner {
  padding: 14px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rk-mobile-menu .rk-nav__link {
  text-align: left;
  padding: 12px 14px;
  font-size: 15px;
}
.rk-mobile-menu .rk-search {
  margin-bottom: 12px;
}
.rk-mobile-menu .rk-search__input {
  width: 100%;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.rk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--rk-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  padding: 14px 30px;
  border: none;
  white-space: nowrap;
  line-height: 1;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.rk-btn--primary {
  background: var(--rk-rose-grad);
  color: #fff;
  box-shadow: var(--rk-shadow-btn);
}
.rk-btn--primary:hover {
  transform: translateY(-2px);
}
.rk-btn--outline {
  background: #fff;
  color: var(--rk-rose);
  border: 1.5px solid #e7aec8;
  padding: 12.5px 28px;
}
.rk-btn--outline:hover {
  background: var(--rk-pink-bg-2);
}
.rk-btn--ghost {
  background: none;
  color: var(--rk-rose);
  border: 1.5px solid #e7aec8;
  padding: 11px 22px;
  font-size: 15px;
}
.rk-btn--wa {
  background: var(--rk-wa);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.32);
}
.rk-btn--wa:hover {
  transform: translateY(-2px);
}
.rk-btn--sm {
  padding: 11px 22px;
  font-size: 14px;
}
.rk-btn--block {
  width: 100%;
}

.rk-link-arrow {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rk-rose);
  font-family: var(--rk-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 6px 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* ============================================================
   SEÇÕES / CABEÇALHOS
   ============================================================ */
.rk-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(46px, 6.5vw, 82px) 22px clamp(40px, 5vw, 64px);
}

.rk-eyebrow {
  font-family: var(--rk-script);
  font-size: 30px;
  color: var(--rk-rose-2);
  margin: 0 0 -2px;
  line-height: 1;
}
.rk-h2 {
  font-family: var(--rk-serif);
  font-weight: 600;
  font-size: clamp(30px, 4.8vw, 48px);
  color: var(--rk-plum-2);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.rk-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* Cabeçalho de página interna (radial rosa) */
.rk-page-head {
  text-align: center;
  padding: clamp(34px, 5vw, 52px) 22px clamp(22px, 3vw, 32px);
  background: radial-gradient(120% 100% at 50% -20%, #fbe0ec 0%, #fff5fa 70%);
}
.rk-page-head h1 {
  font-family: var(--rk-serif);
  font-weight: 600;
  font-size: clamp(36px, 6vw, 56px);
  color: var(--rk-plum-2);
  margin: 0;
}
.rk-page-head p.sub {
  color: var(--rk-text-soft);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 600px;
  margin: 12px auto 0;
}

/* ============================================================
   HERO (home)
   ============================================================ */
.rk-hero {
  position: relative;
  overflow: hidden;
  background: var(--rk-bg);
}
.rk-hero__ring1 {
  position: absolute;
  top: -130px;
  right: -110px;
  width: 380px;
  height: 380px;
  border: 2px dashed var(--rk-peach);
  border-radius: 50%;
  opacity: 0.55;
}
.rk-hero__ring2 {
  position: absolute;
  bottom: -170px;
  left: -150px;
  width: 340px;
  height: 340px;
  border: 2px dashed #ecc98a;
  border-radius: 50%;
  opacity: 0.5;
}
.rk-hero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(38px, 5.5vw, 72px) 22px clamp(46px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.rk-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--rk-peach);
  color: var(--rk-rose);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}
.rk-hero__title {
  font-family: var(--rk-serif);
  font-weight: 600;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.03;
  color: var(--rk-plum-3);
  margin: 20px 0 0;
  letter-spacing: -0.01em;
}
.rk-hero__title .accent {
  font-family: var(--rk-script);
  font-weight: 400;
  color: var(--rk-rose);
  font-size: 1.18em;
  display: inline-block;
  line-height: 0.9;
}
.rk-hero__lead {
  font-family: var(--rk-serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 23px);
  color: var(--rk-text-soft);
  max-width: 440px;
  margin: 22px 0 30px;
  line-height: 1.55;
}
.rk-hero__ctas {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.rk-hero__stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 36px;
}
.rk-stat {
  padding: 0 26px;
  border-left: 1px solid var(--rk-pink-line);
}
.rk-stat:first-child {
  padding-left: 0;
  border-left: none;
}
.rk-stat__num {
  font-family: var(--rk-serif);
  font-weight: 700;
  font-size: 30px;
  color: var(--rk-rose);
  line-height: 1;
}
.rk-stat__label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--rk-mute);
  margin-top: 4px;
}

/* foto em arco + selo */
.rk-hero__figure {
  position: relative;
  justify-self: center;
  width: clamp(258px, 32vw, 388px);
}
.rk-hero__figure-frame {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1.5px dashed var(--rk-gold-dark);
  border-radius: 220px 220px 26px 26px;
  z-index: 0;
}
.rk-hero__figure-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 220px 220px 26px 26px;
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(122, 46, 80, 0.22);
}
.rk-hero__figure-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rk-seal {
  position: absolute;
  z-index: 2;
  bottom: -16px;
  left: -16px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--rk-rose);
  color: #fff0f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid var(--rk-gold);
  box-shadow: 0 12px 26px rgba(90, 37, 64, 0.32);
}
.rk-seal__script {
  font-family: var(--rk-script);
  font-size: 27px;
  line-height: 0.9;
  color: var(--rk-gold);
}
.rk-seal__sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ============================================================
   VALUES BAND (stitch)
   ============================================================ */
.rk-values {
  background: var(--rk-plum);
  color: #f3d7e4;
}
.rk-values__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  justify-content: center;
  align-items: center;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  border-top: 2px dashed rgba(253, 210, 128, 0.35);
  border-bottom: 2px dashed rgba(253, 210, 128, 0.35);
}
.rk-values .star {
  color: var(--rk-gold);
}

/* ============================================================
   ÍNDICE DE COLEÇÕES (numerado)
   ============================================================ */
.rk-collections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 0 48px;
}
.rk-collection {
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1.5px dashed var(--rk-pink-line);
  cursor: pointer;
  padding: 18px 4px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: padding-left 0.2s ease;
  text-decoration: none;
}
.rk-collection:hover {
  padding-left: 12px;
}
.rk-collection__num {
  font-family: var(--rk-serif);
  font-weight: 600;
  font-size: 30px;
  color: var(--rk-gold-mid);
  min-width: 42px;
  line-height: 1;
}
.rk-collection__name {
  flex: 1;
  font-family: var(--rk-serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
  color: var(--rk-plum-3);
}
.rk-collection__count {
  font-size: 12.5px;
  color: var(--rk-mute-2);
  white-space: nowrap;
}
.rk-collection__arrow {
  font-size: 18px;
  color: var(--rk-rose);
}

/* ============================================================
   QUOTE BAND
   ============================================================ */
.rk-quote {
  text-align: center;
  padding: clamp(36px, 5vw, 56px) 22px;
}
.rk-quote p {
  font-family: var(--rk-script);
  font-size: clamp(34px, 5.5vw, 58px);
  color: var(--rk-rose-2);
  margin: 0;
  line-height: 1.1;
}

/* ============================================================
   SOBRE (resumo na home + página)
   ============================================================ */
.rk-about {
  background: var(--rk-pink-bg);
  padding: clamp(48px, 7vw, 86px) 22px;
  position: relative;
  overflow: hidden;
}
.rk-about__ring {
  position: absolute;
  top: -90px;
  right: 8%;
  width: 200px;
  height: 200px;
  border: 2px dashed #e7aec8;
  border-radius: 50%;
  opacity: 0.6;
}
.rk-about__inner {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  flex-wrap: wrap;
}
.rk-about__figure {
  flex: 1 1 270px;
  position: relative;
  max-width: 360px;
}
.rk-about__figure-frame {
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1.5px dashed var(--rk-gold-dark);
  border-radius: 26px 26px 180px 180px;
  z-index: 0;
}
.rk-about__figure-photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
  border-radius: 26px 26px 180px 180px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(122, 46, 80, 0.2);
}
.rk-about__figure-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rk-about__body {
  flex: 1 1 320px;
}
.rk-about__body p:not(.rk-eyebrow):not(.rk-about__sign) {
  font-size: 16px;
  line-height: 1.8;
  color: var(--rk-text-2);
  margin: 0 0 14px;
}
.rk-about__body strong {
  color: var(--rk-rose);
  font-weight: 600;
}
.rk-about__sign {
  font-family: var(--rk-script);
  font-size: 34px;
  color: var(--rk-rose);
  margin: 4px 0 22px;
  line-height: 1;
}

/* Página Sobre — foto reta */
.rk-about-page {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 40px) 22px clamp(48px, 7vw, 72px);
  display: flex;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  flex-wrap: wrap;
}
.rk-about-page__figure {
  flex: 1 1 300px;
  position: relative;
}
.rk-about-page__figure-frame {
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1.5px solid var(--rk-gold-dark);
  border-radius: 22px;
  z-index: 0;
}
.rk-about-page__figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(122, 46, 80, 0.18);
}
.rk-about-page__body {
  flex: 1 1 320px;
}
.rk-about-page__body p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--rk-text-2);
  margin: 0 0 16px;
}
.rk-about-page__body strong {
  color: var(--rk-rose);
  font-weight: 600;
}

/* ============================================================
   FAQ
   ============================================================ */
.rk-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rk-faq__item {
  background: #fff;
  border: 1px solid var(--rk-border);
  border-radius: 16px;
  overflow: hidden;
}
.rk-faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--rk-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--rk-plum-4);
}
.rk-faq__icon {
  flex-shrink: 0;
  color: var(--rk-rose-2);
  font-size: 20px;
  transition: transform 0.2s ease;
}
.rk-faq__item.is-open .rk-faq__icon {
  transform: rotate(45deg);
}
.rk-faq__a {
  margin: 0;
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.7;
  color: var(--rk-text-soft);
  transition:
    max-height 0.28s ease,
    padding 0.28s ease;
}
.rk-faq__item.is-open .rk-faq__a {
  padding: 0 22px 20px;
  max-height: 500px;
}

.rk-faq-head {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 30px;
}
.rk-faq-head .line {
  flex: 1;
  height: 1.5px;
  border-bottom: 1.5px dashed var(--rk-pink-line);
  margin-bottom: 12px;
}

/* ============================================================
   CATÁLOGO — chips + seções + cards
   ============================================================ */
.rk-catalog {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 34px) 22px clamp(56px, 8vw, 88px);
}

.rk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 42px;
}
.rk-chip {
  font-family: var(--rk-sans);
  font-size: 13.5px;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--rk-border-2);
  background: #fff;
  color: #8a5a70;
  transition: all 0.18s ease;
  text-decoration: none;
  display: inline-block;
}
.rk-chip:hover {
  border-color: var(--rk-rose-2);
  color: var(--rk-rose);
}
.rk-chip.is-active {
  background: var(--rk-rose-grad);
  color: #fff;
  border-color: transparent;
}

.rk-cat-block {
  margin-bottom: 54px;
}
.rk-cat-block__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}
.rk-cat-block__title {
  font-family: var(--rk-serif);
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 32px);
  color: var(--rk-rose);
  margin: 0;
}
.rk-cat-block__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--rk-peach), rgba(240, 202, 197, 0));
}
.rk-cat-block__count {
  font-size: 13px;
  color: var(--rk-mute-2);
  white-space: nowrap;
}

.rk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 22px;
}

/* Card de produto */
.rk-card {
  background: #fff;
  border: 1px solid var(--rk-border-3);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--rk-shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.rk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rk-shadow-lift);
}
.rk-card__media {
  position: relative;
  aspect-ratio: 4/5;
  display: block;
  overflow: hidden;
}
.rk-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* placeholder listrado */
.rk-photo-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    135deg,
    #fff8fc,
    #fff8fc 13px,
    #fbe7f1 13px,
    #fbe7f1 26px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.rk-photo-placeholder__label {
  font-family: var(--rk-sans);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b5658b;
  background: rgba(255, 255, 255, 0.9);
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid #f1d3e1;
  text-align: center;
}

.rk-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rk-card__title {
  font-family: var(--rk-serif);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.15;
  color: var(--rk-plum-3);
  margin: 0 0 7px;
  text-decoration: none;
}
a.rk-card__title:hover {
  color: var(--rk-rose);
}
.rk-card__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--rk-mute);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rk-card__variants {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 4px 0 16px;
}
.rk-card__variant {
  font-family: var(--rk-serif);
  font-size: 15px;
  color: var(--rk-plum-3);
  line-height: 1.55;
}
.rk-card__variant strong {
  font-weight: 600;
}
.rk-card__variant .p {
  color: var(--rk-rose);
  font-weight: 600;
}
.rk-card__details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-family: var(--rk-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--rk-rose);
  background: var(--rk-pink-chip);
  border: 1px solid #f2d4e2;
  border-radius: 999px;
  padding: 12px 18px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
}
.rk-card__details:hover {
  transform: translateY(-1px);
  background: var(--rk-rose-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(181, 68, 119, 0.25);
}
.rk-card__price {
  margin-bottom: 14px;
}
.rk-card__price-main {
  font-family: var(--rk-serif);
  font-weight: 700;
  font-size: 24px;
  color: var(--rk-rose);
  line-height: 1;
}
.rk-card__price-sub {
  font-size: 12px;
  color: var(--rk-mute-2);
  margin-top: 3px;
  min-height: 15px;
}
.rk-card__foot {
  margin-top: auto;
}

.rk-add-btn {
  width: 100%;
  background: var(--rk-rose-grad);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--rk-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 11px;
  border-radius: 999px;
  transition: transform 0.12s ease;
}
.rk-add-btn:hover {
  transform: translateY(-1px);
}

.rk-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--rk-pink-chip);
  border: 1px solid #f2d4e2;
  border-radius: 999px;
  padding: 5px 7px;
}
.rk-stepper__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.rk-stepper__btn--minus {
  background: #fff;
  color: var(--rk-rose);
  box-shadow: 0 2px 6px rgba(181, 68, 119, 0.14);
}
.rk-stepper__btn--plus {
  background: var(--rk-rose);
  color: #fff;
  box-shadow: 0 2px 6px rgba(181, 68, 119, 0.22);
}
.rk-stepper__label {
  font-weight: 600;
  color: var(--rk-plum-2);
  font-size: 15px;
}

.rk-empty {
  text-align: center;
  color: var(--rk-mute-2);
  font-size: 16px;
  padding: 40px 0;
}

/* ============================================================
   TEMAS (bordados + capas)
   ============================================================ */
.rk-temas {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 34px) 22px clamp(56px, 8vw, 88px);
}
.rk-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.rk-tab {
  min-width: 148px;
  font-family: var(--rk-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  padding: 13px 30px;
  border-radius: 999px;
  border: 1.5px solid #e7aec8;
  background: #fff;
  color: var(--rk-rose);
  transition: all 0.18s ease;
}
.rk-tab.is-active {
  background: var(--rk-rose-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(181, 68, 119, 0.26);
}

.rk-tema-name {
  text-align: center;
  margin-bottom: 26px;
}
.rk-tema-name h3 {
  font-family: var(--rk-serif);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--rk-rose);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rk-tema-name .rule {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--rk-gold), var(--rk-gold-dark));
  margin-top: 8px;
}

.rk-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.rk-tile {
  aspect-ratio: 1/1;
  border-radius: 16px;
  border: 1px solid var(--rk-border-3);
  overflow: hidden;
  position: relative;
  background: repeating-linear-gradient(
    135deg,
    #fff8fc,
    #fff8fc 12px,
    #fbe7f1 12px,
    #fbe7f1 24px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
}
.rk-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rk-tile__label {
  font-family: var(--rk-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b5658b;
}

.rk-temas-note {
  text-align: center;
  color: var(--rk-mute-2);
  font-size: 13.5px;
  margin: 32px auto 0;
  max-width: 520px;
  line-height: 1.6;
}

/* ============================================================
   INFO CARDS (Envios & Pagamento)
   ============================================================ */
.rk-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.rk-info-card {
  background: #fff;
  border: 1px solid var(--rk-border-3);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: var(--rk-shadow);
}
.rk-info-card__rule {
  display: inline-block;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--rk-gold), var(--rk-gold-dark));
  margin-bottom: 14px;
}
.rk-info-card h3 {
  font-family: var(--rk-serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--rk-rose);
  margin: 0 0 10px;
}
.rk-info-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--rk-text-2);
  margin: 0;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.rk-testimonials {
  background: linear-gradient(180deg, #fbe3ee 0%, #fff5fa 100%);
  padding: clamp(48px, 7vw, 80px) 22px;
}
.rk-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.rk-testimonial {
  background: #fff;
  border: 1px solid var(--rk-border-3);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: var(--rk-shadow);
  display: flex;
  flex-direction: column;
}
.rk-testimonial__stars {
  color: var(--rk-star);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 13px;
}
.rk-testimonial__text {
  font-family: var(--rk-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: #5a3848;
  margin: 0 0 16px;
}
.rk-testimonial__name {
  margin: auto 0 0;
  font-family: var(--rk-script);
  color: var(--rk-rose);
  font-size: 24px;
}

/* ============================================================
   CONTATO
   ============================================================ */
.rk-contact-hero {
  text-align: center;
  padding: clamp(48px, 8vw, 92px) 22px;
  color: #fff;
  background: radial-gradient(
    120% 120% at 50% 0%,
    #c9568b 0%,
    #b54477 55%,
    #8e3460 100%
  );
}
.rk-contact-hero__script {
  font-family: var(--rk-script);
  font-size: clamp(34px, 5vw, 52px);
  margin: 0 0 8px;
  color: var(--rk-gold);
}
.rk-contact-hero p:not(.rk-contact-hero__script) {
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 30px;
  color: var(--rk-pink-bg);
}
.rk-contact-hero .rk-btn {
  background: #fff;
  color: var(--rk-rose);
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.rk-contact-card {
  background: #fff;
  border: 1px solid var(--rk-border-3);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: var(--rk-shadow);
  text-decoration: none;
  display: block;
}
.rk-contact-card h3 {
  font-family: var(--rk-serif);
  font-weight: 600;
  font-size: 23px;
  color: var(--rk-rose);
  margin: 0 0 8px;
}
.rk-contact-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--rk-text-2);
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.rk-footer {
  background: var(--rk-plum);
  color: #f3d7e4;
  padding: clamp(40px, 6vw, 58px) 22px 30px;
  text-align: center;
}
.rk-footer__logo {
  height: 80px;
  width: auto;
  margin: 0 auto 6px;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.25));
}
.rk-footer__tag {
  font-family: var(--rk-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--rk-peach);
  margin: 0 0 18px;
}
.rk-footer__nav {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.rk-footer__nav a {
  background: none;
  border: none;
  cursor: pointer;
  color: #e6bfd0;
  font-family: var(--rk-sans);
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 6px 11px;
  border-radius: 999px;
  text-decoration: none;
}
.rk-footer__nav a:hover {
  color: #fff;
}
.rk-footer__social {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.rk-footer__social a {
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
}
.rk-footer__social a.wa {
  color: var(--rk-plum);
  background: var(--rk-gold);
}
.rk-footer__social a.ig {
  color: #f3d7e4;
  border: 1px solid rgba(243, 215, 228, 0.4);
}
.rk-footer__copy {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #c99cb1;
  margin: 0;
}
.rk-credits {
  background: #fff;
  text-align: center;
  padding: 15px 22px;
  font-family: var(--rk-sans);
  font-size: 13px;
  color: #8a8a8a;
  line-height: 1.6;
}
.rk-credits a {
  color: #4a4a4a;
  text-decoration: none;
  font-weight: 600;
}
.rk-credits a:hover {
  color: var(--rk-rose);
}
.rk-credits .sep {
  color: #cfcfcf;
  margin: 0 5px;
}
.rk-credits .heart {
  color: #9b6bd6;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.rk-wa-float {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 45;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rk-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  text-decoration: none;
}

/* ============================================================
   DRAWER (Minha Lista)
   ============================================================ */
.rk-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(90, 37, 64, 0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.rk-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.rk-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 55;
  height: 100%;
  width: 392px;
  max-width: 92vw;
  background: #fff8fb;
  box-shadow: -12px 0 40px rgba(90, 37, 64, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.rk-drawer.is-open {
  transform: translateX(0);
}
.rk-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--rk-border);
}
.rk-drawer__head .eye {
  font-family: var(--rk-script);
  font-size: 24px;
  color: var(--rk-rose-2);
  margin: 0;
  line-height: 1;
}
.rk-drawer__head h3 {
  font-family: var(--rk-serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--rk-plum-2);
  margin: 0;
}
.rk-drawer__close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--rk-pink-bg-2);
  color: var(--rk-rose);
  font-size: 20px;
}
.rk-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}
.rk-drawer__foot {
  border-top: 1px solid var(--rk-border);
  padding: 18px 22px 22px;
  background: #fff;
}

.rk-cart-empty {
  text-align: center;
  padding: 48px 12px;
  color: var(--rk-mute-2);
}
.rk-cart-empty h4 {
  font-family: var(--rk-serif);
  font-size: 22px;
  color: #b5658b;
  margin: 0 0 8px;
  font-weight: 600;
}
.rk-cart-empty p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.rk-cart-item {
  display: flex;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid #f4e0ea;
}
.rk-cart-item__thumb {
  flex-shrink: 0;
  width: 54px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
  background: repeating-linear-gradient(
    135deg,
    #fff8fc,
    #fff8fc 8px,
    #fbe7f1 8px,
    #fbe7f1 16px
  );
  border: 1px solid #f1d3e1;
}
.rk-cart-item__info {
  flex: 1;
  min-width: 0;
}
.rk-cart-item__name {
  font-family: var(--rk-serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--rk-plum-3);
  margin: 0 0 2px;
  line-height: 1.2;
}
.rk-cart-item__price {
  font-size: 13px;
  color: var(--rk-rose);
  font-weight: 500;
  margin: 0 0 8px;
}
.rk-cart-item__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rk-cart-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #f2d4e2;
  border-radius: 999px;
  padding: 3px 5px;
}
.rk-cart-stepper button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.rk-cart-stepper .minus {
  background: var(--rk-pink-bg-2);
  color: var(--rk-rose);
}
.rk-cart-stepper .plus {
  background: var(--rk-rose);
  color: #fff;
}
.rk-cart-stepper .qty {
  min-width: 18px;
  text-align: center;
  font-weight: 600;
  color: var(--rk-plum-2);
  font-size: 14px;
}
.rk-cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #b98;
  font-size: 12px;
  text-decoration: underline;
}

.rk-drawer__total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.rk-drawer__total-row .label {
  font-size: 14px;
  color: var(--rk-mute);
}
.rk-drawer__total-row .value {
  font-family: var(--rk-serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--rk-rose);
}
.rk-drawer__note {
  font-size: 11.5px;
  color: var(--rk-mute-2);
  line-height: 1.5;
  margin: 0 0 14px;
}
.rk-drawer__clear {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rk-mute-2);
  font-size: 13px;
  text-decoration: underline;
  margin-top: 9px;
}

/* ============================================================
   TOAST
   ============================================================ */
.rk-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  z-index: 60;
  transform: translateX(-50%);
  background: var(--rk-plum);
  color: #fff;
  font-family: var(--rk-sans);
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(90, 37, 64, 0.35);
  animation: rkToast 0.3s ease both;
}
.rk-toast.is-hidden {
  display: none;
}

/* ============================================================
   PÁGINA DO PRODUTO (single)
   ============================================================ */
.rk-breadcrumb {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px 0;
  font-size: 13px;
  color: var(--rk-mute);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.rk-breadcrumb a {
  text-decoration: none;
  color: var(--rk-mute);
}
.rk-breadcrumb a:hover {
  color: var(--rk-rose);
}
.rk-breadcrumb .sep {
  opacity: 0.5;
}
.rk-breadcrumb .current {
  color: var(--rk-plum-3);
  font-weight: 500;
}

.rk-product {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 34px) 22px clamp(48px, 7vw, 80px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.rk-product__gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rk-product__main {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(122, 46, 80, 0.16);
  background: repeating-linear-gradient(
    135deg,
    #fff8fc,
    #fff8fc 14px,
    #fbe7f1 14px,
    #fbe7f1 28px
  );
}
.rk-product__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rk-product__thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.rk-product__thumb {
  width: 72px;
  height: 88px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
}
.rk-product__thumb.is-active {
  border-color: var(--rk-rose);
}
.rk-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rk-product__eyebrow {
  font-family: var(--rk-script);
  font-size: 28px;
  color: var(--rk-rose-2);
  margin: 0 0 -4px;
}
.rk-product__title {
  font-family: var(--rk-serif);
  font-weight: 600;
  font-size: clamp(30px, 4.6vw, 46px);
  color: var(--rk-plum-2);
  margin: 0 0 12px;
  line-height: 1.05;
}
.rk-product__price {
  font-family: var(--rk-serif);
  font-weight: 700;
  font-size: 34px;
  color: var(--rk-rose);
  line-height: 1;
}
.rk-product__parcelas {
  font-size: 14px;
  color: var(--rk-mute);
  margin: 6px 0 0;
}
.rk-product__desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--rk-text-2);
  margin: 20px 0;
}
.rk-product__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}
.rk-product__cta {
  margin: 26px 0 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.rk-specs {
  list-style: none;
  margin: 20px 0 0;
  padding: 22px 0 0;
  border-top: 1px dashed var(--rk-pink-line);
}
.rk-specs li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--rk-text-2);
  line-height: 1.5;
}
.rk-specs li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--rk-gold-dark);
}

/* ============================================================
   PAGINAÇÃO
   ============================================================ */
.rk-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.rk-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--rk-border-2);
  color: var(--rk-text-soft);
  text-decoration: none;
  font-size: 14px;
  background: #fff;
}
.rk-pagination__link:hover {
  border-color: var(--rk-rose-2);
  color: var(--rk-rose);
}
.rk-pagination__link.is-current {
  background: var(--rk-rose-grad);
  color: #fff;
  border-color: transparent;
}

/* ============================================================
   PROSE (páginas simples / conteúdo WYSIWYG)
   ============================================================ */
.rk-prose {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px) 22px clamp(48px, 7vw, 72px);
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--rk-text-2);
}
.rk-prose h2 {
  font-family: var(--rk-serif);
  color: var(--rk-plum-2);
  font-weight: 600;
  font-size: 30px;
  margin: 32px 0 12px;
}
.rk-prose a {
  color: var(--rk-rose);
}
.rk-prose img {
  border-radius: 16px;
  margin: 20px 0;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1100px) {
  .rk-search--header {
    display: none;
  }
}
@media (max-width: 980px) {
  .rk-nav {
    display: none;
  }
  .rk-icon-btn {
    display: flex;
  }
  .rk-hero__stats {
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .rk-header__inner {
    padding: 10px 16px;
    gap: 10px;
  }
  .rk-logo img {
    height: 52px;
  }
  .rk-container,
  .rk-narrow {
    padding-left: 16px;
    padding-right: 16px;
  }
  .rk-stat {
    padding: 0 16px;
  }
  .rk-collections {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 480px) {
  .rk-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .rk-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .rk-hero__stats {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .rk-stat {
    padding: 14px 0 0;
    border-left: none;
    border-top: 1px solid var(--rk-pink-line);
  }
  .rk-stat:first-child {
    padding-top: 0;
    border-top: none;
  }
  .rk-hero__ctas {
    justify-content: center;
  }
}

/* ============================================================
   CATÁLOGO 2.0 — layout com sidebar de filtros na lateral
   ============================================================ */
.rk-catalog-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 32px) 22px clamp(56px, 8vw, 88px);
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: clamp(26px, 3.5vw, 46px);
  align-items: start;
}
.rk-catalog-aside {
  position: sticky;
  top: 88px;
}
.rk-filter-toggle {
  display: none;
}

.rk-cat-filter {
  background: #fff;
  border: 1px solid var(--rk-border-3);
  border-radius: 18px;
  padding: 20px 16px;
  box-shadow: var(--rk-shadow);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 110px);
}
.rk-cat-filter__title {
  font-family: var(--rk-serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--rk-plum-2);
  margin: 0 0 12px;
  padding: 0 6px;
  flex-shrink: 0;
}
.rk-cat-filter__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(181, 68, 119, 0.3) transparent;
}
.rk-cat-filter__list::-webkit-scrollbar {
  width: 6px;
}
.rk-cat-filter__list::-webkit-scrollbar-track {
  background: transparent;
}
.rk-cat-filter__list::-webkit-scrollbar-thumb {
  background: rgba(181, 68, 119, 0.28);
  border-radius: 999px;
}
.rk-cat-filter__list::-webkit-scrollbar-thumb:hover {
  background: rgba(181, 68, 119, 0.45);
}
.rk-cat-filter__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--rk-sans);
  font-size: 14px;
  color: #6b4456;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.15s ease;
}
.rk-cat-filter__item:hover {
  background: var(--rk-pink-bg-2);
  color: var(--rk-rose);
}
.rk-cat-filter__item.is-active {
  background: var(--rk-rose-grad);
  color: #fff;
  box-shadow: 0 6px 16px rgba(181, 68, 119, 0.22);
}
.rk-cat-filter__item .n {
  font-size: 12px;
  flex-shrink: 0;
}
.rk-cat-filter__item:not(.is-active) .n {
  color: var(--rk-mute-2);
}
.rk-cat-filter__sub {
  margin: 1px 0 5px;
  padding-left: 12px;
  border-left: 1.5px solid var(--rk-border-2);
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.rk-cat-filter__item--child {
  font-size: 13px;
  padding: 8px 11px;
  color: #7a5568;
}
.rk-cat-filter__item--child .n {
  font-size: 11px;
}

.rk-catalog-main {
  min-width: 0;
}
.rk-catalog-main .rk-grid {
  grid-template-columns: repeat(auto-fill, minmax(226px, 1fr));
}
.rk-catalog-count {
  font-size: 13px;
  color: var(--rk-mute);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}

/* ============================================================
   SELETOR DE VARIAÇÃO (escolha do tamanho/modelo)
   ============================================================ */
.rk-variant-pick {
  margin: 4px 0 12px;
}
.rk-variant-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rk-mute);
  margin-bottom: 7px;
  font-weight: 500;
}
.rk-variant-label--lg {
  font-size: 12px;
  margin-top: 4px;
}
.rk-variant-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  font-family: var(--rk-sans);
  font-size: 14px;
  color: var(--rk-text);
  line-height: 1.2;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23B54477' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  border: 1.5px solid var(--rk-border-2);
  border-radius: 12px;
  padding: 11px 40px 11px 14px;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.rk-variant-select:hover {
  border-color: var(--rk-rose-2);
}
.rk-variant-select:focus {
  outline: none;
  border-color: var(--rk-rose-2);
  box-shadow: 0 0 0 3px rgba(216, 110, 156, 0.15);
}
.rk-variant-select--lg {
  font-size: 16px;
  padding: 15px 42px 15px 16px;
  border-radius: 14px;
}

.rk-add-btn.is-locked,
.rk-btn.is-locked {
  opacity: 0.45;
  box-shadow: none;
}
.rk-add-btn:disabled,
.rk-btn:disabled {
  cursor: not-allowed;
}

.rk-product__sku {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #8a5a70;
  background: var(--rk-pink-chip);
  border: 1px solid var(--rk-border-2);
  border-radius: 999px;
  padding: 6px 15px;
  margin: 16px 0 2px;
}

/* Responsivo — sidebar vira bloco recolhível no mobile */
@media (max-width: 900px) {
  .rk-catalog-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .rk-catalog-aside {
    position: static;
  }
  .rk-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #fff;
    border: 1px solid var(--rk-border-2);
    border-radius: 12px;
    padding: 13px 16px;
    font-family: var(--rk-sans);
    font-size: 15px;
    color: var(--rk-plum-3);
    cursor: pointer;
  }
  .rk-filter-toggle svg {
    transition: transform 0.2s ease;
  }
  .rk-filter-toggle.is-open svg {
    transform: rotate(180deg);
  }
  .rk-cat-filter {
    display: none;
    margin-top: 10px;
  }
  .rk-cat-filter.is-open {
    display: flex;
    max-height: 62vh;
  }
  .rk-cat-filter__title {
    display: none;
  }
}
