﻿:root {
  --rz-ink: #10141c;
  --rz-muted: #6b7280;
  --rz-line: #ebe6d8;
  --rz-soft: #f7f4ec;
  --rz-card: #ffffff;
  --rz-primary: #c9a227;
  --rz-primary-bright: #d1ac37;
  --rz-primary-deep: #b8922a;
  --rz-danger: #e11d48;
  --rz-danger-deep: #be123c;
  --rz-shadow: 0 10px 30px rgba(16, 20, 28, 0.06);
  --rz-shadow-hover: 0 18px 40px rgba(16, 20, 28, 0.1);
  --rz-radius: 1rem;
  --rz-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --rz-primary-soft: #fbf7eb;
  --rz-primary-soft-border: #ead9a0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--rz-ink);
  background:
    radial-gradient(1200px 500px at 100% -10%, rgba(209, 172, 55, 0.14), transparent 55%),
    radial-gradient(900px 400px at 0% 0%, rgba(184, 146, 42, 0.06), transparent 50%),
    #faf8f3;
}

/* Map leftover emerald utilities to gold brand */
.text-emerald-500,
.text-emerald-600,
.hover\:text-emerald-500:hover,
.hover\:text-emerald-600:hover {
  color: var(--rz-primary-deep) !important;
}
.bg-emerald-50,
.hover\:bg-emerald-50:hover,
.bg-emerald-500\/10 {
  background-color: var(--rz-primary-soft) !important;
}
.border-emerald-200,
.border-emerald-300,
.focus\:border-emerald-500:focus {
  border-color: var(--rz-primary) !important;
}
.focus\:ring-emerald-500:focus,
.focus\:ring-emerald-500\/10:focus {
  --tw-ring-color: rgba(209, 172, 55, 0.25);
}
.bg-emerald-500 {
  background-color: var(--rz-primary) !important;
}

a,
button,
.cursor-pointer {
  cursor: pointer;
}

img {
  max-width: 100%;
}

/* Header */
.rz-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 238, 242, 0.95);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.rz-header__bar {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
}

@media (min-width: 768px) {
  .rz-header__bar {
    padding: 0.85rem 1.25rem;
    gap: 1rem;
  }
}

.rz-header__start {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  min-width: 0;
}

.rz-header__logo {
  display: block;
  flex-shrink: 1;
  min-width: 0;
}

.rz-header__logo img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 120px;
}

@media (min-width: 768px) {
  .rz-header__logo img {
    height: 40px;
    max-width: 160px;
  }
}

.rz-header__menu-btn {
  display: inline-flex;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .rz-header__menu-btn {
    display: none !important;
  }
}

.rz-header__search {
  display: none;
  flex: 1 1 auto;
  max-width: 42rem;
  min-width: 0;
}

@media (min-width: 768px) {
  .rz-header__search {
    display: block;
  }
}

.rz-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-right: auto;
}

@media (min-width: 768px) {
  .rz-header__actions {
    margin-right: 0;
  }
}

.rz-header__account {
  display: none;
  padding-inline: 0.85rem;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .rz-header__account {
    display: inline-flex;
  }
}

.rz-header__mobile {
  display: block;
  border-top: 1px solid #f1f5f9;
}

@media (min-width: 768px) {
  .rz-header__mobile {
    display: none;
  }
}

.rz-header__mobile-search {
  padding: 0.65rem 1rem 0.75rem;
}

.rz-header__nav {
  display: none;
  border-top: 1px solid #f1f5f9;
}

@media (min-width: 768px) {
  .rz-header__nav {
    display: block;
  }
}

.rz-header__nav-inner {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  overflow-x: auto;
  padding: 0.4rem 1rem;
  scrollbar-width: thin;
}

.rz-search {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--rz-soft);
  border: 1px solid transparent;
  border-radius: 0.9rem;
  padding: 0 0.75rem;
  transition: border-color 0.2s var(--rz-ease), box-shadow 0.2s var(--rz-ease), background 0.2s var(--rz-ease);
}

.rz-search:focus-within {
  background: #fff;
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.rz-search input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.7rem 0.4rem;
  color: #334155;
  font-size: 0.875rem;
}

.rz-search input::placeholder {
  color: #94a3b8;
  font-size: 0.8rem;
}

