:root{--navy: #1a1a2e;--navy-hover: #2d2d5e;--accent: #e94560;--accent-hover: #c73652;--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif}html,body,#root{width:100%;height:100%}body{background-color:#f5f5f5;color:#1a1a1a;font-family:var(--font-sans);margin:0;padding:0}.app-banner{background-color:var(--accent);color:#fff;text-align:center;padding:.375rem 0;font-size:.8rem;font-weight:600;letter-spacing:1px;text-transform:uppercase}.app-main{max-width:1200px;margin:0 auto;padding:1.5rem 1rem}.overlay{position:fixed;top:0;right:0;bottom:0;left:0;background-color:#0006;z-index:200}.header{background-color:var(--navy);color:#fff;padding:1.5rem 1rem;display:flex;justify-content:space-between;align-items:center;gap:2rem}.header__title{margin:0;font-size:1.5rem;font-weight:700}.header__nav{display:flex;gap:1rem;align-items:center}.header__btn{position:relative;background-color:var(--accent);color:#fff;border:none;padding:.5rem 1rem;border-radius:.375rem;cursor:pointer;font-size:.875rem;font-weight:600;transition:background-color .15s ease-in-out}.header__btn:hover{background-color:var(--accent-hover)}.header__btn--outlined{background-color:transparent;border:2px solid rgba(255,255,255,.5);transition:border-color .15s ease-in-out}.header__btn--outlined:hover{border-color:#fff;background-color:transparent}.header__badge{position:absolute;top:-.5rem;right:-.5rem;background-color:#10b981;color:#fff;border-radius:9999px;padding:.125rem .375rem;font-size:.625rem;font-weight:700}.product-card{background-color:#fff;border-radius:.5rem;overflow:hidden;box-shadow:0 1px 3px #0000001a;display:flex;flex-direction:column;height:100%;transition:box-shadow .15s ease-in-out}.product-card:hover{box-shadow:0 4px 12px #00000026}.product-card__image{width:100%;height:12rem;object-fit:cover;background-color:#f0f0f0}.product-card__body{padding:1rem;display:flex;flex-direction:column;flex-grow:1}.product-card__category{color:#6b7280;font-size:.75rem;text-transform:uppercase;margin-bottom:.25rem}.product-card__name{margin:.5rem 0 .25rem;font-size:1rem;font-weight:600;color:#1a1a1a}.product-card__rating{display:inline-block;color:#d97706;font-size:.875rem;margin-bottom:.5rem}.product-card__price{font-size:1.25rem;font-weight:700;color:var(--accent);margin-bottom:.75rem}.product-card__actions{display:flex;gap:.5rem;margin-top:auto}.product-card__cart-btn,.product-card__wishlist-btn{flex:1;padding:.5rem;border:none;border-radius:.375rem;cursor:pointer;font-size:.875rem;font-weight:600;transition:background-color .15s ease-in-out}.product-card__cart-btn{background-color:var(--navy);color:#fff}.product-card__cart-btn:hover{background-color:var(--navy-hover)}.product-card__cart-btn--in-cart{background-color:#10b981}.product-card__cart-btn--in-cart:hover{background-color:#059669}.product-card__wishlist-btn{background-color:#f3f4f6;color:#6b7280}.product-card__wishlist-btn:hover{background-color:#e5e7eb}.product-card__wishlist-btn--active{background-color:#fca5a5;color:#7f1d1d}.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1.5rem}.product-grid__empty{grid-column:1 / -1;text-align:center;color:#6b7280;padding:2rem}.catalog-controls{display:flex;gap:.75rem;margin-bottom:1.25rem;flex-wrap:wrap;align-items:center}.catalog-loading{color:#9ca3af;font-size:.85rem}.catalog-count{margin-bottom:1rem;color:#6b7280;font-size:.9rem}.cart-sidebar{position:fixed;right:0;top:0;bottom:0;width:100%;max-width:400px;background-color:#fff;box-shadow:-4px 0 6px #0000001a;z-index:201;display:flex;flex-direction:column}.cart-sidebar__header{padding:1.5rem;border-bottom:1px solid #e5e7eb;display:flex;justify-content:space-between;align-items:center}.cart-sidebar__body{flex-grow:1;overflow-y:auto;padding:1.5rem}.cart-sidebar__footer{padding:1.5rem;border-top:1px solid #e5e7eb}.cart-sidebar__total{display:flex;justify-content:space-between;margin-bottom:1rem;font-weight:600;font-size:1.125rem}.cart-sidebar__checkout{width:100%;background-color:var(--accent);color:#fff;border:none;padding:.75rem;border-radius:.375rem;font-weight:600;cursor:pointer;margin-bottom:.5rem;transition:background-color .15s ease-in-out}.cart-sidebar__checkout:hover{background-color:var(--accent-hover)}.cart-sidebar__clear{width:100%;background-color:#ef4444;color:#fff;border:none;padding:.75rem;border-radius:.375rem;font-weight:600;cursor:pointer;transition:background-color .15s ease-in-out}.cart-sidebar__clear:hover{background-color:#dc2626}.wishlist-panel{position:fixed;right:0;top:0;bottom:0;width:100%;max-width:400px;background-color:#fff;box-shadow:-4px 0 6px #0000001a;z-index:201;display:flex;flex-direction:column}.wishlist-item{display:flex;gap:1rem;padding:1rem;border:1px solid #e5e7eb;border-radius:.375rem;margin-bottom:1rem}.wishlist-item__image{width:80px;height:80px;object-fit:cover;border-radius:.375rem;background-color:#f0f0f0}.wishlist-item__info{flex-grow:1;display:flex;flex-direction:column}.wishlist-item__name{font-weight:600;color:#1a1a1a;margin:0 0 .25rem}.wishlist-item__price{color:var(--accent);font-weight:700;margin-bottom:.5rem}.wishlist-item__actions{display:flex;gap:.5rem;margin-top:auto}.wishlist-item__actions--column{flex-direction:column;gap:.25rem}.wishlist-item__cart-btn,.wishlist-item__remove{flex:1;padding:.375rem;border:none;border-radius:.375rem;cursor:pointer;font-size:.8rem;font-weight:600;transition:background-color .15s ease-in-out}.wishlist-item__cart-btn{background-color:var(--navy);color:#fff}.wishlist-item__cart-btn:hover{background-color:var(--navy-hover)}.wishlist-item__cart-btn--in-cart{background-color:#10b981}.wishlist-item__cart-btn--in-cart:hover{background-color:#059669}.wishlist-item__remove{background-color:#fee2e2;color:#7f1d1d}.wishlist-item__remove:hover{background-color:#fecaca}.panel-header{padding:1.5rem;border-bottom:1px solid #e5e7eb;display:flex;justify-content:space-between;align-items:center}.panel-close-btn{background-color:transparent;border:none;font-size:1.5rem;cursor:pointer;color:#6b7280;padding:0;width:2rem;height:2rem;display:flex;align-items:center;justify-content:center;transition:color .15s ease-in-out}.panel-close-btn:hover{color:#1a1a1a}.panel-empty{text-align:center;color:#6b7280;padding:2rem 1rem}.cart-item{display:flex;gap:1rem;padding:1rem 0;border-bottom:1px solid #e5e7eb}.cart-item:last-child{border-bottom:none}.cart-item__image{width:60px;height:60px;object-fit:cover;border-radius:.375rem;background-color:#f0f0f0}.cart-item__info{flex-grow:1;display:flex;flex-direction:column}.cart-item__name{font-weight:600;color:#1a1a1a;font-size:.875rem;margin:0}.cart-item__price{color:var(--accent);font-weight:700;font-size:.875rem;margin:.25rem 0 0}.cart-item__controls{display:flex;align-items:center;gap:.5rem}.cart-item__qty-controls{display:flex;align-items:center;gap:.375rem}.cart-item__qty-btn{background-color:#f3f4f6;border:none;width:24px;height:24px;border-radius:.25rem;cursor:pointer;font-weight:600;transition:background-color .15s ease-in-out}.cart-item__qty-btn:hover{background-color:#e5e7eb}.cart-item__qty{min-width:24px;text-align:center;font-weight:600}.cart-item__remove{background-color:transparent;border:none;color:#ef4444;cursor:pointer;font-weight:600;padding:0;transition:color .15s ease-in-out}.cart-item__remove:hover{color:#dc2626}.search-bar{flex:1;min-width:250px;padding:.5rem 1rem;border:1px solid #d1d5db;border-radius:.375rem;font-family:var(--font-sans);font-size:.875rem}.search-bar:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px #e945601a}.category-filter{display:flex;gap:.5rem;flex-wrap:wrap}.category-filter__btn{padding:.5rem 1rem;background-color:#f3f4f6;border:1px solid #d1d5db;border-radius:.375rem;cursor:pointer;font-weight:500;font-size:.875rem;transition:all .15s ease-in-out}.category-filter__btn:hover{background-color:#e5e7eb}.category-filter__btn--active{background-color:var(--accent);color:#fff;border-color:var(--accent)}.pagination{display:flex;align-items:center;gap:1.5rem;margin-bottom:1.5rem;flex-wrap:wrap}.pagination__label{font-size:.875rem;color:#6b7280}.pagination__select{padding:.375rem .5rem;border:1px solid #d1d5db;border-radius:.375rem;font-size:.875rem;cursor:pointer}.pagination__info{font-size:.875rem;color:#6b7280;margin-left:auto}.pagination__nav{display:flex;gap:.5rem}.pagination__btn{padding:.375rem .75rem;background-color:#f3f4f6;border:1px solid #d1d5db;border-radius:.375rem;cursor:pointer;font-size:.875rem;font-weight:500;transition:all .15s ease-in-out}.pagination__btn:hover:not(:disabled){background-color:#e5e7eb}.pagination__btn:disabled{opacity:.5;cursor:not-allowed}.loading-spinner{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:3rem;gap:1rem}.loading-spinner__icon{width:48px;height:48px;border:4px solid #e5e7eb;border-top-color:var(--accent);border-radius:50%;animation:spin 1s linear infinite}.loading-spinner__text{color:#6b7280;font-size:.9rem}@keyframes spin{to{transform:rotate(360deg)}}.performance-monitor{position:fixed;bottom:1rem;left:1rem;background-color:#000000d9;color:#4ade80;border-radius:.75rem;padding:.75rem 1rem;font-family:monospace;font-size:.78rem;min-width:200px;z-index:300;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.performance-monitor__header{color:#fff;font-size:.8rem;margin-bottom:.5rem;display:flex;justify-content:space-between;align-items:center}.performance-monitor__reset-btn{background-color:#333;border:none;color:#9ca3af;font-size:.7rem;padding:.375rem;border-radius:.25rem;cursor:pointer;transition:all .15s ease-in-out}.performance-monitor__reset-btn:hover{background-color:#555;color:#fff}.performance-monitor__item{display:flex;justify-content:space-between;gap:1rem;padding-top:.25rem}.performance-monitor__label{color:#9ca3af}.performance-monitor__count{color:#4ade80;font-weight:700}.performance-monitor__footer{display:flex;justify-content:space-between;gap:1rem;padding-top:.375rem;margin-top:.375rem;border-top:1px solid #333;color:#fff;font-weight:700}.btn{padding:.75rem 1rem;border:none;border-radius:.375rem;font-size:1rem;font-weight:500;cursor:pointer;transition:all .2s;font-family:inherit}.btn:hover:not(:disabled){opacity:.9;transform:translateY(-1px)}.btn:active:not(:disabled){transform:translateY(0)}.btn:disabled{opacity:.5;cursor:not-allowed}.btn-primary{background-color:#3b82f6;color:#fff}.btn-primary:hover:not(:disabled){background-color:#2563eb}.btn-secondary{background-color:#fff;color:#374151;border:1px solid #d1d5db}.btn-secondary:hover:not(:disabled){background-color:#f3f4f6}.btn-success{background-color:#10b981;color:#fff}.btn-success:hover:not(:disabled){background-color:#059669}.btn-danger{background-color:#ef4444;color:#fff}.btn-danger:hover:not(:disabled){background-color:#dc2626}.btn-small{padding:.5rem .75rem;font-size:.875rem}
