/* Core styles */
@import 'styles/variables.css';
@import 'styles/reset.css';
@import 'styles/layout.css';
@import 'styles/typography.css';

/* Component styles */
@import 'styles/header.css';
@import 'styles/components.css';
@import 'styles/footer.css';
@import 'styles/forms.css';
@import 'styles/navigation.css';

/* Feature-specific styles */
@import 'styles/product.css';
@import 'styles/order.css';
@import 'styles/orders.css';
@import 'styles/slider.css';
@import 'styles/auth.css';
@import 'styles/chat.css';
@import 'styles/modal.css';
@import 'styles/checkout.css';
@import 'styles/cart.css';
@import 'styles/buttons.css';

/* Utilities and responsive styles */
@import 'styles/utilities.css';
@import 'styles/responsive.css';

/* Order Status Colors */
.order-status {
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.status-shipped {
    background-color: #dbeafe;
    color: #1e40af;
}

.status-delivered {
    background-color: #dcfce7;
    color: #166534;
}

.status-cancelled {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Order Status Notification */
.notification-badge {
    position: relative;
    display: inline-block;
}

.notification-badge[data-count]:after {
    content: attr(data-count);
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
}

/* Notification Badge */
.notification-badge {
    background-color: #ff4444;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    text-align: center;
    line-height: 14px;
}

.nav-links li {
    position: relative;
}

/* Global Theme Variables */
:root {
    /* Light Theme Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #2c3338;
    --text-secondary: #6c757d;
    --border-color: #dee2e6;
    --link-color: #5a9a0a;
    --link-hover: #3d6807;
    --card-bg: #ffffff;
    --card-shadow: 0 2px 4px rgba(0,0,0,0.1);
    --input-bg: #ffffff;
    --input-border: #ced4da;
    --input-text: #2c3338;
    --button-primary-bg: #5a9a0a;
    --button-primary-text: #ffffff;
    --button-secondary-bg: #f8f9fa;
    --button-secondary-text: #5a9a0a;
    --button-hover-bg-light: #3d6807;
    --button-hover-bg-dark: #cba467;
    --mobile-menu-bg-light: rgba(255, 255, 255, 0.95);
    --mobile-menu-text-light: #2c3e50;
    --mobile-menu-hover-light: #f8f9fa;
    --mobile-menu-border-light: rgba(0, 0, 0, 0.1);
    --mobile-menu-shadow-light: rgba(0, 0, 0, 0.1);
    --mobile-menu-bg-dark: rgba(33, 37, 41, 0.95);
    --mobile-menu-text-dark: #ffffff;
    --mobile-menu-hover-dark: #2c3e50;
    --mobile-menu-border-dark: rgba(255, 255, 255, 0.1);
    --mobile-menu-shadow-dark: rgba(0, 0, 0, 0.3);
}

/* Dark Theme Colors */
[data-theme="dark"] {
    --bg-primary: #1a1f23;
    --bg-secondary: #2c3338;
    --text-primary: #e9ecef;
    --text-secondary: #adb5bd;
    --border-color: #373d44;
    --link-color: #cba467;
    --link-hover: #f3e2ae;
    --card-bg: #2c3338;
    --card-shadow: 0 2px 4px rgba(0,0,0,0.2);
    --input-bg: #2c3338;
    --input-border: #373d44;
    --input-text: #e9ecef;
    --button-primary-bg: #cba467;
    --button-primary-text: #1a1f23;
    --button-secondary-bg: #2c3338;
    --button-secondary-text: #cba467;
    --section-title-color: #cba467;
    --section-border-color: #cba467;
    --tab-active-bg: #2c3338;
    --tab-active-border: #cba467;
    --tab-hover-bg: #373d44;
    --map-border-color: #373d44;
    --mobile-menu-bg: var(--mobile-menu-bg-dark);
    --mobile-menu-text: var(--mobile-menu-text-dark);
    --mobile-menu-hover: var(--mobile-menu-hover-dark);
    --mobile-menu-border: var(--mobile-menu-border-dark);
    --mobile-menu-shadow: var(--mobile-menu-shadow-dark);
}

[data-theme="light"] {
    --mobile-menu-bg: var(--mobile-menu-bg-light);
    --mobile-menu-text: var(--mobile-menu-text-light);
    --mobile-menu-hover: var(--mobile-menu-hover-light);
    --mobile-menu-border: var(--mobile-menu-border-light);
    --mobile-menu-shadow: var(--mobile-menu-shadow-light);
}

/* Global Styles */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Links */
a {
    color: var(--link-color);
    transition: color 0.3s ease;
}

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

/* Cards */
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

/* Forms */
input, select, textarea {
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--input-text);
}

/* Buttons */
.btn-primary {
    background-color: var(--button-primary-bg);
    color: var(--button-primary-text);
}

.btn-secondary {
    background-color: var(--button-secondary-bg);
    color: var(--button-secondary-text);
    border: 1px solid var(--button-secondary-text);
}

/* Tables */
table {
    border-color: var(--border-color);
}

th, td {
    border-color: var(--border-color);
}

/* Containers */
.container,
.container-fluid,
.white-container,
.content-container,
main > div,
section,
.card,
.panel {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

/* Section Backgrounds */
.bg-light {
    background-color: var(--bg-secondary) !important;
}

.bg-dark {
    background-color: var(--bg-primary) !important;
}

/* Text Colors */
.text-muted {
    color: var(--text-secondary) !important;
}

/* Borders */
.border {
    border-color: var(--border-color) !important;
}

/* Product Cards */
.product-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.product-card .product-title {
    color: var(--text-primary);
}

.product-card .product-price {
    color: var(--link-color);
}

/* Cart Items */
.cart-item {
    border-color: var(--border-color);
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    color: var(--text-primary);
}

/* Section Titles */
.section-title, 
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    border-color: var(--border-color);
}

[data-theme="dark"] .section-title,
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--section-title-color);
}