.rz-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 0.85rem;
  border: 1px solid var(--rz-line);
  background: #fff;
  color: #334155;
  position: relative;
  transition: background 0.2s var(--rz-ease), border-color 0.2s var(--rz-ease), color 0.2s var(--rz-ease);
}

.rz-icon-btn:hover {
  background: var(--rz-primary-soft);
  border-color: var(--rz-primary-soft-border);
  color: var(--rz-primary);
}

.rz-nav-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 0.75rem;
  padding: 0.5rem 0.8rem;
  color: #475569;
  font-size: 0.875rem;
  transition: color 0.2s var(--rz-ease), background 0.2s var(--rz-ease);
}

.rz-nav-link:hover {
  color: var(--rz-primary);
  background: var(--rz-primary-soft);
}

.rz-nav-link.is-hot {
  color: var(--rz-danger);
  font-weight: 800;
}

.rz-nav-link.is-hot:hover {
  background: #fff1f2;
  color: var(--rz-danger-deep);
}

.rz-badge {
  position: absolute;
  top: -0.35rem;
  left: -0.35rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rz-primary-bright), var(--rz-primary-deep));
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.35);
}

/* Spacer for fixed header */
.rz-header-spacer {
  height: 8.75rem;
}

@media (min-width: 768px) {
  .rz-header-spacer {
    height: 7.25rem;
  }
}

/* Drawer */
.rz-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.rz-drawer.is-open {
  display: block;
}

.rz-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
}

.rz-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 22rem);
  overflow-y: auto;
  background: #fff;
  padding: 1.15rem;
  box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
  border-radius: 1.15rem 0 0 1.15rem;
}

.rz-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.rz-drawer__head img {
  height: 2rem;
  width: auto;
}

.rz-drawer__links {
  display: grid;
  gap: 0.2rem;
}

.rz-drawer__links a {
  display: block;
  border-radius: 0.85rem;
  padding: 0.8rem 0.85rem;
  font-size: 0.9rem;
  color: #475569;
}

.rz-drawer__links a:hover {
  background: var(--rz-primary-soft);
  color: var(--rz-primary);
}

.rz-drawer__links a.is-hot {
  color: var(--rz-danger);
  font-weight: 800;
}

.rz-drawer__links a.is-hot:hover {
  background: #fff1f2;
}

/* Section */
.rz-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.rz-section-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-size: clamp(1rem, 1.1vw + 0.75rem, 1.25rem);
  font-weight: 800;
  color: var(--rz-ink);
}

.rz-section-title::before {
  content: "";
  width: 0.35rem;
  height: 1.15rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--rz-primary-bright), var(--rz-primary-deep));
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.rz-link-more {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--rz-primary);
  transition: color 0.2s var(--rz-ease), transform 0.2s var(--rz-ease);
}

.rz-link-more:hover {
  color: var(--rz-primary-deep);
  transform: translateX(-2px);
}

/* Categories */
.rz-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 0.6rem;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid var(--rz-line);
  box-shadow: var(--rz-shadow);
  transition: transform 0.25s var(--rz-ease), box-shadow 0.25s var(--rz-ease), border-color 0.25s var(--rz-ease);
}

.rz-cat:hover {
  transform: translateY(-4px);
  border-color: var(--rz-primary-soft-border);
  box-shadow: var(--rz-shadow-hover);
}

.rz-cat img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  transition: transform 0.3s var(--rz-ease);
}

.rz-cat:hover img {
  transform: scale(1.08);
}

/* Product card */
.rz-product {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.85rem;
  border-radius: 1.15rem;
  background: var(--rz-card);
  border: 1px solid var(--rz-line);
  box-shadow: var(--rz-shadow);
  overflow: hidden;
  transition: transform 0.25s var(--rz-ease), box-shadow 0.25s var(--rz-ease), border-color 0.25s var(--rz-ease);
}

.rz-product:hover {
  transform: translateY(-5px);
  border-color: var(--rz-primary-soft-border);
  box-shadow: var(--rz-shadow-hover);
}

.rz-product__media {
  position: relative;
  margin-bottom: 0.85rem;
  border-radius: 0.9rem;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.rz-product__media img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.45s var(--rz-ease);
}

.rz-product:hover .rz-product__media img {
  transform: scale(1.06);
}

