/* ReviveAI — Generated Theme: Vegtus — Desert Botanical */

/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  color: #2C2A26;
  line-height: 1.7;
  background: #F5F0E6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #2F6B47; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #C9A227; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  color: #1C1B19;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 20px; }
h2 { font-size: clamp(1.3rem, 3vw, 1.75rem); font-weight: 700; margin: 40px 0 16px; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 600; margin: 28px 0 12px; }
h4 { font-size: 1.1rem; font-weight: 600; margin: 20px 0 8px; }
p { margin-bottom: 16px; font-size: 1.05rem; }

/* ─── Layout ─── */
.rv-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.rv-container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ─── Header / Navigation ─── */
.rv-header {
  background: #FFFDF8;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 12px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.rv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 64px;
}
.rv-logo {
  color: #fff;
  text-decoration: none;
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.rv-logo:hover { color: #fff; opacity: 0.92; }

.rv-nav { display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
.rv-nav-item { position: relative; }
.rv-nav-item > a {
  display: block;
  padding: 20px 14px;
  color: #1C1B19;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  border-radius: 4px;
}
.rv-nav-item > a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.rv-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFDF8;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 0 0 1px #E2D8C5;
  min-width: 240px;
  padding: 8px 0;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
  transform: translateX(-50%) translateY(4px);
}
.rv-nav-item:hover .rv-dropdown {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.rv-dropdown a {
  display: block;
  padding: 10px 20px;
  color: #2C2A26;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.rv-dropdown a:hover {
  background: #EDE5D4;
  color: #2F6B47;
  padding-left: 24px;
}

/* Hamburger */
.rv-hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  border-radius: 4px;
  transition: background 0.2s;
}
.rv-hamburger:hover { background: rgba(255,255,255,0.1); }

/* ─── Hero ─── */
.rv-hero {
  background: linear-gradient(135deg, rgba(28,43,34,0.62) 0%, rgba(47,107,71,0.42) 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.rv-hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  position: relative;
}
.rv-hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: 0.88;
  max-width: 640px;
  margin: 0 auto 28px;
  position: relative;
}
.rv-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}

/* ─── Main Content ─── */
.rv-main {
  padding: 48px 0 72px;
  min-height: 50vh;
}
.rv-content {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 72ch;
}
.rv-content p { margin-bottom: 18px; }
.rv-content ul, .rv-content ol { margin: 14px 0 14px 28px; }
.rv-content li { margin-bottom: 8px; }
.rv-content img {
  border-radius: 10px;
  margin: 24px 0;
  box-shadow: 0 1px 10px rgba(28,27,25,0.05);
  transition: box-shadow 0.3s ease;
}
.rv-content img:hover { box-shadow: 0 10px 34px rgba(28,27,25,0.13); }
.rv-content a { color: #C9A227; font-weight: 500; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.rv-content a:hover { border-bottom-color: #C9A227; }
.rv-content blockquote {
  border-left: 4px solid #C9A227;
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(201,162,39,0.12);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: #6B6458;
}
.rv-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}
.rv-content th, .rv-content td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #E2D8C5;
}
.rv-content th {
  background: #EDE5D4;
  font-weight: 600;
  color: #1C1B19;
}
.rv-content tr:hover td { background: #EFE8D9; }

/* Page title with decorative line */
.rv-page-title {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 32px;
}
.rv-page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #C9A227;
  border-radius: 2px;
}

/* ─── Breadcrumb ─── */
.rv-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #6B6458;
  margin-bottom: 28px;
  padding: 12px 0;
}
.rv-breadcrumb a {
  color: #2F6B47;
  font-weight: 500;
  transition: color 0.2s;
}
.rv-breadcrumb a:hover { color: #C9A227; }
.rv-breadcrumb-sep {
  color: #E2D8C5;
  font-size: 0.7rem;
}

/* ─── Cards (Homepage) ─── */
.rv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin: 36px 0;
}
.rv-card {
  background: #FFFDF8;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 1px 10px rgba(28,27,25,0.05);
  border: 1px solid #EFE8D9;
  transition: box-shadow 0.3s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}
.rv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2F6B47, #C9A227);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.rv-card:hover {
  box-shadow: 0 10px 34px rgba(28,27,25,0.13);
  transform: translateY(-3px);
}
.rv-card:hover::before { opacity: 1; }
.rv-card h3 {
  color: #1C1B19;
  font-size: 1.2rem;
  margin: 0 0 10px;
}
.rv-card p {
  color: #6B6458;
  font-size: 0.95rem;
  margin: 0 0 18px;
  line-height: 1.6;
}

/* ─── CTA Buttons ─── */
.rv-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}
.rv-btn-primary {
  background: #C9A227;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(201,162,39,0.12);
}
.rv-btn-primary:hover {
  background: #B08E1E;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(201,162,39,0.12);
  transform: translateY(-1px);
}
.rv-btn-outline {
  background: transparent;
  color: #2F6B47 !important;
  border: 2px solid #E2D8C5;
}
.rv-btn-outline:hover {
  background: #EDE5D4;
  border-color: #2F6B47;
}
.rv-card .rv-btn {
  font-size: 0.85rem;
  padding: 10px 22px;
}

