/* ═══════════════════════════════════════════════════════════════
   801 RESELLZ — main.css  v1.0.0
   Mobile-first · CSS Variables · WooCommerce included
═══════════════════════════════════════════════════════════════ */

/* ── 0. CSS RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* ── 1. CSS VARIABLES (defaults — overridden by customizer) ── */
:root {
  --rz-primary: #D94A1A;
  --rz-secondary: #E8861A;
  --rz-green: #25B86A;
  --rz-blue: #2472C8;
  --rz-purple: #8A35BB;
  --rz-bg: #2A1E17;
  --rz-surface: #1A120D;
  --rz-brick: #3D2518;
  --rz-text: #EFE0D0;
  --rz-muted: #A09080;
  --rz-rainbow: linear-gradient(90deg, #D94A1A, #E8861A, #25B86A, #2472C8, #8A35BB, #D94A1A);
  --rz-radius: 8px;
  --rz-radius-lg: 14px;
  --rz-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --rz-transition: 0.2s ease;
  --rz-max-width: 1240px;
  --rz-header-h: 80px;

  /* Typography variables - controlled by customizer */
  --rz-font-body: 'Inter', sans-serif;
  --rz-font-heading: 'DM Sans', sans-serif;
  --rz-font-display: 'Bebas Neue', sans-serif;
}

/* ── 2. BASE ── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--rz-bg);
  color: var(--rz-text);
  font-family: var(--rz-font-body);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
}

/* ── 3. BRICK TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 26px, rgba(0, 0, 0, .18) 26px, rgba(0, 0, 0, .18) 28px),
    repeating-linear-gradient(90deg, transparent, transparent 58px, rgba(0, 0, 0, .10) 58px, rgba(0, 0, 0, .10) 60px),
    repeating-linear-gradient(0deg, transparent, transparent 54px, rgba(255, 255, 255, .025) 54px, rgba(255, 255, 255, .025) 56px);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 58px, rgba(0, 0, 0, .09) 58px, rgba(0, 0, 0, .09) 60px);
  background-position: 30px 28px;
  background-size: 60px 56px;
  pointer-events: none;
  z-index: 0;
}

body>* {
  position: relative;
  z-index: 1;
}

/* ── 4. CONTAINER ── */
.rz-container {
  width: 100%;
  max-width: var(--rz-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── 5. NOTICE BAR ── */
/* ── 5. NOTICE BAR ── */
.rz-notice-bar {
  background: var(--rz-surface);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 9px 20px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--rz-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  position: relative;
}

.rz-notice-bar--scroll {
  justify-content: flex-start;
  gap: 0;
}

.rz-notice-bar--scroll .rz-notice-text {
  animation: rz-scroll 20s linear infinite;
  white-space: nowrap;
  padding-right: 60px;
}

.rz-notice-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rz-green);
  flex-shrink: 0;
  animation: rz-pulse 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.rz-notice-text {
  white-space: nowrap;
}

@keyframes rz-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── 6. RAINBOW STRIPE ── */
.rz-rainbow-stripe {
  height: 3px;
  background: var(--rz-rainbow);
  background-size: 200% 100%;
  animation: rz-rainbow-shift 4s linear infinite;
}

/* ── 7. HEADER ── */
.rz-header {
  background: rgba(26, 18, 13, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  z-index: 100;
}

.rz-header--sticky {
  position: sticky;
  top: 0;
}

.rz-header-inner {
  max-width: var(--rz-max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--rz-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.rz-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.rz-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .08);
  flex-shrink: 0;
}

.rz-logo-initial {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--rz-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rz-font-display);
  font-size: 28px;
  color: var(--rz-text);
  flex-shrink: 0;
}

.rz-logo-text-block {
  line-height: 1;
  min-width: 0;
}

.rz-logo-name {
  font-family: var(--rz-font-display);
  font-size: clamp(22px, 4vw, 32px);
  letter-spacing: .04em;
  background: var(--rz-rainbow);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rz-rainbow-shift 6s linear infinite;
  white-space: nowrap;
}

.rz-logo-sub {
  display: block;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rz-muted);
  margin-top: 3px;
  white-space: nowrap;
}

/* Header right */
.rz-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* Primary nav */
.rz-primary-nav {
  display: none;
}

.rz-nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rz-nav-list li a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--rz-muted);
  border-radius: var(--rz-radius);
  transition: color var(--rz-transition), background var(--rz-transition);
  white-space: nowrap;
}

.rz-nav-list li a:hover,
.rz-nav-list li.current-menu-item>a,
.rz-nav-list li.current_page_item>a {
  color: var(--rz-text);
  background: rgba(255, 255, 255, .06);
}

/* Cart icon */
.rz-cart-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rz-muted);
  border-radius: var(--rz-radius);
  transition: color var(--rz-transition), background var(--rz-transition);
  min-width: 44px;
  /* tap target */
}

.rz-cart-icon:hover {
  color: var(--rz-text);
  background: rgba(255, 255, 255, .06);
}

.rz-cart-count {
  position: absolute;
  top: 5px;
  right: 5px;
  min-width: 18px;
  height: 18px;
  background: var(--rz-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

.rz-cart-count:empty,
.rz-cart-count[data-count="0"] {
  display: none;
}

/* Hamburger */
.rz-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--rz-radius);
  cursor: pointer;
  transition: border-color var(--rz-transition);
}

.rz-hamburger:hover {
  border-color: rgba(255, 255, 255, .25);
}

.rz-ham-line {
  width: 20px;
  height: 2px;
  background: var(--rz-text);
  border-radius: 2px;
  transition: transform var(--rz-transition), opacity var(--rz-transition);
}

.rz-hamburger[aria-expanded="true"] .rz-ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.rz-hamburger[aria-expanded="true"] .rz-ham-line:nth-child(2) {
  opacity: 0;
}

.rz-hamburger[aria-expanded="true"] .rz-ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.rz-mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 199;
  backdrop-filter: blur(4px);
}

.rz-mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: min(320px, 90vw);
  height: 100dvh;
  background: var(--rz-surface);
  border-left: 1px solid rgba(255, 255, 255, .07);
  z-index: 200;
  padding: 24px;
  transition: right .3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rz-mobile-nav.open,
.rz-mobile-nav-overlay.open {
  display: flex;
  right: 0;
}

