/**
 * Galorina Vendors - Estilos Frontend
 */

/* Variables CSS */
:root {
    --gv-primary: #045CB4;
    --gv-primary-dark: #034485;
    --gv-primary-light: #E8F1FB;
    --gv-secondary: #61CE70;
    --gv-secondary-dark: #4CAF50;
    --gv-danger: #E74C3C;
    --gv-warning: #F39C12;
    --gv-success: #27AE60;
    --gv-text: #333333;
    --gv-text-light: #666666;
    --gv-text-muted: #999999;
    --gv-border: #E5E5E5;
    --gv-bg: #F8F9FA;
    --gv-white: #FFFFFF;
    --gv-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --gv-radius: 8px;
    --gv-radius-lg: 12px;
    --gv-transition: all 0.3s ease;
}

/* Reset y Base */
.gv-dashboard-wrapper *,
.gv-search-form-wrapper *,
.gv-plans-page *,
.gv-register-wrapper * {
    box-sizing: border-box;
}

/* ============================================
   DASHBOARD LAYOUT
   ============================================ */
.gv-dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    background: var(--gv-bg);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--gv-text);
}

/* Sidebar */
.gv-sidebar {
    width: 260px;
    background: var(--gv-white);
    border-right: 1px solid var(--gv-border);
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    box-shadow: var(--gv-shadow);
}

.gv-sidebar-header {
    padding: 30px 20px;
    border-bottom: 1px solid var(--gv-border);
    text-align: center;
}

.gv-vendor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--gv-primary);
    padding: 3px;
    background: var(--gv-white);
}

.gv-vendor-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.gv-vendor-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--gv-text);
    margin: 0 0 5px;
}

.gv-vendor-role {
    font-size: 12px;
    color: var(--gv-primary);
    background: var(--gv-primary-light);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* Sidebar Navigation */
.gv-sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

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

.gv-sidebar-nav li {
    margin: 0;
}

.gv-sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    color: var(--gv-text-light);
    transition: var(--gv-transition);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.gv-sidebar-nav a:hover {
    background: var(--gv-primary-light);
    color: var(--gv-primary);
}

.gv-sidebar-nav li.active a {
    background: var(--gv-primary-light);
    color: var(--gv-primary);
    border-left-color: var(--gv-primary);
}

.gv-sidebar-nav .gv-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sidebar Footer */
.gv-sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--gv-border);
}

.gv-logout-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--gv-danger);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--gv-radius);
    transition: var(--gv-transition);
}

.gv-logout-link:hover {
    background: #FDEAEA;
}

/* Main Content */
.gv-main-content {
    flex: 1;
    margin-left: 260px;
    padding: 30px;
    min-height: 100vh;
}

/* ============================================
   DASHBOARD HOME
   ============================================ */
.gv-dashboard-home {
    max-width: 1200px;
}

.gv-welcome-section {
    margin-bottom: 30px;
}

.gv-welcome-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gv-text);
    margin: 0 0 8px;
}

.gv-welcome-section p {
    color: var(--gv-text-light);
    margin: 0;
}

/* Stats Grid */
.gv-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gv-stat-card {
    background: var(--gv-white);
    border-radius: var(--gv-radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--gv-shadow);
    transition: var(--gv-transition);
}

.gv-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gv-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.gv-stat-products { background: var(--gv-primary-light); }
.gv-stat-published { background: #E8F5E9; }
.gv-stat-pending { background: #FFF8E1; }
.gv-stat-views { background: #F3E5F5; }

.gv-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--gv-text);
    display: block;
}

.gv-stat-label {
    font-size: 13px;
    color: var(--gv-text-light);
}

/* Plan Status */
.gv-plan-status {
    background: linear-gradient(135deg, var(--gv-primary) 0%, var(--gv-primary-dark) 100%);
    border-radius: var(--gv-radius-lg);
    padding: 24px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gv-white);
}

.gv-plan-info h3 {
    color: var(--gv-white);
    margin: 0 0 8px;
    font-size: 16px;
}

