/* ============================================================
   RENTORZO — DESIGN SYSTEM CSS
   Drop this as /public/css/rz-design-system.css
   and replace rz-new-design.css + mobile-enhancements.css
   ============================================================ */

/* ── GOOGLE FONT ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --red:          #ed2f24;
  --red-dark:     #c72620;
  --red-light:    #fff1f0;
  --bg:           #f5f4f1;
  --surface:      #ffffff;
  --surface-2:    #f9f8f6;
  --border:       rgba(0,0,0,0.08);
  --border-md:    rgba(0,0,0,0.13);
  --text:         #1a1a1a;
  --text-2:       #555555;
  --text-muted:   #999999;
  --header-h:     64px;
  --sidebar-w:    240px;
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.13);
  --font:         'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition:   0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── GLOBAL RESET ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { overflow-x: hidden; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { pointer-events: none; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 .5em;
}

/* ── SECTION HEADERS ─────────────────────────────────────── */
.rz-section-header {
  margin-bottom: 36px;
}
.rz-section-badge {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 10px;
}
.rz-section-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}
.rz-section-sub {
  font-size: 15px;
  color: var(--text-2);
  margin: 0;
  max-width: 560px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.rz-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 99px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.rz-btn-primary {
  background: var(--red);
  color: #fff;
}
.rz-btn-primary:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(237,47,36,.3);
}
.rz-btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-md);
}
.rz-btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
.rz-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--surface);
  border-bottom: 0.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.rz-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}

/* Logo */
.rz-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.rz-logo img {
  height: 36px;
  width: auto;
}
.rz-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.5px;
}
.rz-logo-text span { color: var(--red); }

/* Location chip */
.rz-loc-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: 99px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--transition);
  flex-shrink: 0;
}
.rz-loc-chip:hover {
  border-color: var(--red);
  color: var(--red);
}
.rz-loc-chip svg { width: 14px; height: 14px; }

/* Desktop nav */
.rz-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex: 1;
  justify-content: center;
}
.rz-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.rz-nav a:hover,
.rz-nav a.active {
  color: var(--red);
  background: var(--red-light);
}

/* Header actions */
.rz-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.rz-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--border);
  background: var(--surface-2);
  cursor: pointer;
  color: var(--text-2);
  transition: all var(--transition);
  position: relative;
}
.rz-icon-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
}
.rz-icon-btn svg { width: 18px; height: 18px; }
.rz-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.rz-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.rz-login-btn:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* Hamburger (mobile only) */
.rz-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  cursor: pointer;
  flex-shrink: 0;
}
.rz-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ══════════════════════════════════════════════════════════
   MOBILE MENU (Drawer from left)
   ══════════════════════════════════════════════════════════ */
.rz-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  backdrop-filter: blur(4px);
}
.rz-mobile-overlay.open { display: block; }

.rz-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--surface);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.rz-mobile-menu.open { transform: translateX(0); }

.rz-mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 0.5px solid var(--border);
  flex-shrink: 0;
}
.rz-mm-close {
  width: 34px;
  height: 34px;
  border: none;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-2);
}
.rz-mm-close svg { width: 18px; height: 18px; }

.rz-mm-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--red-light);
  border-bottom: 0.5px solid var(--border);
  flex-shrink: 0;
}
.rz-mm-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.rz-mm-user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.rz-mm-user-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.rz-mm-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}
.rz-mm-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--transition);
}
.rz-mm-nav a:hover,
.rz-mm-nav a.active {
  background: var(--red-light);
  color: var(--red);
  padding-left: 24px;
}
.rz-mm-nav a svg { width: 18px; height: 18px; flex-shrink: 0; }
.rz-mm-divider {
  height: 0.5px;
  background: var(--border);
  margin: 8px 20px;
}
.rz-mm-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 20px 4px;
}

.rz-mm-footer {
  padding: 16px 20px;
  border-top: 0.5px solid var(--border);
  flex-shrink: 0;
}
.rz-mm-login-btn {
  width: 100%;
  padding: 12px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  text-align: center;
  display: block;
  text-decoration: none;
}
.rz-mm-login-btn:hover { background: var(--red-dark); color: #fff; }

/* ══════════════════════════════════════════════════════════
   SIDEBAR (Profile / Account pages)
   ══════════════════════════════════════════════════════════ */
.rz-account-wrap {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  align-items: start;
}
.rz-sidebar {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.rz-sidebar-top {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 28px 20px;
  text-align: center;
}
.rz-sidebar-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.4);
  object-fit: cover;
  margin-bottom: 12px;
}
.rz-sidebar-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.rz-sidebar-nav {
  padding: 12px 0;
}
.rz-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--transition);
  border-left: 3px solid transparent;
  text-decoration: none;
}
.rz-sidebar-link:hover,
.rz-sidebar-link.active {
  background: var(--red-light);
  color: var(--red);
  border-left-color: var(--red);
  border-radius: 0;
}
.rz-sidebar-link i { font-size: 16px; }
.rz-sidebar-divider {
  height: 0.5px;
  background: var(--border);
  margin: 8px 20px;
}
.rz-content-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}