.rz-mobile-nav-overlay.open {
  display: block;
}

.rz-mobile-nav-close {
  align-self: flex-end;
  background: rgba(255, 255, 255, .07);
  border: none;
  color: var(--rz-text);
  font-size: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.rz-mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rz-mobile-nav-list li a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  border-radius: var(--rz-radius);
  color: var(--rz-text);
  transition: background var(--rz-transition);
}

.rz-mobile-nav-list li a:hover {
  background: rgba(255, 255, 255, .07);
}

.rz-mobile-nav-cart {
  margin-top: auto;
}

/* ── 8. BUTTONS ── */
.rz-btn-primary,
button.rz-btn-primary,
a.rz-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--rz-primary);
  color: var(--rz-text) !important;
  border: none;
  border-radius: var(--rz-radius);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--rz-transition), transform .15s;
  white-space: nowrap;
  min-height: 48px;
  /* mobile tap target */
}

.rz-btn-primary:hover {
  background: #c0390e;
  transform: translateY(-2px);
}

.rz-btn-primary:active {
  transform: translateY(0);
}

.rz-btn-full {
  width: 100%;
}

.rz-btn-ghost,
a.rz-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--rz-text) !important;
  border: 1px solid rgba(239, 224, 208, .2);
  border-radius: var(--rz-radius);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: border-color var(--rz-transition), transform .15s;
  white-space: nowrap;
  min-height: 48px;
}

.rz-btn-ghost:hover {
  border-color: rgba(239, 224, 208, .5);
  transform: translateY(-2px);
}

.rz-btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rz-primary);
  color: var(--rz-text);
  border: none;
  border-radius: var(--rz-radius);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--rz-transition), transform .15s;
  white-space: nowrap;
  min-height: 44px;
  flex-shrink: 0;
}

.rz-btn-buy:hover {
  background: #c0390e;
  transform: translateY(-2px);
}

/* ── 9. HERO ── */
.rz-hero {
  padding: clamp(60px, 10vw, 110px) 24px clamp(50px, 8vw, 90px);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.rz-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 74, 26, .15);
  border: 1px solid rgba(217, 74, 26, .35);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rz-secondary);
  margin-bottom: 28px;
  animation: rz-fade-up .6s ease both;
}

.rz-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rz-primary);
  animation: rz-pulse 2s ease-in-out infinite;
}

.rz-hero-title {
  font-family: var(--rz-font-display);
  font-size: clamp(54px, 12vw, 100px);
  line-height: .92;
  letter-spacing: .02em;
  color: var(--rz-text);
  animation: rz-fade-up .7s ease .1s both;
}

.rz-hero-title .highlight {
  background: var(--rz-rainbow);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rz-rainbow-shift 5s linear infinite;
}

.rz-hero-sub {
  margin: 22px auto 0;
  max-width: 500px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--rz-muted);
  animation: rz-fade-up .7s ease .2s both;
}

.rz-hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  animation: rz-fade-up .7s ease .3s both;
}

/* ── 10. TRUST BAR ── */
.rz-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding: 24px 20px;
  background: rgba(0, 0, 0, .2);
  border-top: 1px solid rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.rz-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--rz-muted);
  white-space: nowrap;
}

.rz-trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* ── 11. SECTION DIVIDER ── */
.rz-section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 48px 0 36px;
}

.rz-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .08);
}

.rz-divider-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rz-muted);
  padding: 0 4px;
}

/* ── 12. PRODUCT GRID ── */
.rz-products-section {
  padding: 0 20px 80px;
}

.rz-products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  max-width: var(--rz-max-width);
  margin: 0 auto;
}

.rz-cols-2 {
  grid-template-columns: repeat(1, 1fr);
}

.rz-cols-3 {
  grid-template-columns: repeat(1, 1fr);
}

/* mobile: 1 col */
.rz-cols-4 {
  grid-template-columns: repeat(1, 1fr);
}

/* ── 13. PRODUCT CARD ── */
.rz-product-card {
  background: rgba(26, 18, 13, .7);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--rz-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--rz-transition), transform var(--rz-transition), box-shadow var(--rz-transition);
  position: relative;
}

.rz-product-card:hover {
  border-color: rgba(255, 255, 255, .18);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
}

/* Card Image */
.rz-card-image-link {
  display: block;
}

.rz-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(26, 18, 13, .5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rz-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.rz-product-card:hover .rz-card-image img {
  transform: scale(1.04);
}

.rz-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 18, 13, 1) 0%, rgba(30, 20, 15, 1) 100%);
}

/* Card Badge */
.rz-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
}

.rz-badge-hot {
  background: var(--rz-primary);
  color: #fff;
}

.rz-badge-new {
  background: var(--rz-green);
  color: #fff;
}

.rz-badge-top {
  background: var(--rz-blue);
  color: #fff;
}

.rz-badge-vip {
  background: var(--rz-purple);
  color: #fff;
}

.rz-badge-best {
  background: var(--rz-secondary);
  color: #fff;
}

.rz-badge--lg {
  font-size: 12px;
  padding: 6px 14px;
  top: 16px;
  right: 16px;
}

/* Card Body */
.rz-card-body {
  padding: 16px 16px 8px;
  flex: 1;
}

.rz-card-category {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rz-muted);
  margin-bottom: 6px;
}

.rz-card-title {
  font-family: var(--rz-font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--rz-text);
}

.rz-card-title a {
  color: inherit;
}

.rz-card-title a:hover {
  color: var(--rz-secondary);
}

/* Card Footer */
.rz-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.rz-card-pricing {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 10px 0px;
}

.rz-price-label {
  font-size: 10px;
  color: var(--rz-muted);
  letter-spacing: .06em;
  margin-bottom: 2px;
}

.rz-price {
  font-family: var(--rz-font-heading);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .04em;
  color: var(--rz-text);
  line-height: 1;
}

.rz-price ins {
  text-decoration: none;
}

.rz-price del {
  color: var(--rz-muted);
  font-size: 16px;
  margin-left: 6px;
}

/* WC price html */
.rz-price .woocommerce-Price-amount {
  font-size: inherit;
}

/* View all */
.rz-view-all-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ── 14. BREADCRUMB ── */
.rz-breadcrumb {
  font-size: 12px;
  color: var(--rz-muted);
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  max-width: var(--rz-max-width);
  margin: 0 auto;

}

