/* Modern Sleek Cosmic Dark Theme Stylesheet for ekhayaTila */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    --bg-main: #0B0F19;
    --bg-card: #151C2C;
    --bg-input: #1D263B;
    --primary: #6366F1;
    --primary-hover: #4F46E5;
    --secondary: #10B981;
    --secondary-hover: #059669;
    --accent: #F59E0B;
    --accent-hover: #D97706;
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border: #242E42;
    --danger: #EF4444;
    --danger-hover: #DC2626;
    --font-heading: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Mode support if toggled */
body.light-theme {
    --bg-main: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-input: #F1F5F9;
    --primary: #4F46E5;
    --primary-hover: #4338CA;
    --secondary: #059669;
    --secondary-hover: #047857;
    --accent: #D97706;
    --accent-hover: #B45309;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --border: #E2E8F0;
    --danger: #DC2626;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Common Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
header {
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo svg {
    color: var(--primary);
    fill: currentColor;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-secondary {
    background: var(--secondary);
    color: #FFFFFF;
}
.btn-secondary:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: #FFFFFF;
}
.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--danger);
    color: #FFFFFF;
}
.btn-danger:hover {
    background: var(--danger-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
}
.btn-outline:hover {
    background: var(--border);
    border-color: var(--text-muted);
}

.btn-icon {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
}
.btn-icon:hover {
    background: var(--bg-input);
    color: var(--primary);
}

.btn-icon-relative {
    position: relative;
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown User Menu */
.user-menu-container {
    position: relative;
}

.user-menu-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    width: 220px;
    padding: 8px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 110;
}

.user-menu-dropdown.show {
    display: flex;
    animation: fadeInSlide 0.2s ease forwards;
}

.user-menu-dropdown a, .user-menu-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--radius-sm);
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.user-menu-dropdown a:hover, .user-menu-dropdown button:hover {
    background: var(--bg-input);
    color: var(--primary);
}

/* Promo Banner / HeroSection */
.hero-banner {
    background: linear-gradient(135deg, #1E1B4B 0%, #0F172A 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin: 32px 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media(max-width: 768px) {
    .hero-banner {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        text-align: center;
    }
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(to right, #818CF8, #F472B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

@media(max-width: 768px) {
    .hero-actions {
        justify-content: center;
    }
}

.hero-graphics {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-mockup-wrapper {
    position: relative;
    width: 250px;
    height: 180px;
    background: var(--bg-card);
    border: 3px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Category Filter Chips */
.categories-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0 24px 0;
    margin-bottom: 16px;
}

.categories-tabs::-webkit-scrollbar {
    height: 4px;
}

.category-tab {
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.category-tab:hover {
    color: var(--text-primary);
    border-color: var(--text-muted);
}

.category-tab.active {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

/* Search Box styling */
.search-bar {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 4px 6px;
    width: 100%;
    max-width: 480px;
    align-items: center;
    margin-bottom: 24px;
}

.search-bar input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 10px 14px;
    outline: none;
    width: 100%;
    font-family: var(--font-body);
    font-size: 14px;
}

/* Store & Product Grid Layouts */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    margin-top: 32px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--text-muted);
}

.card-img-container {
    height: 180px;
    width: 100%;
    overflow: hidden;
    background: var(--bg-input);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #FFFFFF;
    background: rgba(11, 15, 25, 0.7);
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--accent);
}

/* Status Chips */
.status-pill {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-pill.success {
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
}

.status-pill.warning {
    background: rgba(245, 158, 11, 0.15);
    color: #FBBF24;
}

.status-pill.info {
    background: rgba(99, 102, 241, 0.15);
    color: #818CF8;
}

.status-pill.danger {
    background: rgba(239, 68, 68, 0.15);
    color: #F87171;
}

/* Forms Styling */
.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    min-height: calc(100vh - 144px);
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 460px;
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

/* Grid helper for forms */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Add some helper links in forms */
.form-link-sub {
    display: flex;
    justify-content: space-between;
    margin-top: -8px;
    margin-bottom: 20px;
    font-size: 13px;
}

.form-link-sub a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.form-link-sub a:hover {
    text-decoration: underline;
}

.form-switch-prompt {
    font-size: 14px;
    text-align: center;
    color: var(--text-secondary);
    margin-top: 24px;
}

.form-switch-prompt a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Dashboard Panel Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    margin-top: 32px;
    margin-bottom: 48px;
}

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

.dashboard-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: fit-content;
}

.sidebar-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    width: 100%;
}