/* ══════════════════════════════════════════════════════════
   BOTTOM NAV (Mobile)
   ══════════════════════════════════════════════════════════ */
.rz-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 900;
}
.rz-bottom-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  height: 100%;
}
.rz-bottom-nav li {
  flex: 1;
}
.rz-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 3px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 500;
  transition: color var(--transition);
  text-decoration: none;
}
.rz-bottom-nav a svg { width: 22px; height: 22px; }
.rz-bottom-nav a.active,
.rz-bottom-nav a:hover { color: var(--red); }
.rz-bottom-nav a.active svg { stroke: var(--red); }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.rz-footer {
  background: #111110;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
  margin-top: 0;
}
.rz-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.rz-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
}
.rz-footer-brand-logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.rz-footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.rz-footer-socials {
  display: flex;
  gap: 10px;
}
.rz-footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  text-decoration: none;
}
.rz-footer-social-link:hover {
  background: var(--red);
  color: #fff;
}
.rz-footer-social-link svg { width: 16px; height: 16px; }

.rz-footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.rz-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rz-footer-links li { margin-bottom: 10px; }
.rz-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.rz-footer-links a:hover { color: var(--red); }

.rz-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.rz-footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }
.rz-footer-contact-item a { color: rgba(255,255,255,0.55); }
.rz-footer-contact-item a:hover { color: var(--red); }

.rz-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.rz-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.rz-footer-legal {
  display: flex;
  gap: 20px;
}
.rz-footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition);
}
.rz-footer-legal a:hover { color: var(--red); }

/* ══════════════════════════════════════════════════════════
   PRODUCT CARDS (tp-card)
   ══════════════════════════════════════════════════════════ */
.tp-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tp-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-2);
}
.tp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}
.tp-card:hover .tp-img-wrap img { transform: scale(1.04); }
.tp-card-body { padding: 14px 16px 16px; }
.tp-card-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.tp-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 12px;
  line-height: 1.4;
  text-decoration: none;
}
.tp-card-name:hover { color: var(--red); }
.tp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.tp-card-price span {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
}
.tp-card-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.tp-card-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 99px;
  text-decoration: none;
  transition: background var(--transition);
}
.tp-card-btn:hover { background: var(--red-dark); color: #fff; }

/* ══════════════════════════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════════════════════════ */
.rz-breadcrumb-img {
  position: relative;
  min-height: 160px;
  display: flex;
  align-items: center;
  background: var(--text);
  overflow: hidden;
}
.rz-breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(237,47,36,0.25) 100%);
}
.rz-breadcrumb-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
}
.rz-breadcrumb-text h1 {
  font-size: clamp(22px, 4vw, 32px);
  color: #fff;
  margin: 0 0 4px;
}
.rz-breadcrumb-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.rz-breadcrumb-nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.rz-breadcrumb-nav li { font-size: 13px; color: rgba(255,255,255,0.55); }
.rz-breadcrumb-nav li::before { content: '/'; margin-right: 8px; }
.rz-breadcrumb-nav li:first-child::before { display: none; }
.rz-breadcrumb-nav a { color: rgba(255,255,255,0.8); }
.rz-breadcrumb-nav a:hover { color: var(--red); }
.rz-breadcrumb-nav span { color: #fff; font-weight: 500; }

/* ══════════════════════════════════════════════════════════
   LOCATION POPUP
   ══════════════════════════════════════════════════════════ */
#cityPopupOverlay,
#news-letter-modal .newsletter-popup-inner {
  padding: 16px;
}
.newsletter-popup-inner .modal-content {
  border: none;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
  padding: 20px;
}
.city {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  text-align: center;
}
.city:hover {
  background: var(--red-light);
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.city img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* ══════════════════════════════════════════════════════════
   CART DRAWER
   ══════════════════════════════════════════════════════════ */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  max-width: 95vw;
  height: 100%;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  z-index: 1300;
  transition: right var(--transition);
  display: flex;
  flex-direction: column;
  border-left: 0.5px solid var(--border);
}
.cart-drawer.active { right: 0; }
.drawer-fixed-header { flex-shrink: 0; }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 0.5px solid var(--border);
}
.drawer-header-title { font-size: 16px; font-weight: 700; margin: 0; }
.drawer-close-btn {
  width: 32px; height: 32px;
  border: none; background: var(--surface-2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-2);
}
.drawer-inner { flex: 1; overflow-y: auto; }
.drawer-scrollable { padding: 16px; }
.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 0.5px solid var(--border);
}
.cart-item-image {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-2);
  flex-shrink: 0;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-name a { font-size: 13px; font-weight: 600; color: var(--text); }