.rz-breadcrumb a {
  color: var(--rz-muted);
  transition: color var(--rz-transition);
}

.rz-breadcrumb a:hover {
  color: var(--rz-text);
}

.rz-breadcrumb span {
  color: var(--rz-text);
}

.rz-breadcrumb--top {
  margin-bottom: 28px;
}

/* ── 15. SHOP PAGE ── */
.rz-shop {
  padding-bottom: 80px;
}

.rz-shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 36px 0 28px;
}

.rz-shop-title {
  font-family: var(--rz-font-display);
  font-size: clamp(32px, 7vw, 56px);
  letter-spacing: .02em;
  color: #fff;
  margin: 0;
}

.rz-shop-title,
.rz-woo-page .rz-page-title {
  font-family: var(--rz-font-display);
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: .02em;
  background: var(--rz-rainbow);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rz-rainbow-shift 6s linear infinite;
}

.rz-shop-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.rz-pagination {
  text-align: center;
  margin-top: 48px;
}

.rz-no-products {
  text-align: center;
  color: var(--rz-muted);
  padding: 60px 20px;
  font-size: 15px;
}

/* ── 16. SINGLE PRODUCT ── */
.rz-single-product {
  padding-bottom: 80px;
}

.rz-product-single {
  outline: none;
}

.rz-product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Product image col */
.rz-product-image-wrap {
  position: relative;
  background: rgba(26, 18, 13, .6);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--rz-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rz-product-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rz-product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.rz-product-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.rz-thumb-btn {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: border-color var(--rz-transition);
}

.rz-thumb-btn:hover,
.rz-thumb-btn.active {
  border-color: var(--rz-primary);
}

.rz-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product summary col */
.rz-product-category {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rz-muted);
  margin-bottom: 12px;
}

.rz-product-title {
  font-family: var(--rz-font-display);
  font-size: clamp(34px, 7vw, 52px);
  line-height: .95;
  letter-spacing: .02em;
  color: var(--rz-text);
  margin-bottom: 20px;
}

.rz-product-price-block {
  margin-bottom: 20px;
}

.rz-product-price {
  font-family: var(--rz-font-heading);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: .03em;
  color: var(--rz-text);
  line-height: 1;
}

.rz-product-price ins {
  text-decoration: none;
}

.rz-product-price del {
  color: var(--rz-muted);
  font-size: 26px;
}

.rz-product-short-desc {
  color: var(--rz-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* Add to cart wrap */
.rz-add-to-cart-wrap {
  margin-bottom: 28px;
}

/* Quantity selector and add to cart button spacing */
.rz-add-to-cart-wrap form.cart {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.rz-add-to-cart-wrap .quantity {
  width: 100%;
}

.rz-add-to-cart-wrap .quantity input {
  width: 100%;
  padding: 14px;
  text-align: center;
  background: rgba(0, 0, 0, .3);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--rz-radius);
  color: var(--rz-text);
  font-size: 16px;
}

.rz-add-to-cart-wrap .single_add_to_cart_button {
  width: 100%;
  padding: 14px 24px;
  background: var(--rz-primary);
  color: #fff;
  border: none;
  border-radius: var(--rz-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.rz-add-to-cart-wrap .single_add_to_cart_button:hover {
  background: var(--rz-secondary);
  transform: translateY(-1px);
}

/* Desktop: align quantity and button horizontally */
@media (min-width: 768px) {
  .rz-add-to-cart-wrap form.cart {
    flex-direction: row;
    align-items: center;
  }

  .rz-add-to-cart-wrap .quantity {
    width: 100px;
    flex-shrink: 0;
  }

  .rz-add-to-cart-wrap .single_add_to_cart_button {
    flex: 1;
  }

  /* When quantity is hidden (digital products), button takes full width */
  .rz-add-to-cart-wrap form.cart:not(:has(.quantity)) {
    flex-direction: column;
    gap: 0;
  }

  .rz-add-to-cart-wrap form.cart:not(:has(.quantity)) .single_add_to_cart_button {
    width: 100%;
    flex: none;
  }
}

/* Trust items on single product */
.rz-product-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: rgba(0, 0, 0, .2);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--rz-radius);
  margin-bottom: 24px;
}

.rz-ptrust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.rz-ptrust-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.rz-ptrust-item strong {
  display: block;
  font-size: 13px;
  color: var(--rz-text);
}

.rz-ptrust-item small {
  display: block;
  font-size: 11px;
  color: var(--rz-muted);
  margin-top: 2px;
}

/* Product tabs */
.rz-product-tabs {
  margin-bottom: 60px;
  margin-top: 60px;
}

/* WooCommerce tabs styling */
.woocommerce-tabs {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--rz-radius);
  overflow: hidden;
}

.woocommerce-tabs .tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.woocommerce-tabs .tabs li {
  margin: 0;
  padding: 0;
  flex: 1;
}

.woocommerce-tabs .tabs li a {
  display: block;
  padding: 16px 24px;
  color: var(--rz-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: all .2s;
  border-bottom: 2px solid transparent;
  text-align: center;
}

.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs .tabs li a:hover {
  color: var(--rz-text);
  background: #0f0f0f;
  border-bottom-color: var(--rz-primary);
}

.woocommerce-tabs .panel {
  padding: 32px;
}

.woocommerce-tabs .panel h2 {
  font-family: var(--rz-font-display);
  font-size: 24px;
  letter-spacing: .02em;
  color: var(--rz-text);
  margin-bottom: 16px;
  margin-top: 0;
}

.woocommerce-tabs .panel p {
  color: var(--rz-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Star rating display */
.star-rating {
  position: relative;
  display: inline-block;
  font-family: 'star' !important;
  font-size: 1em;
  line-height: 1;
  color: var(--rz-primary);
  overflow: hidden;
}

.star-rating::before {
  content: "\73\73\73\73\73";
  color: rgba(255, 255, 255, .1);
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}

.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.star-rating span::before {
  content: "\53\53\53\53\53";
  top: 0;
  position: absolute;
  left: 0;
  color: var(--rz-primary);
}

/* Use Unicode stars if font not available */
.woocommerce .star-rating::before,
.woocommerce .star-rating span::before {
  content: "★★★★★";
  font-family: Arial, sans-serif;
}

.woocommerce .star-rating::before {
  color: rgba(255, 255, 255, .1);
}

.woocommerce .star-rating span::before {
  color: var(--rz-primary);
}

/* Reviews styling */
#reviews .commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

#reviews .comment {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--rz-radius);
  padding: 24px;
  margin-bottom: 20px;
}

#reviews .comment_container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

#reviews .avatar {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  flex-shrink: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, .1);
}

#reviews .comment-text {
  flex: 1;
}

#reviews .star-rating {
  color: var(--rz-primary);
  margin-bottom: 12px;
  font-size: 16px;
}