.rz-product__badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(225, 29, 72, 0.28);
}

.rz-product__title {
  min-height: 2.6rem;
  margin: 0;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rz-product__price {
  margin-top: auto;
  padding-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.25rem;
}

.rz-product__price strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--rz-ink);
}

.rz-product__price span {
  font-size: 0.72rem;
  color: var(--rz-muted);
}

.rz-product__old {
  width: 100%;
  text-align: left;
  font-size: 0.72rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.rz-product__out {
  color: var(--rz-danger);
  font-size: 0.875rem;
  font-weight: 800;
}

.rz-product__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  text-align: right;
}

/* Products listing */
.rz-shop {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 0.85rem 5.5rem;
}

@media (min-width: 768px) {
  .rz-shop {
    padding: 0 1.25rem 2.75rem;
  }
}

.rz-shop__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  color: #a1a1aa;
}

.rz-shop__crumb a {
  color: #71717a;
  text-decoration: none;
}

.rz-shop__crumb a:hover {
  color: var(--rz-primary-deep);
}

.rz-shop__hero {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1rem;
  padding: 1.15rem 1.15rem 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid var(--rz-line);
  background:
    linear-gradient(135deg, rgba(209, 172, 55, 0.14), transparent 42%),
    linear-gradient(180deg, #fff, #faf8f3);
  box-shadow: var(--rz-shadow);
}

@media (min-width: 900px) {
  .rz-shop__hero {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.35rem 1.5rem;
  }
}

.rz-shop__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--rz-primary-deep);
}

.rz-shop__hero h1 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #18181b;
}

@media (min-width: 768px) {
  .rz-shop__hero h1 {
    font-size: 1.45rem;
  }
}

.rz-shop__count {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: #71717a;
}

.rz-shop__count strong {
  color: #3f3f46;
  font-weight: 800;
}

.rz-shop__filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  width: 100%;
}

@media (min-width: 640px) {
  .rz-shop__filters {
    grid-template-columns: 1fr 1fr;
    max-width: 28rem;
  }
}

.rz-shop__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #71717a;
}

.rz-shop__field select {
  width: 100%;
  border: 1px solid #e4e4e7;
  border-radius: 0.85rem;
  background: #fff;
  padding: 0.75rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #3f3f46;
  font-family: inherit;
  outline: none;
  cursor: pointer;
}

.rz-shop__field select:focus {
  border-color: var(--rz-primary);
  box-shadow: 0 0 0 3px rgba(209, 172, 55, 0.18);
}

.rz-shop__chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.rz-shop__chips::-webkit-scrollbar {
  display: none;
}

.rz-shop__chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #ebe6d8;
  background: #fff;
  color: #52525b;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.2s var(--rz-ease);
}

.rz-shop__chip:hover {
  border-color: var(--rz-primary-soft-border);
  background: var(--rz-primary-soft);
  color: var(--rz-primary-deep);
}

.rz-shop__chip.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #d1ac37, #c9a227);
  color: #1a1a1a;
  box-shadow: 0 8px 18px rgba(201, 162, 39, 0.28);
}

.rz-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .rz-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
  }
}

@media (min-width: 1024px) {
  .rz-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1280px) {
  .rz-products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.rz-shop__empty {
  text-align: center;
  padding: 3rem 1.25rem;
  border: 1px dashed #e4e4e7;
  border-radius: 1.25rem;
  background: #fff;
}

.rz-shop__empty-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--rz-primary-soft);
  color: var(--rz-primary-deep);
  font-size: 1.35rem;
}

.rz-shop__empty strong {
  display: block;
  font-size: 1rem;
  color: #27272a;
}

.rz-shop__empty p {
  margin: 0.4rem 0 1rem;
  color: #a1a1aa;
  font-size: 0.85rem;
}

.rz-shop__empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #d1ac37, #c9a227);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
}

.rz-shop__pager {
  margin-top: 1.75rem;
}

.rz-shop__pager .my-paginate {
  margin-top: 0;
}

.rz-shop__pager .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rz-shop__pager .page-item {
  list-style: none;
}

.rz-shop__pager .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.65rem;
  border-radius: 0.75rem !important;
  border: 1px solid #ebe6d8;
  background: #fff;
  color: #52525b;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s var(--rz-ease);
}

