/*
Theme Name: Faqqua Perfumes Pro
Theme URI: https://faqqua.com
Author: Faqqua Perfumes
Description: A premium minimalist luxury perfume e-commerce theme.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: faqqua-perfumes
Tags: e-commerce, woocommerce, custom-menu, custom-logo, featured-images
*/

:root {
    --color-bg: #FFFFFF;
    --color-bg-secondary: #FAFAFA;
    --color-bg-card: #FFFFFF;
    --color-bg-card-hover: #FFFFFF;
    --color-gold: #000000; /* Replaced gold with black for minimalism */
    --color-gold-light: #333333;
    --color-gold-dark: #000000;
    --color-text: #111111;
    --color-text-secondary: #555555;
    --color-text-muted: #888888;
    --color-border: #EEEEEE;
    --color-border-hover: #CCCCCC;
    --color-overlay: rgba(255, 255, 255, 0.9);
    --color-success: #4CAF50;
    --color-error: #E53935;
    --font-heading: 'Montserrat', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-gold: 0 8px 24px rgba(0,0,0,0.15); /* Minimalist shadow instead of gold */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-full: 50%;
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    --container-width: 1200px;
    --header-height: 80px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.4s ease, color 0.4s ease;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}
