/*
Theme Name: Karen Boys Fashion
Theme URI: https://example.com/karen-boys-fashion
Author: Custom Theme Generator
Author URI: https://example.com
Description: A luxury, responsive WooCommerce theme specifically crafted for boys' fashion and apparel.
Version: 1.0.0
Text Domain: karen-fashion
*/

:root {
    --primary-color: #0b132b;    /* Deep Navy */
    --accent-gold: #d4af37;     /* Gold Accent */
    --accent-hover: #b59223;
    --secondary-bg: #1c2541;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --font-family: 'Vazirmatn', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    direction: rtl;
    text-align: right;
}

/* Header & Navigation */
.site-header {
    background: #ffffff;
    border-bottom: 2px solid var(--accent-gold);
    padding: 1.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.site-title span {
    color: var(--accent-gold);
}

/* Hero Section */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-bg) 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
    border-radius: var(--radius-md);
    margin: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-banner p {
    color: #cbd5e1;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-color);
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* Product Cards & Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.product-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.product-card .price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0.8rem 0;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: #94a3b8;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 3px solid var(--accent-gold);
}