.rz-shop__pager .page-item.active .page-link,
.rz-shop__pager .page-link:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #d1ac37, #c9a227);
  color: #1a1a1a;
}

.rz-shop__pager .page-item.disabled .page-link {
  opacity: 0.45;
  pointer-events: none;
}

/* Amazing strip */
.rz-amazing {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  background:
    radial-gradient(800px 220px at 10% 0%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(120deg, #e11d48 0%, #f43f5e 45%, #fb7185 100%);
  box-shadow: 0 18px 40px rgba(225, 29, 72, 0.22);
}

.rz-amazing .card.swiper-slide {
  border-radius: 1rem !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

/* Selling / blog tiles */
.rz-tile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--rz-line);
  transition: border-color 0.2s var(--rz-ease), background 0.2s var(--rz-ease), transform 0.2s var(--rz-ease);
}

.rz-tile:hover {
  border-color: var(--rz-primary-soft-border);
  background: var(--rz-primary-soft);
  transform: translateY(-2px);
}

.rz-blog {
  overflow: hidden;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid var(--rz-line);
  box-shadow: var(--rz-shadow);
  transition: transform 0.25s var(--rz-ease), box-shadow 0.25s var(--rz-ease);
}

.rz-blog:hover {
  transform: translateY(-4px);
  box-shadow: var(--rz-shadow-hover);
}

.rz-blog img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--rz-ease);
}

.rz-blog:hover img {
  transform: scale(1.04);
}

/* Footer */
.rz-footer {
  margin-top: 2.5rem;
  background: #fff;
  border-top: 1px solid var(--rz-line);
}

.rz-footer__inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 2rem 1rem 5.5rem;
}

@media (min-width: 768px) {
  .rz-footer__inner {
    padding: 2.25rem 1.5rem 2rem;
  }
}

.rz-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rz-footer__phone {
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: #52525b;
}

.rz-footer__phone a {
  margin-right: 0.25rem;
  font-weight: 800;
  color: #27272a;
}

.rz-footer__phone a:hover {
  color: var(--rz-primary);
}

.rz-footer__meta {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #71717a;
}

.rz-footer__top-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #e4e4e7;
  border-radius: 0.65rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  color: #71717a;
  background: #fff;
  transition: 0.2s var(--rz-ease);
}

.rz-footer__top-btn:hover {
  border-color: var(--rz-primary-soft-border);
  background: var(--rz-primary-soft);
  color: var(--rz-primary-deep);
}

.rz-footer__services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.75rem 0 1.5rem;
}

@media (min-width: 640px) {
  .rz-footer__services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .rz-footer__services {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.rz-footer__service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 5.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: 1rem;
  background: #fafafa;
  border: 1px solid #f4f4f5;
  text-align: center;
}

.rz-footer__service img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}

.rz-footer__service span {
  font-size: 0.75rem;
  color: #52525b;
  line-height: 1.4;
}

.rz-footer__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1rem;
  padding: 1.25rem 0 0.5rem;
  border-top: 1px solid #f4f4f5;
}

@media (min-width: 1024px) {
  .rz-footer__cols {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

.rz-footer__cols h4 {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #3f3f46;
}

.rz-footer__cols ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rz-footer__cols a,
.rz-footer__cols span {
  font-size: 0.8rem;
  color: #71717a;
  line-height: 1.5;
  transition: color 0.2s var(--rz-ease);
}

.rz-footer__cols a:hover {
  color: var(--rz-primary);
}

.rz-footer__social {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.rz-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  color: #52525b;
  background: #f4f4f5;
  transition: 0.2s var(--rz-ease);
}

.rz-footer__social a:hover {
  background: var(--rz-primary-soft);
  color: var(--rz-primary);
}

.rz-footer__about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0 1rem;
  border-top: 1px solid #f4f4f5;
}

@media (min-width: 1024px) {
  .rz-footer__about {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.rz-footer__about h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #3f3f46;
}

.rz-footer__about p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.85;
  color: #71717a;
}

.rz-footer__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.rz-footer__badges img {
  width: 5.5rem;
  height: auto;
}

.rz-footer__copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f4f4f5;
  font-size: 0.75rem;
  color: #a1a1aa;
  text-align: center;
}