.gv-plan-info p {
    margin: 0;
    opacity: 0.9;
}

.gv-plan-progress {
    margin-top: 15px;
}

.gv-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.gv-progress-fill {
    height: 100%;
    background: var(--gv-secondary);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.gv-progress-text {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
    display: block;
}

/* Quick Actions */
.gv-quick-actions {
    margin-bottom: 30px;
}

.gv-quick-actions h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px;
}

.gv-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.gv-action-card {
    background: var(--gv-white);
    border-radius: var(--gv-radius);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--gv-text);
    box-shadow: var(--gv-shadow);
    transition: var(--gv-transition);
}

.gv-action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--gv-primary);
}

.gv-action-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.gv-action-label {
    font-size: 13px;
    font-weight: 500;
}

.gv-action-highlight {
    background: var(--gv-primary);
    color: var(--gv-white);
}

.gv-action-highlight:hover {
    background: var(--gv-primary-dark);
    color: var(--gv-white);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.gv-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gv-border);
}

.gv-section-header h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.gv-view-all {
    color: var(--gv-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.gv-view-all:hover {
    text-decoration: underline;
}

/* ============================================
   BUTTONS
   ============================================ */
.gv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--gv-radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--gv-transition);
    gap: 8px;
}

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

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

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

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

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

.gv-btn-warning {
    background: var(--gv-warning);
    color: var(--gv-white);
}

.gv-btn-danger {
    background: var(--gv-danger);
    color: var(--gv-white);
}

.gv-btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.gv-btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.gv-btn-block {
    width: 100%;
}

.gv-btn-disabled,
.gv-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   FORMS
   ============================================ */
.gv-form {
    max-width: 100%;
}

.gv-form-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.gv-form-main {
    min-width: 0;
}

.gv-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gv-form-box {
    background: var(--gv-white);
    border-radius: var(--gv-radius-lg);
    padding: 24px;
    box-shadow: var(--gv-shadow);
}

.gv-form-box h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gv-border);
}

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

.gv-form-group:last-child {
    margin-bottom: 0;
}

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

.gv-form-group label.gv-required::after {
    content: " *";
    color: var(--gv-danger);
}

.gv-form-group input[type="text"],
.gv-form-group input[type="email"],
.gv-form-group input[type="password"],
.gv-form-group input[type="number"],
.gv-form-group input[type="tel"],
.gv-form-group input[type="url"],
.gv-form-group select,
.gv-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius);
    background: var(--gv-white);
    color: var(--gv-text);
    transition: var(--gv-transition);
}

.gv-form-group input:focus,
.gv-form-group select:focus,
.gv-form-group textarea:focus {
    outline: none;
    border-color: var(--gv-primary);
    box-shadow: 0 0 0 3px var(--gv-primary-light);
}

.gv-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.gv-form-row {
    display: flex;
    gap: 20px;
}

.gv-col-half {
    flex: 1;
}

.gv-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gv-border);
}

/* Categories List */
.gv-categories-list {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius);
}

.gv-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    cursor: pointer;
    font-size: 14px;
}

.gv-checkbox-label input {
    accent-color: var(--gv-primary);
}

/* Image Upload */
.gv-image-upload {
    border: 2px dashed var(--gv-border);
    border-radius: var(--gv-radius);
    padding: 20px;
    text-align: center;
}

.gv-image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.gv-image-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: var(--gv-radius);
    overflow: hidden;
    border: 1px solid var(--gv-border);
}

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

