/* public/css/style.css */
/* ===================================================== */
/* الأنماط الأساسية العامة */
/* ===================================================== */

:root {
    /* ألوان رئيسية (مشابه أمازون) */
    --color-primary: #131921;
    --color-primary-light: #232F3E;
    --color-secondary: #37475A;
    --color-accent: #FF9900;
    --color-accent-hover: #E88B00;
    --color-accent-dark: #C7511F;

    /* ألوان النصوص */
    --color-text: #0F1111;
    --color-text-secondary: #565959;
    --color-text-light: #767676;
    --color-link: #007185;
    --color-link-hover: #C7511F;

    /* ألوان الخلفية */
    --bg-light: #EAEDED;
    --bg-white: #FFFFFF;
    --bg-card: #FFFFFF;

    /* ألوان الحالات */
    --color-success: #007600;
    --color-danger: #B12704;
    --color-warning: #FF9900;
    --color-star: #FFA41C;

    /* ألوان الأسعار */
    --color-price: #B12704;
    --color-price-sale: #CC0C39;
    --color-price-original: #565959;

    /* الحدود */
    --border-color: #DDD;
    --border-radius: 8px;
    --border-radius-sm: 4px;

    /* ظلال */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-card: 0 2px 5px rgba(0,0,0,0.08);
    --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.15);

    /* خطوط */
    --font-family: 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;

    /* أبعاد */
    --header-height: 60px;
    --nav-height: 40px;
    --max-width: 1500px;
    --content-padding: 15px;
}

/* ===== ريست ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--bg-light);
    direction: rtl;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

input, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* ===== المحتوى الرئيسي ===== */
.main-content {
    min-height: calc(100vh - var(--header-height) - var(--nav-height));
    padding-top: calc(var(--header-height) + var(--nav-height));
}

.home-content {
    background: var(--bg-light);
    padding-bottom: 30px;
}

/* ===== حاوي القسم ===== */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

/* ===== عنوان القسم ===== */
.section-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--color-text);
    padding: 15px 0 10px;
}

.section-see-more,
.section-see-all {
    color: var(--color-link);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
}
.section-see-more:hover,
.section-see-all:hover {
    color: var(--color-link-hover);
    text-decoration: underline;
}

/* ===== أقسام الصفحة الرئيسية ===== */
.home-section {
    padding: 0 var(--content-padding);
    max-width: var(--max-width);
    margin: 0 auto 20px;
}

/* ===== Utility ===== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}