/* Основные стили для плагина магазинов */

/* Контейнеры */
.shp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Кнопки */
.shp-btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shp-btn-primary {
    background: #3498db;
    color: #fff;
}
.shp-btn-primary:hover {
    background: #2980b9;
}

.shp-btn-success {
    background: #27ae60;
    color: #fff;
}
.shp-btn-success:hover {
    background: #229954;
}

.shp-btn-danger {
    background: #e74c3c;
    color: #fff;
}
.shp-btn-danger:hover {
    background: #c0392b;
}

.shp-btn-outline {
    background: transparent;
    border: 1px solid #3498db;
    color: #3498db;
}
.shp-btn-outline:hover {
    background: #3498db;
    color: #fff;
}

/* Корзина на странице товара*/

.shp-cart-items {
    max-height: 300px;
    overflow-y: auto;
}

.shp-cart-item {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.shp-cart-item-title {
    font-size: 13px;
    font-weight: 500;
}

.shp-cart-item-meta {
    font-size: 11px;
    color: #999;
    margin-top: 3px;
}

.shp-cart-item-remove {
    color: #e74c3c;
    cursor: pointer;
    padding: 5px;
}

.shp-cart-empty {
    padding: 20px;
    text-align: center;
    color: #999;
}

.shp-cart-footer {
    padding: 12px 15px;
    border-top: 1px solid #eee;
}

/* Сетка магазинов */
.shp-shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.shp-shop-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shp-shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.shp-shop-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 20px;
    text-align: center;
}

.shp-shop-logo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.shp-shop-name {
    font-size: 18px;
    margin: 0 0 8px 0;
}

.shp-verified {
    display: inline-block;
    font-size: 12px;
    color: #27ae60;
    margin-bottom: 8px;
}

.shp-shop-stats {
    font-size: 13px;
    color: #999;
}

/* Страница магазина */
.shp-shop-header {
    background: #f8f9fa;
    padding: 40px 0;
    margin-bottom: 40px;
}

