/* General Styles */
:root {
    --color-primary: #4A148C; /* Roxo Místico */
    --color-secondary: #7E57C2; /* Lavanda Mística */
    --color-accent: #FBC02D; /* Dourado Místico */
    --color-background: #0D0D0D; /* Fundo Escuro */
    --color-surface: #1A1A1A; /* Superfície Principal */
    --color-surface-light: #2C2C2C; /* Superfície Leve */
    --color-text: #E0E0E0; /* Texto Principal */
    --color-text-secondary: #BDBDBD; /* Texto Secundário */
    --color-success: #66BB6A; /* Verde Sucesso */
    --color-error: #EF5350; /* Vermelho Erro */
    --color-border: #333333; /* Cor da Borda */
    --font-family: 'Poppins', 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 2rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --transition-fast: all 0.2s ease-in-out;
    --transition-slow: all 0.4s ease-in-out;
}

/* Base styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.page {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.page.active {
    display: block;
}

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

/* General classes */
.hidden {
    display: none !important;
}

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

.mt-6 {
    margin-top: var(--space-6);
}

.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.card__body {
    padding: var(--space-6);
}

.card__header {
    padding: var(--space-4) var(--space-6);
    background: var(--color-surface-light);
    border-bottom: 1px solid var(--color-border);
}

.btn {
    background-color: var(--color-secondary);
    color: white;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.btn:hover, .btn:focus {
    background-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn:disabled {
    background: var(--color-surface-light);
    color: var(--color-text-secondary);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

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

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

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

/* Navigation Bar */
.navbar {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-4) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.logo {
    font-size: var(--font-size-lg);
    font-weight: bold;
    color: var(--color-secondary);
    cursor: pointer;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: var(--space-6);
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: var(--color-text);
    cursor: pointer;
    padding: var(--space-2) 0;
    position: relative;
    transition: var(--transition-fast);
    text-decoration: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-fast);
}

.nav-links a:hover, .nav-links a:focus {
    color: var(--color-accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--color-text);
    margin: 6px 0;
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mode Toggle Button */
.mode-toggle-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: 50px;
    border: 2px solid var(--color-accent);
    cursor: pointer;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(123, 31, 162, 0.3);
}

.mode-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 31, 162, 0.5);
    border-color: var(--color-accent);
}

.mode-toggle-btn:active {
    transform: translateY(0);
}

.mode-toggle-btn .mode-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mode-toggle-btn:hover .mode-icon {
    transform: rotate(15deg) scale(1.1);
}

.mode-toggle-btn .mode-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mobile-mode-toggle {
    width: 100%;
    justify-content: center;
    margin: var(--space-3) 0;
}

#mode-toggle-container {
    display: flex;
    align-items: center;
}

/* Mobile Sidebar */
.mobile-sidebar {
    display: none;
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--color-surface);
    border-left: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    z-index: 1002;
    transition: right 0.3s ease-in-out;
}

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

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

.sidebar-overlay.active {
    display: block;
}

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

.sidebar-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.sidebar-close {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: var(--font-size-xl);
    cursor: pointer;
}

.sidebar-menu {
    list-style: none;
    padding: var(--space-4) 0;
    margin: 0;
}

.sidebar-menu li a {
    display: block;
    padding: var(--space-3) var(--space-4);
    color: var(--color-text);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sidebar-menu li a:hover {
    background: var(--color-surface-light);
    color: var(--color-accent);
}

/* Login Modal */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1003;
}

.login-modal.show {
    display: flex;
}

.modal-content {
    background: var(--color-surface);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    max-width: 450px;
    text-align: center;
    position: relative;
}

.modal-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: none;
    border: none;
    color: var(--color-text);
    font-size: var(--font-size-xl);
    cursor: pointer;
}

.modal-title {
    color: var(--color-secondary);
    margin-bottom: var(--space-4);
}

.modal-buttons {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.modal-buttons .btn {
    flex: 1;
}

/* Main Content */
.main-content {
    padding: var(--space-8) 0;
}

.hero {
    text-align: center;
    padding: var(--space-12) var(--space-4);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-8);
}

.hero h1 {
    font-size: var(--font-size-xxl);
    color: white;
    margin-bottom: var(--space-4);
}

.hero p {
    font-size: var(--font-size-lg);
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto var(--space-6) auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Form Styles */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: var(--space-8);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.form-title {
    text-align: center;
    color: var(--color-secondary);
    margin-bottom: var(--space-6);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    color: var(--color-text-secondary);
    font-weight: 600;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: var(--space-3);
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(251, 192, 45, 0.2);
}

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

.radio-group {
    display: flex;
    gap: var(--space-4);
}

.radio-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.radio-item input[type="radio"], .radio-item input[type="checkbox"] {
    accent-color: var(--color-secondary);
}

.seller-fields {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, margin-top 0.5s ease-in-out;
}

.seller-fields.show {
    max-height: 500px; /* Adjust as needed */
    margin-top: var(--space-6);
}

.error-message {
    color: var(--color-error);
    font-size: var(--font-size-sm);
    margin-top: var(--space-2);
    display: none;
}

.success-message, .error-alert {
    padding: var(--space-4);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
    text-align: center;
}

.success-message {
    background: var(--color-success);
    color: white;
}

.error-alert {
    background: var(--color-error);
    color: white;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--space-3);
    background: white;
    color: #444;
    border: 1px solid #ccc;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.google-btn:hover {
    background: #f1f1f1;
}

.google-icon {
    width: 20px;
    height: 20px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/c/c1/Google_%22G%22_logo.svg') no-repeat center;
    background-size: contain;
    margin-right: var(--space-3);
}