#reviews .meta {
  font-size: 15px;
  color: var(--rz-text);
  margin-bottom: 16px;
  line-height: 1.6;
}

#reviews .meta strong {
  color: var(--rz-text);
  font-weight: 700;
  font-size: 16px;
}

#reviews .meta .woocommerce-review__verified {
  display: inline-block;
  color: var(--rz-muted);
  font-style: italic;
  font-weight: 400;
  margin-left: 4px;
}

#reviews .meta .woocommerce-review__dash {
  color: var(--rz-muted);
  margin: 0 8px;
}

#reviews .meta time {
  color: var(--rz-muted);
  font-weight: 400;
}

#reviews .description p {
  color: var(--rz-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

/* No reviews message */
#reviews .woocommerce-noreviews {
  text-align: center;
  padding: 40px 20px;
  color: var(--rz-muted);
  font-size: 15px;
}

/* Review form */
#review_form_wrapper {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

#review_form #respond {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--rz-radius);
  padding: 20px;
}

#review_form .comment-reply-title {
  font-family: var(--rz-font-display);
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--rz-text);
  margin-bottom: 16px;
  margin-top: 0;
}

#review_form .comment-form-rating {
  margin-bottom: 16px;
}

#review_form .comment-form-rating label {
  color: var(--rz-text);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

#review_form .stars {
  display: inline-block;
}

#review_form .stars a {
  color: var(--rz-primary);
  text-decoration: none;
  font-size: 18px;
}

#review_form .stars a::before {
  content: "★";
  font-family: Arial, sans-serif;
}

#review_form .comment-form-comment,
#review_form .comment-form-author,
#review_form .comment-form-email {
  margin-bottom: 16px;
}

#review_form label {
  display: block;
  color: var(--rz-text);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 13px;
}

#review_form input[type="text"],
#review_form input[type="email"],
#review_form textarea {
  width: 100%;
  padding: 12px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--rz-radius);
  color: var(--rz-text);
  font-size: 14px;
  font-family: inherit;
}

#review_form input[type="text"]:focus,
#review_form input[type="email"]:focus,
#review_form textarea:focus {
  outline: none;
  border-color: var(--rz-primary);
  background: #0a0a0a;
}

#review_form textarea {
  min-height: 120px;
  resize: vertical;
}

#review_form .form-submit {
  margin-top: 16px;
}

#review_form .submit {
  padding: 12px 32px;
  background: var(--rz-primary);
  color: #fff;
  border: none;
  border-radius: var(--rz-radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-transform: uppercase;
  letter-spacing: .05em;
}

#review_form .submit:hover {
  background: var(--rz-secondary);
  transform: translateY(-1px);
}

/* ── 17. PAGE CONTENT ── */
.rz-page-content {
  padding-bottom: 60px;
}

.rz-content-page {
  padding-top: 40px;
}

.rz-page-title {
  font-family: var(--rz-font-display);
  font-size: clamp(32px, 7vw, 56px);
  letter-spacing: .02em;
  color: var(--rz-text);
  margin-bottom: 24px;
}

.rz-content h2,
h3,
h4 {
  letter-spacing: .02em;
  margin: 28px 0 12px;
}

.rz-content p {
  color: var(--rz-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.rz-content a {
  color: var(--rz-secondary);
}

/* ── 18. FOOTER ── */
.rz-footer {
  background: var(--rz-surface);
  border-top: 1px solid rgba(255, 255, 255, .05);
  margin-top: auto;
  width: 100%;
  max-width: 100%;
}

.rz-footer-rainbow {
  height: 3px;
  background: var(--rz-rainbow);
  background-size: 200% 100%;
  animation: rz-rainbow-shift 4s linear infinite;
  width: 100%;
}

.rz-footer-inner {
  max-width: var(--rz-max-width);
  margin: 0 auto;
  padding: 48px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.rz-footer-logo {
  font-family: var(--rz-font-display);
  font-size: 28px;
  letter-spacing: .04em;
  background: var(--rz-rainbow);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rz-rainbow-shift 6s linear infinite;
  display: inline-block;
}

.rz-footer-logo-img {
  max-height: 60px;
  width: auto;
  display: block;
  border-radius: 8px;
}

.rz-footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.rz-footer-nav-list a {
  font-size: 13px;
  color: var(--rz-muted);
  transition: color var(--rz-transition);
}

.rz-footer-nav-list a:hover {
  color: var(--rz-text);
}

.rz-footer-tagline {
  font-size: 12px;
  color: rgba(160, 144, 128, .6);
}

.rz-footer-copy {
  font-size: 11px;
  color: rgba(160, 144, 128, .4);
}

.rz-footer-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.rz-footer-trust span {
  font-size: 12px;
  color: rgba(160, 144, 128, .5);
}

/* ── 19. 404 ── */
.rz-404-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 16px;
  text-align: center;
  padding: 60px 20px;
}

.rz-404-code {
  font-family: var(--rz-font-display);
  font-size: clamp(80px, 20vw, 160px);
  letter-spacing: .02em;
  background: var(--rz-rainbow);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rz-rainbow-shift 4s linear infinite;
  line-height: 1;
}

.rz-404-title {
  font-family: var(--rz-font-display);
  font-size: 36px;
}

.rz-404-sub {
  color: var(--rz-muted);
  max-width: 360px;
}

.rz-404-inner .rz-btn-primary,
.rz-404-inner .rz-btn-ghost {
  margin: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   WOOCOMMERCE STYLES
═══════════════════════════════════════════════════════════════ */

/* General WC */
.woocommerce {
  color: var(--rz-text);
}

/* ── WC NOTICES ── */
.woocommerce-notices-wrapper {
  margin-bottom: 20px;
}

/* Notices inside cart page container */
.rz-cart-page .woocommerce-notices-wrapper {
  margin-bottom: 20px;
}

.woocommerce-message,
.woocommerce-info {
  background: #1a1a1a;
  border: 2px solid var(--rz-primary);
  border-radius: var(--rz-radius);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--rz-text);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.woocommerce-error {
  background: #1a1a1a;
  border: 2px solid #d94a1a;
  border-radius: var(--rz-radius);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--rz-text);
  margin-bottom: 20px;
}

.woocommerce-message::before {
  content: '✓';
  color: var(--rz-primary);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.woocommerce-info::before {
  content: 'ℹ';
  color: var(--rz-blue);
  font-size: 18px;
  flex-shrink: 0;
}

.woocommerce-error li {
  list-style: disc;
  margin-left: 20px;
}

.woocommerce-message a.button,
.woocommerce-info a.button {
  background: var(--rz-primary);
  color: #fff;
  border-radius: var(--rz-radius);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: auto;
}

.woocommerce-message a.button:hover,
.woocommerce-info a.button:hover {
  background: var(--rz-secondary);
  transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 640px) {

  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error {
    padding: 14px 16px;
    font-size: 14px;
  }

  .woocommerce-message a.button,
  .woocommerce-info a.button {
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }
}

/* ── WC FORMS ── */
.woocommerce-input-wrapper,
.woocommerce form .form-row {
  margin-bottom: 16px;
}

.woocommerce label,
.woocommerce-page label {
  font-size: 13px;
  color: var(--rz-muted);
  display: block;
  margin-bottom: 6px;
}

.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="password"],
.woocommerce input[type="tel"],
.woocommerce input[type="number"],
.woocommerce textarea,
.woocommerce select {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--rz-radius);
  padding: 12px 14px;
  color: var(--rz-text);
  font-size: 14px;
  transition: border-color var(--rz-transition);
  -webkit-appearance: none;
  appearance: none;
}

.woocommerce input:focus,
.woocommerce textarea:focus,
.woocommerce select:focus {
  outline: none;
  border-color: var(--rz-primary);
  background: rgba(255, 255, 255, .07);
}

.woocommerce input::placeholder,
.woocommerce textarea::placeholder {
  color: var(--rz-muted);
  opacity: 1;
}

/* WC buttons */
.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--rz-primary);
  color: var(--rz-text);
  border: none;
  border-radius: var(--rz-radius);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--rz-transition);
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover {
  background: #c0390e;
  color: var(--rz-text);
}