@media (min-width: 640px) {
  .rz-footer__copy {
    grid-template-columns: 1fr 1fr;
    text-align: right;
  }
  .rz-footer__copy span:last-child {
    text-align: left;
  }
}

.rz-footer__copy a {
  font-weight: 700;
  color: var(--rz-primary);
}

.rz-mobile-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--rz-line);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.06);
}

.rz-mobile-nav a {
  color: #64748b;
  transition: color 0.2s var(--rz-ease);
}

.rz-mobile-nav a.is-active,
.rz-mobile-nav a:hover {
  color: var(--rz-primary);
}

/* Hero polish */
.rz-hero {
  overflow: hidden;
}

.heroSlider {
  overflow: hidden;
  border-radius: 0 0 1.25rem 1.25rem;
}

@media (max-width: 767px) {
  .heroSlider {
    margin: 0.35rem 0.85rem 0;
    border-radius: 1rem;
  }
}

.heroSlider picture,
.heroSlider img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .heroSlider img {
    box-shadow: var(--rz-shadow);
  }
}

.heroSlider .swiper-pagination-bullet-active {
  background: var(--rz-primary-bright) !important;
}

.heroSlider .swiper-button-next,
.heroSlider .swiper-button-prev {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rz-ink);
  box-shadow: var(--rz-shadow);
}

@media (max-width: 767px) {
  .heroSlider .swiper-button-next,
  .heroSlider .swiper-button-prev {
    display: none;
  }
}

.heroSlider .swiper-button-next::after,
.heroSlider .swiper-button-prev::after {
  font-size: 0.85rem;
  font-weight: 800;
}

/* Prevent "loading / stacking" flash before Swiper JS */
.heroSlider:not(.swiper-initialized),
.product-slider1:not(.swiper-initialized),
.product-slider2:not(.swiper-initialized),
.mySwiper:not(.swiper-initialized),
.blog-slider:not(.swiper-initialized) {
  overflow: hidden;
}

.heroSlider:not(.swiper-initialized) .swiper-wrapper,
.product-slider1:not(.swiper-initialized) .swiper-wrapper,
.product-slider2:not(.swiper-initialized) .swiper-wrapper,
.mySwiper:not(.swiper-initialized) .swiper-wrapper,
.blog-slider:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.heroSlider:not(.swiper-initialized) .swiper-slide {
  width: 100%;
  flex-shrink: 0;
}

.heroSlider:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}

.product-slider1:not(.swiper-initialized) .swiper-slide,
.product-slider2:not(.swiper-initialized) .swiper-slide,
.blog-slider:not(.swiper-initialized) .swiper-slide {
  width: 42%;
  max-width: 12.5rem;
  flex-shrink: 0;
  height: auto;
}

@media (min-width: 640px) {
  .product-slider1:not(.swiper-initialized) .swiper-slide,
  .product-slider2:not(.swiper-initialized) .swiper-slide,
  .blog-slider:not(.swiper-initialized) .swiper-slide {
    width: 28%;
  }
}

@media (min-width: 1024px) {
  .product-slider1:not(.swiper-initialized) .swiper-slide,
  .product-slider2:not(.swiper-initialized) .swiper-slide,
  .blog-slider:not(.swiper-initialized) .swiper-slide {
    width: 22%;
  }
}

.mySwiper:not(.swiper-initialized) .swiper-slide {
  width: 38%;
  max-width: 9rem;
  flex-shrink: 0;
}

.rz-cat img,
.rz-blog img,
.rz-tile img {
  background: #f4f4f5;
}

/* Product page (PDP) */
.rz-pdp {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 0.85rem 5.5rem;
}

@media (min-width: 768px) {
  .rz-pdp {
    padding: 0 1.25rem 2.5rem;
  }
}

.rz-pdp__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: #71717a;
}

.rz-pdp__crumbs a:hover {
  color: var(--rz-primary-deep);
}

.rz-pdp__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .rz-pdp__layout {
    grid-template-columns: 1.1fr 1fr 0.85fr;
    gap: 1.5rem;
    align-items: start;
  }
}

.rz-pdp__card {
  background: #fff;
  border: 1px solid #ebe6d8;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--rz-shadow);
}

.rz-pdp__gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border-radius: 0.85rem;
  overflow: hidden;
}

