/*
Theme Name: Racer Lane
Theme URI: https://racerlane.com
Author: Racer Lane
Author URI: https://racerlane.com
Description: Premium motorsport ecommerce theme for Racer Lane — WooCommerce ready, dark design, built for speed.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: racerlane
Tags: e-commerce, woocommerce, dark, motorsport, full-width-template
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --rl-black:       #0a0a0a;
  --rl-white:       #ffffff;
  --rl-red:         #e31e24;
  --rl-red-dark:    #b81519;
  --rl-gray-900:    #111111;
  --rl-gray-800:    #1a1a1a;
  --rl-gray-700:    #2a2a2a;
  --rl-gray-600:    #3a3a3a;
  --rl-gray-400:    #666666;
  --rl-gray-200:    #cccccc;
  --rl-gray-100:    #f5f5f5;
  --rl-font-display: 'Barlow Condensed', sans-serif;
  --rl-font-body:    'Barlow', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--rl-black);
  color: var(--rl-white);
  font-family: var(--rl-font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--rl-red); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--rl-font-body); }
input, textarea, select { font-family: var(--rl-font-body); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--rl-font-display);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}
h1 { font-size: clamp(42px, 7vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
p { margin-bottom: 1rem; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.rl-container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.rl-section    { padding: 64px 0; }
.rl-red        { color: var(--rl-red); }
.rl-uppercase  { text-transform: uppercase; letter-spacing: .08em; }
.text-center   { text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.rl-btn,
.rl-btn-outline,
button.rl-btn,
a.rl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--rl-font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  transition: all .2s;
  cursor: pointer;
}
.rl-btn {
  background: var(--rl-red);
  color: var(--rl-white);
}
.rl-btn:hover {
  background: var(--rl-red-dark);
  color: var(--rl-white);
}
.rl-btn-outline {
  background: transparent;
  color: var(--rl-white);
  border: 1px solid rgba(255,255,255,.35);
}
.rl-btn-outline:hover {
  border-color: var(--rl-white);
  background: rgba(255,255,255,.05);
  color: var(--rl-white);
}
.rl-btn-sm { padding: 9px 18px; font-size: 12px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.rl-topbar {
  background: var(--rl-red);
  padding: 7px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  z-index: 200;
}
.rl-topbar a { color: var(--rl-white); opacity: .9; }
.rl-topbar a:hover { opacity: 1; color: var(--rl-white); }
.rl-topbar-links { display: flex; gap: 24px; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.rl-header {
  background: var(--rl-black);
  border-bottom: 1px solid var(--rl-gray-700);
  position: sticky;
  top: 0;
  z-index: 199;
}
.rl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
  max-width: 1320px;
  margin: 0 auto;
}
.rl-logo {
  font-family: var(--rl-font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rl-white);
}
.rl-logo span { color: var(--rl-red); }
.rl-logo:hover { color: var(--rl-white); }
.rl-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.rl-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rl-gray-200);
}
.rl-nav a:hover,
.rl-nav a.current-menu-item { color: var(--rl-white); }
.rl-nav a.rl-nav-sale { color: var(--rl-red); }
.rl-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rl-icon-btn {
  background: none;
  border: none;
  color: var(--rl-gray-200);
  font-size: 18px;
  padding: 6px;
  transition: color .2s;
  display: flex;
  align-items: center;
}
.rl-icon-btn:hover { color: var(--rl-white); }
.rl-cart-btn {
  background: var(--rl-red);
  color: var(--rl-white) !important;
  padding: 9px 18px;
  font-family: var(--rl-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: background .2s;
}
.rl-cart-btn:hover { background: var(--rl-red-dark); color: var(--rl-white); }
.rl-cart-count {
  background: var(--rl-white);
  color: var(--rl-red);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Mobile hamburger */
.rl-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--rl-white);
  font-size: 24px;
}

/* ============================================================
   HERO
   ============================================================ */