/* ─── Section Alternating Backgrounds ─── */
.rv-section-alt {
  background: #EDE5D4;
  padding: 48px 0;
  margin: 48px 0;
  border-top: 1px solid #EFE8D9;
  border-bottom: 1px solid #EFE8D9;
}

/* ─── Related Pages ─── */
.rv-related {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 2px solid #E2D8C5;
}
.rv-related h2 {
  margin-top: 0;
  font-size: 1.3rem;
}
.rv-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.rv-related-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #FFFDF8;
  border: 1px solid #EFE8D9;
  border-radius: 10px;
  color: #1C1B19;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.rv-related-grid a::before {
  content: '→';
  color: #C9A227;
  font-weight: 700;
  transition: transform 0.2s;
}
.rv-related-grid a:hover {
  border-color: #2F6B47;
  box-shadow: 0 2px 12px rgba(201,162,39,0.12);
  color: #2F6B47;
}
.rv-related-grid a:hover::before { transform: translateX(3px); }

/* ─── Image Gallery ─── */
.rv-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 28px 0;
}
.rv-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rv-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 34px rgba(28,27,25,0.13);
}

/* ─── Footer ─── */
.rv-footer {
  background: #1C2B22;
  color: rgba(255,255,255,0.72);
  padding: 48px 0 0;
  position: relative;
}
.rv-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2F6B47, #C9A227, #2F6B47);
}
.rv-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  padding-bottom: 36px;
}
.rv-footer h4 {
  color: #ffffff;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rv-footer a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  padding: 4px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.rv-footer a:hover {
  color: #fff;
  padding-left: 4px;
}
.rv-footer p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 8px; }
.rv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ─── Back to Top ─── */
.rv-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #2F6B47;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 900;
}
.rv-top-btn.visible { opacity: 1; pointer-events: auto; }
.rv-top-btn:hover {
  background: #C9A227;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* ─── Article Content ─── */
.rv-content {
  font-size: 1.1rem;
  line-height: 1.85;
  max-width: 760px;
  margin: 0 auto;
}
.rv-content h1 { font-size: 2rem; margin: 2rem 0 1rem; font-family: 'Fraunces', serif; color: #1C1B19; border-bottom: 2px solid #2F6B4720; padding-bottom: 0.5rem; }
.rv-content h2 { font-size: 1.6rem; margin: 1.8rem 0 0.8rem; font-family: 'Fraunces', serif; color: #1C1B19; }
.rv-content h3 { font-size: 1.3rem; margin: 1.5rem 0 0.6rem; font-family: 'Fraunces', serif; color: #1C1B19; }
.rv-content p { margin-bottom: 1.2rem; color: #2C2A26; }
.rv-content a { color: #2F6B47; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.rv-content a:hover { color: #C9A227; }
.rv-content img { max-width: 100%; height: auto; border-radius: 10px; margin: 1.5rem 0; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.rv-content blockquote {
  border-left: 4px solid #2F6B47;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #2F6B4708;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #6B6458;
}
.rv-content ul, .rv-content ol { margin: 1rem 0 1.2rem 1.5rem; }
.rv-content li { margin-bottom: 0.5rem; }
.rv-content li::marker { color: #2F6B47; }
.rv-content iframe { max-width: 100%; border-radius: 10px; margin: 1.5rem 0; }
.rv-content hr { border: none; height: 1px; background: #E2D8C5; margin: 2rem 0; }
.rv-page-title {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  color: #1C1B19;
  margin-bottom: 1.5rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}
.rv-breadcrumb {
  max-width: 760px;
  margin: 0 auto 1rem;
  font-size: 0.85rem;
  color: #6B6458;
}
.rv-breadcrumb a { color: #2F6B47; text-decoration: none; }
.rv-breadcrumb-sep { margin: 0 0.5rem; opacity: 0.5; }

/* ─── 404 Page ─── */
.rv-404 {
  text-align: center;
  padding: 100px 0;
}
.rv-404 h1 {
  font-size: 6rem;
  color: #2F6B47;
  margin-bottom: 12px;
  opacity: 0.15;
  border: none;
}
.rv-404 p {
  font-size: 1.2rem;
  color: #6B6458;
  margin-bottom: 32px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .rv-header-inner { min-height: 56px; }
  .rv-hamburger { display: block; }
  .rv-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFDF8;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    padding: 8px 0;
    border-radius: 0 0 10px 10px;
  }
  .rv-nav.open { display: flex; }
  .rv-nav-item > a {
    padding: 12px 24px;
    text-align: left;
  }
  .rv-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    min-width: 0;
    background: rgba(0,0,0,0.03);
    border-radius: 0;
    padding: 0;
  }
  .rv-nav-item:hover .rv-dropdown { transform: none; }
  .rv-dropdown a {
    padding-left: 40px;
    color: #1C1B19;
    font-size: 0.85rem;
  }
  .rv-dropdown a:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
    padding-left: 44px;
  }
  .rv-hero { padding: 48px 0; }
  .rv-main { padding: 32px 0 48px; }
  .rv-cards { grid-template-columns: 1fr; }
  .rv-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .rv-gallery { grid-template-columns: repeat(2, 1fr); }
  .rv-related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .rv-footer-grid { grid-template-columns: 1fr; }
  .rv-gallery { grid-template-columns: 1fr; }
  .rv-header-inner { padding: 0 16px; }
  .rv-container, .rv-container-narrow { padding: 0 16px; }
}

/* ─── Print ─── */
@media print {
  .rv-header, .rv-footer, .rv-top-btn, .rv-hamburger { display: none; }
  .rv-main { padding: 0; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}




/* ─── Vegtus — Desert Botanical · efectos signature ─── */

/* Grano de papel cálido sobre toda la página */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Hero display Fraunces en cursiva — editorial premium */
.rv-hero h1 {
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  letter-spacing: -0.015em;
  line-height: 1.05;
}

/* Divisores orgánicos (onda botánica) entre secciones */
.rv-section-divider, .rv-organic-divider {
  border: 0;
  height: 40px;
  margin: 48px auto;
  max-width: 560px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 560 40'%3E%3Cpath d='M0 20 C 90 0, 180 40, 280 20 S 470 0, 560 20' fill='none' stroke='%23C9A227' stroke-width='2' opacity='0.55'/%3E%3Ccircle cx='280' cy='20' r='3.5' fill='%232F6B47'/%3E%3C/svg%3E");
}

/* Eyebrow / etiqueta en ocre con tracking */
.rv-eyebrow, .rv-tag, .rv-badge {
  color: #C9A227;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Tarjetas (producto/categoría) — elevación editorial + borde inferior arena al hover */
.rv-card, .rv-product-card {
  border-bottom: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.rv-card:hover, .rv-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 34px rgba(28,27,25,0.13);
  border-bottom-color: #C9A227;
}

/* Botón primario — verde cactus, texto crema, pill (editorial premium) */
.rv-btn-primary, .rv-cta {
  background: #2F6B47;
  color: #FFFDF8;
  border: 1px solid #2F6B47;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.rv-btn-primary:hover, .rv-cta:hover {
  background: #1F4E32;
  color: #FFFDF8;
  border-color: #1F4E32;
}

/* Enlaces del cuerpo — subrayado ocre fino */
.rv-content a { text-decoration: underline; text-decoration-color: #C9A227; text-underline-offset: 3px; }
.rv-content a:hover { color: #1F4E32; }

/* ── E-commerce: rejilla de productos (image-cards) ── */
.rv-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; margin: 32px 0; }
.rv-product-card { display: flex; flex-direction: column; background: #FFFDF8; border: 1px solid #E2D8C5; border-radius: 10px; overflow: hidden; text-decoration: none; color: #1C1B19; }
.rv-product-card img { width: 100%; aspect-ratio: 1 / 1.1; object-fit: cover; background: #EDE5D4; }
.rv-pc-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1rem; padding: 14px 16px 4px; }
.rv-pc-price { color: #2F6B47; font-weight: 600; padding: 0 16px 16px; }

/* Tarjetas de categoría (home) */
.rv-cat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 32px 0; }
.rv-cat-card { display: flex; flex-direction: column; gap: 4px; padding: 28px 24px; background: #2F6B47; color: #FFFDF8; border-radius: 16px; text-decoration: none; font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600; transition: transform .2s ease, background .2s ease; }
.rv-cat-card:hover { transform: translateY(-3px); background: #1F4E32; color: #FFFDF8; }
.rv-cat-card small { font-family: 'Inter', sans-serif; font-size: .78rem; font-weight: 400; opacity: .82; letter-spacing: .04em; }

/* Producto individual */
.rv-product { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin: 24px 0 8px; }
.rv-product-gallery img { width: 100%; border-radius: 16px; background: #EDE5D4; }
.rv-product-info h1 { margin-top: 0; }
.rv-price { font-family: 'Fraunces', serif; font-size: 1.8rem; color: #2F6B47; font-weight: 700; margin: 8px 0 20px; }
.rv-product-colors { color: #6B6458; font-size: .95rem; }
.rv-product-cta { margin-top: 24px; }
.rv-product-thumbs { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 8px; }
.rv-product-thumbs img { width: 90px; height: 90px; object-fit: cover; border-radius: 4px; border: 1px solid #E2D8C5; }
.rv-cat-intro, .rv-intro p { color: #6B6458; font-size: 1.1rem; max-width: 760px; }
@media (max-width: 640px) { .rv-product { grid-template-columns: 1fr; gap: 24px; } }