.shp-shop-cover {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.shp-shop-logo-large img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.shp-shop-title h1 {
    margin: 0 0 8px 0;
    font-size: 28px;
}

.shp-verified-badge {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.shp-shop-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.shp-shop-contacts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.shp-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.shp-contact-item i {
    width: 18px;
    color: #3498db;
}

/* Сетка товаров */
.shp-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.shp-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.shp-product-card:hover {
    transform: translateY(-3px);
}

.shp-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.shp-product-image {
    height: 200px;
    overflow: hidden;
}

.shp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.shp-product-info {
    padding: 15px;
}

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

.shp-product-price {
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;
}

.shp-btn-add-to-cart {
    width: calc(100% - 30px);
    margin: 0 15px 15px 15px;
    padding: 10px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.shp-btn-add-to-cart:hover {
    background: #2980b9;
}

/* Статусы */
.shp-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.shp-status-pending {
    background: #fff3e0;
    color: #e65100;
}

.shp-status-paid {
    background: #e8f5e9;
    color: #2e7d32;
}

.shp-status-shipped {
    background: #e3f2fd;
    color: #1565c0;
}

.shp-status-delivered {
    background: #e8f5e9;
    color: #2e7d32;
}

.shp-status-completed {
    background: #c8e6c9;
    color: #1b5e20;
}

.shp-status-cancelled {
    background: #ffebee;
    color: #c62828;
}

/* Карточка заказа */
.shp-order-card {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.shp-order-header {
    background: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.shp-order-number {
    font-weight: bold;
    font-size: 16px;
}

.shp-order-date {
    color: #999;
    font-size: 13px;
}

.shp-order-body {
    padding: 20px;
}

.shp-order-shop {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.shp-order-shop a {
    color: #3498db;
    text-decoration: none;
}

.shp-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.shp-order-address {
    margin-top: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 13px;
}

.shp-order-tracking {
    margin-top: 10px;
    font-size: 13px;
    color: #27ae60;
}

.shp-order-footer {
    background: #f8f9fa;
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

/* Модальное окно */
.shp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shp-modal-content {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
}

.shp-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shp-modal-header h3 {
    margin: 0;
}

.shp-modal-close {
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.shp-modal-body {
    padding: 20px;
}

.shp-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Пустое состояние */
.shp-empty {
    text-align: center;
    padding: 60px;
    background: #f9f9f9;
    border-radius: 12px;
}

.shp-empty i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 15px;
}

/* Пагинация */
.shp-pagination {
    text-align: center;
    margin: 30px 0;
}

.shp-pagination a {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #3498db;
    background: #fff;
}

.shp-pagination a:hover {
    background: #f0f0f0;
}

.shp-pagination .shp-active {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
}

/* Адаптивность */
@media (max-width: 768px) {
    .shp-shops-grid,
    .shp-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .shp-shop-cover {
        flex-direction: column;
        text-align: center;
    }
    
    .shp-order-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .shp-cart-dropdown {
        width: 280px;
        right: -50px;
    }
}

/* Шапка магазина с фоновым изображением */
.shp-shop-header {
    background: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 40px;
    color: #fff;
}

.shp-shop-cover {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.shp-shop-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.shp-shop-logo-large {
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.shp-shop-logo-large img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.shp-shop-title h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.shp-verified-badge {
    display: inline-block;
    background: rgba(39, 174, 96, 0.9);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.shp-shop-right {
    flex: 1;
    min-width: 250px;
}

.shp-shop-requisites,
.shp-shop-contacts {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 15px;
}

.shp-shop-requisites h3,
.shp-shop-contacts h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 8px;
}

.shp-requisite-item {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 5px;
}

.shp-requisite-label {
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.shp-requisite-value {
    color: #fff;
}

.shp-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
}

.shp-contact-item i {
    width: 20px;
    color: #fff;
}

.shp-contact-item a {
    color: #fff;
    text-decoration: none;
}

.shp-contact-item a:hover {
    text-decoration: underline;
}

.shp-shop-description {
    background: rgba(0,0,0,0.5);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    line-height: 1.6;
    font-size: 14px;
}

/* Адаптивность для шапки */
@media (max-width: 768px) {
    .shp-shop-cover {
        flex-direction: column;
    }
    
    .shp-shop-left {
        justify-content: center;
        text-align: center;
    }
    
    .shp-shop-right {
        width: 100%;
    }
    
    .shp-shop-header {
        padding: 40px 0;
    }
    
    .shp-shop-title h1 {
        font-size: 24px;
    }
    
    .shp-shop-logo-large img {
        width: 100px;
        height: 100px;
    }
}

.shp-shop-edit {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}
.shp-shop-edit .shp-container {
    max-width: 100%;
}
.shp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}
.shp-header h1 {
    margin: 0;
    font-size: 28px;
}
.shp-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.shp-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.shp-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.shp-form {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.shp-form-group {
    margin-bottom: 20px;
}
.shp-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}
.shp-required {
    color: #e74c3c;
}
.shp-input, .shp-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}
.shp-input:focus, .shp-textarea:focus {
    border-color: #3498db;
    outline: none;
}
.shp-disabled {
    background: #f5f5f5;
    color: #999;
}
.shp-hint {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}
.shp-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.shp-form-row .shp-form-group {
    flex: 1;
    margin-bottom: 0;
}
.shp-current-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.shp-current-logo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #ddd;
}
.shp-checkbox-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}
.shp-file {
    padding: 10px 0;
    width: 100%;
}
.shp-form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.shp-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.shp-btn-primary {
    background: #3498db;
    color: #fff;
}
.shp-btn-primary:hover {
    background: #2980b9;
}
.shp-btn-default {
    background: #f0f0f0;
    color: #333;
}
.shp-btn-default:hover {
    background: #e0e0e0;
}
.shp-btn-outline {
    background: transparent;
    border: 1px solid #3498db;
    color: #3498db;
}
.shp-btn-outline:hover {
    background: #3498db;
    color: #fff;
}
@media (max-width: 768px) {
    .shp-form-row {
        flex-direction: column;
        gap: 20px;
    }
    .shp-form-buttons {
        flex-direction: column;
    }
    .shp-btn {
        text-align: center;
    }
    .shp-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Расширенный поиск */
.shp-search-advanced {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.shp-search-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shp-search-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.shp-search-field {
    flex: 1;
    min-width: 180px;
}

.shp-search-field-full {
    flex: 100%;
}

.shp-search-field .shp-input,
.shp-search-field .shp-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
}

.shp-search-field .shp-input:focus,
.shp-search-field .shp-select:focus {
    border-color: #3498db;
    outline: none;
}

.shp-search-action {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 0 0 auto;
}

.shp-results-count {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Сетка магазинов */
.shp-shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 20px 0 30px;
}

.shp-shop-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shp-shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.shp-shop-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 20px;
    text-align: center;
}

.shp-shop-logo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.shp-shop-name {
    font-size: 18px;
    margin: 0 0 8px 0;
    color: #333;
}

.shp-verified {
    display: inline-block;
    font-size: 12px;
    color: #27ae60;
    margin-bottom: 8px;
}

.shp-shop-stats {
    font-size: 13px;
    color: #999;
}

/* Пустое состояние */
.shp-empty {
    text-align: center;
    padding: 60px;
    background: #f9f9f9;
    border-radius: 12px;
}

.shp-empty i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 15px;
}

.shp-empty-hint {
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

/* Пагинация */
.shp-pagination {
    text-align: center;
    margin-top: 30px;
}

.shp-pagination a {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #3498db;
    background: #fff;
    transition: all 0.2s;
}

.shp-pagination a:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.shp-pagination .shp-active {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
}

/* Адаптивность */
@media (max-width: 768px) {
    .shp-search-row {
        flex-direction: column;
    }
    
    .shp-search-field {
        min-width: auto;
    }
    
    .shp-search-action {
        flex-direction: row;
        justify-content: center;
    }
    
    .shp-shops-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }
    
    .shp-shop-link {
        padding: 15px;
    }
    
    .shp-shop-logo img {
        width: 80px;
        height: 80px;
    }
}

/* Плавающая корзина */
.shp-cart-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
}

.shp-cart-icon {
    background: #3498db;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.shp-cart-icon:hover {
    transform: scale(1.05);
    background: #2980b9;
}

.shp-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 50%;
    min-width: 22px;
    text-align: center;
}

.shp-cart-dropdown {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    z-index: 9998;
}

.shp-cart-widget:hover .shp-cart-dropdown,
.shp-cart-dropdown:hover {
    display: block;
}

/* При клике на корзину показываем окно */
.shp-cart-widget.active .shp-cart-dropdown {
    display: block;
}

/* Окно не исчезает при наведении */
.shp-cart-dropdown:hover {
    display: block;
}

.shp-cart-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.shp-cart-items {
    max-height: 350px;
    overflow-y: auto;
}

.shp-cart-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shp-cart-item:hover {
    background: #fafafa;
}

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

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

.shp-cart-item-meta {
    font-size: 12px;
    color: #999;
}

.shp-cart-item-remove {
    color: #e74c3c;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 4px;
}

.shp-cart-item-remove:hover {
    background: #ffebee;
}

.shp-cart-empty {
    padding: 30px;
    text-align: center;
    color: #999;
}

.shp-cart-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    text-align: center;
}

.shp-cart-total {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.shp-cart-checkout {
    display: inline-block;
    padding: 10px 20px;
    background: #27ae60;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.shp-cart-checkout:hover {
    background: #229954;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .shp-cart-dropdown {
        width: calc(100% - 40px);
        right: 20px;
    }
}

.shp-my-shop {
    padding: 30px 20px;
}
.shp-container {
    max-width: 1200px;
    margin: 0 auto;
}
.shp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.shp-header h1 {
    margin: 0;
    font-size: 28px;
}
.shp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.shp-stat-cards {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	text-align: center;
}
.shp-stat-icon {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #3498db;
}
.shp-stat-info {
    flex: 1;
}
.shp-stat-values {
    font-size: 20px;
    font-weight: bold;
	color: #3498db;
}
.shp-stat-label {
    font-size: 13px;
    color: #999;
}
.shp-balance-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.shp-balance-info h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    opacity: 0.9;
}
.shp-balance-amount {
    font-size: 36px;
    font-weight: bold;
}
.shp-balance-fines {
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.8;
}
.shp-withdraw-form {
    text-align: right;
}
.shp-form-inline {
    display: flex;
    gap: 10px;
}
.shp-form-inline .shp-input {
    width: 150px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
.shp-form-inline .shp-input::placeholder {
    color: rgba(255,255,255,0.7);
}
.shp-btn-success {
    background: #27ae60;
    color: #fff;
}
.shp-orders-section h2 {
    margin-bottom: 20px;
    font-size: 22px;
}
.shp-orders-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.shp-orders-table table {
    width: 100%;
    border-collapse: collapse;
}
.shp-orders-table th,
.shp-orders-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.shp-orders-table th {
    background: #f8f9fa;
    font-weight: 600;
}
.shp-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}
.shp-status-pending {
    background: #fff3e0;
    color: #e65100;
}
.shp-status-paid {
    background: #e8f5e9;
    color: #2e7d32;
}
.shp-status-shipped {
    background: #e3f2fd;
    color: #1565c0;
}
.shp-status-completed {
    background: #e8f5e9;
    color: #2e7d32;
}
.shp-status-cancelled {
    background: #ffebee;
    color: #c62828;
}
.shp-btn-small {
    padding: 6px 12px;
    font-size: 12px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.shp-shipped-label {
    color: #27ae60;
    font-size: 12px;
}
.shp-empty {
    text-align: center;
    padding: 60px;
    background: #f9f9f9;
    border-radius: 12px;
}
.shp-empty i {
    font-size: 48px;
    color: #ddd;
}
@media (max-width: 768px) {
    .shp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shp-balance-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .shp-withdraw-form {
        text-align: center;
    }
    .shp-orders-table {
        overflow-x: auto;
    }
}