/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --black: #000;
    --transition: all 0.3s ease;
    --whatsapp-green: #25D366;
    --whatsapp-dark-green: #128C7E;
}

html[dir="rtl"] {
    direction: rtl;
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.text-center {
    text-align: center;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-info span, .right-info span {
    margin-right: 15px;
}

.right-info span:last-child {
    margin-right: 0;
}

.language-switcher {
    display: inline-block;
    margin-left: 15px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 2px 5px;
    font-size: 12px;
}

.lang-btn.active {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 20px;
    position: relative;
}

.main-nav ul li a {
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.main-nav ul li a.active, .main-nav ul li a:hover {
    color: var(--secondary-color);
}

.main-nav ul li a i {
    margin-left: 5px;
    font-size: 12px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 800px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    left: 0;
    padding: 20px;
    border-radius: 0 0 4px 4px;
}

.dropdown-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.dropdown-row:last-child {
    margin-bottom: 0;
}

.dropdown-col {
    flex: 1;
    padding: 0 15px;
}

.dropdown-col h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.dropdown-col a {
    display: block;
    padding: 5px 0;
    color: var(--text-color);
}

.dropdown-col a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 500px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    color: var(--white);
    border-radius: 4px;
}

.slide-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.slide-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.slider-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-controls button:hover {
    background-color: var(--secondary-color);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: var(--white);
}

/* Side Toggle */
.side-toggle {
    position: fixed;
    top: 150px;
    left: 0;
    z-index: 999;
    display: flex;
}

.toggle-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 25px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
    height: 50px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    justify-content: center;
}

.toggle-btn i {
    margin-right: 0;
    /* margin-bottom: 8px; */
    /* transform: rotate(90deg); */
}

.toggle-content {
    display: none;
    background-color: var(--white);
    width: 300px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 4px 4px 0;
    padding: 20px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    position: absolute;
    left: 50px;
    top: 0;
}

.toggle-category {
    margin-bottom: 20px;
}

.toggle-category h3 {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.toggle-category ul {
    list-style: none;
}

.toggle-category ul li {
    margin-bottom: 8px;
}

.toggle-category ul li a {
    display: block;
    padding: 8px 10px;
    color: var(--text-color);
    border-radius: 4px;
    transition: var(--transition);
}

.toggle-category ul li a:hover {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--secondary-color);
    padding-left: 15px;
}

.side-toggle:hover .toggle-content,
.toggle-content.active {
    display: block;
}

/* Page Banner */
.page-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
    margin-bottom: 40px;
}

.page-banner h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.breadcrumb-item {
    margin: 0 5px;
}

.breadcrumb-item a {
    color: var(--light-color);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--light-color);
}

/* Main Content */
main {
    padding: 60px 0;
}