.cart-item-name a:hover { color: var(--red); }
.cart-qty-price { font-size: 14px; font-weight: 700; color: var(--red); margin-top: 4px; }
.cart-remove {
  width: 28px; height: 28px;
  border: none; background: transparent;
  cursor: pointer; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
}
.cart-remove:hover { color: var(--red); }
.drawer-footer { padding: 16px; border-top: 0.5px solid var(--border); flex-shrink: 0; }
.cart-checkout-btn button {
  width: 100%; padding: 13px;
  background: var(--red); color: #fff;
  border: none; border-radius: var(--radius-md);
  font-family: var(--font); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background var(--transition);
}
.cart-checkout-btn button:hover { background: var(--red-dark); }
.drawer-cart-empty { padding: 40px 20px; text-align: center; color: var(--text-muted); }
.drawer-cart-empty h2 { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.drawer-cart-empty a { color: var(--red); }

/* ══════════════════════════════════════════════════════════
   CATEGORY CARDS
   ══════════════════════════════════════════════════════════ */
.rz-cat-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--border);
  padding: 18px 12px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.rz-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(237,47,36,0.3);
}
.rz-cat-img-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.rz-cat-img-wrap img { max-width: 70%; max-height: 70%; object-fit: contain; }
.rz-cat-name { font-size: 13px; font-weight: 600; color: var(--text); margin: 0; }

/* ══════════════════════════════════════════════════════════
   WHY CARDS
   ══════════════════════════════════════════════════════════ */
