/*
Theme Name: Pink Chew
Theme URI: https://pinkchew.example.com
Author: KM Computers
Description: A modern, fully professional luxury WooCommerce WordPress theme for a Pakistani fashion clothing brand. Complete with demo products, mega menu, and luxury UI.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: pink-chew
Tags: e-commerce, custom-colors, custom-menu, custom-logo, featured-images, accessibility-ready, block-patterns, full-width-template
*/

/* Core CSS variables */
:root {
    --color-primary: #111111; /* Luxury black */
    --color-secondary: #e5c3c6; /* Soft pink */
    --color-text: #333333;
    --color-text-light: #777777;
    --color-bg: #ffffff;
    --color-bg-light: #f7f7f7;
    --color-border: #eaeaea;
    --font-primary: 'Playfair Display', serif; /* Luxury heading */
    --font-secondary: 'Lato', sans-serif; /* Body text */
    --font-heading: 'Playfair Display', serif; /* Luxury heading */
    --font-body: 'Lato', sans-serif; /* Body text */
    --container-width: 1400px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--color-secondary);
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}
