*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --walnut: #2C1A0E;
    --walnut-light: #4A2E1A;
    --gold: #C9963A;
    --gold-light: #E5B85A;
    --ivory: #F9F4EE;
    --cream: #EDE5D8;
    --charcoal: #1C1C1C;
    --muted: #6B5D52;
    --white: #ffffff;
    --radius: 4px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--ivory);
    color: var(--charcoal);
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor-dot {
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.3s;
    mix-blend-mode: multiply;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, width 0.3s, height 0.3s, border-color 0.3s;
  }
  .cursor-ring.hovered { width: 56px; height: 56px; border-color: var(--gold-light); }
  .cursor-trail {
    width: 6px; height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw;
    height: 68px;
    background: rgba(44, 26, 14, 0.96);
    backdrop-filter: blur(12px);
    transition: var(--transition);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--ivory);
    letter-spacing: 0.02em;
    line-height: 1;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links {
    display: flex; gap: 2rem; list-style: none;
  }
  .nav-links a {
    color: var(--cream); font-size: 0.875rem; font-weight: 400;
    text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--gold); color: var(--walnut);
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none;
    border-radius: var(--radius);
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--ivory); border-radius: 2px;
    transition: var(--transition);
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: var(--walnut); padding: 1.5rem 5vw;
    flex-direction: column; gap: 1.25rem; z-index: 999;
    transform: translateY(-8px); opacity: 0;
    transition: var(--transition);
  }
  .mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
  .mobile-menu a {
    color: var(--cream); font-size: 1rem; text-decoration: none;
    letter-spacing: 0.05em; padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201,150,58,0.2);
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu .mob-cta {
    background: var(--gold); color: var(--walnut);
    text-align: center; padding: 0.85rem;
    border-radius: var(--radius); font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    border: none;
  }

  /* HERO SLIDER */
  .hero {
    position: relative; height: 100svh; min-height: 600px;
    overflow: hidden;
  }
  .slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: opacity;
  }
  .slide.active { opacity: 1; }
  .slide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transform: scale(1.08);
    transition: transform 7s ease;
  }
  .slide.active img { transform: scale(1); }
  .slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      135deg,
      rgba(44,26,14,0.72) 0%,
      rgba(44,26,14,0.35) 60%,
      rgba(44,26,14,0.1) 100%
    );
  }
  .hero-content {
    position: absolute; bottom: 15%; left: 5vw; right: 5vw;
    max-width: 680px;
    animation: fadeUp 0.8s ease both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    display: inline-block;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1rem;
    border-left: 2px solid var(--gold); padding-left: 0.75rem;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 700; line-height: 1.1;
    color: var(--ivory); margin-bottom: 1.25rem;
  }
  .hero-title em { color: var(--gold); font-style: italic; }
  .hero-sub {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 300; line-height: 1.7;
    color: rgba(249,244,238,0.82); margin-bottom: 2rem;
    max-width: 480px;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--walnut);
    padding: 0.9rem 2rem; border-radius: var(--radius);
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none; border: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(201,150,58,0.35);
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,150,58,0.45);
  }
  .btn-ghost {
    background: transparent; color: var(--ivory);
    padding: 0.9rem 2rem; border-radius: var(--radius);
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none;
    border: 1.5px solid rgba(249,244,238,0.4);
    transition: border-color 0.3s, color 0.3s, transform 0.2s;
  }
  .btn-ghost:hover {
    border-color: var(--gold); color: var(--gold);
    transform: translateY(-2px);
  }

  /* SLIDER DOTS & PROGRESS */
  .slider-nav {
    position: absolute; bottom: 6%; left: 5vw;
    display: flex; align-items: center; gap: 0.75rem; z-index: 10;
  }
  .slider-dot {
    width: 28px; height: 3px; border-radius: 2px;
    background: rgba(249,244,238,0.3);
    cursor: pointer; transition: background 0.3s, width 0.3s;
    border: none;
    position: relative; overflow: hidden;
  }
  .slider-dot.active { width: 48px; background: rgba(249,244,238,0.5); }
  .slider-dot .fill {
    position: absolute; top: 0; left: 0; height: 100%;
    background: var(--gold); width: 0;
    border-radius: 2px;
  }
  .slider-dot.active .fill { animation: fillProgress 7s linear forwards; }
  @keyframes fillProgress { from { width: 0; } to { width: 100%; } }
  .slide-counter {
    position: absolute; bottom: 6%; right: 5vw;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem; color: rgba(249,244,238,0.6);
    z-index: 10; letter-spacing: 0.08em;
  }
  .slide-counter span { color: var(--gold); font-weight: 600; }

  /* MARQUEE */
  .marquee-bar {
    background: var(--walnut);
    padding: 0.85rem 0; overflow: hidden;
  }
  .marquee-track {
    display: flex; gap: 0; white-space: nowrap;
    animation: marquee 22s linear infinite;
  }
  .marquee-track:hover { animation-play-state: paused; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 0 2.5rem;
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--cream);
  }
  .marquee-item .dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
  }

  /* SECTIONS */
  section { padding: 5rem 5vw; }
  .section-label {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .section-label::before {
    content: ''; display: block;
    width: 32px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700; line-height: 1.2;
    color: var(--walnut); margin-bottom: 1rem;
  }
  .section-title em { color: var(--gold); font-style: italic; }
  .section-sub {
    font-size: 1rem; color: var(--muted); line-height: 1.75;
    max-width: 540px;
  }

  /* ABOUT STRIP */
  .about-strip {
    background: var(--walnut);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; min-height: 520px;
  }
  .about-img { overflow: hidden; position: relative; }
  .about-img img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform 0.6s ease;
  }
  .about-img:hover img { transform: scale(1.04); }
  .about-text {
    padding: 4rem 6% 4rem;
    display: flex; flex-direction: column; justify-content: center;
  }
  .about-text .section-label { color: var(--gold-light); }
  .about-text .section-label::before { background: var(--gold-light); }
  .about-text .section-title { color: var(--ivory); }
  .about-text .section-sub { color: rgba(237,229,216,0.75); }
  .about-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .stat-item { border-left: 2px solid var(--gold); padding-left: 1rem; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 700; color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.75rem; color: rgba(237,229,216,0.65);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-top: 0.25rem;
  }

  /* PRODUCTS */
  .products-section { background: var(--cream); }
  .products-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap;
  }
  .filter-tabs {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    margin-top: 1.5rem;
  }
  .filter-btn {
    padding: 0.45rem 1.1rem;
    border: 1.5px solid var(--walnut-light);
    background: transparent; color: var(--walnut);
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
    border-radius: 100px; cursor: pointer;
    transition: all 0.25s;
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--walnut); color: var(--ivory);
    border-color: var(--walnut);
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .product-card {
    background: var(--white);
    border-radius: 8px; overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(44,26,14,0.08);
  }
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(44,26,14,0.14);
  }
  .product-img-wrap {
    position: relative; overflow: hidden;
    aspect-ratio: 4/3;
  }
  .product-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .product-card:hover .product-img-wrap img { transform: scale(1.06); }
  .product-badge {
    position: absolute; top: 0.75rem; left: 0.75rem;
    background: var(--gold); color: var(--walnut);
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 0.25rem 0.6rem;
    border-radius: 3px;
  }
  .product-info { padding: 1.25rem 1.25rem 1.5rem; }
  .product-cat {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem;
  }
  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 600; color: var(--walnut);
    line-height: 1.3; margin-bottom: 0.5rem;
  }
  .product-desc {
    font-size: 0.82rem; color: var(--muted); line-height: 1.6;
    margin-bottom: 1.1rem;
  }
  .product-footer {
    display: flex; align-items: center; justify-content: space-between;
  }
  .product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700; color: var(--walnut);
  }
  .enquire-btn {
    background: var(--walnut); color: var(--ivory);
    padding: 0.5rem 1rem;
    border-radius: var(--radius); border: none; cursor: pointer;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none;
    transition: background 0.25s;
  }
  .enquire-btn:hover { background: var(--gold); color: var(--walnut); }

  /* WHY US */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem; margin-top: 3rem;
  }
  .why-card {
    text-align: center; padding: 2.5rem 1.5rem;
    border: 1px solid rgba(44,26,14,0.1);
    border-radius: 8px;
    transition: border-color 0.3s, transform 0.3s;
    background: var(--white);
  }
  .why-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
  }
  .why-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--cream); margin: 0 auto 1.25rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    transition: background 0.3s;
  }
  .why-card:hover .why-icon { background: var(--gold); }
  .why-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 600; color: var(--walnut);
    margin-bottom: 0.5rem;
  }
  .why-text { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

  /* CTA SECTION */
  .cta-section {
    background: var(--walnut);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center; gap: 3rem;
    padding: 5rem 8vw;
  }
  .cta-tagline {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
  }
  .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700; color: var(--ivory); line-height: 1.2;
    margin-bottom: 1rem;
  }
  .cta-title em { color: var(--gold); font-style: italic; }
  .cta-body {
    color: rgba(237,229,216,0.7); font-size: 0.95rem;
    line-height: 1.7; max-width: 480px;
  }
  .cta-box {
    flex-shrink: 0; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  }
  .cta-phone {
    display: flex; flex-direction: column; align-items: center;
  }
  .cta-phone-label {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(237,229,216,0.5); margin-bottom: 0.3rem;
  }
  .cta-phone-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700; color: var(--gold);
    text-decoration: none; transition: color 0.3s;
  }
  .cta-phone-num:hover { color: var(--gold-light); }
  .cta-btn-big {
    background: var(--gold); color: var(--walnut);
    padding: 1.1rem 2.5rem; border-radius: var(--radius);
    font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none; border: none;
    cursor: pointer; white-space: nowrap;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 6px 24px rgba(201,150,58,0.4);
    display: inline-block;
  }
  .cta-btn-big:hover {
    background: var(--gold-light); transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(201,150,58,0.5);
  }
  .cta-btn-call {
    background: transparent; color: var(--ivory);
    padding: 1rem 2.5rem; border-radius: var(--radius);
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none;
    border: 1.5px solid rgba(249,244,238,0.3);
    transition: border-color 0.3s, color 0.3s;
    display: inline-block; text-align: center;
  }
  .cta-btn-call:hover { border-color: var(--gold); color: var(--gold); }

  /* TESTIMONIALS */
  .testimonials-section { background: var(--ivory); }
  .testimonials-track {
    display: flex; gap: 1.5rem; overflow-x: auto;
    padding-bottom: 1rem; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testimonials-track::-webkit-scrollbar { display: none; }
  .testimonial-card {
    flex: 0 0 300px; scroll-snap-align: start;
    background: var(--white); border-radius: 8px;
    padding: 2rem; border: 1px solid rgba(44,26,14,0.08);
  }
  .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
  .testimonial-text {
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: 0.95rem; color: var(--walnut); line-height: 1.75;
    margin-bottom: 1.25rem;
  }
  .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
  .author-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--walnut); color: var(--gold);
    font-family: 'Playfair Display', serif; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
  }
  .author-name { font-weight: 600; font-size: 0.85rem; color: var(--walnut); }
  .author-loc { font-size: 0.72rem; color: var(--muted); }

  /* FOOTER */
  footer {
    background: #1a0f07;
    padding: 4rem 5vw 2rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
  }
  .footer-brand { }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700; color: var(--ivory);
    margin-bottom: 1rem; display: block;
  }
  .footer-logo span { color: var(--gold); }
  .footer-tagline {
    font-size: 0.85rem; color: rgba(237,229,216,0.55);
    line-height: 1.7; margin-bottom: 1.5rem;
  }
  .footer-contact a {
    display: block; color: var(--gold);
    font-size: 1.05rem; font-weight: 600; text-decoration: none;
    font-family: 'Playfair Display', serif;
    transition: color 0.2s;
  }
  .footer-contact a:hover { color: var(--gold-light); }
  .footer-contact-label {
    font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(237,229,216,0.4); margin-bottom: 0.3rem;
  }
  .footer-col h4 {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.65rem; }
  .footer-col ul li a {
    color: rgba(237,229,216,0.6); font-size: 0.875rem;
    text-decoration: none; transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--ivory); }
  .footer-bottom {
    border-top: 1px solid rgba(201,150,58,0.15);
    padding-top: 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 0.5rem;
  }
  .footer-bottom p {
    font-size: 0.75rem; color: rgba(237,229,216,0.35);
  }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* WHATSAPP FLOAT */
  .whatsapp-float {
    position: fixed; bottom: 1.75rem; right: 1.5rem; z-index: 900;
    background: #25D366; color: #fff;
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; text-decoration: none;
    box-shadow: 0 4px 18px rgba(37,211,102,0.45);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse-green 2.5s infinite;
  }
  .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }
  @keyframes pulse-green {
    0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .nav-links, nav .nav-cta { display: none; }
    .hamburger { display: flex; }
    .about-strip { grid-template-columns: 1fr; }
    .about-img { min-height: 280px; }
    .cta-section { grid-template-columns: 1fr; }
    .cta-box { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 600px) {
    section { padding: 3.5rem 5vw; }
    .hero-content { bottom: 18%; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    body { cursor: auto; }
    .cursor-dot, .cursor-ring, .cursor-trail { display: none; }
    .about-stats { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 420px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-ghost { text-align: center; }
  }