.rl-hero {
  position: relative;
  min-height: 540px;
  background: linear-gradient(135deg, var(--rl-gray-900) 0%, #1a0000 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.rl-hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,.018) 60px, rgba(255,255,255,.018) 61px),
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,.018) 60px, rgba(255,255,255,.018) 61px);
  pointer-events: none;
}
.rl-hero-stripe {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  background: var(--rl-red);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: .07;
  pointer-events: none;
}
.rl-hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 0;
  max-width: 620px;
}
.rl-hero-badge {
  background: var(--rl-red);
  display: inline-block;
  padding: 5px 14px;
  font-family: var(--rl-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.rl-hero h1 { margin-bottom: 18px; }
.rl-hero h1 span { color: var(--rl-red); display: block; }
.rl-hero-desc {
  color: var(--rl-gray-200);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 440px;
}
.rl-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.rl-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.rl-stat-val {
  font-family: var(--rl-font-display);
  font-size: 30px;
  font-weight: 900;
  color: var(--rl-red);
  line-height: 1;
}
.rl-stat-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rl-gray-400);
  margin-top: 4px;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.rl-marquee {
  background: var(--rl-red);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}
.rl-marquee-inner {
  display: inline-block;
  animation: rl-marquee 28s linear infinite;
}
.rl-marquee-inner span {
  font-family: var(--rl-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 20px;
}
.rl-marquee-inner .rl-dot { opacity: .5; }
@keyframes rl-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.rl-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}
.rl-section-title {
  font-family: var(--rl-font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.rl-section-title span { color: var(--rl-red); }
.rl-view-all {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rl-red);
  border-bottom: 1px solid var(--rl-red);
  padding-bottom: 2px;
}
.rl-view-all:hover { color: var(--rl-red-dark); border-color: var(--rl-red-dark); }

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.rl-categories { background: var(--rl-gray-900); }
.rl-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.rl-cat-card {
  background: var(--rl-gray-800);
  border: 1px solid var(--rl-gray-700);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  overflow: hidden;
  display: block;
  color: var(--rl-white);
}
.rl-cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rl-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.rl-cat-card:hover {
  border-color: var(--rl-red);
  transform: translateY(-3px);
  color: var(--rl-white);
}
.rl-cat-card:hover::after { transform: scaleX(1); }
.rl-cat-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}
.rl-cat-name {
  font-family: var(--rl-font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.rl-cat-count { font-size: 11px; color: var(--rl-gray-400); }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.rl-products-section { background: var(--rl-black); }
.rl-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.rl-product-card {
  background: var(--rl-gray-900);
  border: 1px solid var(--rl-gray-700);
  cursor: pointer;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.rl-product-card:hover {
  border-color: var(--rl-gray-400);
  transform: translateY(-4px);
}
.rl-product-badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  padding: 4px 10px;
  font-family: var(--rl-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.rl-badge-new  { background: var(--rl-red);    color: #fff; }
.rl-badge-hot  { background: #ff6b00;           color: #fff; }
.rl-badge-sale { background: #1aaa55;           color: #fff; }
.rl-product-img {
  width: 100%;
  height: 200px;
  background: var(--rl-gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.rl-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.rl-product-card:hover .rl-product-img img { transform: scale(1.06); }
.rl-product-img-placeholder { font-size: 72px; }
.rl-product-info {
  padding: 14px 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rl-product-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rl-red);
  margin-bottom: 5px;
}
.rl-product-name {
  font-family: var(--rl-font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
  flex: 1;
}
.rl-product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.rl-price-now {
  font-family: var(--rl-font-display);
  font-size: 20px;
  font-weight: 900;
}
.rl-price-old {
  font-size: 13px;
  color: var(--rl-gray-400);
  text-decoration: line-through;
}
.rl-product-actions { display: flex; gap: 8px; }
.rl-btn-add-cart {
  flex: 1;
  background: var(--rl-red);
  color: #fff;
  border: none;
  padding: 10px;
  font-family: var(--rl-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.rl-btn-add-cart:hover { background: var(--rl-red-dark); }
.rl-btn-wishlist {
  background: var(--rl-gray-700);
  color: var(--rl-gray-200);
  border: none;
  padding: 10px 13px;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s;
}
.rl-btn-wishlist:hover { background: var(--rl-gray-600); color: var(--rl-white); }

/* WooCommerce overrides for product grid */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 !important;
}
.woocommerce ul.products li.product {
  background: var(--rl-gray-900);
  border: 1px solid var(--rl-gray-700);
  transition: all .25s;
  overflow: hidden;
  margin: 0 !important;
  float: none !important;
  width: auto !important;
}
.woocommerce ul.products li.product:hover {
  border-color: var(--rl-gray-400);
  transform: translateY(-4px);
}
.woocommerce ul.products li.product a img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: 0;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--rl-font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--rl-white);
  padding: 0 14px;
  margin: 8px 0;
}
.woocommerce ul.products li.product .price {
  font-family: var(--rl-font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--rl-white) !important;
  padding: 0 14px;
}
.woocommerce ul.products li.product .price del { color: var(--rl-gray-400) !important; font-size: 14px; }
.woocommerce ul.products li.product .button {
  background: var(--rl-red);
  color: #fff;
  font-family: var(--rl-font-display);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  padding: 10px 14px;
  font-size: 12px;
  margin: 12px 14px 14px;
  display: block;
  text-align: center;
  transition: background .2s;
}
.woocommerce ul.products li.product .button:hover { background: var(--rl-red-dark); }

/* ============================================================
   PROMOTIONAL BANNERS
   ============================================================ */
.rl-banners { padding: 0 0 0 0; }
.rl-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.rl-banner {
  position: relative;
  height: 240px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}
.rl-banner-left  { background: linear-gradient(135deg, #1a0000 0%, #3d0000 100%); }
.rl-banner-right { background: linear-gradient(135deg, #0a1a0a 0%, #0f3d0f 100%); }
.rl-banner-emoji {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 90px;
  opacity: .3;
  pointer-events: none;
}
.rl-banner-content {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
}
.rl-banner-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.rl-banner-title {
  font-family: var(--rl-font-display);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: .95;
  margin-bottom: 14px;
}
.rl-banner-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rl-white);
  border-bottom: 2px solid var(--rl-red);
  display: inline-block;
  padding-bottom: 3px;
}
.rl-banner:hover .rl-banner-cta { color: var(--rl-red); }

/* ============================================================
   FEATURED PRODUCT
   ============================================================ */
.rl-featured { background: var(--rl-gray-900); }
.rl-featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.rl-featured-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rl-red);
  margin-bottom: 12px;
}
.rl-featured-title {
  font-family: var(--rl-font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: .92;
  margin-bottom: 16px;
}
.rl-featured-desc {
  color: var(--rl-gray-200);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 24px;
}
.rl-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.rl-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--rl-gray-200);
}
.rl-feature-list li::before {
  content: '✓';
  color: var(--rl-red);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.rl-featured-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.rl-featured-price {
  font-family: var(--rl-font-display);
  font-size: 46px;
  font-weight: 900;
  color: var(--rl-red);
}
.rl-featured-old {
  font-family: var(--rl-font-display);
  font-size: 24px;
  color: var(--rl-gray-400);
  text-decoration: line-through;
}
.rl-discount-badge {
  background: #1aaa55;
  color: #fff;
  padding: 5px 12px;
  font-family: var(--rl-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rl-featured-img {
  background: var(--rl-gray-800);
  border: 1px solid var(--rl-gray-700);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.rl-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rl-featured-img-placeholder { font-size: 130px; }
.rl-featured-drop-tag {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rl-red);
  color: #fff;
  font-family: var(--rl-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  white-space: nowrap;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.rl-reviews-section { background: var(--rl-black); }
.rl-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rl-review-card {
  background: var(--rl-gray-900);
  border: 1px solid var(--rl-gray-700);
  padding: 24px;
}
.rl-stars {
  color: var(--rl-red);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.rl-review-text {
  font-size: 13px;
  color: var(--rl-gray-200);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}
.rl-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rl-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rl-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rl-font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.rl-author-name { font-size: 13px; font-weight: 600; }
.rl-author-meta { font-size: 11px; color: var(--rl-gray-400); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.rl-newsletter {
  background: var(--rl-red);
  padding: 56px 24px;
  text-align: center;
}
.rl-newsletter h2 { margin-bottom: 10px; }
.rl-newsletter p {
  font-size: 15px;
  font-weight: 300;
  opacity: .88;
  margin-bottom: 30px;
}
.rl-nl-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}
.rl-nl-input {
  flex: 1;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.35);
  border-right: none;
  color: #fff;
  padding: 14px 18px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.rl-nl-input::placeholder { color: rgba(255,255,255,.5); }
.rl-nl-input:focus { border-color: rgba(255,255,255,.7); }
.rl-nl-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-family: var(--rl-font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.rl-nl-btn:hover { background: var(--rl-gray-800); }

/* ============================================================
   FOOTER
   ============================================================ */
.rl-footer {
  background: var(--rl-gray-900);
  border-top: 1px solid var(--rl-gray-700);
  padding: 56px 0 28px;
}
.rl-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.rl-footer-brand {
  font-family: var(--rl-font-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.rl-footer-brand span { color: var(--rl-red); }
.rl-footer-desc {
  font-size: 13px;
  color: var(--rl-gray-400);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 250px;
}
.rl-social-row { display: flex; gap: 10px; }
.rl-social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--rl-gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: border-color .2s;
  background: none;
  color: var(--rl-gray-200);
  font-weight: 700;
}
.rl-social-btn:hover { border-color: var(--rl-red); color: var(--rl-white); }
.rl-footer-heading {
  font-family: var(--rl-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rl-gray-200);
  margin-bottom: 18px;
}
.rl-footer-links { display: flex; flex-direction: column; gap: 10px; }
.rl-footer-links a {
  font-size: 13px;
  color: var(--rl-gray-400);
}
.rl-footer-links a:hover { color: var(--rl-white); }
.rl-footer-bottom {
  border-top: 1px solid var(--rl-gray-700);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.rl-footer-copy { font-size: 12px; color: var(--rl-gray-400); }
.rl-payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.rl-pay-icon {
  background: var(--rl-gray-700);
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--rl-gray-200);
  border-radius: 2px;
}

/* ============================================================
   WOOCOMMERCE – SINGLE PRODUCT
   ============================================================ */
.woocommerce div.product {
  background: var(--rl-black);
  color: var(--rl-white);
}
.woocommerce div.product .product_title {
  font-family: var(--rl-font-display);
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--rl-white);
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--rl-font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--rl-red) !important;
}
.woocommerce div.product p.price del { color: var(--rl-gray-400) !important; font-size: 20px; }
.woocommerce div.product .woocommerce-product-rating .star-rating { color: var(--rl-red); }
.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--rl-red) !important;
  color: #fff !important;
  font-family: var(--rl-font-display);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  padding: 14px 32px;
  font-size: 15px;
  transition: background .2s;
  border-radius: 0;
}
.woocommerce div.product form.cart .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { background: var(--rl-red-dark) !important; }

/* ============================================================
   WOOCOMMERCE – CART & CHECKOUT
   ============================================================ */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  background: var(--rl-black);
  color: var(--rl-white);
}
.woocommerce table.shop_table {
  background: var(--rl-gray-900);
  border: 1px solid var(--rl-gray-700) !important;
  color: var(--rl-white);
}
.woocommerce table.shop_table th {
  background: var(--rl-gray-800);
  color: var(--rl-white);
  font-family: var(--rl-font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rl-gray-700) !important;
}
.woocommerce table.shop_table td { border-bottom: 1px solid var(--rl-gray-700) !important; color: var(--rl-white); }
.woocommerce .cart-collaterals .cart_totals { background: var(--rl-gray-900); border: 1px solid var(--rl-gray-700); padding: 24px; }
.woocommerce form .form-row label { color: var(--rl-gray-200); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: var(--rl-gray-800);
  border: 1px solid var(--rl-gray-700);
  color: var(--rl-white);
  border-radius: 0;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus { border-color: var(--rl-red); outline: none; }

/* ============================================================
   PAGE: SHOP / ARCHIVE
   ============================================================ */
.rl-shop-header {
  background: var(--rl-gray-900);
  border-bottom: 1px solid var(--rl-gray-700);
  padding: 32px 0;
  margin-bottom: 40px;
}
.rl-shop-header h1 { font-size: 42px; }
.woocommerce .woocommerce-ordering select {
  background: var(--rl-gray-800);
  border: 1px solid var(--rl-gray-700);
  color: var(--rl-white);
  padding: 8px 12px;
  border-radius: 0;
}
.woocommerce-pagination ul.page-numbers { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
  background: var(--rl-gray-800);
  border: 1px solid var(--rl-gray-700);
  color: var(--rl-white);
  padding: 8px 16px;
  font-family: var(--rl-font-display);
  font-weight: 700;
  letter-spacing: .06em;
  display: block;
}
.woocommerce-pagination ul.page-numbers li .current,
.woocommerce-pagination ul.page-numbers li a:hover {
  background: var(--rl-red);
  border-color: var(--rl-red);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .rl-product-grid,
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .rl-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .rl-featured-inner { grid-template-columns: 1fr; }
  .rl-review-grid { grid-template-columns: repeat(2, 1fr); }
  .rl-footer-grid { grid-template-columns: 1fr 1fr; }
  .rl-banner-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .rl-nav { display: none; }
  .rl-menu-toggle { display: block; }
  .rl-product-grid,
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
  .rl-hero-stats { gap: 20px; }
  .rl-hero h1 { font-size: 42px; }
  .rl-topbar-links { display: none; }
}
@media (max-width: 480px) {
  .rl-product-grid,
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .rl-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .rl-review-grid { grid-template-columns: 1fr; }
  .rl-footer-grid { grid-template-columns: 1fr; }
  .rl-nl-form { flex-direction: column; }
  .rl-nl-input { border-right: 1px solid rgba(255,255,255,.35); border-bottom: none; }
}
