/*
Theme Name: CAVERO - Premium Moroccan Shoes
Theme URI: https://cavero.ma
Author: CAVERO Team
Author URI: https://cavero.ma
Description: A premium, modern, fully responsive WordPress WooCommerce theme for CAVERO - Luxury Moroccan Shoes Brand. Features dark luxury aesthetic, mobile-first design, WhatsApp ordering, AJAX cart, RTL support, and conversion optimization.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cavero
Domain Path: /languages
Tags: e-commerce, woocommerce, rtl-language-support, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, block-styles, wide-blocks

WC requires at least: 7.0
WC tested up to: 8.5
*/

/* ============================================
   CAVERO THEME - PREMIUM MOROCCAN SHOES BRAND
   ============================================ */

/* CSS Variables */
:root {
    --cavero-black: #0a0a0a;
    --cavero-dark: #1a1a1a;
    --cavero-charcoal: #2d2d2d;
    --cavero-white: #ffffff;
    --cavero-cream: #faf8f5;
    --cavero-beige: #f5f0e8;
    --cavero-sand: #e8dfd0;
    --cavero-gold: #c9a96e;
    --cavero-gold-light: #d4af37;
    --cavero-gold-dark: #a08040;
    --cavero-gray: #888888;
    --cavero-gray-light: #cccccc;
    --cavero-border: rgba(201, 169, 110, 0.2);

    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.15);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

/* Base Reset & Typography */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--cavero-charcoal);
    background-color: var(--cavero-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--cavero-black);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

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

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

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

button, input, select, textarea {
    font-family: var(--font-body);
    font-size: 15px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cavero-beige);
}

::-webkit-scrollbar-thumb {
    background: var(--cavero-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cavero-gold-dark);
}

/* Selection */
::selection {
    background: var(--cavero-gold);
    color: var(--cavero-white);
}
