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

body {
    background-color: #fefaf5;
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: #2c2418;
    line-height: 1.5;
    direction: rtl;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* هدر */
.navbar {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #e9e0d7;
}

.logo {
    font-size: 1.7rem;
    font-weight: 600;
    color: #8b5a2b;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #3e2e22;
    font-weight: 500;
}

.admin-link {
    background: #a5713e20;
    padding: 6px 15px;
    border-radius: 30px;
    color: #a5713e !important;
}

/* هیرو */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 60px 0 80px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: #2c1c0e;
}

.hero-sub {
    font-size: 1.2rem;
    color: #5c4b38;
    margin-bottom: 28px;
}

.btn-primary {
    background-color: #a5713e;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    transition: 0.25s;
}

.btn-primary:hover {
    background-color: #8b5a2b;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 70%;
    height: auto;
}

/* ویژگی‌ها */
.features {
    padding: 70px 0;
    border-top: 1px solid #ede3d9;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 48px;
    font-family: 'Playfair Display', serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-card i {
    font-size: 2.8rem;
    color: #b67b43;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* محصولات */
.products {
    padding: 70px 0;
    background-color: #fdf9f4;
    border-radius: 48px;
    margin: 20px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.product-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #f1e9e2;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 28px -12px rgba(0,0,0,0.12);
}

.product-img {
    width: 100%;
    height: 260px;
    background: #f2e9e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-meta {
    font-size: 0.8rem;
    color: #a5713e;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-price {
    font-weight: 600;
    font-size: 1.2rem;
    margin: 12px 0 16px;
}

.btn-outline {
    background: transparent;
    border: 1px solid #dacbbd;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-outline:hover {
    background-color: #f2e9e2;
}

/* بخش پایداری */
.sustainability {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
    padding: 70px 0;
}

.sustain-text {
    flex: 1;
}

.sustain-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.sustain-img {
    flex: 1;
}

.sustain-img img {
    width: 100%;
    border-radius: 32px;
}

/* نظرات */
.testimonials {
    background-color: #fff7f0;
    padding: 70px 0;
    border-radius: 48px;
    margin: 20px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 28px;
    border-radius: 30px;
    border: 1px solid #f1e2d6;
}

.testimonial i {
    color: #cfb094;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.client-name {
    font-weight: 600;
    margin-top: 12px;
    color: #8b5a2b;
}

/* خبرنامه */
.newsletter {
    text-align: center;
    padding: 70px 0 50px;
}

.news-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 500px;
    margin: 20px auto 0;
}

.news-form input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 60px;
    border: 1px solid #e2d4ca;
}

.news-form button {
    background: #2c2418;
    border: none;
    padding: 14px 28px;
    border-radius: 60px;
    color: white;
    cursor: pointer;
}

/* فوتر */
.footer {
    border-top: 1px solid #e6dbd1;
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: #7f623f;
    margin-right: 18px;
    font-size: 1.3rem;
}

/* موبایل */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .sustainability {
        flex-direction: column;
        text-align: center;
    }
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
}
.product-img {
    width: 100%;
    height: 260px;
    background-color: #f2e9e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    display: block;
}