* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-bg-primary);
    color: var(--dark-text);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-bg-secondary) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.auth-container::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-primary-20) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
}

.auth-container::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-primary-15) 0%, transparent 70%);
    bottom: -250px;
    left: -250px;
    border-radius: 50%;
}

.auth-box {
    background: var(--dark-bg-tertiary);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 40px var(--black-50);
    position: relative;
    z-index: 1;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 32px;
    color: var(--dark-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.auth-header p {
    color: var(--white-70);
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white-90);
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-bg-secondary);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--dark-text);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--dark-primary);
    box-shadow: 0 0 0 3px var(--gold-primary-10);
}

.btn {
    width: 100%;
    padding: 14px;
    background: var(--dark-primary);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--dark-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--gold-primary-30);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.password-strength {
    margin-top: 10px;
}

.password-strength-bar {
    width: 100%;
    height: 6px;
    background: var(--dark-bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.password-strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.password-strength-fill.weak {
    background: var(--error-primary);
    width: 25%;
}

.password-strength-fill.fair {
    background: var(--warning-primary);
    width: 50%;
}

.password-strength-fill.good {
    background: var(--info-primary);
    width: 75%;
}

.password-strength-fill.strong {
    background: var(--success-primary);
    width: 100%;
}

.password-strength-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--white-70);
}

.password-strength-text.weak {
    color: var(--error-primary);
}

.password-strength-text.fair {
    color: var(--warning-primary);
}

.password-strength-text.good {
    color: var(--info-primary);
}

.password-strength-text.strong {
    color: var(--success-primary);
}

.password-requirements {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--white-50);
    transition: all 0.3s ease;
}

.requirement svg {
    flex-shrink: 0;
    stroke: var(--white-30);
    transition: all 0.3s ease;
}

.requirement.met {
    color: var(--success-primary);
}

.requirement.met svg {
    stroke: var(--success-primary);
}

