/* Sara Unani Care - Main Stylesheet */

:root {
    --primary: #2a7d2e;
    --secondary: #d4af37;
    --light: #f8f9fa;
    --dark: #343a40;
    --accent: #8a6d3b;
    --text: #333;
    --text-light: #666;
    --border: #e0e0e0;
    --success: #28a745;
    --danger: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: var(--text);
    line-height: 1.6;
    transition: all 0.3s ease;
}

body[dir="rtl"] {
    text-align: right;
    direction: rtl;
}

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

/* Header Styles */
header {
    background-color: rgb(250, 210, 124);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap; color: var(--primary);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
}

.logo img {
    height: 80px;
    margin-right: 10px;
	margin-left: 10px;
}

.logo-text h1 {
    font-size: 40px;
    margin-bottom: 5px;
    align-items: center;
}

.logo-text span {
    font-size: 14px;
    color: var(--accent);
    font-style: italic;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

nav ul li {
    margin-left: 15px;
    position: relative;
}

body[dir="rtl"] nav ul li {
    margin-left: 0;
    margin-right: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 400;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a i {
    margin-right: 5px;
}

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

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 20px;
}

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

.language-btn {
    background: white;
    border: 1px solid var(--border);
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    width: 150px;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

body[dir="rtl"] .language-options {
    right: auto;
    left: 0;
}

.language-options.active {
    display: block;
}

.language-option {
    padding: 5px 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.language-option:hover {
    background: #f0f0f0;
}

.language-option.active {
    background: #e8f5e9;
    color: var(--primary);
    font-weight: 600;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section with Carousel */
.hero {
    position: relative;
    overflow: hidden;
    height: 80vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    display: flex;
    width: 400%;
    height: 100%;
    animation: slide 20s infinite;
}

.carousel-slide {
    width: 25%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-1 { background-image: url('Hero Slide 1.jpg'); }
.slide-2 { background-image: url('Hero Slide 2.jpg'); }
.slide-3 { background-image: url('Hero Slide 3.jpg'); }
.slide-4 { background-image: url('Hero Slide 4.jpg'); }
.slide-5 { background-image: url('Hero Slide 5.jpg'); }
.slide-6 { background-image: url('Hero Slide 6.jpg'); }
.slide-7 { background-image: url('Hero Slide 7.jpg'); }
.slide-8 { background-image: url('Hero Slide 8.jpg'); }
.slide-9 { background-image: url('Hero Slide 9.jpg'); }
.slide-10 { background-image: url('Hero Slide 10.jpg'); }
.slide-11 { background-image: url('Hero Slide 11.jpg'); }
.slide-12 { background-image: url('Hero Slide 12.jpg'); }
.slide-13 { background-image: url('Hero Slide 13.jpg'); }

@keyframes slide {
    0% { transform: translateX(0); }
    20% { transform: translateX(0); }
    25% { transform: translateX(-25%); }
    45% { transform: translateX(-25%); }
    50% { transform: translateX(-50%); }
    70% { transform: translateX(-50%); }
    75% { transform: translateX(-75%); }
    95% { transform: translateX(-75%); }
    100% { transform: translateX(0); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background: #1e5e21;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
}

.btn-secondary:hover {
    background: #c19b2c;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

/* Sections */
section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    margin: 15px auto;
}

body[dir="rtl"] .section-title:after {
    margin: 15px 0 15px auto;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

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

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

.certifications {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.certification-badge {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.certification-badge i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

/* Services Section */
.services {
    background-color: var(--light);
}

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 200px;
}

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

.service-content {
    padding: 20px;
}

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

/* Products Section */
.products {
    background-color: var(--light);
}

.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 20px;
    background: rgb(250, 210, 124);
    border: 1px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

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

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

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.product-description {
    color: var(--text-light);
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-price {
    font-weight: bold;
    color: var(--dark);
    margin: 10px 0;
    font-size: 1.2rem;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.add-to-cart {
    flex-grow: 1;
    text-align: center;
}

.view-details {
    background: var(--light);
    color: var(--dark);
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.view-details:hover {
    background: #e0e0e0;
}

/* Cart */
.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

body[dir="rtl"] .cart-count {
    right: auto;
    left: -8px;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

body[dir="rtl"] .cart-sidebar {
    right: auto;
    left: -400px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.active {
    right: 0;
}

body[dir="rtl"] .cart-sidebar.active {
    right: auto;
    left: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.cart-header h3 {
    color: var(--primary);
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
}

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

.cart-item-price {
    font-weight: bold;
    color: var(--dark);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.quantity-btn {
    background: var(--light);
    border: 1px solid var(--border);
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 5px;
}

.remove-item {
    color: var(--danger);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.checkout-btn {
    width: 100%;
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: none;
}

.overlay.active {
    display: block;
}

/* Payment Section */
.payment-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-options {
    flex: 1;
    min-width: 300px;
}

.order-summary {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    align-self: flex-start;
}

.payment-methods {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.payment-method {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method:hover {
    border-color: var(--primary);
}

.payment-method.active {
    border-color: var(--primary);
    background: #f0fff0;
}

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

.method-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-icon {
    width: 50px;
    height: 35px;
    object-fit: contain;
}

.method-form {
    margin-top: 15px;
    display: none;
}

.payment-method.active .method-form {
    display: block;
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(42, 125, 46, 0.2);
    outline: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--danger);
    background-color: #fff8f8;
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: var(--success);
    background-color: #f8fff8;
}

.form-group textarea {
    height: 150px;
}

.error-message {
    color: var(--danger);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.card-details {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 15px;
}

.qr-section {
    text-align: center;
    padding: 20px;
}

#qrcode {
    margin: 15px auto;
    padding: 15px;
    background: white;
    border-radius: 8px;
    display: inline-block;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--border);
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Blog Section */
.blog {
    background-color: var(--light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

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

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

body[dir="rtl"] .read-more {
    flex-direction: row-reverse;
}

/* Advertisement */
.advertisement-placeholder {
    background: rgb(248, 187, 95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-top: 40px;
}

.ad-label {
    font-size: 0.9rem;
    color: #8d8d7f;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-container {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.ad-header {
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.ad-header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.ad-header p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.ad-content {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}

.ad-text-section {
    flex: 1;
    min-width: 200px;
    padding: 15px;
	text-align: left;
}

.ad-text-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffcc00;
    border: none;
}

.ad-text-section p {
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.ad-features {
    list-style: none;
    margin: 15px 0;
}

.ad-features li {
    padding: 8px 0;
    font-size: 0.9rem;
}

.ad-features i {
    color: #ffcc00;
    margin-right: 8px;
}

.ad-btn {
    display: inline-block;
    background: linear-gradient(to right, #ff8a00, #ffcc00);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.ad-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 140, 0, 0.6);
}

.ad-media-section {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ad-image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.ad-image-container:hover {
    transform: scale(1.02);
}

.ad-image-container img {
    width: 100%;
    display: block;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card i {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.3;
}

body[dir="rtl"] .testimonial-card i {
    right: auto;
    left: 20px;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

body[dir="rtl"] .author-image {
    margin-right: 0;
    margin-left: 15px;
}

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

.author-details h4 {
    color: var(--primary);
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

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

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
}

.map {
    height: 550px;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px 0 30px;
}

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

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-col h3 {
    color: var(--secondary);
    position: relative;
}

.footer-col h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    margin-top: 10px;
}

body[dir="rtl"] .footer-col h3:after {
    margin: 10px 0 0 auto;
}

.footer-col p {
    margin-bottom: 15px;
}

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

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

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.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: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

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

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s;
    text-decoration: none;
}

body[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    .payment-container {
        flex-direction: column;
    }
    .card-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 10px 0;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    body[dir="rtl"] .mobile-menu-btn {
        right: auto;
        left: 20px;
    }
    nav {
        display: none;
        width: 100%;
    }
    nav.active {
        display: block;
    }
    .language-switcher {
        margin: 15px 0 0 0;
    }
    .cart-sidebar {
        max-width: 100%;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}