*{margin:0;padding:0;box-sizing:border-box}:root{--primary: #2d2d2d;--primary-light: #e8e8e8;--primary-dark: #000000;--bg: #ffffff;--bg-secondary: #f5f5f5;--text: #1a1a1a;--text-light: #666666;--border: #d4d4d4;--accent: #555555;--white: #ffffff;--shadow: 0 2px 8px rgba(0,0,0,.1);--radius: 8px}body{font-family:Segoe UI,system-ui,-apple-system,sans-serif;color:var(--text);background:var(--bg);line-height:1.6}a{text-decoration:none;color:inherit}img{max-width:100%;height:auto}.app{min-height:100vh;display:flex;flex-direction:column}.main{flex:1}.header{background:var(--white);border-bottom:1px solid var(--border);padding:0 24px;position:sticky;top:0;z-index:100}.header-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;height:64px}.logo{font-size:22px;font-weight:800;color:var(--primary-dark);letter-spacing:2px;text-transform:uppercase}.logo img{display:block;height:32px;width:auto;max-width:100%}.header nav{display:flex;gap:24px}.header nav a{color:var(--text);font-size:14px;font-weight:500;transition:color .2s}.header nav a:hover{color:var(--primary-dark)}.footer{background:var(--bg-secondary);border-top:1px solid var(--border);padding:32px 24px;text-align:center;color:var(--text-light);font-size:13px}.btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 24px;border:none;border-radius:var(--radius);font-size:14px;font-weight:500;cursor:pointer;transition:all .2s}.btn-primary{background:var(--primary);color:var(--white)}.btn-primary:hover{background:var(--primary-dark)}.btn-secondary{background:var(--bg-secondary);color:var(--text);border:1px solid var(--border)}.btn-secondary:hover{background:var(--border)}.btn-danger{background:#dc3545;color:#fff}.btn-danger:hover{background:#c82333}.btn-sm{padding:6px 14px;font-size:13px}.card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:transform .2s,box-shadow .2s}.card:hover{transform:translateY(-2px);box-shadow:var(--shadow)}.form-group{margin-bottom:16px}.form-group label{display:block;font-size:13px;font-weight:600;color:var(--text);margin-bottom:6px}.form-control{width:100%;padding:10px 12px;border:1px solid var(--border);border-radius:var(--radius);font-size:14px;transition:border-color .2s}.form-control:focus{outline:none;border-color:var(--primary)}textarea.form-control{min-height:100px;resize:vertical}select.form-control{cursor:pointer}.input-group{display:flex;gap:12px;align-items:flex-end}.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:24px}.section{max-width:1200px;margin:0 auto;padding:40px 24px}.section-title{font-size:24px;font-weight:600;margin-bottom:24px;color:var(--text)}.catalog-layout{display:grid;grid-template-columns:260px 1fr;gap:32px;align-items:start}.filters-panel{background:var(--bg-secondary);border:1px solid var(--border);border-radius:var(--radius);padding:20px;position:sticky;top:88px}.filters-panel h3{font-size:16px;margin-bottom:16px;color:var(--text)}.filter-group{margin-bottom:16px}.filter-group label{display:block;font-size:13px;font-weight:600;margin-bottom:6px;color:var(--text-light)}.filter-group select,.filter-group input{width:100%;padding:8px 10px;border:1px solid var(--border);border-radius:var(--radius);font-size:13px}.filter-checkboxes{display:flex;flex-direction:column;gap:6px}.filter-checkbox{display:flex;align-items:center;gap:8px;font-size:13px;cursor:pointer}.filter-checkbox input[type=checkbox]{width:auto;accent-color:var(--primary)}.filter-actions{display:flex;gap:8px;margin-top:16px}.product-card{cursor:pointer}.product-card-image{width:100%;height:280px;object-fit:cover;background:var(--bg-secondary)}.product-card-body{padding:14px}.product-card-title{font-size:14px;font-weight:500;margin-bottom:4px;color:var(--text)}.product-card-type{font-size:12px;color:var(--text-light);margin-bottom:8px}.product-card-price{font-size:16px;font-weight:600;color:var(--primary-dark)}.product-card-price .old-price{font-size:13px;color:var(--text-light);text-decoration:line-through;font-weight:400;margin-left:8px}.discount-badge{display:inline-block;background:#f44;color:#fff;font-size:11px;padding:2px 8px;border-radius:4px;margin-left:8px}.product-page{max-width:1200px;margin:0 auto;padding:40px 24px}.product-detail{display:grid;grid-template-columns:1fr 1fr;gap:48px}.carousel{position:relative}.carousel-main{width:100%;height:500px;object-fit:cover;border-radius:var(--radius);background:var(--bg-secondary)}.carousel-thumbs{display:flex;gap:8px;margin-top:12px;overflow-x:auto}.carousel-thumb{width:72px;height:72px;object-fit:cover;border-radius:6px;cursor:pointer;border:2px solid transparent;transition:border-color .2s}.carousel-thumb.active{border-color:var(--primary)}.carousel-btn{position:absolute;top:50%;transform:translateY(-50%);background:#fffc;border:none;width:36px;height:36px;border-radius:50%;cursor:pointer;font-size:18px;display:flex;align-items:center;justify-content:center;transition:background .2s}.carousel-btn:hover{background:#fff}.carousel-btn.prev{left:8px}.carousel-btn.next{right:8px}.product-info h1{font-size:26px;margin-bottom:8px}.product-info .type-label{color:var(--text-light);font-size:14px;margin-bottom:12px}.product-info .price-section{margin-bottom:20px}.product-info .price-section .current-price{font-size:28px;font-weight:700;color:var(--primary-dark)}.product-info .price-section .old-price{font-size:18px;color:var(--text-light);text-decoration:line-through;margin-left:12px}.product-info .price-section .discount-tag{background:#f44;color:#fff;font-size:12px;padding:2px 8px;border-radius:4px;margin-left:10px}.product-info .description{color:var(--text-light);line-height:1.8;margin-bottom:24px}.sizes-section h3{font-size:15px;margin-bottom:12px}.sizes-grid{display:flex;flex-wrap:wrap;gap:8px}.size-btn{padding:10px 18px;border:1px solid var(--border);border-radius:var(--radius);background:var(--white);cursor:pointer;font-size:13px;font-weight:500;transition:all .2s}.size-btn:hover{border-color:var(--primary);color:var(--primary-dark)}.size-btn.active{border-color:var(--primary);background:var(--primary);color:#fff}.store-list{margin-top:16px;padding:16px;background:var(--bg-secondary);border-radius:var(--radius)}.store-list h4{font-size:14px;margin-bottom:8px}.store-list ul{list-style:none}.store-list li{padding:6px 0;font-size:13px;border-bottom:1px solid var(--border)}.store-list li:last-child{border-bottom:none}.stores-page{max-width:1200px;margin:0 auto;padding:40px 24px}.stores-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:24px}.store-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:24px}.store-card h3{font-size:16px;margin-bottom:8px;color:var(--primary-dark)}.store-card p{font-size:13px;color:var(--text-light);line-height:1.7}.hero{background:linear-gradient(135deg,#1a1a1a,#333);padding:80px 24px;text-align:center}.hero h1{font-size:40px;font-weight:700;color:#fff;margin-bottom:12px}.hero p{font-size:18px;color:#e0e0e0;margin-bottom:24px}.featured-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:20px}.admin-header{background:#1a1a1a;color:#fff;padding:0 24px;border-bottom:1px solid #333}.admin-header-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;height:56px}.admin-header .logo{color:#fff;font-size:18px;font-weight:800;letter-spacing:2px;text-transform:uppercase}.admin-header .logo img{display:block;height:24px;width:auto;max-width:100%;filter:invert(1)}.admin-header nav{display:flex;gap:16px}.admin-header nav a{color:#ffffffb3;font-size:13px;transition:color .2s}.admin-header nav a:hover{color:#fff}.admin-section{max-width:1200px;margin:0 auto;padding:32px 24px}.admin-header-bar{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px}.table{width:100%;border-collapse:collapse}.table th,.table td{padding:12px;text-align:left;border-bottom:1px solid var(--border);font-size:13px}.table th{font-weight:600;color:var(--text-light);font-size:12px;text-transform:uppercase}.table tr:hover{background:var(--bg-secondary)}.table-actions{display:flex;gap:8px}.login-page{min-height:100vh;display:flex;align-items:center;justify-content:center;background:var(--bg-secondary)}.login-card{background:var(--white);padding:40px;border-radius:var(--radius);box-shadow:var(--shadow);width:360px}.login-card h1{text-align:center;margin-bottom:24px;color:var(--primary-dark);font-size:22px}.size-row{display:flex;gap:8px;align-items:center;padding:8px 0;border-bottom:1px solid var(--border)}.size-row select{padding:6px 10px;border:1px solid var(--border);border-radius:var(--radius);font-size:13px}.store-checkboxes{display:flex;flex-wrap:wrap;gap:6px}.store-checkbox{display:flex;align-items:center;gap:4px;font-size:12px;cursor:pointer}.store-checkbox input{accent-color:var(--primary)}.photo-preview{display:flex;flex-wrap:wrap;gap:12px;margin-top:8px}.photo-preview-item{position:relative;width:120px;height:120px;border-radius:var(--radius);overflow:hidden;border:1px solid var(--border)}.photo-preview-item img{width:100%;height:100%;object-fit:cover}.photo-preview-item .remove-photo{position:absolute;top:4px;right:4px;background:#0009;color:#fff;border:none;width:22px;height:22px;border-radius:50%;cursor:pointer;font-size:12px;display:flex;align-items:center;justify-content:center}.photo-preview-item .main-badge{position:absolute;bottom:0;left:0;right:0;background:var(--primary);color:#fff;font-size:10px;text-align:center;padding:3px}.empty-state{text-align:center;padding:60px 24px;color:var(--text-light)}.empty-state h3{font-size:18px;margin-bottom:8px}.back-link{display:inline-flex;align-items:center;gap:6px;color:var(--text-light);font-size:13px;margin-bottom:16px;transition:color .2s}.back-link:hover{color:var(--primary-dark)}
