/** Shopify CDN: Minification failed

Line 30:0 Unexpected "<"
Line 629:0 Unexpected "<"

**/
.page-title {
  margin-top: 0;
}

.main-page-title {
  margin-bottom: 3rem;
}

@media screen and (min-width: 750px) {
  .main-page-title {
    margin-bottom: 4rem;
  }
}

.page-placeholder-wrapper {
  display: flex;
  justify-content: center;
}

.page-placeholder {
  width: 52.5rem;
  height: 52.5rem;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>REXSAR™ – Smarter Living</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #0a0a0a;
    --white: #f8f5f0;
    --accent: #e8441a;
    --accent2: #1a1a2e;
    --mid: #c8c4bc;
    --card-bg: #f0ece5;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── ANNOUNCEMENT BAR ── */
  .bar {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 10px 1rem;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .bar span { margin: 0 18px; opacity: 0.6; }

  /* ── NAV ── */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 5vw;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--white);
    text-decoration: none;
  }
  .nav-logo sup {
    font-size: 10px;
    font-weight: 400;
    vertical-align: super;
    opacity: 0.5;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: var(--mid);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .nav-cart {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
  }
  .nav-cart:hover { opacity: 0.85; }

  /* ── HERO ── */
  .hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5vw;
    gap: 4rem;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,68,26,0.15) 0%, transparent 70%);
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .hero-tag {
    display: inline-block;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 6px 14px;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--accent);
  }
  .hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--mid);
    max-width: 440px;
    margin-bottom: 40px;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 16px 36px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s, transform 0.2s;
  }
  .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
  .btn-secondary {
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.03em;
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  .btn-secondary:hover { opacity: 1; }
  .btn-secondary::after { content: '→'; }
  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    color: var(--white);
    display: block;
  }
  .stat-label {
    font-size: 12px;
    color: var(--mid);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
  }
  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-img-frame {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1.05;
    background: #161616;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .hero-img-frame img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    mix-blend-mode: lighten;
  }
  .hero-badge {
    position: absolute;
    bottom: 28px;
    left: -20px;
    background: var(--accent);
    padding: 14px 20px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
  }
  .hero-badge span { display: block; font-size: 20px; font-weight: 800; }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 36px;
    border-right: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
    color: var(--mid);
    letter-spacing: 0.04em;
  }
  .trust-item:last-child { border-right: none; }
  .trust-icon {
    font-size: 18px;
    filter: grayscale(1) brightness(1.5);
  }
  .trust-item strong {
    color: var(--white);
    font-weight: 500;
  }

  /* ── SECTION LABEL ── */
  .section-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
  }
  .section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.025em;
    line-height: 1.1;
  }

  /* ── PRODUCTS ── */
  .products {
    padding: 100px 5vw;
  }
  .products-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .view-all {
    color: var(--mid);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }
  .view-all::after { content: '→'; }
  .view-all:hover { color: var(--white); }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
  }
  .product-card {
    background: #111;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .product-card:hover { background: #161616; }
  .product-card:hover .product-img { transform: scale(1.04); }
  .product-img-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0d0d0d;
    position: relative;
  }
  .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .product-sale-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    padding: 4px 10px;
    letter-spacing: 0.04em;
  }
  .product-info {
    padding: 22px 22px 28px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .product-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
  }
  .product-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .price-now {
    font-weight: 500;
    font-size: 18px;
  }
  .price-was {
    font-size: 13px;
    color: var(--mid);
    text-decoration: line-through;
  }
  .product-reviews {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
  }
  .stars { color: #f5a623; font-size: 13px; }
  .review-count { font-size: 12px; color: var(--mid); }

  /* ── VALUE PROPS ── */
  .values {
    padding: 100px 5vw;
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    margin-top: 56px;
  }
  .value-card {
    padding: 40px 30px;
    background: #111;
  }
  .value-num {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: rgba(232,68,26,0.2);
    line-height: 1;
    margin-bottom: 16px;
  }
  .value-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
  }
  .value-desc {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.7;
  }

  /* ── ABOUT ── */
  .about {
    padding: 100px 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-text { max-width: 500px; }
  .about-text p {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 36px;
  }
  .about-img {
    background: #111;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 800;
    color: rgba(255,255,255,0.04);
    letter-spacing: -0.04em;
  }

  /* ── EMAIL SIGNUP ── */
  .signup {
    padding: 80px 5vw;
    background: var(--accent);
    text-align: center;
  }
  .signup h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.025em;
    margin-bottom: 10px;
  }
  .signup p {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 32px;
  }
  .signup-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 0;
  }
  .signup-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    background: rgba(0,0,0,0.25);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
  }
  .signup-form input::placeholder { color: rgba(255,255,255,0.5); }
  .signup-form button {
    background: #0a0a0a;
    color: #fff;
    border: none;
    padding: 16px 28px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .signup-form button:hover { opacity: 0.8; }

  /* ── FOOTER ── */
  footer {
    background: #050505;
    padding: 60px 5vw 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-brand p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
  }
  .footer-col h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col a {
    color: var(--mid);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
  }
  .payment-icons {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; padding-top: 60px; min-height: auto; }
    .hero-visual { display: none; }
    .hero-stats { gap: 24px; }
    .about { grid-template-columns: 1fr; }
    .about-img { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .trust-item { padding: 14px 20px; }
    nav { padding: 16px 5vw; }
    .nav-links { display: none; }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-tag { animation: fadeUp 0.6s ease both; }
  .hero h1 { animation: fadeUp 0.6s 0.1s ease both; }
  .hero-sub { animation: fadeUp 0.6s 0.2s ease both; }
  .hero-actions { animation: fadeUp 0.6s 0.3s ease both; }
  .hero-stats { animation: fadeUp 0.6s 0.4s ease both; }
</style>
</head>
<body>

<!-- ANNOUNCEMENT BAR -->
<div class="bar">
  ⚡ Limited offer: 50% off sitewide <span>|</span> Free worldwide shipping on all orders <span>|</span> 30-day returns
</div>

<!-- NAV -->
<nav>
  <a href="/" class="nav-logo">REXSAR<sup>™</sup></a>
  <ul class="nav-links">
    <li><a href="/collections/all">Products</a></li>
    <li><a href="/pages/contact">Contact</a></li>
  </ul>
  <div class="nav-right">
    <a href="/cart" class="nav-cart">Cart (0)</a>
  </div>
</nav>

<!-- HERO -->
<section class="hero">
  <div class="hero-content">
    <span class="hero-tag">New arrivals 2025</span>
    <h1>Live <em>smarter.</em><br>Every day.</h1>
    <p class="hero-sub">Smart gadgets built for the way you live — from deep sleep to seamless travel. Designed for real life, not just the shelf.</p>
    <div class="hero-actions">
      <a href="/collections/all" class="btn-primary">Shop Now</a>
      <a href="#products" class="btn-secondary">See best sellers</a>
    </div>
    <div class="hero-stats">
      <div>
        <span class="stat-num">12K+</span>
        <span class="stat-label">Happy customers</span>
      </div>
      <div>
        <span class="stat-num">4.8★</span>
        <span class="stat-label">Average rating</span>
      </div>
      <div>
        <span class="stat-num">30</span>
        <span class="stat-label">Day returns</span>
      </div>
    </div>
  </div>
  <div class="hero-visual">
    <div class="hero-img-frame">
      <img src="https://shoprexsar.com/cdn/shop/files/openart-4ee0b5534ad24500b9fb02f58987a24e_raw.png?v=1774579279&width=800" alt="REXSAR hero product" />
      <div class="hero-badge">50% OFF<span>Today Only</span></div>
    </div>
  </div>
</section>

<!-- TRUST BAR -->
<div class="trust-bar">
  <div class="trust-item">
    <span class="trust-icon">🔒</span>
    <div><strong>Secure checkout</strong><br>256-bit SSL</div>
  </div>
  <div class="trust-item">
    <span class="trust-icon">🚚</span>
    <div><strong>Free shipping</strong><br>Worldwide</div>
  </div>
  <div class="trust-item">
    <span class="trust-icon">↩️</span>
    <div><strong>30-day returns</strong><br>No questions asked</div>
  </div>
  <div class="trust-item">
    <span class="trust-icon">⭐</span>
    <div><strong>12,000+ reviews</strong><br>Rated 4.8/5</div>
  </div>
</div>

<!-- PRODUCTS -->
<section class="products" id="products">
  <div class="products-head">
    <div>
      <span class="section-label">Best sellers</span>
      <h2 class="section-title">Most Loved<br>Products</h2>
    </div>
    <a href="/collections/all" class="view-all">View all products</a>
  </div>

  <div class="product-grid">

    <a href="/products/led-night-light-galaxy-star-projector-4k-hd-13-in-1-planetarium-projector-360-rotation-for-bedroom-decor-children-gift" class="product-card">
      <div class="product-img-wrap">
        <img class="product-img" src="https://shoprexsar.com/cdn/shop/files/5125044-69c34827d8ebc3ef58dd1e79-477564fa-178b-4cad-9be6-0f28c21a5cb9.png?v=1774516355&width=533" alt="Galaxy Night Projector" />
        <span class="product-sale-badge">50% OFF</span>
      </div>
      <div class="product-info">
        <div class="product-reviews">
          <span class="stars">★★★★★</span>
          <span class="review-count">(248 reviews)</span>
        </div>
        <div class="product-name">Dreamy Galaxy Night Projector</div>
        <div class="product-pricing">
          <span class="price-now">$99.99</span>
          <span class="price-was">$199.99</span>
        </div>
      </div>
    </a>

    <a href="/products/bt-earphones-sports-sleeping-headband-elastic-wireless-headphones-music-eye-mask-wireless-bluetooth-headset-headband" class="product-card">
      <div class="product-img-wrap">
        <img class="product-img" src="https://shoprexsar.com/cdn/shop/files/807c66fe34fb27c5d62086981d8f5995.jpg?v=1774856532&width=533" alt="Sleep Music Headband" />
        <span class="product-sale-badge">SALE</span>
      </div>
      <div class="product-info">
        <div class="product-reviews">
          <span class="stars">★★★★★</span>
          <span class="review-count">(184 reviews)</span>
        </div>
        <div class="product-name">Cozy Sleep Music Headband</div>
        <div class="product-pricing">
          <span class="price-now">$49.99</span>
        </div>
      </div>
    </a>

    <a href="/products/transform-your-babys-sleep-with-the-mbz085-white-noise-machine-28-soothing-sounds-colorful-night-lights" class="product-card">
      <div class="product-img-wrap">
        <img class="product-img" src="https://shoprexsar.com/cdn/shop/files/S5b0c47a0d4514c92932451917ec080f4G.webp?v=1774647386&width=533" alt="Sleep Sound Machine" />
        <span class="product-sale-badge">37% OFF</span>
      </div>
      <div class="product-info">
        <div class="product-reviews">
          <span class="stars">★★★★☆</span>
          <span class="review-count">(97 reviews)</span>
        </div>
        <div class="product-name">Portable Sleep Sound Machine</div>
        <div class="product-pricing">
          <span class="price-now">$99.99</span>
          <span class="price-was">$159.99</span>
        </div>
      </div>
    </a>

    <a href="/products/experience-seamless-communication-with-3-in-1-ai-translator-earbuds-144-languages-noise-cancelling-and-bluetooth-5-3-for-instant-voice-translation" class="product-card">
      <div class="product-img-wrap">
        <img class="product-img" src="https://shoprexsar.com/cdn/shop/files/87b9a278faa197556952a5eb356859a3.jpg?v=1774656088&width=533" alt="AI Translation Earbuds" />
        <span class="product-sale-badge">50% OFF</span>
      </div>
      <div class="product-info">
        <div class="product-reviews">
          <span class="stars">★★★★★</span>
          <span class="review-count">(312 reviews)</span>
        </div>
        <div class="product-name">AI Live Translation Earbuds</div>
        <div class="product-pricing">
          <span class="price-now">$79.99</span>
          <span class="price-was">$159.99</span>
        </div>
      </div>
    </a>

  </div>
</section>

<!-- VALUE PROPS -->
<section class="values">
  <div>
    <span class="section-label">Why REXSAR</span>
    <h2 class="section-title">Built different.<br>Designed to last.</h2>
  </div>
  <div class="values-grid">
    <div class="value-card">
      <div class="value-num">01</div>
      <div class="value-title">Premium Quality</div>
      <p class="value-desc">Every product goes through rigorous quality testing before it reaches your door. No compromises.</p>
    </div>
    <div class="value-card">
      <div class="value-num">02</div>
      <div class="value-title">Worldwide Delivery</div>
      <p class="value-desc">We ship to 28+ countries with reliable tracking so you always know where your order is.</p>
    </div>
    <div class="value-card">
      <div class="value-num">03</div>
      <div class="value-title">Hassle-Free Returns</div>
      <p class="value-desc">Not happy? Return within 30 days, no questions asked. We make it simple.</p>
    </div>
    <div class="value-card">
      <div class="value-num">04</div>
      <div class="value-title">Real Support</div>
      <p class="value-desc">Humans, not bots. Our team is here to help with anything you need, fast.</p>
    </div>
  </div>
</section>

<!-- ABOUT -->
<section class="about">
  <div class="about-text">
    <span class="section-label">Our story</span>
    <h2 class="section-title">Smarter products<br>for real life.</h2>
    <p>We started REXSAR because we were tired of gadgets that looked great in photos but failed in real life. Our founders spent years testing products from around the world — keeping only the ones that genuinely made daily life easier, more comfortable, and more connected.</p>
    <p>Today, REXSAR ships to customers across 28 countries, and every product we carry has earned its place through honest performance — not hype.</p>
    <a href="/pages/contact" class="btn-primary">Get in touch</a>
  </div>
  <div class="about-img">REXSAR</div>
</section>

<!-- EMAIL SIGNUP -->
<section class="signup">
  <h2>Get 10% off your first order</h2>
  <p>Join 12,000+ smart shoppers. No spam, ever — just deals and new arrivals.</p>
  <form class="signup-form" onsubmit="return false;">
    <input type="email" placeholder="Your email address" />
    <button type="submit">Subscribe</button>
  </form>
</section>

<!-- FOOTER -->
<footer>
  <div class="footer-top">
    <div class="footer-brand">
      <a href="/" class="nav-logo" style="font-size:20px;">REXSAR<sup>™</sup></a>
      <p>Smart, simple products that improve your daily life. Shipping worldwide since 2023.</p>
    </div>
    <div class="footer-col">
      <h4>Shop</h4>
      <ul>
        <li><a href="/collections/all">All Products</a></li>
        <li><a href="/collections/all">Best Sellers</a></li>
        <li><a href="/collections/all">New Arrivals</a></li>
      </ul>
    </div>
    <div class="footer-col">
      <h4>Help</h4>
      <ul>
        <li><a href="/pages/contact">Contact Us</a></li>
        <li><a href="/policies/shipping-policy">Shipping Policy</a></li>
        <li><a href="/policies/refund-policy">Returns</a></li>
      </ul>
    </div>
    <div class="footer-col">
      <h4>Legal</h4>
      <ul>
        <li><a href="/policies/privacy-policy">Privacy Policy</a></li>
        <li><a href="/policies/terms-of-service">Terms of Service</a></li>
      </ul>
    </div>
  </div>
  <div class="footer-bottom">
    <p>© 2025 REXSAR™. All rights reserved. Powered by Shopify.</p>
    <div class="payment-icons">Visa · Mastercard · PayPal · Apple Pay · Google Pay</div>
  </div>
</footer>

</body>
</html>
