/* تعریف فونت استعداد */
@font-face {
    font-family: 'Estedad';
    src: url('../fonts/Estedad-Medium.woff2') format('woff2'),
         url('../fonts/Estedad-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Estedad';
    src: url('../fonts/Estedad-Bold.woff2') format('woff2'),
         url('../fonts/Estedad-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* اعمال فونت به کل بدنه سایت */
body, button, input, select, textarea {
    font-family: 'Estedad', Tahoma, sans-serif !important;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    font-family: Tahoma, sans-serif;
    background: #f8f8f8;
    color: #222;
    direction: rtl;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-header h1 {
    margin: 0 0 10px;
    font-size: 32px;
}

.page-header p {
    margin: 0;
    color: #666;
}

.category-section {
    margin-bottom: 40px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.category-header h2 {
    margin: 0;
    font-size: 24px;
}

.category-header span {
    background: #eee;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.product-image {
    width: 100%;
    height: 180px;
    background: #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #888;
}

.product-content {
    padding: 15px;
}

.product-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.product-content p {
    margin: 0 0 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.product-content strong {
    color: #b22222;
    font-size: 18px;
}
