.store-product-create-page {
    padding: 30px 0;
}

.panel-page-header {
    margin-bottom: 20px;
}

.panel-page-header h1 {
    margin: 0;
    font-size: 28px;
    color: #111827;
}

.panel-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.panel-form-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    padding: 20px;
}

.panel-form-card h2 {
    margin: 0 0 16px;
    font-size: 20px;
    color: #111827;
}

.panel-product-form .form-group {
    margin-bottom: 16px;
}

.panel-product-form label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
}

.panel-product-form input,
.panel-product-form select,
.panel-product-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-sizing: border-box;
}

.panel-product-form small {
    display: block;
    margin-top: 8px;
    color: #6b7280;
}

.panel-form-actions {
    margin-top: 20px;
}

.panel-form-actions button {
    display: inline-block;
    padding: 12px 18px;
    border: 0;
    border-radius: 8px;
    background: #111827;
    color: #ffffff;
    cursor: pointer;
}

@media (max-width: 992px) {
    .panel-form-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}.store-product-list-page {
    padding: 30px 0;
}

.panel-page-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.panel-add-button {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
}

.panel-info-box {
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
}.store-dashboard-page {
    padding: 30px 0;
}

.panel-info-box {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
}

.panel-info-box h2 {
    margin: 0 0 14px;
    font-size: 24px;
    color: #111827;
}

.panel-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.store-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.store-stat-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    padding: 20px;
}

.store-stat-card h2 {
    margin: 0 0 12px;
    font-size: 18px;
    color: #374151;
}

.store-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

.panel-dashboard-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.panel-dashboard-links a {
    display: inline-block;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    text-decoration: none;
}

.panel-dashboard-section {
    margin-bottom: 28px;
}

.panel-dashboard-section h2 {
    margin: 0 0 14px;
    font-size: 22px;
    color: #111827;
}

.panel-card-list {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 14px;
}

.panel-list-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    padding: 16px;
}

.panel-list-card p {
    margin: 0;
    color: #374151;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .panel-info-grid,
    .store-dashboard-stats {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}