/* ==========================================================================
   StoreHub - Modern & Responsive ASP.NET Core MVC Design System
   ========================================================================== */

:root {
    --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Primary Colors */
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-light: #eef2ff;
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    --text-gradient: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    --text-gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);

    /* Neutral & Backgrounds */
    --surface-body: #f8fafc;
    --surface-card: #ffffff;
    --surface-muted: #f1f5f9;
    --border-color: #e2e8f0;
    --border-light: rgba(226, 232, 240, 0.8);

    /* Text Colors */
    --text-main: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;

    /* Semantic */
    --success: #10b981;
    --success-light: #ecfdf5;
    --warning: #f59e0b;
    --warning-light: #fffbeb;
    --danger: #ef4444;
    --danger-light: #fef2f2;
    --info: #0ea5e9;

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.09), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

/* Base Body Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--surface-body);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Gradients & Text Utilities */
.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
    background: var(--text-gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cursor-pointer {
    cursor: pointer;
}

.extra-small {
    font-size: 0.75rem;
}

/* Soft Backgrounds */
.bg-soft-primary { background-color: var(--primary-light) !important; }
.bg-soft-success { background-color: var(--success-light) !important; }
.bg-soft-warning { background-color: var(--warning-light) !important; }
.bg-soft-danger  { background-color: var(--danger-light) !important; }
.bg-soft-indigo  { background-color: #e0e7ff !important; }
.bg-soft-emerald { background-color: #d1fae5 !important; }
.bg-soft-rose    { background-color: #ffe4e6 !important; }
.bg-soft-amber   { background-color: #fef3c7 !important; }
.bg-soft-dark    { background-color: #f1f5f9 !important; }
.bg-surface-muted { background-color: #f8fafc; }

/* Custom Buttons */
.btn-primary-gradient {
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    transition: all 0.25s ease;
}

.btn-primary-gradient:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(79, 70, 229, 0.4);
}

.btn-outline-primary-custom {
    color: var(--primary);
    border: 1.5px solid var(--primary);
    background: transparent;
    transition: all 0.2s ease;
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.btn-outline-light-custom {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    transition: all 0.2s ease;
}

.btn-outline-light-custom:hover {
    background: var(--surface-muted);
    color: var(--primary);
    border-color: #cbd5e1;
}

.btn-icon-glass {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.btn-icon-glass:hover {
    background: #ffffff;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: scale(1.05);
}

.btn-icon-round {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.2s ease;
}

/* ==========================================================================
   Header & Navbar (Glassmorphism)
   ========================================================================== */
.site-header {
    z-index: 1030;
}

.navbar-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.brand-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.brand-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

.header-search-box {
    max-width: 520px;
}

.header-search-input {
    border-radius: 9999px;
    padding-left: 2.75rem;
    padding-right: 4.5rem;
    height: 44px;
    border: 1.5px solid var(--border-color);
    background-color: #f8fafc;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.header-search-input:focus {
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.search-icon {
    left: 1rem;
    color: var(--text-muted);
    pointer-events: none;
}

.btn-search-badge {
    right: 0.35rem;
    background: var(--primary);
    color: #fff;
    border-radius: 9999px;
    padding: 0.25rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    border: none;
}

.btn-login-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    background: #ffffff;
    border: 1.5px solid rgba(79, 70, 229, 0.25);
    transition: all 0.25s ease;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

.btn-login-nav:hover {
    color: #ffffff;
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}

.btn-login-nav:active {
    transform: translateY(0);
}

.btn-lang-glass {
    background: #ffffff;
    border: 1.5px solid rgba(226, 232, 240, 0.9);
    color: var(--text-main);
    font-size: 0.86rem;
    font-weight: 700;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

.btn-lang-glass:hover, .btn-lang-glass:focus, .btn-lang-glass[aria-expanded="true"] {
    background: var(--surface-muted);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.12);
}

.nav-link-custom {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link-custom:hover {
    color: var(--primary);
    background-color: var(--primary-light);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--border-light);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.35;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #818cf8;
    top: -100px;
    right: 10%;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: #38bdf8;
    bottom: -50px;
    left: 5%;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: #f472b6;
    top: 30%;
    left: 45%;
}

.hero-badge {
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    border: 1px solid rgba(79, 70, 229, 0.15);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(79, 70, 229, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

.hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-subtext {
    max-width: 580px;
    line-height: 1.6;
}

.hero-search-wrapper {
    box-shadow: 0 12px 30px -5px rgba(15, 23, 42, 0.1);
}

.hero-input {
    font-size: 1rem;
    height: 52px;
}

.quick-tag {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.quick-tag:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.stat-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.avatars-group .avatar-mini {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -8px;
    object-fit: cover;
}

.avatars-group .avatar-mini:first-child {
    margin-left: 0;
}

/* ==========================================================================
   Category Pills Bar (Horizontal Scrollable)
   ========================================================================== */
.custom-scrollbar::-webkit-scrollbar {
    height: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.btn-cat-pill {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    background: #ffffff;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-xs);
}

.btn-cat-pill:hover {
    color: var(--primary);
    background: var(--primary-light);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-1px);
}

.btn-cat-pill.active {
    background: var(--text-main);
    color: #ffffff;
    border-color: var(--text-main);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* ==========================================================================
   Store Card Design (Direct Brand Logo Visual - No Stock Photos)
   ========================================================================== */
.store-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl) !important;
    border-color: #cbd5e1 !important;
}

/* Brand Showcase Header */
.store-brand-header {
    height: 220px;
    width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1.25rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.store-card:hover .store-brand-header {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.brand-showcase-logo {
    width: 100%;
    height: 100%;
    max-height: 195px;
    max-width: 290px;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.09));
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.store-card:hover .brand-showcase-logo {
    transform: scale(1.05) translateY(-3px);
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.15));
}

/* Badges */
.badge-open {
    background: rgba(16, 185, 129, 0.95);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.72rem;
}

.live-dot-green {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1); }
}

.badge-closed {
    background: rgba(100, 116, 139, 0.95);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.72rem;
}

/* Favorite Card Button */
.btn-fav-card {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-fav-card:hover {
    background: #ffffff;
    color: var(--danger);
    transform: scale(1.1);
}

.btn-fav-card.active {
    color: var(--danger);
    background: #ffffff;
}

.btn-fav-card.active i::before {
    content: "\f415"; /* bi-heart-fill */
}

/* Store Card Body & Typography Spacing */
.p-3\.5 {
    padding: 1.15rem 1.25rem 1.25rem !important;
}

.store-card-body {
    margin-top: 0;
}

.store-title a {
    transition: color 0.2s ease;
}

.store-title a:hover {
    color: var(--primary) !important;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.7em;
    line-height: 1.35;
}

/* B2B Specs Box: Clean, Structured 2-Column Grid (Zero Overlap) */
.b2b-specs-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
}

.spec-item {
    font-size: 0.78rem;
    line-height: 1.25;
}

.spec-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-tags-wrap {
    min-height: 24px;
}

.bg-light-soft {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
}

.tag-chip {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
}

/* Featured Products Preview */
.prod-thumb-box {
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-color: #e2e8f0;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease;
}

.prod-thumb-box:hover {
    transform: scale(1.08);
}

.thumb-price-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 1px 3px;
    border-top-left-radius: 4px;
}

.prod-thumb-more {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    border: 1px dashed rgba(79, 70, 229, 0.3);
    transition: all 0.2s ease;
}

.prod-thumb-more:hover {
    background-color: var(--primary);
    color: #ffffff;
}

/* ==========================================================================
   Store Detail Page (Direct Brand Logo Visual - No Stock Photos)
   ========================================================================== */
.store-detail-brand-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.store-detail-brand-hero::before {
    content: "";
    position: absolute;
    top: -60px;
    right: 10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bg-dark-glass {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.border-white-20 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.store-profile-card {
    border-color: rgba(226, 232, 240, 0.8) !important;
}

.detail-brand-logo-box {
    width: 140px;
    height: 100px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.detail-brand-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.verified-badge-lg {
    color: var(--primary);
    background: #ffffff;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
}

.info-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Category Tabs */
.btn-product-tab {
    white-space: nowrap;
    padding: 0.55rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.btn-product-tab:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.btn-product-tab.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

/* ==========================================================================
   Product Card
   ========================================================================== */
.product-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl) !important;
    border-color: #cbd5e1 !important;
}

.product-img-wrap {
    height: 200px;
    background-color: #f1f5f9;
}

.product-img {
    height: 100%;
    transition: transform 0.4s ease;
}

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

.badge-product-flag {
    background: rgba(239, 68, 68, 0.95);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.btn-quick-view {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.8);
    transition: all 0.25s ease;
    z-index: 5;
}

.product-card:hover .btn-quick-view {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.btn-quick-view:hover {
    background: var(--primary);
    color: #ffffff;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   Modal & Quick View
   ========================================================================== */
.modal-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.product-modal-img-wrap {
    height: 320px;
    background-color: #f1f5f9;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #ffffff;
}

.footer-heading {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f1f5f9;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-icon-btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.trust-badge-card {
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 991.98px) {
    .hero-headline {
        font-size: 2.25rem;
    }
    .store-hero-banner {
        height: 240px;
    }
    .store-header-content {
        margin-top: -80px;
    }
    .store-avatar-large img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 575.98px) {
    .hero-headline {
        font-size: 1.85rem;
    }
    .hero-subtext {
        font-size: 0.88rem;
    }
    .hero-input {
        font-size: 0.88rem;
        height: 44px;
    }
    .store-banner-wrap {
        height: 160px;
    }
    .product-img-wrap {
        height: 170px;
    }
    .btn-quick-view {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

/* ==========================================================================
   Google Translate & Language Switcher
   ========================================================================== */
.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
}

body {
    top: 0px !important;
    position: static !important;
}

.skiptranslate:not(#langSwitcherDropdown):not(#langSwitcherDropdown *) {
    display: none !important;
}

#goog-gt-tt, .goog-te-balloon-frame {
    display: none !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

.font-arabic {
    font-family: 'Segoe UI', Tahoma, 'Plus Jakarta Sans', Arial, sans-serif;
}

.btn-lang-glass {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-lang-glass:hover {
    background: #ffffff;
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* RTL Layout Enhancements for Arabic */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .ms-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

[dir="rtl"] .dropdown-menu-end {
    right: auto !important;
    left: 0 !important;
}

[dir="rtl"] .hero-badge {
    flex-direction: row-reverse;
}