@import"https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap";:root{--primary: #10b981;--primary-hover: #059669;--secondary: #f59e0b;--bg-color: #f8fafc;--card-bg: #ffffff;--text-main: #0f172a;--text-muted: #64748b;--border: #e2e8f0;--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .05);--shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--radius: 16px;--glass-bg: rgba(255, 255, 255, .85)}*{box-sizing:border-box;margin:0;padding:0;font-family:Outfit,sans-serif}body{background-color:var(--bg-color);color:var(--text-main);line-height:1.5;-webkit-font-smoothing:antialiased}.app-container{min-height:100vh;display:flex;flex-direction:column}.navbar{display:flex;justify-content:space-between;align-items:center;padding:1rem 5%;background:var(--glass-bg);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:50;box-shadow:var(--shadow-sm)}.nav-brand{display:flex;align-items:center;gap:.75rem;color:var(--primary);font-weight:700;font-size:1.5rem;letter-spacing:-.5px}.nav-links{display:flex;gap:1.5rem;align-items:center}.nav-link{text-decoration:none;color:var(--text-main);font-weight:500;transition:all .2s;display:flex;align-items:center;gap:.5rem}.nav-link:hover{color:var(--primary)}.admin-link{background:var(--text-main);color:#fff;padding:.5rem 1rem;border-radius:calc(var(--radius) / 2);font-size:.875rem}.admin-link:hover{background:var(--primary);color:#fff}.main-content{flex:1;padding:2rem 5%;position:relative}.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.6rem 1.2rem;border-radius:calc(var(--radius) / 2);border:none;font-weight:500;cursor:pointer;transition:all .2s ease;font-size:.95rem}.btn-primary{background-color:var(--primary);color:#fff;box-shadow:0 4px 14px #10b98163}.btn-primary:hover{background-color:var(--primary-hover);transform:translateY(-1px)}.btn-secondary{background-color:#fff;color:var(--text-main);border:1px solid var(--border)}.btn-secondary:hover{background-color:var(--bg-color)}.btn-danger{background-color:#ef4444;color:#fff}.btn-danger:hover{background-color:#dc2626}.form-group{margin-bottom:1rem}.form-label{display:block;margin-bottom:.5rem;font-size:.875rem;font-weight:500;color:var(--text-muted)}.form-input,.form-select,.form-textarea{width:100%;padding:.75rem 1rem;border-radius:calc(var(--radius) / 2);border:1px solid var(--border);background-color:var(--card-bg);color:var(--text-main);font-size:.95rem;transition:all .2s;outline:none}.form-textarea{resize:vertical;min-height:80px}.form-input:focus,.form-select:focus,.form-textarea:focus{border-color:var(--primary);box-shadow:0 0 0 3px #10b9811a}.grid-cols-2{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}.grid-cols-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}.flex{display:flex}.flex-col{display:flex;flex-direction:column}.items-center{align-items:center}.justify-between{justify-content:space-between}.gap-2{gap:.5rem}.gap-4{gap:1rem}.mt-4{margin-top:1rem}.mt-2{margin-top:.5rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.admin-container{display:grid;grid-template-columns:350px 1fr;gap:2rem;align-items:start}.admin-card{background:var(--card-bg);padding:1.5rem;border-radius:var(--radius);box-shadow:var(--shadow-sm);border:1px solid var(--border)}.admin-header{font-size:1.25rem;font-weight:600;margin-bottom:1.5rem;color:var(--text-main);display:flex;justify-content:space-between;align-items:center}.list-item{display:flex;justify-content:space-between;align-items:center;padding:.75rem;border-bottom:1px solid var(--border)}.list-item:last-child{border-bottom:none}.list-item-title{font-weight:500}.list-item-sub{font-size:.8rem;color:var(--text-muted)}.catalog-container{display:grid;grid-template-columns:250px 1fr;gap:2rem;align-items:start}.mobile-menu-btn{display:none;background:none;border:none;color:var(--text-main);cursor:pointer;padding:.2rem}.mobile-filter-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#00000080;z-index:150;opacity:0;pointer-events:none;transition:opacity .3s ease}.filter-header-mobile{display:none}.filters-content{display:block}.filters-sidebar{background:var(--card-bg);padding:1.5rem;border-radius:var(--radius);box-shadow:var(--shadow-sm);position:sticky;top:80px}.filter-section{margin-bottom:1.5rem}.filter-title{font-weight:600;margin-bottom:1rem;color:var(--text-main);display:flex;align-items:center;gap:.5rem}.filter-list{display:flex;flex-direction:column;gap:.5rem}.filter-option{display:flex;align-items:center;gap:.5rem;font-size:.9rem;color:var(--text-muted);cursor:pointer;transition:color .2s}.filter-option:hover{color:var(--text-main)}.filter-option input[type=radio]{accent-color:var(--primary)}.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1.5rem}.product-card{background:var(--card-bg);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm);transition:transform .3s,box-shadow .3s;border:1px solid var(--border);display:flex;flex-direction:column}.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}.product-img{width:100%;height:200px;object-fit:cover;background-color:var(--bg-color)}.product-content{padding:1.25rem;flex:1;display:flex;flex-direction:column}.product-brand{font-size:.75rem;text-transform:uppercase;letter-spacing:.05em;color:var(--primary);font-weight:600;margin-bottom:.25rem}.product-name{font-size:1.1rem;font-weight:600;color:var(--text-main);margin-bottom:.5rem}.product-desc{font-size:.875rem;color:var(--text-muted);flex:1;margin-bottom:1rem}.product-footer{display:flex;justify-content:space-between;align-items:center;margin-top:auto}.cart-trigger{position:fixed;bottom:2rem;right:2rem;background:var(--text-main);color:#fff;width:60px;height:60px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:var(--shadow-lg);z-index:100;transition:transform .2s,background .2s}.cart-trigger:hover{transform:scale(1.05);background:var(--primary)}.cart-badge{position:absolute;top:-5px;right:-5px;background:var(--primary);color:#fff;width:24px;height:24px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.8rem;font-weight:600}.cart-panel{position:fixed;top:0;right:-400px;width:380px;height:100vh;background:var(--glass-bg);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);box-shadow:-10px 0 30px #0000001a;z-index:200;transition:right .4s cubic-bezier(.4,0,.2,1);display:flex;flex-direction:column}.cart-panel.open{right:0}.cart-header{padding:1.5rem;border-bottom:1px solid var(--border);display:flex;justify-content:space-between;align-items:center;font-weight:600;font-size:1.25rem}.cart-close{cursor:pointer;color:var(--text-muted);transition:color .2s}.cart-close:hover{color:var(--text-main)}.cart-items{flex:1;overflow-y:auto;padding:1.5rem}.cart-item{display:flex;gap:1rem;margin-bottom:1.5rem}.cart-item-img{width:60px;height:60px;border-radius:calc(var(--radius) / 4);object-fit:cover;background:#fff}.cart-item-details{flex:1}.cart-item-name{font-weight:500;font-size:.95rem}.cart-item-meta{font-size:.8rem;color:var(--text-muted)}.qty-controls{display:flex;align-items:center;gap:.75rem;margin-top:.5rem}.qty-btn{background:var(--border);border:none;width:24px;height:24px;border-radius:4px;display:flex;align-items:center;justify-content:center;cursor:pointer}.cart-footer{padding:1.5rem;border-top:1px solid var(--border);background:#fff}@media (max-width: 768px){.catalog-container,.admin-container{grid-template-columns:1fr}.navbar{flex-direction:column;gap:1rem;align-items:flex-start}.nav-links{flex-wrap:wrap;gap:.75rem}.mobile-menu-btn{display:flex;align-items:center;justify-content:center}.filters-sidebar{position:fixed;top:0;left:-100%;width:320px;max-width:85vw;height:100vh;z-index:200;transition:left .3s ease;border-radius:0;margin:0;box-shadow:10px 0 20px #00000026;background:var(--card-bg);overflow-y:auto}.filters-sidebar.open{left:0}.filter-header-mobile{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid var(--border)}.filters-content{display:block!important}.mobile-filter-overlay.open{opacity:1;pointer-events:all}.grid-cols-2,.grid-cols-3{grid-template-columns:1fr}}@media (max-width: 400px){.cart-panel{width:100%;right:-100%}}.products-grid.list-view{display:flex!important;flex-direction:column;gap:1rem}.products-grid.list-view .product-card{display:flex;flex-direction:row;align-items:center;padding:.5rem}.products-grid.list-view .product-img{width:80px;height:80px;object-fit:cover;border-radius:calc(var(--radius) / 2);margin-bottom:0}.products-grid.list-view .product-content{flex:1;padding:.5rem 1rem;display:flex;flex-direction:row;align-items:center;justify-content:space-between;gap:1rem}.products-grid.list-view .product-name{margin:0;font-size:1rem;max-width:250px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.products-grid.list-view .product-desc,.products-grid.list-view .product-brand{display:none}.products-grid.list-view .product-footer{margin:0;padding:0}@media (max-width: 768px){.products-grid.list-view .product-card{align-items:flex-start}.products-grid.list-view .product-content{flex-direction:column;align-items:flex-start;gap:.5rem}.products-grid.list-view .product-name{white-space:normal}}
