/* ===== CSS Variables & Reset ===== */
:root {
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a2e;
    --bg-card: #16213e;
    --bg-card-hover: #1f2b4a;

    --accent-primary: #ff6b35;
    --accent-secondary: #7c3aed;
    --accent-success: #10b981;
    --accent-warning: #f59e0b;
    --accent-danger: #ef4444;

    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    --border-color: #374151;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 8px 30px rgba(255, 107, 53, 0.2);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --nav-height: 70px;
    --header-height: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#app {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ===== Header ===== */
.app-header {
    height: var(--header-height);
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn-icon {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-icon:active {
    transform: scale(0.95);
}

.btn-primary {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-primary), #ff8c5a);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary {
    padding: 12px 24px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.btn-add {
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--accent-primary), #ff8c5a);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add:active {
    transform: scale(0.95);
}

.btn-danger {
    padding: 8px 16px;
    background: var(--accent-danger);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-success {
    padding: 8px 16px;
    background: var(--accent-success);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* ===== Search ===== */
.search-container {
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    background: var(--bg-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-container.hidden {
    display: none;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
}

.search-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-input::placeholder {
    color: var(--text-muted);
}

/* ===== Main Content ===== */
.main-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: var(--nav-height);
    scroll-behavior: smooth;
}

.view {
    display: none;
    padding: 16px;
    animation: fadeIn 0.3s ease;
}

.view.active {
    display: block;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.view-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.view-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
}

/* ===== Dashboard Stats ===== */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.stat-card {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
    border-radius: var(--radius-lg);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.stat-card:active {
    transform: scale(0.98);
}

.stat-card {
    cursor: pointer;
}

.stat-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.stat-icon.shops {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.1));
}

.stat-icon.toys {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
}

.stat-icon.prices {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Quick Actions ===== */
.quick-actions {
    margin-bottom: 24px;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.action-btn {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.action-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.action-btn:active {
    transform: scale(0.98);
}

.action-icon {
    font-size: 1.75rem;
}

.action-btn span:last-child {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== Toy Grid ===== */
.toy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.toy-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.toy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-primary);
}

.toy-card-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--bg-secondary);
}

.toy-card-info {
    padding: 12px;
}

.toy-card-name {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toy-card-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.toy-card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.best-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-success);
}

.shop-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

/* ===== Shop List ===== */
.list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.shop-card:hover {
    border-color: var(--accent-primary);
    transform: translateX(4px);
}

.shop-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.shop-card-name {
    font-size: 1rem;
    font-weight: 600;
}

.shop-card-toys {
    font-size: 0.75rem;
    color: var(--accent-primary);
    background: rgba(255, 107, 53, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.shop-card-location {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.shop-card-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-card-phone {
    font-size: 0.875rem;
    color: var(--accent-success);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.shop-card-phone:hover {
    text-decoration: underline;
}

/* ===== Filter Tabs ===== */
.filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.filter-tabs::-webkit-scrollbar {
    display: none;
}

.filter-tab {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.filter-tab.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.filter-tab:hover:not(.active) {
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

/* ===== Empty State ===== */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    opacity: 0.5;
}

.empty-state p {
    margin-bottom: 16px;
}

/* ===== Bottom Navigation ===== */
.bottom-nav {
    height: var(--nav-height);
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(0deg, var(--bg-secondary) 0%, rgba(26, 26, 46, 0.95) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: env(safe-area-inset-bottom);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: var(--radius-md);
}

.nav-item span {
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-item.active {
    color: var(--accent-primary);
}

.nav-item.active svg {
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
}

.nav-item:hover:not(.active) {
    color: var(--text-secondary);
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-secondary);
    width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-large {
    max-height: 95vh;
}

.modal-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    background: var(--bg-secondary);
    z-index: 10;
}

.modal-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* ===== Forms ===== */
form {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(90vh - 60px);
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-family);
    outline: none;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-bottom: env(safe-area-inset-bottom);
}

.form-actions button {
    flex: 1;
}

/* ===== Image Upload ===== */
.image-upload-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.image-preview-area {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.image-upload-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-upload:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
}

.btn-upload:active {
    transform: scale(0.98);
    background: var(--accent-primary);
}

.btn-upload svg {
    color: var(--accent-primary);
}

.image-upload {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.image-upload:hover {
    border-color: var(--accent-primary);
}

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

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-align: center;
    padding: 16px;
}

.upload-placeholder svg {
    opacity: 0.5;
}

.hidden {
    display: none !important;
}

/* ===== Toy Detail ===== */
.toy-detail-content {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(95vh - 60px);
}

.toy-detail-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    background: var(--bg-card);
}

.toy-detail-info {
    margin-bottom: 20px;
}

.toy-detail-category {
    font-size: 0.875rem;
    color: var(--accent-primary);
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    display: inline-block;
    margin-bottom: 8px;
}

.toy-detail-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.price-comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.price-comparison-header h4 {
    font-size: 1rem;
    font-weight: 600;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.price-item.best-price-item {
    border-color: var(--accent-success);
    background: rgba(16, 185, 129, 0.1);
}

.price-item-shop {
    display: flex;
    flex-direction: column;
}

.price-item-shop-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.price-item-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.price-item-amount {
    font-size: 1.125rem;
    font-weight: 700;
}

.price-item.best-price-item .price-item-amount {
    color: var(--accent-success);
}

.price-item-actions {
    display: flex;
    gap: 8px;
    margin-left: 12px;
}

.price-item-actions button {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-edit {
    background: rgba(124, 58, 237, 0.2);
    color: var(--accent-secondary);
}

.btn-delete {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-danger);
}

/* ===== Shop Detail ===== */
.shop-detail-content {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(95vh - 60px);
}

.shop-detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.shop-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.shop-detail-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.shop-detail-location {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.shop-detail-contact {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 20px;
}

.shop-detail-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-success);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
}

.shop-detail-contact a:active {
    opacity: 0.8;
}

.shop-detail-notes {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 20px;
}

.shop-detail-notes h4 {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.shop-detail-notes p {
    color: var(--text-secondary);
}

.shop-detail-actions {
    display: flex;
    gap: 12px;
}

.shop-detail-actions button {
    flex: 1;
}

/* ===== Compare View ===== */
.compare-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.compare-toy-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-toy-header {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-toy-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: var(--bg-secondary);
}

.compare-toy-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.compare-toy-name {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.compare-toy-category {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.compare-prices {
    padding: 12px;
}

.compare-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.compare-price-item:last-child {
    border-bottom: none;
}

.compare-price-item.best {
    color: var(--accent-success);
}

.compare-shop-name {
    font-size: 0.875rem;
}

.compare-price {
    font-weight: 600;
}

.compare-best-badge {
    font-size: 0.625rem;
    background: var(--accent-success);
    color: white;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    margin-left: 8px;
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: calc(var(--nav-height) + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.toast.success {
    border-color: var(--accent-success);
}

.toast.error {
    border-color: var(--accent-danger);
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
    .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .toy-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .modal-content {
        max-width: 500px;
        border-radius: var(--radius-xl);
        margin-bottom: 40px;
    }

    .modal {
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .toy-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== Utilities ===== */
.text-success {
    color: var(--accent-success);
}

.text-danger {
    color: var(--accent-danger);
}

.text-warning {
    color: var(--accent-warning);
}

.text-muted {
    color: var(--text-muted);
}

.mb-4 {
    margin-bottom: 16px;
}

.mt-4 {
    margin-top: 16px;
}