/* About Us Section */
.about-section,
.branches-section {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

/* Branch Section Styles */
/* Branch Styles */
.branches-section {
    padding: 40px 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.branch-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    margin-top: 30px;
    min-height: 500px;
}

.branch-info {
    padding: 25px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.branch-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.branch-info p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.branch-info i {
    color: var(--primary-color);
    width: 24px;
    font-size: 1.2rem;
    margin-top: 4px;
}

.branch-media {
    display: grid;
    grid-template-rows: 250px 250px;
    gap: 20px;
}

.branch-image {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.branch-image img {
    width: 600px;
    height: 100%;
    object-fit: cover;
}

.branch-map {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.branch-map iframe {
    width: 600px;
    height: 100%;
    border: 0;
}

/* RTL Support */
[dir="rtl"] .branch-info p {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .branch-info i {
    margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .branch-layout {
        grid-template-columns: 300px 1fr;
    }
}

@media (max-width: 992px) {
    .branch-layout {
        grid-template-columns: 1fr;
    }

    .branch-media {
        grid-template-rows: 200px 200px;
    }
}

@media (max-width: 576px) {
    .branch-info h3 {
        font-size: 1.5rem;
    }

    .branch-info p {
        font-size: 1rem;
    }

    .branch-media {
        grid-template-rows: 180px 180px;
    }
}

.branches-section {
    padding: 2rem 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.branches-section h2 {
    color: var(--section-title-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.branch-tabs-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.branch-tab {
    padding: 1rem 2rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    min-width: 150px;
    text-align: center;
}

.branch-tab:hover,
.branch-tab.active {
    background-color: var(--button-primary-bg);
    color: var(--button-primary-text);
    border-color: var(--button-primary-bg);
}

.branch-content {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    margin: 1rem;
}

.branch-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.branch-info p {
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.branch-info i {
    color: var(--link-color);
    width: 20px;
}

.branch-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 4px;
    margin: 0rem 0;
}

.branch-map {
    width: 100%;
    height: 247px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    margin: 0rem 0;
}

/* Branches Section */
.branches {
    background-color: var(--bg-primary);
    padding: 2rem;
    border-radius: 8px;
}

/* Branch Tabs */
.branch-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.branch-tabs-container {
    background-color: var(--bg-primary);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.branch-tab {
    background-color: var(--button-secondary-bg);
    color: var(--button-secondary-text);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.branch-tab:hover {
    background-color: var(--button-hover-bg-light);
}

[data-theme="dark"] .branch-tab:hover {
    background-color: var(--button-hover-bg-dark);
}

.branch-tab.active {
    background-color: var(--button-primary-bg);
    color: var(--button-primary-text);
    border-color: var(--button-primary-bg);
}

/* Branch Content */
.branch-content {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

/* Map Container */
.map-container {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

/* Force Dark Theme Overrides */
[data-theme="dark"] .bg-white,
[data-theme="dark"] .white-bg,
[data-theme="dark"] [class*="bg-light"],
[data-theme="dark"] [style*="background-color: white"],
[data-theme="dark"] [style*="background-color: #fff"],
[data-theme="dark"] [style*="background-color: rgb(255, 255, 255)"],
[data-theme="dark"] [style*="background: white"],
[data-theme="dark"] [style*="background: #fff"] {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

/* Section Headers */
.section-header,
.section-title {
    color: var(--section-title-color);
    border-bottom: 2px solid var(--section-border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

/* Content Boxes */
.content-box {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .content-box {
    background-color: var(--bg-secondary);
}

/* Image Containers */
.image-container {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

/* Ensure all main content areas use theme colors */
main,
.main-content,
.page-content {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* Fix any remaining white elements */
/* [data-theme="dark"] * {
    background-color: var(--bg-primary);
} */

[data-theme="dark"] *[style*="background-color"] {
    background-color: var(--bg-primary) !important;
}

/* Transition effects */
.container,
.content-box,
.branch-tab,
.image-container,
.map-container,
main,
section,
div {
    transition: background-color 0.3s ease, 
                color 0.3s ease, 
                border-color 0.3s ease;
}

/* Mobile Menu Styles */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--mobile-menu-bg);
    color: var(--mobile-menu-text);
    padding: 20px;
    transition: 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: -2px 0 5px var(--mobile-menu-shadow);
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.mobile-nav .nav-links {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.mobile-nav .nav-links a {
    display: flex;
    align-items: center;
    padding: 15px;
    color: var(--mobile-menu-text);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.mobile-nav .nav-links a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.mobile-nav .nav-links a:hover,
.mobile-nav .nav-links a.active {
    background: var(--mobile-menu-hover);
    color: var(--mobile-menu-text);
}

/* Divider for menu sections */
.mobile-nav .nav-links .menu-divider {
    height: 1px;
    background: var(--mobile-menu-border);
    margin: 10px 0;
}

/* User section styling */
.mobile-nav .user-section {
    padding: 20px 15px;
    border-bottom: 1px solid var(--mobile-menu-border);
    margin-bottom: 15px;
}

.mobile-nav .user-section .user-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.mobile-nav .user-section .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    background: var(--mobile-menu-hover);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu button styling */
.mobile-menu-button {
    border: none;
    background: transparent;
    padding: 10px;
    cursor: pointer;
    display: none;
    color: var(--header-text);
}

.mobile-menu-button i {
    font-size: 24px;
}

/* Overlay styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    z-index: 999;
    backdrop-filter: blur(3px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive styles */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }

    .nav-links:not(.mobile-nav .nav-links) {
        display: none;
    }
}

/* RTL Support */
[dir="rtl"] .mobile-nav {
    right: auto;
    left: -100%;
}

[dir="rtl"] .mobile-nav.active {
    right: auto;
    left: 0;
}

[dir="rtl"] .mobile-nav .nav-links a i {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .mobile-nav .user-section .user-avatar {
    margin-right: 0;
    margin-left: 12px;
}

[dir="rtl"] .mobile-nav {
    box-shadow: 2px 0 5px var(--mobile-menu-shadow);
}

/* Chat Window Styles */
.chat-window {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    max-height: 500px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}

/* Chat Messages */
.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
    max-height: 400px;
}

/* Message Containers */
.message-container {
    margin-bottom: 8px;
    max-width: 90%;
    clear: both;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.message-container.user {
    float: right;
}

.message-container.bot {
    float: left;
}

/* Message Content */
.message {
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 0.85em;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.message-container.user .message {
    background: #007bff;
    color: white;
}

.message-container.bot .message {
    background: #f1f0f0;
    color: #333;
}

/* Product Suggestions in Chat */
.chat-window .jewel-product-suggestions {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding: 12px;
    margin: 8px 0;
    scrollbar-width: thin;
    max-width: 100%;
    background: rgba(203, 164, 103, 0.05);
    border: 1px solid rgba(203, 164, 103, 0.1);
    border-radius: 12px;
    position: relative;
}

.chat-window .jewel-product-suggestions::-webkit-scrollbar {
    height: 4px;
}

.chat-window .jewel-product-suggestions::-webkit-scrollbar-track {
    background: rgba(203, 164, 103, 0.05);
    border-radius: 2px;
}

.chat-window .jewel-product-suggestions::-webkit-scrollbar-thumb {
    background: rgba(203, 164, 103, 0.3);
    border-radius: 2px;
}

.chat-window .jewel-product-suggestions::-webkit-scrollbar-thumb:hover {
    background: rgba(203, 164, 103, 0.5);
}

.chat-window .jewel-product-card {
    flex: 0 0 auto;
    width: 130px;
    background: #1a1a1a;
    border: 1px solid rgba(203, 164, 103, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 8px;
    font-size: 0.85em;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-window .jewel-product-card:hover {
    border-color: rgba(203, 164, 103, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.chat-window .jewel-product-card img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(203, 164, 103, 0.1);
}

.chat-window .jewel-product-card h3 {
    font-size: 0.9em;
    margin: 0 0 4px 0;
    color: #fff;
    line-height: 1.2;
    max-height: 2.4em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.chat-window .jewel-product-card p {
    font-size: 0.8em;
    margin: 0 0 4px 0;
    color: #999;
    line-height: 1.2;
    max-height: 2.4em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.chat-window .jewel-product-card .jewel-price {
    font-weight: bold;
    color: #cba467;
    margin: 4px 0;
    font-size: 0.9em;
    text-align: center;
}

.chat-window .jewel-product-card .jewel-button {
    width: calc(100% + 16px);
    margin: 4px -8px -8px -8px;
    padding: 8px;
    font-size: 0.85em;
    background: linear-gradient(180deg, #cba467 0%, #f3e2ae 100%);
    border: none;
    border-radius: 0 0 10px 10px;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: bold;
}

.chat-window .jewel-product-card .jewel-button:hover {
    background: linear-gradient(180deg, #d4b17c 0%, #f7ebc7 100%);
}

/* Message Time */
.message-time {
    font-size: 0.7em;
    color: #888;
    margin-top: 3px;
    text-align: right;
}

/* Chat Form */
.chat-form {
    display: flex;
    padding: 8px;
    border-top: 1px solid #eee;
    background: white;
}

.chat-form input {
    flex-grow: 1;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 16px;
    margin-right: 6px;
    font-size: 0.85em;
}

.chat-form button {
    padding: 6px 12px;
    border: none;
    border-radius: 16px;
    background: #007bff;
    color: white;
    cursor: pointer;
    font-size: 0.85em;
}

/* Typing Indicator */
.typing-indicator {
    padding: 6px;
    display: none;
}

.typing-indicator span {
    height: 6px;
    width: 6px;
    background: #90949c;
    display: inline-block;
    border-radius: 50%;
    margin: 0 2px;
    animation: typing 1s infinite ease-in-out;
}

/* RTL Support for Chat */
[dir="rtl"] .message-container.user {
    float: left;
}

[dir="rtl"] .message-container.bot {
    float: right;
}

[dir="rtl"] .chat-form input {
    margin-right: 0;
    margin-left: 6px;
}

[dir="rtl"] .message-time {
    text-align: left;
}

/* Tabs Styles */
.jewel-tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.jewel-tab-button {
    padding: 10px 20px;
    border: none;
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-color);
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.jewel-tab-button:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.jewel-tab-button.active {
    background: rgba(212, 175, 55, 0.3);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.tab-content .tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content .tab-pane.active {
    display: block;
    opacity: 1;
}

/* RTL Support for Tabs */
[dir="rtl"] .jewel-tab-buttons {
    flex-direction: row-reverse;
}