.woocommerce .button.alt,
.woocommerce .button.checkout-button {
  background: var(--rz-primary);
  width: 100%;
  justify-content: center;
}

.woocommerce .button.alt:hover {
  background: #c0390e;
}

/* single product add to cart */
.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.woocommerce div.product form.cart .qty {
  width: 72px;
  text-align: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--rz-radius);
  padding: 12px;
  color: var(--rz-text);
  font-size: 16px;
  -moz-appearance: textfield;
  appearance: textfield;
}

.woocommerce div.product form.cart .qty::-webkit-outer-spin-button,
.woocommerce div.product form.cart .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.woocommerce div.product form.cart button[type="submit"] {
  flex: 1;
  min-width: 160px;
  justify-content: center;
  gap: 8px;
}

.woocommerce div.product form.cart button[type="submit"]::before {
  content: '🛒';
  font-size: 16px;
}

/* Variation selects */
.woocommerce div.product .variations select {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--rz-radius);
  padding: 10px 14px;
  color: var(--rz-text);
  min-width: 140px;
}

/* ── WC PRODUCT TABS ── */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding-bottom: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  border: none;
  background: none;
  border-radius: var(--rz-radius) var(--rz-radius) 0 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 12px 20px;
  font-size: 13px;
  color: var(--rz-muted);
  transition: color var(--rz-transition), background var(--rz-transition);
  display: block;
  border-radius: var(--rz-radius) var(--rz-radius) 0 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--rz-text);
  background: rgba(255, 255, 255, .06);
  border-bottom: 2px solid var(--rz-primary);
}

.woocommerce div.product .woocommerce-tabs .panel {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-top: none;
  border-radius: 0 0 var(--rz-radius) var(--rz-radius);
  padding: 28px;
  color: var(--rz-muted);
  font-size: 14px;
  line-height: 1.7;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-family: var(--rz-font-display);
  font-size: 24px;
  color: var(--rz-text);
  margin-bottom: 14px;
  letter-spacing: .02em;
}

.woocommerce div.product .woocommerce-tabs .panel p {
  margin-bottom: 10px;
}

/* ── WC RELATED PRODUCTS ── */
.woocommerce .related.products>h2,
.woocommerce .up-sells>h2 {
  font-family: var(--rz-font-display);
  font-size: 32px;
  letter-spacing: .02em;
  color: var(--rz-text);
  margin-bottom: 24px;
}

.woocommerce .related.products .products,
.woocommerce .up-sells .products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.woocommerce .related.products .product,
.woocommerce .up-sells .product {
  background: rgba(26, 18, 13, .7);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--rz-radius-lg);
  overflow: hidden;
  transition: border-color var(--rz-transition), transform var(--rz-transition);
}

.woocommerce .related.products .product:hover,
.woocommerce .up-sells .product:hover {
  border-color: rgba(255, 255, 255, .18);
  transform: translateY(-3px);
}

.woocommerce .related.products .product img,
.woocommerce .up-sells .product img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.woocommerce .related.products .product .woocommerce-loop-product__title,
.woocommerce .up-sells .product .woocommerce-loop-product__title {
  font-size: 14px;
  padding: 12px 14px 4px;
  color: var(--rz-text);
  font-weight: 500;
}

.woocommerce .related.products .product .price,
.woocommerce .up-sells .product .price {
  font-family: var(--rz-font-heading);
  font-weight: 700;
  font-size: 22px;
  padding: 0 14px 14px;
  color: var(--rz-text);
}

/* ── WC META ── */
.woocommerce-product-details__short-description {
  color: var(--rz-muted);
  font-size: 14px;
}

.woocommerce div.product .product_meta {
  font-size: 12px;
  color: var(--rz-muted);
}

.woocommerce div.product .product_meta a {
  color: var(--rz-secondary);
}

.woocommerce .star-rating {
  color: var(--rz-secondary);
}

/* ── WC CART ── */
.rz-cart-wrap {
  padding: 40px 0 80px;
}