.sidebar-tab:hover, .sidebar-tab.active {
    background: var(--bg-input);
    color: var(--primary);
}

.sidebar-tab.active {
    font-weight: 600;
    border-left: 3px solid var(--primary);
    border-radius: 4px var(--radius-md) var(--radius-md) 4px;
}

.dashboard-content-section {
    display: none;
}

.dashboard-content-section.active {
    display: block;
    animation: fadeIn 0.25s ease forwards;
}

/* Dashboard Stats Card Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-info h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.stat-info p {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-input);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Table Design (For Orders & Inventory Lists) */
.table-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    margin-bottom: 32px;
    box-shadow: var(--shadow);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th {
    background: rgba(11, 15, 25, 0.4);
    font-weight: 600;
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 14px;
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

/* Modal Window styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.25s ease forwards;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content-large {
    max-width: 720px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--danger);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 300;
    max-width: 320px;
}

.toast {
    background: var(--bg-card);
    border-left: 4px solid var(--primary);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    box-shadow: var(--shadow);
    color: var(--text-primary);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    position: relative;
}

.toast.toast-success {
    border-left-color: var(--secondary);
}

.toast.toast-error {
    border-left-color: var(--danger);
}

.toast.toast-info {
    border-left-color: var(--primary);
}

.toast-message {
    flex: 1;
}

.toast-close {
    cursor: pointer;
    background: transparent;
    border: none;
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Cart side drawer overlay style */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    display: none;
    z-index: 150;
}

.cart-drawer-overlay.show {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 160;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.show {
    right: 0;
}

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

.cart-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    background: var(--bg-input);
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-val {
    font-size: 13px;
    width: 20px;
    text-align: center;
}

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
    background: rgba(11, 15, 25, 0.4);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Empty cart style */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.empty-state svg {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.empty-state p {
    font-size: 14px;
}

/* Detail page elements */
.product-detail-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 32px;
    margin-bottom: 60px;
}

@media(max-width: 768px) {
    .product-detail-flex {
        grid-template-columns: 1fr;
    }
}

.detail-img-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-category {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 8px;
}

.detail-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.detail-store {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-desc {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.detail-booking-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Profile header */
.profile-header-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Footer Section */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 40px 0;
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    margin-top: auto;
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    color: var(--primary);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    list-style: none;
}

/* Burger menu button */
.burger-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

.burger-btn:hover {
    background: var(--bg-input);
}

/* Mobile Navigation Drawer styles */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 1001;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
}

.mobile-nav-drawer.show {
    transform: translateX(-300px);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.mobile-drawer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-drawer-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-drawer-nav a:hover,
.mobile-drawer-nav a.active {
    color: var(--primary);
    background: var(--bg-input);
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    /* Two cards per row */
    .grid-layout {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }
    
    /* Responsive tweaks for store and product card layout sizes */
    .card-img-container {
        height: 120px !important;
    }
    .card-body {
        padding: 12px !important;
    }
    .card-title {
        font-size: 14px !important;
    }
    .card-desc {
        font-size: 12px !important;
        height: 32px !important;
        line-height: 1.3 !important;
    }
}

/* Floating Action Button for Vendor Guide */
.fab-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 150;
    display: flex;
    align-items: center;
}

.fab-guide-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.fab-guide-btn:hover {
    transform: translateY(-4px) scale(1.05);
    background: #4f46e5;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

/* Tooltip for FAB */
.fab-tooltip {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin-right: 12px;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.fab-container:hover .fab-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Step list visual styling inside guide modal */
.guide-step-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.guide-step-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.guide-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.guide-step-content {
    flex: 1;
}

.guide-step-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.guide-step-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.guide-section-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

@media (max-width: 480px) {
    .fab-container {
        bottom: 16px;
        right: 16px;
    }
    .fab-tooltip {
        display: none; /* Hide tooltip on small mobile screen sizes to avoid overlap */
    }
}

