:root {
    --primary-color: #8b0000;
    --secondary-color: #d4af37;
    --text-color: #333;
    --background-color: #fff;
    --section-padding: 4rem 0;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    max-height: 120px;
    width: auto;
    display: block;
}

/* Section Styles */
.section {
    padding: var(--section-padding);
}

h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

/* Products Section */
.product-info {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-info ul {
    list-style-position: inside;
    margin: 1rem 0;
}

/* Gallery/Slider Styles */
.swiper {
    width: 100%;
    height: 400px;
    margin: 2rem 0;
}

.swiper-slide {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 400px;
}

.slide-placeholder {
    font-size: 1.5rem;
    color: #666;
}

/* Contact Section */
.contact-info {
    text-align: center;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
}

.contact-info p {
    margin: 1rem 0;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background-color: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #6b0000;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .section {
        padding: 2rem 0;
    }

    .swiper {
        height: 300px;
    }

    .swiper-slide img {
        max-height: 300px;
    }

    .logo img {
        max-height: 80px;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* RTL-specific adjustments */
.swiper-button-next {
    left: 10px;
    right: auto;
}

.swiper-button-prev {
    right: 10px;
    left: auto;
}

/* Language Switcher */
.lang-switch {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.lang-switch:hover {
    background-color: white;
    color: var(--primary-color);
}

/* RTL/LTR specific styles */
[dir="ltr"] .swiper-button-next {
    right: 10px;
    left: auto;
}

[dir="ltr"] .swiper-button-prev {
    left: 10px;
    right: auto;
}

[dir="rtl"] .swiper-button-next {
    left: 10px;
    right: auto;
}

[dir="rtl"] .swiper-button-prev {
    right: 10px;
    left: auto;
} 