.divider {
    text-align: center;
    margin: var(--space-6) 0;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--color-border);
}

.divider::before {
    margin-right: var(--space-4);
}

.divider::after {
    margin-left: var(--space-4);
}

/* Dashboard Layout */
.dashboard-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--space-8);
}

.sidebar {
    background: var(--color-surface);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.sidebar h3 {
    color: var(--color-secondary);
    margin-bottom: var(--space-6);
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li a {
    display: block;
    padding: var(--space-3);
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    cursor: pointer;
}

.sidebar-nav li a:hover {
    background: var(--color-surface-light);
    color: var(--color-accent);
}

.dashboard-content {
    background: var(--color-surface);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.welcome-message {
    color: var(--color-secondary);
    margin-bottom: var(--space-2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.stat-card {
    background: var(--color-surface-light);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-xxl);
    font-weight: 600;
    color: var(--color-accent);
}

.stat-label {
    color: var(--color-text-secondary);
}

/* Products Styles */
.search-hero {
    text-align: center;
    padding: var(--space-8);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-8);
    border: 1px solid var(--color-border);
}

.search-input {
    width: 100%;
    max-width: 600px;
    padding: var(--space-4);
    font-size: var(--font-size-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface-light);
    color: var(--color-text);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.filter-btn {
    background: var(--color-surface-light);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: var(--space-2) var(--space-4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

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

.filter-btn.active {
    background: var(--color-accent);
    color: var(--color-background);
    font-weight: 600;
    border-color: var(--color-accent);
}

.filter-btn.loading::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

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

.product-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.product-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    overflow: hidden;
    background: var(--color-surface-light);
    border-radius: var(--radius-md);
}

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

.product-image .no-image {
    font-size: 3rem;
    color: var(--color-text-secondary);
    text-align: center;
}

.product-category {
    font-size: var(--font-size-sm);
    color: var(--color-accent);
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.product-name {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.product-seller {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
    cursor: pointer;
    text-decoration: underline;
}

.product-seller:hover {
    color: var(--color-accent);
}

.product-price {
    font-size: var(--font-size-lg);
    font-weight: bold;
    color: var(--color-success);
    margin-bottom: var(--space-4);
}

.product-description {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
    flex-grow: 1;
}

.product-stock {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
}

.product-stock.low {
    color: orange;
}

.product-stock.out {
    color: var(--color-error);
}

.btn-add-to-cart {
    width: 100%;
    margin-top: auto;
}

/* Cart Item Styles */
.cart-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.cart-item:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-md);
}

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

.cart-item-info h4 {
    color: var(--color-text);
    font-size: var(--font-size-lg);
    margin: 0 0 var(--space-2) 0;
    font-weight: 600;
}

.cart-item-info p {
    margin: var(--space-1) 0;
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

.cart-item-info .product-price {
    color: var(--color-success);
    font-size: var(--font-size-lg);
    font-weight: bold;
    margin: var(--space-2) 0;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.cart-item-actions input[type="number"] {
    width: 80px;
    padding: var(--space-2) var(--space-3);
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: var(--font-size-base);
    text-align: center;
}

.cart-item-actions input[type="number"]:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.empty-cart-state {
    text-align: center;
    padding: var(--space-12);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: var(--space-4);
    opacity: 0.5;
}

.empty-cart-state h3 {
    color: var(--color-secondary);
    margin-bottom: var(--space-3);
}

.empty-cart-state p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-8);
    background: var(--color-surface);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.product-detail-image {
    font-size: 10rem;
    text-align: center;
}

.products-table {
    width: 100%;
    border-collapse: collapse;
}

.products-table th, .products-table td {
    padding: var(--space-4);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.products-table th {
    background: var(--color-surface-light);
    color: var(--color-text-secondary);
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.action-btn:hover {
    color: var(--color-error);
}

/* Notification Styles */
.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-md);
    color: white;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.notification.success {
    background: var(--color-success);
}

.notification.error {
    background: var(--color-error);
}

.notification.info {
    background: var(--color-secondary);
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: var(--space-6);
    color: var(--color-text-secondary);
}

.breadcrumb a {
    color: var(--color-accent);
    cursor: pointer;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 var(--space-2);
}

/* Categories Grid in Client Dashboard */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
}

.category-card {
    background: var(--color-surface-light);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
}

.category-title {
    font-weight: 600;
    color: var(--color-text);
}

/* Store Page */
.store-page {
    max-width: 1200px;
    margin: 0 auto;
}

.store-header {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    margin-bottom: var(--space-8);
}

.store-header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-8);
    align-items: center;
}

.store-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: white;
}

.store-info h1 {
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.store-category {
    color: var(--color-accent);
    margin-bottom: var(--space-4);
}

.store-description {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

.store-stats {
    display: flex;
    gap: var(--space-6);
    color: var(--color-text-secondary);
}

.store-stat {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.store-contact-btn {
    background: var(--color-secondary);
    color: white;
    border: none;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

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

.store-products-section h2 {
    color: var(--color-secondary);
    margin-bottom: var(--space-6);
    text-align: center;
}

.store-empty-state {
    text-align: center;
    padding: var(--space-12);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-sidebar {
        display: block;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .store-header-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .store-avatar {
        margin: 0 auto var(--space-4) auto;
    }

    .store-stats {
        justify-content: center;
    }
}

/* Sidebar separator styling */
.sidebar-separator {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
}

.sidebar-separator a {
    color: var(--color-secondary);
    font-weight: 600;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--space-8);
}