.gv-remove-image {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    background: var(--gv-danger);
    color: var(--gv-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gv-upload-area {
    padding: 20px;
    cursor: pointer;
    transition: var(--gv-transition);
}

.gv-upload-area:hover,
.gv-upload-area.gv-dragover {
    background: var(--gv-primary-light);
}

.gv-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.gv-upload-icon {
    font-size: 36px;
}

.gv-upload-text {
    font-size: 14px;
    color: var(--gv-text-light);
}

.gv-upload-hint {
    font-size: 12px;
    color: var(--gv-text-muted);
}

/* ============================================
   PRODUCTS TABLE
   ============================================ */
.gv-products-table-wrapper {
    background: var(--gv-white);
    border-radius: var(--gv-radius-lg);
    box-shadow: var(--gv-shadow);
    overflow: hidden;
}

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

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

.gv-products-table th {
    background: var(--gv-bg);
    font-weight: 600;
    font-size: 13px;
    color: var(--gv-text-light);
    text-transform: uppercase;
}

.gv-products-table tr:hover {
    background: var(--gv-primary-light);
}

.gv-product-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gv-product-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--gv-radius);
    overflow: hidden;
    background: var(--gv-bg);
}

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

.gv-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: var(--gv-bg);
}

.gv-product-name {
    font-weight: 500;
    color: var(--gv-text);
    text-decoration: none;
}

.gv-product-name:hover {
    color: var(--gv-primary);
}

.gv-product-sku {
    font-size: 12px;
    color: var(--gv-text-muted);
    display: block;
}

/* Status Badges */
.gv-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.gv-status-publish {
    background: #E8F5E9;
    color: var(--gv-success);
}

.gv-status-pending {
    background: #FFF8E1;
    color: var(--gv-warning);
}

.gv-status-draft {
    background: var(--gv-bg);
    color: var(--gv-text-light);
}

/* Actions */
.gv-actions {
    display: flex;
    gap: 8px;
}

.gv-action-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--gv-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--gv-transition);
    font-size: 14px;
}

.gv-action-btn:hover {
    background: var(--gv-bg);
}

.gv-action-delete:hover {
    background: #FDEAEA;
}

/* ============================================
   FILTERS BAR
   ============================================ */
.gv-filters-bar {
    background: var(--gv-white);
    border-radius: var(--gv-radius);
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: var(--gv-shadow);
}

.gv-filters-form {
    display: flex;
    gap: 15px;
    align-items: center;
}

.gv-filter-select {
    padding: 8px 12px;
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius);
    font-size: 14px;
    min-width: 180px;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.gv-empty-state {
    text-align: center;
    padding: 60px 30px;
    background: var(--gv-white);
    border-radius: var(--gv-radius-lg);
    box-shadow: var(--gv-shadow);
}

.gv-empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.gv-empty-state h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
}

.gv-empty-state p {
    color: var(--gv-text-light);
    margin: 0 0 25px;
}

/* ============================================
   PLANS PAGE
   ============================================ */
.gv-plans-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.gv-plans-header {
    text-align: center;
    margin-bottom: 40px;
}

.gv-plans-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gv-text);
    margin: 0 0 10px;
}

.gv-plans-header p {
    font-size: 16px;
    color: var(--gv-text-light);
    margin: 0;
}

.gv-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gv-plan-card {
    background: var(--gv-white);
    border-radius: var(--gv-radius-lg);
    padding: 30px;
    box-shadow: var(--gv-shadow);
    position: relative;
    transition: var(--gv-transition);
    border: 2px solid transparent;
}

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

.gv-plan-card.gv-popular {
    border-color: var(--gv-primary);
}

.gv-plan-card.gv-current {
    border-color: var(--gv-secondary);
}

.gv-popular-badge,
.gv-current-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.gv-popular-badge {
    background: var(--gv-primary);
    color: var(--gv-white);
}

.gv-current-badge {
    background: var(--gv-secondary);
    color: var(--gv-white);
}

.gv-plan-header {
    text-align: center;
    margin-bottom: 20px;
}

.gv-plan-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--gv-text);
    margin: 0 0 10px;
}

.gv-plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.gv-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--gv-primary);
}

.gv-currency {
    font-size: 18px;
    color: var(--gv-text-light);
}

.gv-period {
    font-size: 14px;
    color: var(--gv-text-muted);
}