.rz-pdp__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rz-pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.rz-pdp__thumb {
  border: 2px solid transparent;
  border-radius: 0.65rem;
  overflow: hidden;
  background: #f8f8f8;
  cursor: pointer;
  opacity: 0.55;
  transition: 0.2s var(--rz-ease);
  padding: 0;
}

.rz-pdp__thumb.is-active,
.rz-pdp__thumb:hover {
  opacity: 1;
  border-color: var(--rz-primary);
}

.rz-pdp__thumb img {
  display: block;
  width: 100%;
  height: 4.5rem;
  object-fit: contain;
}

.rz-pdp__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.05rem, 1vw + 0.85rem, 1.4rem);
  font-weight: 800;
  line-height: 1.7;
  color: #27272a;
}

.rz-pdp__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.rz-pdp__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.rz-pdp__badge--ok {
  background: var(--rz-primary-soft);
  color: var(--rz-primary-deep);
}

.rz-pdp__badge--off {
  background: #fff1f2;
  color: #e11d48;
}

.rz-pdp__badge--mute {
  background: #f4f4f5;
  color: #71717a;
}

.rz-pdp__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1rem 0 0.5rem;
}

@media (min-width: 640px) {
  .rz-pdp__features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.rz-pdp__feature {
  background: #f7f4ec;
  border-radius: 0.65rem;
  padding: 0.7rem 0.65rem;
}

.rz-pdp__feature small {
  display: block;
  font-size: 0.7rem;
  color: #71717a;
  margin-bottom: 0.25rem;
}

.rz-pdp__feature strong {
  font-size: 0.82rem;
  color: #3f3f46;
  font-weight: 700;
}

.rz-pdp__buy {
  position: sticky;
  top: 8rem;
}

.rz-pdp__label {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #3f3f46;
}

.rz-pdp__select {
  width: 100%;
  border: 1px solid #e4e4e7;
  border-radius: 0.65rem;
  background: #fafafa;
  padding: 0.8rem 0.9rem;
  font-size: 0.875rem;
  color: #3f3f46;
  outline: none;
  margin-bottom: 0.85rem;
  font-family: inherit;
}

.rz-pdp__select:focus {
  border-color: var(--rz-primary);
  box-shadow: 0 0 0 3px rgba(209, 172, 55, 0.18);
}

.rz-pdp__price-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0.85rem 0 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #f4f4f5;
}

.rz-pdp__price-old {
  font-size: 0.8rem;
  color: #a1a1aa;
  text-decoration: line-through;
}

.rz-pdp__price-new {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--rz-primary-deep);
}

.rz-pdp__btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.7rem;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: #1a1a1a;
  background: linear-gradient(135deg, #d1ac37, #c9a227);
  cursor: pointer;
  font-family: inherit;
  transition: filter 0.2s ease;
}

.rz-pdp__btn:hover {
  filter: brightness(0.96);
}

.rz-pdp__mobile-buy {
  position: fixed;
  inset: auto 0 3.6rem 0;
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #ebe6d8;
  box-shadow: 0 -8px 24px rgba(16, 20, 28, 0.08);
  padding: 0.65rem 0.85rem;
}

@media (min-width: 1024px) {
  .rz-pdp__mobile-buy {
    display: none;
  }
}

.rz-pdp__mobile-buy .rz-pdp__btn {
  flex: 1;
}

.rz-pdp__desc {
  margin-top: 1.5rem;
}

.rz-pdp__desc h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.rz-pdp__desc-short {
  color: #71717a;
  line-height: 1.9;
  margin-bottom: 0.75rem;
}

.rz-pdp__desc-body {
  color: #52525b;
  line-height: 1.95;
  overflow-wrap: anywhere;
}

.rz-pdp__desc-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.rz-pdp__related {
  margin-top: 2rem;
}

.rz-pdp__related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rz-pdp__related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .rz-pdp__related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .rz-pdp__related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .rz-pdp__related-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.btn-primary {
  background: linear-gradient(135deg, #d1ac37, #c9a227) !important;
  color: #1a1a1a !important;
}

.btn-primary-nobg {
  color: var(--rz-primary-deep) !important;
}

/* Cart page */
.rz-cart {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 0.85rem 5.5rem;
}

@media (min-width: 768px) {
  .rz-cart {
    padding: 0 1.25rem 2.5rem;
  }
}

.rz-cart__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.rz-cart__head h1 {
  margin: 0;
}

.rz-cart__count {
  font-size: 0.8rem;
  color: #71717a;
}

.rz-cart__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .rz-cart__layout {
    grid-template-columns: minmax(0, 1fr) 22rem;
    align-items: start;
  }
}