/* Cart page wrapper - ensure all content is contained */
.rz-cart-page {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.rz-cart-page .rz-container {
  max-width: var(--rz-max-width);
  margin: 0 auto;
  padding: 0px;
  width: 100%;
}

/* Ensure main content doesn't restrict footer */
#main-content {
  width: 100%;
  max-width: 100%;
}

/* Cart page title */
.rz-cart-page .rz-page-title {
  font-family: var(--rz-font-display);
  font-size: clamp(32px, 7vw, 56px);
  letter-spacing: .02em;
  color: var(--rz-text);
  margin-bottom: 32px;
}

/* Empty cart message */
.woocommerce-cart .cart-empty,
.woocommerce-cart .woocommerce-info {
  background: #1a1a1a;
  border: 2px solid var(--rz-primary);
  border-radius: var(--rz-radius);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--rz-text);
  margin-bottom: 20px;
}

/* Return to shop button */
.woocommerce-cart .return-to-shop {
  margin-top: 20px;
}

.woocommerce-cart .return-to-shop .button {
  background: var(--rz-primary);
  color: #fff;
  border: none;
  border-radius: var(--rz-radius);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: inline-block;
}

.woocommerce-cart .return-to-shop .button:hover {
  background: var(--rz-secondary);
  transform: translateY(-2px);
}

/* Cart table styling */
.woocommerce-cart-form,
.woocommerce-cart table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--rz-radius);
  overflow: hidden;
}

.woocommerce-cart table.shop_table th {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rz-muted);
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-weight: 600;
  text-align: left;
  background: #050505;
}

.woocommerce-cart table.shop_table td {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  vertical-align: middle;
  color: var(--rz-text);
}

.woocommerce-cart table.shop_table tbody tr:last-child td {
  border-bottom: none;
}

.woocommerce-cart table.shop_table .product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--rz-radius);
  border: 1px solid rgba(255, 255, 255, .1);
}

.woocommerce-cart table.shop_table .product-name a {
  color: var(--rz-text);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: color .2s;
}

.woocommerce-cart table.shop_table .product-name a:hover {
  color: var(--rz-primary);
}

.woocommerce-cart table.shop_table .product-name .variation {
  font-size: 13px;
  color: var(--rz-muted);
  margin-top: 6px;
}

.woocommerce-cart table.shop_table td.product-remove a {
  color: var(--rz-primary);
  font-size: 24px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--rz-radius);
  transition: all .2s;
  text-decoration: none;
}

.woocommerce-cart table.shop_table td.product-remove a:hover {
  background: rgba(217, 74, 26, .15);
  transform: scale(1.1);
}

.woocommerce-cart table.shop_table .quantity input,
.woocommerce-cart table.shop_table input.qty {
  width: 70px;
  text-align: center;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--rz-radius);
  padding: 10px;
  color: var(--rz-text);
  font-size: 15px;
  -moz-appearance: textfield;
  appearance: textfield;
}

.woocommerce-cart table.shop_table .quantity input::-webkit-outer-spin-button,
.woocommerce-cart table.shop_table .quantity input::-webkit-inner-spin-button,
.woocommerce-cart table.shop_table input.qty::-webkit-outer-spin-button,
.woocommerce-cart table.shop_table input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.woocommerce-cart table.shop_table .quantity input:focus,
.woocommerce-cart table.shop_table input.qty:focus {
  outline: none;
  border-color: var(--rz-primary);
}

.woocommerce-cart table.shop_table td.product-price .amount,
.woocommerce-cart table.shop_table td.product-subtotal .amount {
  font-family: var(--rz-font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .03em;
  color: var(--rz-text);
}

/* Update cart button and coupon section */
.woocommerce-cart table.shop_table .actions {
  padding: 20px !important;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.woocommerce-cart table.shop_table .actions .coupon {
  display: inline-flex;
  gap: 12px;
  margin-right: 20px;
  margin-bottom: 12px;
  align-items: center;
}

.woocommerce-cart table.shop_table .actions .coupon label {
  display: none;
}

.woocommerce-cart table.shop_table .actions .coupon input[type="text"] {
  padding: 10px 16px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--rz-radius);
  color: var(--rz-text);
  font-size: 14px;
  min-width: 180px;
}

.woocommerce-cart table.shop_table .actions .coupon input[type="text"]:focus {
  outline: none;
  border-color: var(--rz-primary);
}

.woocommerce-cart table.shop_table .actions .button {
  background: var(--rz-primary);
  color: #fff;
  border: none;
  border-radius: var(--rz-radius);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}

.woocommerce-cart table.shop_table .actions .button:hover {
  background: var(--rz-secondary);
  transform: translateY(-1px);
}

/* Cart collaterals */
.woocommerce-cart .cart-collaterals {
  margin-top: 40px;
}

/* Cart totals */
.woocommerce-cart .cart_totals {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--rz-radius);
  padding: 32px;
  max-width: 480px;
  margin-left: auto;
}

.woocommerce-cart .cart_totals h2 {
  font-family: var(--rz-font-display);
  font-size: 28px;
  letter-spacing: .02em;
  color: var(--rz-text);
  margin-bottom: 24px;
  margin-top: 0;
}

.woocommerce-cart .cart_totals table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 15px;
}

.woocommerce-cart .cart_totals table th {
  color: var(--rz-muted);
  font-weight: 500;
  text-align: left;
}

.woocommerce-cart .cart_totals table td {
  color: var(--rz-text);
  text-align: right;
}

.woocommerce-cart .cart_totals table .order-total th,
.woocommerce-cart .cart_totals table .order-total td {
  color: var(--rz-text);
  font-weight: 700;
  font-size: 18px;
  border-bottom: none;
  padding-top: 20px;
}

.woocommerce-cart .cart_totals table .order-total .amount {
  font-family: var(--rz-font-heading);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: .03em;
  color: var(--rz-primary);
}

/* Proceed to checkout button */
.woocommerce-cart .wc-proceed-to-checkout {
  margin-top: 24px;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  background: var(--rz-primary);
  color: #fff;
  border: none;
  border-radius: var(--rz-radius);
  text-decoration: none;
  transition: all .2s;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
  background: var(--rz-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 74, 26, .3);
}

/* Mobile responsive - Tablet and below */
@media (max-width: 1024px) {
  .woocommerce-cart table.shop_table {
    display: block;
    overflow-x: auto;
  }
}