.rz-why-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  transition: transform var(--transition);
}
.rz-why-card:hover { transform: translateY(-4px); }
.rz-why-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--red-light);
  border: 0.5px solid rgba(237,47,36,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.rz-why-icon img { width: 30px; height: 30px; object-fit: cover; border-radius: 6px; }
.rz-why-card h5 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.rz-why-card p { font-size: 13px; color: var(--text-2); line-height: 1.65; margin: 0; }

/* ══════════════════════════════════════════════════════════
   BLOG CARDS
   ══════════════════════════════════════════════════════════ */
.rz-blog-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.rz-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.rz-blog-img { aspect-ratio: 16/9; overflow: hidden; }
.rz-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.rz-blog-card:hover .rz-blog-img img { transform: scale(1.04); }
.rz-blog-body { padding: 18px 20px; }
.rz-blog-date { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.rz-blog-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.rz-blog-excerpt { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 14px; }
.rz-blog-btn { font-size: 13px; color: var(--red); font-weight: 600; }
.rz-blog-btn:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════
   FLOATING BUTTONS
   ══════════════════════════════════════════════════════════ */
.rz-float-btns {
  position: fixed;
  bottom: 80px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 800;
}
.call-btn, .wa-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.call-btn { background: #007bff; }
.call-btn:hover { transform: scale(1.1); }
.wa-btn img { width: 50px; height: 50px; }

/* ══════════════════════════════════════════════════════════
   REVIEW / GOOGLE BUTTON
   ══════════════════════════════════════════════════════════ */
.rentorzo-google-review-btn-wrap { text-align: center; margin-top: 30px; }
.rentorzo-google-review-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 32px; border-radius: 99px;
  background: var(--red); color: #fff;
  font-weight: 700; font-size: 14px;
  text-decoration: none; transition: all var(--transition);
}
.rentorzo-google-review-btn:hover {
  background: var(--red-dark); color: #fff; transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════
   SEO SECTION
   ══════════════════════════════════════════════════════════ */
.rz-seo-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 0.5px solid var(--border);
}
.rz-seo-title { font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; color: var(--red); margin-bottom: 12px; }
.rz-seo-sub { font-size: 15px; color: var(--text-2); margin-bottom: 28px; }
.rz-seo-heading {
  font-size: 16px; font-weight: 700; color: var(--text);
  padding-left: 14px; border-left: 3px solid var(--red);
  margin: 20px 0 8px; border-radius: 0;
}
.rz-seo-content p { font-size: 14px; color: var(--text-2); line-height: 1.8; margin-bottom: 12px; }
.rz-seo-links { list-style: none; padding: 0; margin: 16px 0 0; }
.rz-seo-links li { margin-bottom: 8px; }
.rz-seo-links li a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; background: var(--surface-2); color: var(--text);
  border-radius: 99px; border: 0.5px solid var(--border);
  text-decoration: none; font-weight: 500; font-size: 13px;
  transition: all var(--transition);
}
.rz-seo-links li a:hover { background: var(--red); color: #fff; border-color: var(--red); }
.rz-seo-img { border-radius: var(--radius-xl); width: 100%; box-shadow: var(--shadow-md); }

/* ══════════════════════════════════════════════════════════
   FORM ELEMENTS (Login / OTP)
   ══════════════════════════════════════════════════════════ */
.rz-input-wrap { position: relative; margin-bottom: 14px; }
.rz-input-wrap label {
  display: block; font-size: 11px; font-weight: 600;
  color: var(--text-muted); margin-bottom: 6px;
  letter-spacing: .05em; text-transform: uppercase;
}
.rz-input-wrap input,
.rz-input-wrap select,
.rz-input-wrap textarea {
  width: 100%; padding: 12px 14px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-md); color: var(--text);
  font-family: var(--font); font-size: 14px; outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.rz-input-wrap input:focus {
  border-color: var(--red); background: #fff;
  box-shadow: 0 0 0 3px rgba(237,47,36,.1);
}

/* ══════════════════════════════════════════════════════════
   POLICIES / DOCUMENT PAGES
   ══════════════════════════════════════════════════════════ */
.rz-policy-wrap {
  max-width: 840px; margin: 48px auto; padding: 0 20px 80px;
}
.rz-policy-wrap h1 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; }
.rz-policy-wrap h2 {
  font-size: 20px; font-weight: 700; color: var(--text);
  margin: 32px 0 12px; padding-top: 32px;
  border-top: 0.5px solid var(--border);
}
.rz-policy-wrap h2:first-of-type { border-top: none; padding-top: 0; margin-top: 24px; }
.rz-policy-wrap p, .rz-policy-wrap li {
  font-size: 15px; color: var(--text-2); line-height: 1.8;
}
.rz-policy-wrap ul { padding-left: 20px; }
.rz-policy-wrap li { margin-bottom: 6px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 992px) {
  .rz-nav { display: none; }
  .rz-hamburger { display: flex; }
  .rz-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .rz-account-wrap {
    grid-template-columns: 200px 1fr;
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --header-h: 56px; }

  .rz-header-inner { padding: 0 14px; gap: 10px; }
  .rz-logo-text { font-size: 16px; }
  .rz-logo img { height: 30px; }
  .rz-loc-chip { display: none; }
  .rz-login-btn { display: none; }

  .rz-hamburger { display: flex; }

  /* Bottom nav shows on mobile */
  .rz-bottom-nav { display: block; }
  body { padding-bottom: 60px; }

  /* Footer */
  .rz-footer { padding: 40px 0 0; }
  .rz-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .rz-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Account sidebar stacks */
  .rz-account-wrap {
    grid-template-columns: 1fr;
    margin: 20px auto;
  }
  .rz-sidebar { position: static; }
  .rz-content-card { padding: 20px; }

  /* Breadcrumb */
  .rz-breadcrumb-img { min-height: 110px; }
  .rz-breadcrumb-content { flex-direction: column; align-items: flex-start; }

  /* Category grid */
  .rz-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)) !important;
    gap: 10px !important;
  }

  /* Why grid */
  .row.g-4 > [class*="col-md-4"] { flex: 0 0 100%; max-width: 100%; }

  /* SEO card */
  .rz-seo-card { padding: 24px 18px; }

  /* Blog */
  .rz-blog-body { padding: 14px 16px; }

  /* Float btns */
  .rz-float-btns { bottom: 70px; }
  .call-btn, .wa-btn { width: 44px; height: 44px; }

  /* Policy */
  .rz-policy-wrap { margin: 24px auto; padding: 0 16px 80px; }

  /* Swiper cards - 2 cols */
  .swiper-slide .tp-card { font-size: 13px; }

  /* Cart drawer */
  .cart-drawer { width: 100%; right: -100%; }

  /* Location popup */
  .grid-container {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    padding: 14px;
    gap: 10px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .rz-category-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .rz-section-title { font-size: 20px; }
  .tp-card-name { font-size: 13px; }
  .tp-card-price { font-size: 14px; }
}

/* Large desktop */
@media (min-width: 1200px) {
  .rz-nav a { font-size: 14px; padding: 7px 16px; }
}

/* ── Utility ─────────────────────────────────────────────── */
.bg-color { background: var(--bg) !important; }
.section-ptb { padding: 60px 0; }

/* Hide old mobile/bottom menu — replaced by rz-bottom-nav */
.bottom-menu { display: none !important; }
.mobile-menu { display: none !important; }
.mobile-vega { display: none !important; }
.bg-screen { display: none !important; }

/* Fix body padding on desktop (no bottom nav) */
@media (min-width: 769px) {
  body { padding-bottom: 0 !important; }
}