.rz-cart__list {
  display: grid;
  gap: 0.85rem;
}

.rz-cart__item {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.85rem;
  background: #fff;
  border: 1px solid #ebe6d8;
  border-radius: 1.1rem;
  padding: 0.9rem;
  box-shadow: var(--rz-shadow);
}

@media (min-width: 640px) {
  .rz-cart__item {
    grid-template-columns: 7rem minmax(0, 1fr) auto;
    gap: 1rem;
    padding: 1.1rem;
  }
}

.rz-cart__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, #fbf7eb, #f4f4f5);
  overflow: hidden;
}

@media (min-width: 640px) {
  .rz-cart__img {
    width: 7rem;
    height: 7rem;
  }
}

.rz-cart__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rz-cart__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.7;
  color: #27272a;
}

.rz-cart__name a:hover {
  color: var(--rz-primary-deep);
}

.rz-cart__attrs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.rz-cart__attr {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f7f4ec;
  color: #71717a;
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
}

.rz-cart__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.rz-cart__qty {
  display: inline-flex;
  align-items: center;
  height: 2.5rem;
  border: 1px solid #e4e4e7;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.rz-cart__qty button {
  width: 2.4rem;
  height: 100%;
  border: 0;
  background: transparent;
  color: #3f3f46;
  font-size: 1.1rem;
  cursor: pointer;
}

.rz-cart__qty button:hover {
  background: var(--rz-primary-soft);
  color: var(--rz-primary-deep);
}

.rz-cart__qty input {
  width: 2.4rem;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 800;
  color: #27272a;
  outline: none;
}

.rz-cart__price {
  text-align: left;
}

@media (min-width: 640px) {
  .rz-cart__price {
    text-align: right;
    min-width: 8rem;
    align-self: center;
  }
}

.rz-cart__price-old {
  font-size: 0.75rem;
  color: #a1a1aa;
  text-decoration: line-through;
}

.rz-cart__price-new {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--rz-primary-deep);
}

.rz-cart__price-new span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #71717a;
}

.rz-cart__summary {
  position: sticky;
  top: 8rem;
  background: #fff;
  border: 1px solid #ebe6d8;
  border-radius: 1.15rem;
  padding: 1.15rem;
  box-shadow: var(--rz-shadow);
}

.rz-cart__summary h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: #27272a;
}

.rz-cart__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: #71717a;
}

.rz-cart__line strong {
  color: #3f3f46;
  font-weight: 700;
}

.rz-cart__line--discount strong {
  color: #e11d48;
}

.rz-cart__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 1rem 0 1.15rem;
  padding-top: 0.9rem;
  border-top: 1px dashed #ead9a0;
}

.rz-cart__total span {
  font-weight: 800;
  color: #27272a;
}

.rz-cart__total strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--rz-primary-deep);
}

.rz-cart__cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: #1a1a1a;
  background: linear-gradient(135deg, #d1ac37, #c9a227);
  text-decoration: none;
  transition: filter 0.2s ease;
}

.rz-cart__cta:hover {
  filter: brightness(0.96);
  color: #1a1a1a;
}

.rz-cart__hint {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  line-height: 1.7;
  color: #a1a1aa;
  text-align: center;
}

.rz-cart__empty {
  background: #fff;
  border: 1px solid #ebe6d8;
  border-radius: 1.25rem;
  padding: 3rem 1.25rem;
  text-align: center;
  box-shadow: var(--rz-shadow);
}

.rz-cart__empty-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--rz-primary-soft);
  color: var(--rz-primary-deep);
  font-size: 1.8rem;
}

.rz-cart__empty h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.rz-cart__empty p {
  margin: 0 0 1.25rem;
  color: #71717a;
  font-size: 0.9rem;
}

.rz-cart__empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  padding: 0.85rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: #1a1a1a;
  background: linear-gradient(135deg, #d1ac37, #c9a227);
  text-decoration: none;
}

/* Checkout / completion */
.rz-check {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 0.85rem 5.5rem;
}