.btn-generate-password {
    width: 100%;
    padding: 10px;
    margin-top: 12px;
    background: var(--dark-bg-tertiary);
    color: var(--dark-primary);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-generate-password:hover {
    background: var(--dark-bg-quaternary);
    border-color: var(--dark-primary);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    color: var(--white-70);
    font-size: 14px;
}

.auth-footer a {
    color: var(--dark-primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-error {
    background: var(--error-light);
    color: var(--error-primary);
    border: 1px solid var(--error-border);
}

.alert-success {
    background: var(--success-light);
    color: var(--success-primary);
    border: 1px solid var(--success-border);
}

.navbar {
    background: var(--dark-bg-secondary);
    border-bottom: 1px solid var(--dark-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-primary);
}

.navbar-user {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-username {
    color: var(--white-90);
    font-size: 14px;
}

.btn-logout {
    padding: 8px 20px;
    background: var(--dark-bg-tertiary);
    color: var(--dark-primary);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: var(--dark-primary);
    color: var(--black);
}

.dashboard {
    padding: 40px 0;
}

.dashboard-header {
    margin-bottom: 40px;
}

.dashboard-header h1 {
    font-size: 32px;
    color: var(--dark-primary);
    margin-bottom: 10px;
}

.dashboard-header p {
    color: var(--white-70);
    font-size: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--black-40);
    border-color: var(--dark-primary);
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.stat-card-title {
    font-size: 14px;
    color: var(--white-70);
    font-weight: 500;
}

.stat-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-card-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-text);
}

.stat-card.gold .stat-card-icon {
    background: var(--gold-primary-15);
    color: var(--dark-primary);
}

.stat-card.success .stat-card-icon {
    background: var(--success-light);
    color: var(--success-primary);
}

.stat-card.warning .stat-card-icon {
    background: var(--warning-light);
    color: var(--warning-primary);
}

.stat-card.error .stat-card-icon {
    background: var(--error-light);
    color: var(--error-primary);
}

.stat-card.info .stat-card-icon {
    background: var(--info-light);
    color: var(--info-primary);
}

.section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 24px;
    color: var(--dark-primary);
    font-weight: 600;
}

.table-container {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    overflow: hidden;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead {
    background: var(--dark-bg-tertiary);
}

.table th {
    padding: 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--white-90);
    border-bottom: 1px solid var(--dark-border);
}

.table td {
    padding: 16px;
    border-bottom: 1px solid var(--dark-border);
    color: var(--white-80);
    font-size: 14px;
}

.table tbody tr:hover {
    background: var(--dark-bg-tertiary);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.tag-gold {
    background: var(--gold-primary-15);
    color: var(--dark-primary);
    border: 1px solid var(--dark-border);
}

.tag-success {
    background: var(--success-light);
    color: var(--success-primary);
    border: 1px solid var(--success-border);
}

.tag-error {
    background: var(--error-light);
    color: var(--error-primary);
    border: 1px solid var(--error-border);
}

.btn-action {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-delete {
    background: var(--error-light);
    color: var(--error-primary);
    border: 1px solid var(--error-border);
}

.btn-delete:hover {
    background: var(--error-primary);
    color: var(--white);
}

.btn-unblock {
    background: var(--success-light);
    color: var(--success-primary);
    border: 1px solid var(--success-border);
}

.btn-unblock:hover {
    background: var(--success-primary);
    color: var(--white);
}

.skeleton {
    background: linear-gradient(90deg, var(--dark-bg-tertiary) 25%, var(--dark-bg-quaternary) 50%, var(--dark-bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    height: 140px;
    border-radius: 12px;
}

.skeleton-table-row {
    height: 60px;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black-80);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--dark-bg-tertiary);
    border-top: 4px solid var(--dark-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--white-50);
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state-text {
    font-size: 18px;
    font-weight: 500;
}

.config-container {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 30px;
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.config-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.config-item label {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-90);
}

.config-item input {
    padding: 12px 16px;
    background: var(--dark-bg-tertiary);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--dark-text);
    font-size: 14px;
    transition: all 0.3s ease;
}

.config-item input:focus {
    outline: none;
    border-color: var(--dark-primary);
    box-shadow: 0 0 0 3px var(--gold-primary-10);
}

.btn-save-config {
    margin-top: 20px;
}

.role-select {
    padding: 6px 12px;
    background: var(--dark-bg-tertiary);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    color: var(--dark-text);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.role-select:focus {
    outline: none;
    border-color: var(--dark-primary);
    box-shadow: 0 0 0 2px var(--gold-primary-10);
}

.role-select option {
    background: var(--dark-bg-tertiary);
    color: var(--dark-text);
}

.profile-container {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 30px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.profile-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--white-70);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px var(--black-40);
    z-index: 10000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    max-width: 400px;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-success {
    background: var(--success-primary);
    color: var(--white);
}

.notification-error {
    background: var(--error-primary);
    color: var(--white);
}

@media (max-width: 768px) {
    .auth-box {
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    .table {
        min-width: 800px;
    }
    
    .navbar-content {
        flex-direction: column;
        gap: 15px;
    }
}
.navbar-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navbar-link {
    color: var(--white-80);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-link:hover {
    background: var(--dark-bg-tertiary);
    color: var(--dark-primary);
}

.navbar-link.active {
    background: var(--dark-primary);
    color: var(--black);
}

.shop-container {
    padding: 40px 0;
}

.shop-header {
    margin-bottom: 40px;
}

.shop-header h1 {
    font-size: 32px;
    color: var(--dark-primary);
    margin-bottom: 10px;
}

.shop-header p {
    color: var(--white-70);
    font-size: 16px;
}

.shop-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.search-container {
    flex: 1;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-bg-secondary);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--dark-text);
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--dark-primary);
    box-shadow: 0 0 0 3px var(--gold-primary-10);
}

.category-container {
    min-width: 200px;
}

.category-select {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-bg-secondary);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--dark-text);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-select:focus {
    outline: none;
    border-color: var(--dark-primary);
    box-shadow: 0 0 0 3px var(--gold-primary-10);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--black-40);
    border-color: var(--dark-primary);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--dark-bg-tertiary) 0%, var(--dark-bg-quaternary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image::before {
    content: '📦';
    font-size: 64px;
    opacity: 0.3;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--dark-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 18px;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 600;
}

.product-description {
    font-size: 14px;
    color: var(--white-70);
    margin-bottom: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-primary);
}

.product-stock {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
}

.product-stock.in-stock {
    background: var(--success-light);
    color: var(--success-primary);
}

.product-stock.out-of-stock {
    background: var(--error-light);
    color: var(--error-primary);
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: var(--dark-primary);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover:not(:disabled) {
    background: var(--dark-secondary);
    transform: translateY(-2px);
}

.btn-add-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cart-container {
    padding: 40px 0;
}

.cart-header {
    margin-bottom: 40px;
}

.cart-header h1 {
    font-size: 32px;
    color: var(--dark-primary);
    margin-bottom: 10px;
}

.cart-header p {
    color: var(--white-70);
    font-size: 16px;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    align-items: center;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--dark-bg-tertiary) 0%, var(--dark-bg-quaternary) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cart-item-image::before {
    content: '📦';
    font-size: 48px;
    opacity: 0.3;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-name {
    font-size: 18px;
    color: var(--dark-text);
    font-weight: 600;
}

.cart-item-category {
    font-size: 13px;
    color: var(--dark-primary);
    font-weight: 600;
}

.cart-item-price {
    font-size: 14px;
    color: var(--white-70);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.quantity-control {
    display: flex;
    gap: 8px;
    align-items: center;
}

.qty-btn {
    width: 32px;
    height: 32px;
    background: var(--dark-bg-tertiary);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    color: var(--dark-primary);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--dark-primary);
    color: var(--black);
}

.qty-input {
    width: 60px;
    height: 32px;
    text-align: center;
    background: var(--dark-bg-tertiary);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    color: var(--dark-text);
    font-size: 14px;
}

.cart-item-total {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-primary);
}

.btn-remove {
    padding: 6px 16px;
    background: var(--error-light);
    color: var(--error-primary);
    border: 1px solid var(--error-border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background: var(--error-primary);
    color: var(--white);
}

.cart-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-card {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 24px;
}

.summary-card h3 {
    font-size: 20px;
    color: var(--dark-primary);
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--dark-border);
    color: var(--white-80);
    font-size: 14px;
}

.summary-row.total {
    border-bottom: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-primary);
    margin-top: 12px;
    padding-top: 20px;
    border-top: 2px solid var(--dark-border);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-80);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 20px;
    color: var(--dark-primary);
}

.modal-close {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    color: var(--white-70);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--dark-primary);
}

.modal-body {
    padding: 24px;
}

.modal-body textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-bg-tertiary);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--dark-text);
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
}

.modal-body textarea:focus {
    outline: none;
    border-color: var(--dark-primary);
    box-shadow: 0 0 0 3px var(--gold-primary-10);
}

.modal-body select {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-bg-tertiary);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--dark-text);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-body select:focus {
    outline: none;
    border-color: var(--dark-primary);
    box-shadow: 0 0 0 3px var(--gold-primary-10);
}

@media (max-width: 992px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
    
    .navbar-menu {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .shop-filters {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
    
    .cart-item-actions {
        align-items: flex-start;
    }
}

.btn-edit-product {
    background: var(--info-light);
    color: var(--info-primary);
    border: 1px solid var(--info-border);
}

.btn-edit-product:hover {
    background: var(--info-primary);
    color: var(--white);
}

.btn-delete-product {
    background: var(--error-light);
    color: var(--error-primary);
    border: 1px solid var(--error-border);
    margin-left: 8px;
}

.btn-delete-product:hover {
    background: var(--error-primary);
    color: var(--white);
}