/*
Theme Name: Zenith Lifestyle
Theme URI: 
Author: Antigravity AI
Description: A custom Elementor-compatible WooCommerce theme for Zenith Lifestyle with a dark aesthetic, golden accents, and Indian cultural vibes.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zenith-lifestyle
*/

/* --------------------------------------------------------------------------
   CSS Variables
   Dark background, golden text/borders
-------------------------------------------------------------------------- */
:root {
  --zl-bg-color: #121212;
  --zl-bg-alt: #1e1e1e;
  --zl-text-color: #ffffff;
  --zl-text-muted: #cccccc;
  --zl-gold: #d4af37;
  --zl-border: #C0667A; /* Vibrant Rose Gold */
  --zl-font-heading: 'Outfit', sans-serif;
  --zl-font-body: 'Outfit', sans-serif;
  --zl-logo-width: 150px;
  --zl-rose-gold: #C0667A;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--zl-bg-color);
  color: var(--zl-text-color);
  font-family: var(--zl-font-body);
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--zl-font-heading);
  color: #ffffff;
  margin-top: 0;
}

a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}