@media (min-width: 768px) {
  .rz-check {
    padding: 0 1.25rem 2.5rem;
  }
}

.rz-check__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.rz-check__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 0.5rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid #ebe6d8;
  color: #71717a;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.rz-check__step i {
  font-size: 1.15rem;
}

.rz-check__step.is-active {
  background: var(--rz-primary-soft);
  border-color: var(--rz-primary-soft-border);
  color: var(--rz-primary-deep);
}

.rz-check__step.is-muted {
  opacity: 0.65;
}

.rz-check__head {
  margin-bottom: 1rem;
}

.rz-check__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .rz-check__layout {
    grid-template-columns: minmax(0, 1fr) 22rem;
    align-items: start;
  }
}

.rz-check__card {
  background: #fff;
  border: 1px solid #ebe6d8;
  border-radius: 1.15rem;
  padding: 1.15rem;
  box-shadow: var(--rz-shadow);
}

.rz-check__card-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: #27272a;
}

.rz-check__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .rz-check__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.rz-check__field--full {
  grid-column: 1 / -1;
}

.rz-check__field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #3f3f46;
}

.rz-check__field label span {
  color: #e11d48;
}

.rz-check__field input,
.rz-check__field textarea,
.rz-check__field select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e4e4e7;
  border-radius: 0.75rem;
  background: #fafafa;
  padding: 0.8rem 0.9rem;
  font-size: 0.875rem;
  color: #27272a;
  outline: none;
  font-family: inherit;
}

.rz-check__field input:focus,
.rz-check__field textarea:focus {
  border-color: var(--rz-primary);
  box-shadow: 0 0 0 3px rgba(209, 172, 55, 0.18);
  background: #fff;
}

.rz-check__field input:disabled {
  color: #71717a;
  background: #f4f4f5;
}

.rz-check__summary {
  position: sticky;
  top: 8rem;
}

.rz-check__pay-method {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  padding: 0.85rem;
  border-radius: 0.85rem;
  background: var(--rz-primary-soft);
  border: 1px solid var(--rz-primary-soft-border);
}

.rz-check__pay-method i {
  font-size: 1.4rem;
  color: var(--rz-primary-deep);
}

.rz-check__pay-method strong {
  display: block;
  font-size: 0.875rem;
  color: #27272a;
}

.rz-check__pay-method small {
  color: #71717a;
  font-size: 0.72rem;
}

.rz-check__ship {
  margin-bottom: 1rem;
}

.rz-check__ship h3 {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: #3f3f46;
}

.rz-check__ship-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid #ebe6d8;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.rz-check__ship-item:has(input:checked) {
  border-color: var(--rz-primary);
  background: var(--rz-primary-soft);
}

.rz-check__ship-item input {
  margin-top: 0.2rem;
  accent-color: var(--rz-primary-deep);
}

.rz-check__ship-item strong {
  display: block;
  font-size: 0.82rem;
  color: #27272a;
}

.rz-check__ship-item small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: #71717a;
}

.rz-check__empty-ship {
  margin: 0;
  font-size: 0.8rem;
  color: #a1a1aa;
}

.rz-check__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  font-size: 0.85rem;
  color: #71717a;
}

.rz-check__line strong {
  color: #3f3f46;
  font-weight: 700;
}

.rz-check__line--discount strong {
  color: #e11d48;
}

.rz-check__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.9rem 0 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px dashed #ead9a0;
}

.rz-check__total span {
  font-weight: 800;
  color: #27272a;
}

.rz-check__total strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--rz-primary-deep);
}

.rz-check__cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: #1a1a1a;
  background: linear-gradient(135deg, #d1ac37, #c9a227);
  cursor: pointer;
  font-family: inherit;
}

.rz-check__cta:hover {
  filter: brightness(0.96);
}

.rz-check__back {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #71717a;
  text-decoration: none;
}

.rz-check__back:hover {
  color: var(--rz-primary-deep);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .rz-cat,
  .rz-product,
  .rz-blog,
  .rz-tile,
  .rz-cat img,
  .rz-product__media img,
  .rz-blog img {
    transition: none !important;
  }
  .rz-cat:hover,
  .rz-product:hover,
  .rz-blog:hover,
  .rz-tile:hover {
    transform: none;
  }
}