.gv-plan-description {
    text-align: center;
    color: var(--gv-text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.gv-plan-highlight {
    text-align: center;
    padding: 12px;
    background: var(--gv-primary-light);
    border-radius: var(--gv-radius);
    margin-bottom: 20px;
}

.gv-highlight-text {
    font-weight: 600;
    color: var(--gv-primary);
}

.gv-plan-features {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}

.gv-plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gv-text);
}

.gv-feature-icon {
    color: var(--gv-secondary);
    font-weight: bold;
}

.gv-plan-action {
    margin-top: auto;
}

/* ============================================
   SEARCH FORM
   ============================================ */
.gv-search-form-wrapper {
    margin-bottom: 30px;
}

.gv-search-main {
    margin-bottom: 15px;
}

.gv-search-input-wrapper {
    display: flex;
    background: var(--gv-white);
    border-radius: var(--gv-radius-lg);
    overflow: hidden;
    box-shadow: var(--gv-shadow);
}

.gv-search-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 16px;
    background: transparent;
}

.gv-search-input:focus {
    outline: none;
}

.gv-search-btn {
    padding: 16px 25px;
    background: var(--gv-primary);
    color: var(--gv-white);
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: var(--gv-transition);
}

.gv-search-btn:hover {
    background: var(--gv-primary-dark);
}

.gv-search-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.gv-filter-group {
    flex: 1;
    min-width: 180px;
}

.gv-filter-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--gv-text-light);
    margin-bottom: 6px;
}

.gv-filter-group select,
.gv-filter-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius);
    background: var(--gv-white);
}

/* ============================================
   SEARCH RESULTS
   ============================================ */
.gv-search-results {
    margin-top: 30px;
}

.gv-results-info {
    margin-bottom: 20px;
    color: var(--gv-text-light);
    font-size: 14px;
}

.gv-products-grid {
    display: grid;
    gap: 20px;
}

.gv-columns-4 {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.gv-columns-3 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.gv-product-card {
    background: var(--gv-white);
    border-radius: var(--gv-radius-lg);
    overflow: hidden;
    box-shadow: var(--gv-shadow);
    transition: var(--gv-transition);
}

.gv-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gv-product-image {
    position: relative;
    height: 200px;
    background: var(--gv-bg);
}

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

.gv-product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.gv-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.gv-sale-badge {
    background: var(--gv-danger);
    color: var(--gv-white);
}

.gv-product-content {
    padding: 20px;
}

.gv-product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
}

.gv-product-title a {
    color: var(--gv-text);
    text-decoration: none;
}

.gv-product-title a:hover {
    color: var(--gv-primary);
}

.gv-product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--gv-primary);
    margin-bottom: 10px;
}

.gv-product-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gv-text-light);
    margin-bottom: 10px;
}

.gv-product-vendor {
    font-size: 13px;
    color: var(--gv-text-muted);
    margin-bottom: 15px;
}

.gv-vendor-label {
    margin-right: 4px;
}

.gv-vendor-name {
    font-weight: 500;
    color: var(--gv-text-light);
}

.gv-product-actions {
    display: flex;
    gap: 10px;
}

.gv-no-results {
    text-align: center;
    padding: 60px 30px;
    background: var(--gv-white);
    border-radius: var(--gv-radius-lg);
}

.gv-no-results-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.gv-no-results h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

.gv-no-results p {
    color: var(--gv-text-light);
    margin: 0 0 20px;
}

/* ============================================
   LOGIN FORM
   ============================================ */
.gv-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 20px;
}

.gv-login-card {
    background: var(--gv-white);
    border-radius: var(--gv-radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--gv-shadow);
}

.gv-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.gv-login-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px;
}

.gv-login-header p {
    color: var(--gv-text-light);
    margin: 0;
}