/* Product Page */
.product-page {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.product-gallery {
    flex: 1;
    min-width: 300px;
}

.main-image {
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail:hover {
    border-color: var(--secondary-color);
}

.thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.product-details {
    flex: 1;
    min-width: 300px;
}

.product-details h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-description {
    margin-bottom: 20px;
    color: var(--text-light);
}

.product-options {
    margin-top: 30px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--primary-color);
}

.options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.options label {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background-color: var(--light-color);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.options label:hover {
    background-color: #ddd;
}

.options input[type="radio"] {
    margin-right: 8px;
}

.options input[type="checkbox"] {
    margin-right: 8px;
}

.quantity-select {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 200px;
}

.price-box {
    margin: 25px 0;
    display: flex;
    align-items: center;
}

.price-label {
    font-weight: bold;
    margin-right: 10px;
}

.price {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.cart-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-cart {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--secondary-color);
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.cart-item {
    position: relative;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.cart-item p {
    margin: 3px 0;
    font-size: 14px;
    color: var(--text-light);
}

.item-price {
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: 5px !important;
}

.remove-item {
    position: absolute;
    right: 0;
    top: 15px;
    background: none;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    padding: 0 10px;
    transition: var(--transition);
}

.remove-item:hover {
    color: var(--secondary-color);
}

.cart-total {
    text-align: right;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0;
}

.cart-total span:first-child {
    color: var(--primary-color);
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--whatsapp-green);
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.checkout-btn:hover {
    background-color: var(--whatsapp-dark-green);
}

.checkout-btn i {
    font-size: 20px;
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 60px;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tab-pane p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.tab-pane ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.tab-pane ul li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.tab-pane table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.tab-pane table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.tab-pane table tr:last-child td {
    border-bottom: none;
}

/* Related Products */
.related-products {
    margin-bottom: 60px;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: var(--primary-color);
}

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

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px;
    color: var(--primary-color);
}

.product-card p {
    padding: 0 15px 15px;
    color: var(--text-light);
}

.product-card .btn {
    margin-bottom: 20px;
}

/* About Page */
.about-page {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-box h3 {
    font-size: 32px;
    margin-bottom: 5px;
}

.team-section {
    margin-bottom: 60px;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 28px;
    color: var(--primary-color);
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-member p {
    color: var(--text-light);
}

.cta-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-content h2 {
    margin-bottom: 10px;
}

.cta-button {
    flex: 0 0 auto;
}

/* Portfolio Page */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 15px;
    background-color: var(--light-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background-color: var(--secondary-color);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(231, 76, 60, 0.9);
    color: var(--white);
    padding: 15px;
    transform: translateY(100%);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: var(--light-color);
    color: var(--text-color);
    transition: var(--transition);
}

.pagination a.active {
    background-color: var(--secondary-color);
    color: var(--white);
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

/* Contact Page */
.contact-page {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.info-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.social-media h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

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

.map-section {
    margin-bottom: 60px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: var(--primary-color);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 30px;
}

.footer-top .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-col p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* RTL Styles */
html[dir="rtl"] .main-nav ul li {
    margin-left: 0;
    margin-right: 20px;
}

html[dir="rtl"] .main-nav ul li a i {
    margin-left: 0;
    margin-right: 5px;
}

html[dir="rtl"] .left-info span,
html[dir="rtl"] .right-info span {
    margin-right: 0;
    margin-left: 15px;
}

html[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 15px;
}

html[dir="rtl"] .toggle-btn {
    left: auto;
    right: 0;
    border-radius: 4px 0 0 4px;
}

html[dir="rtl"] .toggle-content {
    border-radius: 4px 0 0 4px;
}

html[dir="rtl"] .toggle-btn i {
    margin-right: 0;
    margin-left: 8px;
}

html[dir="rtl"] .toggle-category ul li a:hover {
    padding-left: 0;
    padding-right: 5px;
}

html[dir="rtl"] .footer-col ul li a:hover {
    padding-left: 0;
    padding-right: 5px;
}

html[dir="rtl"] .contact-info i {
    margin-right: 0;
    margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .slide-content {
        max-width: 400px;
    }

    .about-section {
        flex-direction: column;
    }

    .about-content, .about-image {
        flex: none;
        width: 100%;
    }

    .cart-content {
        margin: 15% auto;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 106px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 106px);
        background-color: var(--white);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }

    .main-nav ul li {
        margin: 0 0 15px 0;
    }

    .dropdown-content {
        position: static;
        min-width: 100%;
        box-shadow: none;
        padding: 15px 0 0 15px;
    }

    .mobile-toggle {
        display: block;
    }

    .slider {
        height: 400px;
    }

    .slide-content {
        left: 5%;
        max-width: 90%;
    }

    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .left-info, .right-info {
        margin-bottom: 5px;
    }

    .side-toggle {
        top: 180px;
    }

    .cart-content {
        margin: 20% auto;
        width: 95%;
    }
}

@media (max-width: 576px) {
    .slider {
        height: 300px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .featured-categories h2,
    .about-content h2,
    .portfolio-section h2 {
        font-size: 28px;
    }

    .side-toggle {
        display: none;
    }

    .product-page {
        flex-direction: column;
    }

    .contact-page {
        flex-direction: column;
    }

    .cta-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-button {
        width: 100%;
    }
}