/* Mobile responsive - Phone */
@media (max-width: 768px) {
  .rz-cart-page .rz-page-title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .woocommerce-cart table.shop_table {
    display: block;
    border: none;
    background: transparent;
  }

  .woocommerce-cart table.shop_table thead {
    display: none;
  }

  .woocommerce-cart table.shop_table tbody {
    display: block;
  }

  .woocommerce-cart table.shop_table tr {
    display: block;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--rz-radius);
    margin-bottom: 16px;
    padding: 16px;
  }

  .woocommerce-cart table.shop_table td {
    display: block;
    padding: 8px 0;
    border: none;
    text-align: left;
  }

  .woocommerce-cart table.shop_table td::before {
    content: attr(data-title) ": ";
    font-weight: 600;
    color: var(--rz-muted);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .05em;
  }

  .woocommerce-cart table.shop_table td.product-remove {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 0;
  }

  .woocommerce-cart table.shop_table td.product-remove::before {
    display: none;
  }

  .woocommerce-cart table.shop_table td.product-thumbnail {
    text-align: center;
    padding: 16px 0;
  }

  .woocommerce-cart table.shop_table td.product-thumbnail::before {
    display: none;
  }

  .woocommerce-cart table.shop_table .product-thumbnail img {
    width: 100px;
    height: 100px;
  }

  .woocommerce-cart table.shop_table td.product-name {
    font-size: 16px;
    font-weight: 600;
  }

  .woocommerce-cart table.shop_table td.product-price .amount,
  .woocommerce-cart table.shop_table td.product-subtotal .amount {
    font-size: 18px;
  }

  .woocommerce-cart table.shop_table .actions {
    display: block;
    padding: 16px !important;
  }

  .woocommerce-cart table.shop_table .actions .coupon {
    display: flex;
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }

  .woocommerce-cart table.shop_table .actions .coupon input[type="text"] {
    flex: 1;
    min-width: auto;
  }

  .woocommerce-cart table.shop_table .actions .button {
    width: 100%;
    margin-bottom: 8px;
  }

  .woocommerce-cart .cart_totals {
    max-width: 100%;
    padding: 24px;
  }

  .woocommerce-cart .cart_totals h2 {
    font-size: 24px;
  }

  .woocommerce-cart .cart_totals table .order-total .amount {
    font-size: 28px;
  }

  .woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    font-size: 13px;
    padding: 12px 20px;
  }
}

/* ── WC CHECKOUT STYLING (CSS only — no functionality changes) ── */
.rz-checkout-wrap {
  padding: 40px 0 80px;
}

.woocommerce-checkout h3 {
  font-family: var(--rz-font-display);
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--rz-text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  background: rgba(26, 18, 13, .6);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--rz-radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.woocommerce-checkout table.shop_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.woocommerce-checkout table.shop_table th {
  color: var(--rz-muted);
  font-weight: 400;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  text-align: left;
}

.woocommerce-checkout table.shop_table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  color: var(--rz-text);
}

.woocommerce-checkout table.shop_table .order-total th,
.woocommerce-checkout table.shop_table .order-total td {
  font-weight: 700;
  color: var(--rz-text);
}

.woocommerce-checkout table.shop_table .order-total .amount {
  font-family: var(--rz-font-heading);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .03em;
}

.woocommerce-checkout #payment {
  background: rgba(0, 0, 0, .2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--rz-radius);
  overflow: hidden;
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.woocommerce-checkout #payment ul.payment_methods li label {
  font-size: 14px;
  color: var(--rz-text);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.woocommerce-checkout #payment div.payment_box {
  background: rgba(255, 255, 255, .04);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--rz-muted);
}

.woocommerce-checkout #payment div.place-order {
  padding: 20px;
}

.woocommerce-checkout #place_order {
  width: 100%;
  font-size: 16px;
  padding: 16px;
  justify-content: center;
  background: var(--rz-green);
  letter-spacing: .06em;
}

.woocommerce-checkout #place_order:hover {
  background: #1e9f59;
}

/* ── THANK YOU PAGE ── */
.rz-thankyou {
  padding-bottom: 80px;
}

.rz-thankyou-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding-top: 48px;
}

.rz-thankyou-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 28px;
  background: rgba(37, 184, 106, .06);
  border: 1px solid rgba(37, 184, 106, .2);
  border-radius: var(--rz-radius-lg);
}

.rz-thankyou-header--failed {
  background: rgba(217, 74, 26, .06);
  border-color: rgba(217, 74, 26, .2);
}

.rz-ty-icon {
  font-size: 52px;
  margin-bottom: 12px;
}

.rz-ty-title {
  font-family: var(--rz-font-display);
  font-size: clamp(32px, 7vw, 52px);
  letter-spacing: .02em;
  color: var(--rz-text);
  margin-bottom: 12px;
}

.rz-ty-sub {
  color: var(--rz-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.rz-ty-delivery-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 184, 106, .12);
  border: 1px solid rgba(37, 184, 106, .25);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--rz-text);
  margin-top: 12px;
}

.rz-ty-delivery-icon {
  font-size: 16px;
}

.rz-ty-details,
.rz-ty-items {
  background: rgba(26, 18, 13, .6);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--rz-radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.rz-ty-section-title {
  font-family: var(--rz-font-display);
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--rz-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.rz-ty-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 14px;
}

.rz-ty-detail-row:last-child {
  border-bottom: none;
}

.rz-ty-detail-row span {
  color: var(--rz-muted);
}

.rz-ty-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 14px;
}

.rz-ty-item:last-child {
  border-bottom: none;
}

.rz-ty-item-name {
  color: var(--rz-text);
  font-weight: 500;
}

.rz-ty-item-qty {
  color: var(--rz-muted);
  font-weight: 400;
  margin-left: 6px;
}

.rz-ty-item-total {
  font-family: var(--rz-font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .03em;
  flex-shrink: 0;
}

.rz-ty-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

/* ── MY ACCOUNT ── */
.rz-my-account {
  padding-bottom: 80px;
}

.rz-account-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-top: 20px;
  width: 100%;
}

.rz-account-sidebar {
  background: rgba(26, 18, 13, .6);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--rz-radius-lg);
  padding: 24px;
  height: fit-content;
}