.gv-login-links {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.gv-login-links a {
    color: var(--gv-primary);
    text-decoration: none;
}

.gv-login-links a:hover {
    text-decoration: underline;
}

.gv-separator {
    margin: 0 10px;
    color: var(--gv-border);
}

/* ============================================
   NOTIFICATIONS
   ============================================ */
.gv-alert {
    padding: 15px 20px;
    border-radius: var(--gv-radius);
    margin-bottom: 20px;
    font-size: 14px;
}

.gv-alert-success {
    background: #E8F5E9;
    color: var(--gv-success);
    border: 1px solid #A5D6A7;
}

.gv-alert-error {
    background: #FFEBEE;
    color: var(--gv-danger);
    border: 1px solid #EF9A9A;
}

.gv-alert-warning {
    background: #FFF8E1;
    color: var(--gv-warning);
    border: 1px solid #FFE082;
}

/* ============================================
   PAGINATION
   ============================================ */
.gv-pagination {
    margin-top: 30px;
    text-align: center;
}

.gv-pagination .page-numbers {
    display: inline-flex;
    gap: 5px;
}

.gv-pagination a,
.gv-pagination span {
    padding: 10px 15px;
    border-radius: var(--gv-radius);
    text-decoration: none;
    font-size: 14px;
    transition: var(--gv-transition);
}

.gv-pagination a {
    background: var(--gv-white);
    color: var(--gv-text);
    border: 1px solid var(--gv-border);
}

.gv-pagination a:hover {
    background: var(--gv-primary-light);
    border-color: var(--gv-primary);
    color: var(--gv-primary);
}

.gv-pagination .current {
    background: var(--gv-primary);
    color: var(--gv-white);
}

/* ============================================
   LIMIT REACHED
   ============================================ */
.gv-limit-reached {
    text-align: center;
    padding: 50px 30px;
    background: var(--gv-white);
    border-radius: var(--gv-radius-lg);
    box-shadow: var(--gv-shadow);
}

.gv-limit-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.gv-limit-reached h3 {
    font-size: 22px;
    margin: 0 0 15px;
}

.gv-limit-reached p {
    color: var(--gv-text-light);
    margin: 0 0 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.gv-limit-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

.gv-limit-tip {
    padding: 15px;
    background: #FFF8E1;
    border-radius: var(--gv-radius);
    text-align: left;
}

.gv-limit-tip p {
    margin: 0;
    font-size: 14px;
}

/* ============================================
   SETTINGS
   ============================================ */
.gv-settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.gv-settings-box {
    background: var(--gv-white);
    border-radius: var(--gv-radius-lg);
    padding: 25px;
    box-shadow: var(--gv-shadow);
}

.gv-settings-box h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gv-border);
}

.gv-profile-upload {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gv-profile-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gv-border);
}

.gv-profile-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gv-profile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gv-file-input {
    font-size: 13px;
}

.gv-hint {
    font-size: 12px;
    color: var(--gv-text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .gv-form-grid {
        grid-template-columns: 1fr;
    }
    
    .gv-form-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .gv-sidebar {
        width: 100%;
        position: relative;
    }
    
    .gv-main-content {
        margin-left: 0;
    }
    
    .gv-dashboard-wrapper {
        flex-direction: column;
    }
    
    .gv-sidebar-nav ul {
        display: flex;
        overflow-x: auto;
        padding: 0 15px;
    }
    
    .gv-sidebar-nav li {
        flex-shrink: 0;
    }
    
    .gv-sidebar-nav a {
        padding: 12px 16px;
        border-left: none;
        border-bottom: 2px solid transparent;
    }
    
    .gv-sidebar-nav li.active a {
        border-left: none;
        border-bottom-color: var(--gv-primary);
    }
    
    .gv-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gv-plans-grid {
        grid-template-columns: 1fr;
    }
    
    .gv-products-table {
        display: block;
        overflow-x: auto;
    }
    
    .gv-form-row {
        flex-direction: column;
    }
    
    .gv-col-half {
        width: 100%;
    }
    
    .gv-search-filters {
        flex-direction: column;
    }
    
    .gv-filter-group {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gv-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gv-plan-card {
        padding: 20px;
    }
    
    .gv-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gv-limit-actions {
        flex-direction: column;
    }
}