/*
Theme Name: Luma Abaya
Theme URI: https://example.com
Author: Luma
Author URI: https://example.com
Description: A beautiful Arabic RTL e-commerce theme for abaya store with mobile-first responsive design
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luma-abaya
Tags: e-commerce, rtl-language-support, custom-menu, featured-images, flexible-header, footer-widgets, full-width-template, theme-options, translation-ready
*/

:root {
    --primary-color: #998874;
    --primary-dark: #7d6f5e;
    --secondary-color: #cac6c3;
    --bg-light: #f8f7f6;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --border-color: #e0deda;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Moltaqa', Arial, sans-serif;
    direction: rtl;
    background: #fff;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #b8b3b0;
}

/* Responsive */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }
}

@media (min-width: 1440px) {
    .container {
        padding: 0 80px;
    }
}