.rz-account-user {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.rz-account-avatar {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .1);
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.rz-account-user-info strong {
  display: block;
  font-size: 15px;
  color: var(--rz-text);
}

.rz-account-user-info small {
  display: block;
  font-size: 11px;
  color: var(--rz-muted);
  margin-top: 2px;
}

.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--rz-radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--rz-muted);
  transition: all var(--rz-transition);
  background: transparent;
}

.woocommerce-MyAccount-navigation ul li a:hover {
  color: var(--rz-text);
  background: rgba(255, 255, 255, .04);
  padding-left: 20px;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
  background: var(--rz-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(217, 74, 26, 0.2);
}

/* Fallback for WooCommerce Blocks / Unstyled Navigation */
.rz-content nav[aria-label="Account pages"] {
  background: rgba(26, 18, 13, .6);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--rz-radius-lg);
  padding: 24px;
  margin: 0;
  height: fit-content;
}

.rz-content nav[aria-label="Account pages"] ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rz-content nav[aria-label="Account pages"] ul li {
  margin: 0;
}

.rz-content nav[aria-label="Account pages"] ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--rz-radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--rz-muted);
  transition: all var(--rz-transition);
  background: transparent;
  line-height: 1.4;
}

.rz-content nav[aria-label="Account pages"] ul li a:hover,
.rz-content nav[aria-label="Account pages"] ul li a[aria-current="page"] {
  color: var(--rz-text);
  background: rgba(255, 255, 255, .06);
}

.rz-content nav[aria-label="Account pages"] ul li a[aria-current="page"] {
  background: var(--rz-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(217, 74, 26, 0.2);
}

.rz-content nav[aria-label="Account pages"] br {
  display: none;
}

/* Hide injected line breaks */



.rz-account-content {
  background: rgba(26, 18, 13, .6);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--rz-radius-lg);
  padding: clamp(20px, 5vw, 40px);
}

/* Dashboard Segment */
.rz-account-hero {
  margin-bottom: 40px;
}

.rz-account-welcome {
  font-family: var(--rz-font-display);
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1;
  letter-spacing: .02em;
  margin-bottom: 16px;
  color: #fff;
}

.rz-account-welcome .highlight {
  background: var(--rz-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rz-account-intro {
  font-size: 15px;
  color: var(--rz-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.rz-account-intro a {
  color: var(--rz-secondary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rz-account-quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.rz-stat-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--rz-radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--rz-transition), border-color var(--rz-transition);
}

.rz-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .12);
}

.rz-stat-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rz-stat-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rz-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.rz-stat-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--rz-secondary);
  font-weight: 700;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
  font-family: var(--rz-font-display);
  font-size: 28px;
  letter-spacing: .02em;
  color: var(--rz-text);
  margin-bottom: 20px;
}

.woocommerce-MyAccount-content p {
  color: var(--rz-muted);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.woocommerce-MyAccount-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 24px;
}

.woocommerce-MyAccount-content table th {
  color: var(--rz-muted);
  font-weight: 400;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  text-align: left;
}

.woocommerce-MyAccount-content table td {
  padding: 16px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  color: var(--rz-text);
}

.woocommerce-MyAccount-content .button {
  background: var(--rz-secondary);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: filter var(--rz-transition);
}

.woocommerce-MyAccount-content .button:hover {
  filter: brightness(1.1);
}


/* ── WC ORDERING / RESULT COUNT ── */
.woocommerce-ordering select {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--rz-radius);
  padding: 9px 14px;
  color: var(--rz-text);
  font-size: 13px;
  cursor: pointer;
}

.woocommerce-result-count {
  font-size: 13px;
  color: var(--rz-muted);
}

/* WC pagination */
.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--rz-radius);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
  color: var(--rz-muted);
  transition: background var(--rz-transition), color var(--rz-transition);
}

.woocommerce-pagination ul li a:hover {
  background: rgba(255, 255, 255, .1);
  color: var(--rz-text);
}

.woocommerce-pagination ul li span.current {
  background: var(--rz-primary);
  color: #fff;
  border-color: var(--rz-primary);
}

/* Post grid (blog) */
.rz-post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-top: 40px;
}

.rz-post-card {
  background: rgba(26, 18, 13, .6);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--rz-radius-lg);
  overflow: hidden;
  transition: border-color var(--rz-transition);
}

.rz-post-card:hover {
  border-color: rgba(255, 255, 255, .18);
}

.rz-post-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.rz-post-meta {
  padding: 16px 20px 4px;
  font-size: 12px;
  color: var(--rz-muted);
}

.rz-post-title {
  padding: 4px 20px 12px;
  font-family: var(--rz-font-display);
  font-size: 22px;
  letter-spacing: .02em;
}

.rz-post-title a {
  color: var(--rz-text);
}

.rz-post-title a:hover {
  color: var(--rz-secondary);
}

.rz-post-excerpt {
  padding: 0 20px 20px;
  font-size: 13px;
  color: var(--rz-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
═══════════════════════════════════════════════════════════════ */
@keyframes rz-rainbow-shift {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

@keyframes rz-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.8);
  }
}

@keyframes rz-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET ≥ 640px
═══════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .rz-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .rz-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .rz-account-wrap {
    grid-template-columns: 240px 1fr;
  }

  .woocommerce .related.products .products,
  .woocommerce .up-sells .products {
    grid-template-columns: repeat(3, 1fr);
  }

  .rz-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rz-ty-detail-row {
    font-size: 15px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — DESKTOP ≥ 900px
═══════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  .rz-primary-nav {
    display: block;
  }

  .rz-hamburger {
    display: none;
  }

  .rz-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .rz-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .rz-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .rz-product-layout {
    grid-template-columns: 1fr 1fr;
  }

  .rz-woocommerce-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }

  .woocommerce-cart table.cart {
    display: table;
  }

  .woocommerce-cart .cart-collaterals {
    display: flex;
    justify-content: flex-end;
  }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review {
    display: block;
  }

  .woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .rz-post-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rz-notice-text {
    overflow: visible;
    white-space: normal;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — LARGE ≥ 1200px
═══════════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .rz-product-image-wrap {
    aspect-ratio: 1;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY — REDUCED MOTION
═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── FOCUS STATES ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--rz-primary);
  outline-offset: 2px;
  border-radius: 2px;
}