@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");*{margin:0;padding:0;box-sizing:border-box}:root{--bg:#f8fafc;--bg-card:#fff;--primary:#2563eb;--primary-hover:#1d4ed8;--primary-light:#eff6ff;--text:#111827;--text-secondary:#4b5563;--text-muted:#6b7280;--border:#e5e7eb;--border-light:#f3f4f6;--success:#059669;--danger:#dc2626;--warning:#d97706}body,html{background:var(--bg);color:var(--text);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;min-height:100vh;-webkit-font-smoothing:antialiased;line-height:1.5}.nav{background:#fff;border-bottom:1px solid var(--border);position:-webkit-sticky;position:sticky;top:0;z-index:100}.nav-inner{max-width:1200px;margin:0 auto;padding:0 24px;height:64px;display:flex;align-items:center;justify-content:space-between}.nav-logo{gap:10px;font-size:18px;color:var(--text)}.nav-logo,.nav-logo-icon{display:flex;align-items:center;font-weight:700}.nav-logo-icon{width:36px;height:36px;background:var(--primary);color:#fff;border-radius:8px;justify-content:center;font-size:16px}.nav-right{display:flex;gap:12px}.btn,.nav-right{align-items:center}.btn{display:inline-flex;justify-content:center;gap:6px;padding:8px 16px;border-radius:8px;font-size:14px;font-weight:500;cursor:pointer;transition:all .2s ease-out;border:1px solid transparent;outline:none;white-space:nowrap}.btn:focus-visible{ring:2px;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--primary)}.btn-primary{background:var(--primary);color:#fff}.btn-primary:hover{background:var(--primary-hover);transform:translateY(-.5px);box-shadow:0 1px 3px rgba(0,0,0,.1)}.btn-primary:active{transform:scale(.98) translateY(0);box-shadow:0 1px 2px rgba(0,0,0,.05)}.btn-primary:disabled{opacity:.5;cursor:not-allowed;transform:none}.btn-secondary{background:#fff;color:var(--text-secondary);border:1px solid var(--border)}.btn-secondary:hover{background:var(--border-light);transform:translateY(-.5px);box-shadow:0 1px 3px rgba(0,0,0,.08)}.btn-secondary:active{transform:scale(.98) translateY(0);box-shadow:0 1px 2px rgba(0,0,0,.05)}.btn-danger{background:var(--danger);color:#fff}.btn-danger:hover{background:#b91c1c;transform:translateY(-.5px)}.btn-danger:active{transform:scale(.98) translateY(0)}.btn-sm{padding:6px 12px;font-size:13px}.btn-lg{padding:12px 24px;font-size:16px}.card{background:#fff;border:1px solid var(--border);border-radius:12px;box-shadow:0 1px 2px rgba(0,0,0,.05);transition:all .2s ease-out}.card:hover{transform:translateY(-.5px);box-shadow:0 4px 6px -1px rgba(0,0,0,.1)}.card-header{padding:16px 20px;border-bottom:1px solid var(--border-light);display:flex;align-items:center;justify-content:space-between}.card-title{font-size:16px;font-weight:600;color:var(--text);letter-spacing:-.01em}.card-body{padding:20px}.form-group{margin-bottom:16px}.form-label{display:block;font-size:14px;font-weight:500;color:var(--text-secondary);margin-bottom:6px}.form-input,.form-select,.form-textarea{width:100%;padding:8px 12px;border:1px solid var(--border);border-radius:8px;font-size:14px;color:var(--text);background:#fff;outline:none;transition:all .2s ease-out;font-family:inherit}.form-input::placeholder,.form-textarea::placeholder{color:#9ca3af}.form-input:focus,.form-select:focus,.form-textarea:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(37,99,235,.1)}.form-textarea{min-height:100px;resize:vertical}.table-wrapper{overflow-x:auto}.table{width:100%;border-collapse:collapse}.table th{background:var(--border-light);text-align:left;padding:12px 16px;font-size:12px;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:.05em;border-bottom:1px solid var(--border)}.table td{padding:12px 16px;font-size:14px;color:var(--text-secondary);border-bottom:1px solid var(--border-light)}.table tbody tr:hover{background:var(--border-light)}.badge{display:inline-flex;align-items:center;padding:3px 10px;border-radius:9999px;font-size:12px;font-weight:500}.badge-success{background:#d1fae5;color:#065f46}.badge-warning{background:#fef3c7;color:#92400e}.badge-danger{background:#fee2e2;color:#991b1b}.badge-secondary{background:#f3f4f6;color:#4b5563}.badge-primary{background:#dbeafe;color:#1e40af}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));grid-gap:16px;gap:16px;margin-bottom:24px}.stat-card{background:#fff;border:1px solid var(--border);border-radius:12px;padding:20px;box-shadow:0 1px 2px rgba(0,0,0,.05);transition:all .2s ease-out}.stat-card:hover{transform:translateY(-.5px);box-shadow:0 4px 6px -1px rgba(0,0,0,.1)}.stat-card-icon{width:40px;height:40px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:20px;margin-bottom:12px}.stat-card-label{font-size:13px;color:var(--text-muted);margin-bottom:4px}.stat-card-value{font-size:24px;font-weight:700;color:var(--text)}.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));grid-gap:20px;gap:20px}.product-card{background:#fff;border:1px solid var(--border);border-radius:12px;overflow:hidden;cursor:pointer;transition:all .2s ease-out;box-shadow:0 1px 2px rgba(0,0,0,.05)}.product-card:hover{transform:translateY(-.5px);box-shadow:0 4px 6px -1px rgba(0,0,0,.1);border-color:#d1d5db}.product-card-img{position:relative;aspect-ratio:16/9;background:var(--border-light);overflow:hidden}.product-card-img img{width:100%;height:100%;object-fit:cover}.product-card-tag{position:absolute;top:10px;left:10px;padding:4px 10px;border-radius:6px;font-size:11px;font-weight:600}.product-card-body{padding:16px}.product-card-name{font-size:15px;font-weight:600;color:var(--text);margin-bottom:6px;letter-spacing:-.01em}.product-card-desc,.product-card-name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.product-card-desc{font-size:13px;color:var(--text-muted);margin-bottom:12px}.product-card-bottom{display:flex;justify-content:space-between;align-items:center}.product-card-price{font-size:20px;font-weight:700;color:var(--primary)}.product-card-price small{font-size:13px;font-weight:500}.category-tabs{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:20px}.category-tab{padding:6px 16px;border-radius:8px;font-size:13px;font-weight:500;cursor:pointer;transition:all .2s ease-out;background:#fff;border:1px solid var(--border);color:var(--text-secondary)}.category-tab:hover{background:var(--border-light);color:var(--text)}.category-tab.active{background:var(--primary);border-color:var(--primary);color:#fff}.modal-overlay{position:fixed;top:0;left:0;height:100%;background:rgba(0,0,0,.5);align-items:center;justify-content:center;z-index:1000;padding:20px}.modal,.modal-overlay{width:100%;display:flex}.modal{background:#fff;border-radius:12px;max-width:520px;max-height:90vh;flex-direction:column;box-shadow:0 20px 25px -5px rgba(0,0,0,.1)}.modal-header{padding:16px 20px;border-bottom:1px solid var(--border-light);display:flex;justify-content:space-between;align-items:center}.modal-title{font-size:16px;font-weight:600;color:var(--text)}.modal-close{font-size:24px;color:var(--text-muted);cursor:pointer;line-height:1;padding:4px}.modal-close:hover{color:var(--text)}.modal-body{padding:20px}.modal-body,.modal-body-scroll{overflow-y:auto;flex:1 1}.modal-footer{padding:16px 20px;border-top:1px solid var(--border-light);display:flex;justify-content:flex-end;gap:10px}.admin-layout{display:flex;min-height:100vh}.admin-sidebar{width:240px;background:#fff;border-right:1px solid var(--border);position:fixed;left:0;top:0;height:100vh;padding:20px 12px;z-index:50}.admin-sidebar-logo{display:flex;align-items:center;gap:10px;padding:0 8px 20px;font-size:16px;font-weight:700;color:var(--text);border-bottom:1px solid var(--border-light);margin-bottom:16px}.admin-sidebar-group{margin-bottom:16px}.admin-sidebar-group-title{font-size:11px;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:.05em;padding:0 12px 8px}.admin-sidebar-item{display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:8px;font-size:14px;color:var(--text-secondary);cursor:pointer;transition:all .2s ease-out;margin-bottom:2px}.admin-sidebar-item:hover{background:var(--border-light);color:var(--text)}.admin-sidebar-item.active{background:var(--primary-light);color:var(--primary);font-weight:500}.admin-main{flex:1 1;margin-left:240px;min-height:100vh}.admin-mobile-nav{display:none}.admin-header{background:#fff;border-bottom:1px solid var(--border);padding:14px 24px;display:flex;justify-content:space-between;align-items:center;position:-webkit-sticky;position:sticky;top:0;z-index:40}.admin-header-title{font-size:18px;font-weight:600;color:var(--text)}.admin-content{padding:24px}.empty{text-align:center;padding:48px 20px}.empty-icon{font-size:48px;margin-bottom:12px;opacity:.5}.empty-text{font-size:14px}.empty-text,.footer{color:var(--text-muted)}.footer{text-align:center;padding:24px;font-size:13px;border-top:1px solid var(--border-light);margin-top:40px}.container{max-width:1200px;margin:0 auto;padding:24px}.price-primary{color:var(--primary);font-weight:700}.mono{font-family:SF Mono,Monaco,Inconsolata,Roboto Mono,monospace}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{background:#d1d5db;border-radius:4px}::-webkit-scrollbar-thumb:hover{background:#9ca3af}@media (max-width:768px){.nav-inner{padding:0 16px}.container{padding:16px}.product-grid{grid-template-columns:1fr}.admin-sidebar{display:none}.admin-main{margin-left:0;padding-bottom:100px}.admin-content{padding:16px}.stats-grid{grid-template-columns:1fr 1fr}.admin-mobile-nav{display:flex!important;position:fixed;bottom:12px!important;left:12px!important;right:12px!important;background:hsla(0,0%,100%,.95)!important;backdrop-filter:blur(20px)!important;-webkit-backdrop-filter:blur(20px)!important;border:1px solid rgba(229,231,235,.8)!important;border-radius:16px!important;padding:8px 4px calc(8px + env(safe-area-inset-bottom))!important;z-index:100!important;box-shadow:0 8px 32px rgba(0,0,0,.12),0 2px 8px rgba(0,0,0,.08)!important}.admin-mobile-nav-item{flex:1 1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;padding:8px 4px;cursor:pointer;transition:all .25s cubic-bezier(.4,0,.2,1);border-radius:12px;margin:0 4px;position:relative}.admin-mobile-nav-item:active{transform:scale(.92)}.admin-mobile-nav-icon{font-size:22px;line-height:1;transition:all .25s;filter:grayscale(30%)}.admin-mobile-nav-label{font-size:11px;color:#6b7280;white-space:nowrap;font-weight:500;transition:all .25s}.admin-mobile-nav-item.active .admin-mobile-nav-label{color:#2563eb;font-weight:600}.admin-mobile-nav-item.active .admin-mobile-nav-icon{filter:grayscale(0);transform:translateY(-2px)}.admin-mobile-nav-item.active{background:linear-gradient(180deg,rgba(37,99,235,.08),rgba(37,99,235,.02))}.admin-mobile-nav-item.active:before{content:"";position:absolute;top:0;left:50%;transform:translateX(-50%);width:24px;height:3px;background:#2563eb;border-radius:0 0 3px 3px}.admin-content,.admin-header{max-width:100vw;overflow-x:hidden}.card{max-width:100%;overflow:hidden}.card-body{padding:16px!important}.form-input,.form-select,.form-textarea{max-width:100%;box-sizing:border-box}.btn{max-width:100%}.table-wrapper{overflow-x:hidden;margin:0;padding:0;width:100%}.table{min-width:0;width:100%;table-layout:fixed}.table td,.table th{padding:8px 6px;font-size:11px;white-space:normal;word-break:break-word;overflow:hidden;text-overflow:ellipsis}.table th{font-size:10px;padding:6px}.table .hide-mobile{display:none}.modal-overlay{padding:16px!important;align-items:flex-end!important}.modal{width:100%!important;max-width:100%!important;max-height:85vh!important;margin:0!important;border-radius:16px 16px 0 0!important;display:flex!important;flex-direction:column!important}.modal-body{max-height:none!important;overflow-y:auto!important;flex:1 1!important}.modal-body,.modal-header{padding:16px!important}.modal-footer{padding:12px 16px!important;flex-direction:column!important;gap:8px!important;background:#fff!important;border-top:1px solid #e5e7eb!important;position:-webkit-sticky!important;position:sticky!important;bottom:0!important;z-index:10!important;box-shadow:0 -4px 12px rgba(0,0,0,.08)!important}.modal-footer .btn{width:100%!important;padding:12px!important;font-size:15px!important;font-weight:600!important}.product-modal-footer{position:-webkit-sticky!important;position:sticky!important;bottom:0!important;left:0!important;right:0!important;background:#fff!important;border-top:1px solid #e5e7eb!important;padding:12px 16px!important;z-index:20!important;box-shadow:0 -4px 16px rgba(0,0,0,.1)!important;flex-shrink:0!important}.product-modal-footer .btn{padding:14px!important;font-size:16px!important}.stat-card{padding:14px!important}.stat-card-value{font-size:20px!important}.stat-card-label{font-size:11px!important}.table-wrapper{width:100%!important;margin:0!important;padding:0!important;overflow:hidden!important}}@keyframes fadeIn{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}.animate-fade-in{animation:fadeIn .2s ease-out both}.spinner{width:32px;height:32px;border:3px solid var(--border);border-top-color:var(--primary);border-radius:50%;animation:spin .6s linear infinite}@keyframes spin{to{transform:rotate(1turn)}}*{-webkit-touch-callout:none}input,select,textarea{font-size:16px!important;-webkit-user-select:text;-moz-user-select:text;user-select:text}.modal-overlay{touch-action:none}.modal,.modal-overlay{overscroll-behavior:contain}.modal{touch-action:pan-y}body,html{overscroll-behavior:none;-webkit-overflow-scrolling:touch}.collapsible-section{border:1px solid #e5e7eb;border-radius:10px;margin-bottom:12px;overflow:hidden;background:#fff}.collapsible-header{display:flex;justify-content:space-between;align-items:center;padding:14px 16px;cursor:pointer;background:#f9fafb;transition:background .2s;-webkit-user-select:none;-moz-user-select:none;user-select:none}.collapsible-header:hover{background:#f3f4f6}.collapsible-header:active{background:#e5e7eb}.collapsible-title{font-size:14px;font-weight:600;color:#111827;display:flex;align-items:center;gap:8px}.collapsible-icon{font-size:12px;color:#6b7280;transition:transform .3s}.collapsible-icon.open{transform:rotate(180deg)}.collapsible-content{padding:16px;border-top:1px solid #e5e7eb;animation:slideDown .3s ease}@keyframes slideDown{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.nav-responsive{background:#fff;border-bottom:1px solid #e5e7eb;position:-webkit-sticky;position:sticky;top:0;z-index:100}.nav-inner-responsive{max-width:1200px;margin:0 auto;padding:0 24px;min-height:64px;display:flex;align-items:center;justify-content:space-between;gap:16px}.nav-logo-responsive{display:flex;align-items:center;gap:10px;cursor:pointer;flex-shrink:0}.nav-logo-icon-responsive{width:36px;height:36px;background:#2563eb;border-radius:8px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:16px}.nav-logo-img-responsive{width:36px;height:36px;border-radius:8px;object-fit:cover}.nav-logo-text-responsive{font-size:18px;font-weight:700;color:#111827}.nav-left-responsive{display:flex;align-items:center;gap:20px;flex:1 1}.nav-search-responsive{max-width:260px;position:relative;flex:1 1}.nav-search-mobile-responsive{display:none;width:100%;position:relative;padding-bottom:12px}.nav-search-icon-responsive{position:absolute;left:14px;top:50%;transform:translateY(-50%);opacity:.4;display:flex;align-items:center;justify-content:center;line-height:1;z-index:2;pointer-events:none}.nav-search-input-responsive{width:100%;padding:9px 16px 9px 38px;border:1px solid #e5e7eb;border-radius:24px;font-size:13px;outline:none;background:linear-gradient(135deg,#f9fafb,#f3f4f6);line-height:1.4;transition:all .25s cubic-bezier(.4,0,.2,1);color:#111827}.nav-search-input-responsive::placeholder{color:#9ca3af}.nav-search-input-responsive:hover{border-color:#d1d5db;background:#fff}.nav-search-input-responsive:focus{background:#fff;border-color:#2563eb;box-shadow:0 0 0 4px rgba(37,99,235,.1),0 2px 8px rgba(37,99,235,.08)}.nav-search-input-responsive:focus+.nav-search-icon-responsive,.nav-search-mobile-responsive:focus-within .nav-search-icon-responsive,.nav-search-responsive:focus-within .nav-search-icon-responsive{opacity:.8;color:#2563eb}.nav-right-responsive{display:flex;align-items:center;gap:10px;flex-shrink:0}.btn-secondary-responsive{padding:8px 16px;font-size:14px;font-weight:500;color:#4b5563;background:#fff;border:1px solid #d1d5db;border-radius:8px;cursor:pointer;transition:all .2s ease-out}.btn-secondary-responsive:hover{background:#f9fafb}.btn-primary-responsive{padding:8px 16px;font-size:14px;font-weight:500;color:#fff;background:#2563eb;border:1px solid #2563eb;border-radius:8px;cursor:pointer;transition:all .2s ease-out}.btn-primary-responsive:hover{background:#1d4ed8}.container-responsive{max-width:1200px;margin:0 auto;padding:24px}.notice-responsive{margin-bottom:20px;padding:12px 16px;background:#eff6ff;border:1px solid #bfdbfe;border-radius:8px;display:flex;align-items:center;gap:10px;overflow:hidden}.notice-content-responsive{flex:1 1;overflow:hidden;white-space:nowrap}.notice-marquee-responsive{display:inline-block;animation:marquee 20s linear infinite;font-size:14px;color:#1e40af}@keyframes marquee{0%{transform:translateX(100%)}to{transform:translateX(-100%)}}.category-tabs-responsive{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:20px}.category-tab-responsive{padding:6px 16px;border-radius:8px;font-size:13px;font-weight:500;cursor:pointer;background:#fff;border:1px solid #d1d5db;color:#4b5563;transition:all .2s ease-out;white-space:nowrap}.category-tab-responsive:hover{background:#f9fafb}.category-tab-responsive.active{background:#2563eb;border-color:#2563eb;color:#fff}.product-grid-responsive{display:grid;grid-template-columns:repeat(4,1fr);grid-gap:14px;gap:14px}.product-card-responsive{background:#fff;border:1px solid #e5e7eb;border-radius:10px;overflow:hidden;cursor:pointer;transition:all .2s ease-out;box-shadow:0 1px 2px rgba(0,0,0,.05)}.product-card-responsive:hover{transform:translateY(-2px);box-shadow:0 4px 6px -1px rgba(0,0,0,.1)}.product-card-img-responsive{position:relative;width:100%;aspect-ratio:4/3;overflow:hidden;background:#f3f4f6}.product-card-badge-responsive{left:8px;display:flex;align-items:center;gap:4px;background:linear-gradient(135deg,#10b981,#059669);font-weight:600;box-shadow:0 2px 4px rgba(16,185,129,.3)}.product-card-badge-responsive,.product-card-tag-responsive{position:absolute;top:8px;padding:4px 8px;color:#fff;font-size:11px;border-radius:6px;z-index:2}.product-card-tag-responsive{right:8px;background:rgba(0,0,0,.6);font-weight:500;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.product-card-image-responsive{width:100%;height:100%;object-fit:cover}.product-card-placeholder-responsive{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:48px;background:#f3f4f6}.product-card-body-responsive{padding:14px 16px 16px}.product-card-name-responsive{font-size:15px;font-weight:600;color:#111827;margin-bottom:10px;overflow:hidden;textOverflow:ellipsis;white-space:nowrap}.product-card-price-row-responsive{display:flex;align-items:center;gap:8px;margin-bottom:6px}.product-card-price-responsive{font-size:20px;font-weight:700;color:#dc2626;display:flex;align-items:baseline}.product-card-price-symbol-responsive{font-size:13px;margin-right:2px}.product-card-original-price-responsive{font-size:13px;color:#9ca3af;text-decoration:line-through;font-weight:400}.product-card-stock-responsive{margin-left:auto;padding:3px 10px;border-radius:9999px;font-size:12px;font-weight:500;flex-shrink:0}.product-card-stock-responsive.in-stock{background:#d1fae5;color:#065f46}.product-card-stock-responsive.out-of-stock{background:#fee2e2;color:#991b1b}.product-card-sales-responsive{font-size:13px;color:#9ca3af}.empty-responsive{text-align:center;padding:60px 20px;color:#9ca3af}.empty-card-responsive{text-align:center;padding:60px 20px;background:#fff;border-radius:12px;border:1px solid #e5e7eb}.footer-responsive{text-align:center;padding:24px;font-size:13px;color:#9ca3af;border-top:1px solid #f3f4f6;margin-top:40px}.modal-overlay-responsive{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5);display:flex;alignItems:center;justifyContent:center;z-index:1000;padding:16px}.modal-responsive{background:#fff;border-radius:12px;width:100%;max-width:480px;max-height:90vh;overflow-y:auto;box-shadow:0 20px 25px -5px rgba(0,0,0,.1)}.modal-header-responsive{padding:14px 16px 14px 20px;border-bottom:1px solid #f3f4f6;display:flex;justifyContent:space-between;alignItems:center;position:relative}.modal-title-responsive{font-size:16px;font-weight:600;color:#111827}.modal-close-responsive{width:32px;height:32px;display:flex;align-items:center;justify-content:center;color:#9ca3af;cursor:pointer;line-height:1;border-radius:8px;transition:all .2s ease-out;position:absolute;top:10px;right:10px}.modal-close-responsive:hover{background:#f3f4f6;color:#4b5563}.modal-body-responsive{padding:20px}.modal-product-info-responsive{padding:12px;background:#f9fafb;border-radius:8px;margin-bottom:16px}.form-group-responsive{margin-bottom:14px}.form-label-responsive{display:flex;align-items:center;font-size:13px;font-weight:500;color:#4b5563;margin-bottom:6px;line-height:1}.form-input-responsive{width:100%;padding:10px 12px;border:1px solid #d1d5db;border-radius:8px;font-size:16px;outline:none}.form-input-responsive:focus{border-color:#2563eb;box-shadow:0 0 0 3px rgba(37,99,235,.1)}.quantity-selector-responsive{display:flex;alignItems:center;gap:12px}.quantity-btn-responsive{width:36px;height:36px;background:#fff;border:1px solid #d1d5db;border-radius:8px;font-size:16px;cursor:pointer}.quantity-value-responsive{font-size:16px;font-weight:600;color:#111827;min-width:32px;text-align:center}.modal-total-responsive{display:flex;justifyContent:space-between;alignItems:center;padding:12px;background:#eff6ff;border-radius:8px;margin-bottom:16px}.modal-submit-responsive{width:100%;padding:12px;background:#2563eb;color:#fff;border:none;border-radius:8px;fontSize:15px;fontWeight:600;cursor:pointer}.modal-submit-responsive:disabled{opacity:.5;cursor:not-allowed}.card-item-responsive{padding:10px 12px;background:#f9fafb;border:1px solid #e5e7eb;border-radius:8px;margin-bottom:8px;display:flex;justifyContent:space-between;alignItems:center}.card-content-responsive{fontSize:12px;fontFamily:monospace;color:#2563eb;word-break:break-all;flex:1 1}.card-copy-btn-responsive{padding:4px 10px;fontSize:11px;background:#fff;border:1px solid #d1d5db;border-radius:6px;color:#4b5563;cursor:pointer;flex-shrink:0;margin-left:8px}.modal-footer-responsive{padding:14px 20px;border-top:1px solid #f3f4f6;display:flex;justifyContent:flex-end}.modal-cancel-btn-responsive{padding:8px 16px;background:#fff;border:1px solid #d1d5db;border-radius:8px;fontSize:14px;color:#4b5563;cursor:pointer}.modal-query-btn-responsive{padding:8px 16px;background:#2563eb;border:none;border-radius:8px;fontSize:14px;color:#fff;cursor:pointer;fontWeight:500}@media (max-width:768px){.nav-inner-responsive{padding:0 16px;min-height:56px;flex-wrap:wrap;gap:8px}.nav-search-responsive{display:none}.nav-search-mobile-responsive{display:block;width:100%;order:3;padding-top:8px;padding-bottom:12px;position:relative}.nav-search-mobile-responsive .nav-search-input-responsive{width:100%;max-width:100%;text-align:left;padding-left:38px;padding-right:16px}.nav-search-mobile-responsive .nav-search-icon-responsive{left:14px}.nav-left-responsive{order:1}.nav-right-responsive{order:2;margin-left:auto}.nav-logo-text-responsive{font-size:16px}.btn-primary-responsive,.btn-secondary-responsive{padding:6px 12px;font-size:13px}.container-responsive{padding:16px}.product-grid-responsive{grid-template-columns:repeat(2,1fr);gap:12px}.product-card-name-responsive{font-size:14px}.product-card-price-responsive{font-size:17px}.category-tabs-responsive{flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch}.category-tab-responsive{flex-shrink:0}}*{-webkit-tap-highlight-color:transparent}input,textarea{font-size:16px!important}.modal-overlay-responsive{touch-action:none;position:fixed!important;top:0!important;left:0!important;height:100%!important;background:rgba(0,0,0,.5)!important;display:flex!important;align-items:center!important;justify-content:center!important;z-index:1000!important;padding:16px!important}.modal-overlay-responsive,.modal-responsive{overscroll-behavior:contain;width:100%!important}.modal-responsive{touch-action:pan-y;background:#fff!important;border-radius:12px!important;max-width:420px!important;max-height:90vh!important;overflow-y:auto!important;box-shadow:0 20px 25px -5px rgba(0,0,0,.1)!important;margin:0 auto!important}.modal-product-card-responsive{display:flex;gap:14px;padding:14px;background:linear-gradient(135deg,#f8fafc,#f1f5f9);border:1px solid #e2e8f0;border-radius:12px;margin-bottom:18px}.modal-product-img-responsive{width:72px;height:72px;border-radius:10px;overflow:hidden;background:#fff;border:1px solid #e2e8f0;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:32px}.modal-product-img-responsive img{width:100%;height:100%;object-fit:cover}.modal-product-detail-responsive{flex:1 1;min-width:0}.modal-product-name-responsive{font-size:15px;font-weight:600;color:#111827;margin-bottom:6px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.modal-product-meta-responsive{display:flex;align-items:baseline;gap:8px;margin-bottom:6px}.modal-product-price-responsive{color:#dc2626!important;font-size:20px;font-weight:700;color:#dc2626}.modal-product-price-symbol-responsive{font-size:13px;font-weight:600}.modal-product-original-price-responsive{font-size:13px;color:#9ca3af;text-decoration:line-through}.modal-product-stock-responsive{display:flex;align-items:center;gap:6px;font-size:12px;color:#6b7280}.stock-dot-responsive{width:6px;height:6px;border-radius:50%}.stock-dot-responsive.in-stock{background:#10b981;box-shadow:0 0 0 3px rgba(16,185,129,.2)}.stock-dot-responsive.out-stock{background:#ef4444}.input-wrapper-responsive{position:relative}.input-icon-responsive{position:absolute;left:12px;top:50%;transform:translateY(-50%);font-size:14px;opacity:.5;display:flex;align-items:center;justify-content:center;line-height:1;z-index:2;pointer-events:none}.form-input-with-icon-responsive{width:100%;padding:11px 12px 11px 40px;border:1px solid #d1d5db;border-radius:10px;font-size:15px;outline:none;background:#fff;transition:all .2s ease-out;line-height:1.4;display:flex;align-items:center}.form-input-with-icon-responsive:focus{border-color:#2563eb;box-shadow:0 0 0 3px rgba(37,99,235,.1)}.form-input-with-icon-responsive::placeholder{color:#9ca3af}.pay-methods-responsive{display:grid;grid-template-columns:1fr 1fr;grid-gap:10px;gap:10px}.pay-method-item-responsive{display:flex;align-items:center;gap:10px;padding:12px 14px;border:1.5px solid #e5e7eb;border-radius:10px;cursor:pointer;transition:all .2s ease-out;background:#fff}.pay-method-item-responsive:hover{border-color:#93c5fd;background:#f8fafc}.pay-method-item-responsive.active{border-color:#2563eb;background:#eff6ff}.pay-icon-responsive{width:30px!important;height:30px!important;border-radius:7px!important;display:flex!important;align-items:center!important;justify-content:center!important;color:#fff!important;flex-shrink:0!important;overflow:hidden!important}.pay-icon-responsive svg{display:block!important}.pay-name-responsive{font-size:14px;font-weight:500;color:#374151;flex:1 1}.pay-check-responsive{font-size:14px;color:#2563eb;font-weight:700}.modal-total-price-responsive{font-size:24px;font-weight:800;color:#1d4ed8}.modal-total-symbol-responsive{font-size:15px;font-weight:600}.btn-spinner-responsive{width:16px;height:16px;border:2px solid hsla(0,0%,100%,.3);border-top-color:#fff;border-radius:50%;animation:spin .8s linear infinite;display:inline-block}.security-tip-responsive{display:flex;align-items:center;gap:8px;padding:10px 12px;background:#f0fdf4;border:1px solid #bbf7d0;border-radius:8px;font-size:12px;color:#166534;line-height:1.4}.success-icon-responsive{width:64px;height:64px;margin:0 auto 16px;background:linear-gradient(135deg,#d1fae5,#a7f3d0);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#059669;animation:successPop .4s ease-out}@keyframes successPop{0%{transform:scale(0);opacity:0}50%{transform:scale(1.1)}to{transform:scale(1);opacity:1}}.order-info-responsive{background:#f9fafb;border:1px solid #e5e7eb;border-radius:10px;padding:14px;margin-bottom:14px;text-align:left}.order-info-row-responsive{display:flex;justify-content:space-between;align-items:center;padding:6px 0;font-size:13px;color:#6b7280;border-bottom:1px dashed #e5e7eb}.order-info-row-responsive:last-child{border-bottom:none}.email-tip-responsive{display:flex;align-items:center;gap:8px;padding:10px 12px;background:#eff6ff;border:1px solid #bfdbfe;border-radius:8px;font-size:12px;color:#1e40af;margin-bottom:14px;text-align:left}.card-index-responsive{width:22px;height:22px;background:#2563eb;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:600;flex-shrink:0}.quantity-selector-responsive{gap:0!important}.quantity-btn-responsive{width:38px!important;height:38px!important;background:#fff!important;border:1px solid #d1d5db!important;display:flex!important;align-items:center!important;justify-content:center!important;cursor:pointer!important;color:#4b5563!important;transition:all .2s ease-out!important;font-size:16px!important;line-height:1!important}.quantity-btn-responsive:first-child{border-radius:8px 0 0 8px!important}.quantity-btn-responsive:last-child{border-radius:0 8px 8px 0!important}.quantity-value-responsive{width:50px!important;height:38px!important;justify-content:center!important;border-top:1px solid #d1d5db!important;border-bottom:1px solid #d1d5db!important;font-size:15px!important;font-weight:600!important;color:#111827!important;background:#f9fafb!important;text-align:center!important;line-height:1!important}.modal-total-responsive,.quantity-value-responsive{display:flex!important;align-items:center!important}.modal-total-responsive{justify-content:space-between!important;padding:16px 18px!important;background:linear-gradient(135deg,#f8fafc,#f1f5f9)!important;border:1px solid #e2e8f0!important;border-radius:12px!important;margin-bottom:14px!important}.modal-total-left-responsive{display:flex;flex-direction:column;gap:2px}.modal-total-label-responsive{font-size:14px;font-weight:600;color:#374151}.modal-total-count-responsive{font-size:12px;color:#9ca3af}.modal-total-right-responsive{display:flex;align-items:baseline;gap:2px}.modal-total-symbol-responsive{font-size:16px!important;font-weight:700!important;color:#dc2626!important}.modal-total-price-responsive{font-size:26px!important;font-weight:800!important;color:#dc2626!important;line-height:1!important}.modal-buttons-responsive{display:flex;gap:10px;margin-bottom:12px}.modal-cancel-inline-responsive{flex:0 0 100px;padding:13px;background:#fff;border:1px solid #d1d5db;border-radius:10px;font-size:15px;font-weight:500;color:#4b5563;cursor:pointer;transition:all .2s ease-out}.modal-cancel-inline-responsive:hover{background:#f9fafb;border-color:#9ca3af}.modal-submit-responsive{flex:1 1!important;padding:13px!important;background:linear-gradient(135deg,#2563eb,#1d4ed8)!important;color:#fff!important;border:none!important;border-radius:10px!important;font-size:15px!important;font-weight:600!important;cursor:pointer!important;transition:all .2s ease-out!important;box-shadow:0 4px 12px rgba(37,99,235,.3)!important;margin-bottom:0!important;display:flex!important;align-items:center!important;justify-content:center!important}.security-tip-responsive{margin-top:4px!important;padding:10px 12px!important}.modal-footer-responsive:empty{display:none}.top-banner-responsive{display:flex;align-items:center;gap:12px;padding:14px 18px;background:linear-gradient(135deg,#eff6ff,#dbeafe);border:1px solid #bfdbfe;border-radius:12px;margin-bottom:16px}.top-banner-icon-responsive{width:36px;height:36px;background:#fff;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;box-shadow:0 2px 4px rgba(37,99,235,.1)}.top-banner-content-responsive{flex:1 1;font-size:14px;color:#1e40af;font-weight:500;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.footer-responsive{background:linear-gradient(180deg,#f8fafc,#f1f5f9);border-top:1px solid #e2e8f0;padding:40px 0 28px;margin-top:48px;position:relative}.footer-responsive:before{content:"";position:absolute;top:0;left:50%;transform:translateX(-50%);width:60px;height:3px;background:linear-gradient(90deg,#2563eb,#60a5fa);border-radius:0 0 3px 3px}.footer-inner-responsive{max-width:1200px;margin:0 auto;padding:0 24px}.footer-top-responsive{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px;flex-wrap:wrap;gap:20px}.footer-left-responsive{flex:1 1;min-width:200px}.footer-brand-responsive{font-size:18px;font-weight:800;background:linear-gradient(135deg,#111827,#374151);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:8px;letter-spacing:-.3px}.footer-desc-responsive{font-size:13px;color:#64748b;line-height:1.7;max-width:400px}.footer-right-responsive{display:flex;gap:8px;align-items:center}.footer-link-responsive{font-size:13px;color:#64748b;text-decoration:none;transition:all .2s ease;padding:6px 14px;border-radius:8px;font-weight:500}.footer-link-responsive:hover{color:#2563eb;background:rgba(37,99,235,.08)}.footer-bottom-responsive{padding-top:20px;border-top:1px solid #e2e8f0;font-size:12px;color:#94a3b8;text-align:left;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px}@media (max-width:768px){.footer-inner-responsive{padding:0 16px!important}.footer-top-responsive{flex-direction:column!important;align-items:center!important;text-align:center!important}.footer-left-responsive{width:100%!important}.footer-brand-responsive,.footer-desc-responsive,.footer-left-responsive{text-align:center!important}.footer-right-responsive{gap:16px!important;justify-content:center!important;width:100%!important}.footer-bottom-responsive{text-align:center!important;justify-content:center!important;flex-direction:column!important;gap:4px!important}.footer-responsive{padding:32px 0 24px!important}.footer-desc-responsive{max-width:100%!important}.top-banner-content-responsive{white-space:normal}}.quantity-wrapper-responsive{display:flex!important;align-items:center!important}.quantity-selector-responsive{border:1px solid #d1d5db!important;border-radius:8px!important;overflow:hidden!important}.quantity-selector-responsive,.quantity-selector-responsive .quantity-btn-responsive{display:flex!important;align-items:center!important;height:38px!important;background:#fff!important}.quantity-selector-responsive .quantity-btn-responsive{width:38px!important;min-height:38px!important;justify-content:center!important;padding:0!important;margin:0!important;line-height:1!important;border:none!important;cursor:pointer!important;color:#4b5563!important;transition:background .2s!important}.quantity-selector-responsive .quantity-btn-responsive:hover{background:#f3f4f6!important}.quantity-selector-responsive .quantity-btn-responsive:active{background:#e5e7eb!important}.quantity-selector-responsive .quantity-value-responsive{width:50px!important;height:38px!important;min-height:38px!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:0!important;margin:0!important;line-height:1!important;border:1px solid #e5e7eb!important;border-top:none!important;border-bottom:none!important;background:#f9fafb!important;font-size:15px!important;font-weight:600!important;color:#111827!important}.card-item-responsive{padding:12px!important;background:#fff!important;border:1px solid #e5e7eb!important;border-radius:8px!important;margin-bottom:8px!important;gap:10px!important}.card-index-responsive,.card-item-responsive{display:flex!important;align-items:center!important}.card-index-responsive{width:24px!important;height:24px!important;background:#2563eb!important;color:#fff!important;border-radius:50%!important;justify-content:center!important;font-size:12px!important;font-weight:600!important;flex-shrink:0!important;line-height:1!important}.card-content-responsive{font-size:14px!important;font-family:SF Mono,Monaco,monospace!important;color:#1d4ed8!important;word-break:break-all!important;flex:1 1!important;line-height:1.4!important;min-height:24px!important}.card-content-responsive,.card-copy-btn-responsive{display:flex!important;align-items:center!important}.card-copy-btn-responsive{padding:6px 12px!important;font-size:12px!important;background:#fff!important;border:1px solid #d1d5db!important;border-radius:6px!important;color:#4b5563!important;cursor:pointer!important;flex-shrink:0!important;transition:all .2s ease-out!important;line-height:1!important;height:32px!important}.product-grid-responsive{gap:16px!important}.product-card-responsive{border-radius:12px!important;transition:all .25s cubic-bezier(.4,0,.2,1)!important;box-shadow:0 1px 3px rgba(0,0,0,.06)!important}.product-card-responsive:hover{transform:translateY(-4px)!important;box-shadow:0 12px 24px -8px rgba(0,0,0,.15)!important;border-color:#93c5fd!important}.product-card-img-responsive{background:linear-gradient(135deg,#f0f9ff,#e0f2fe 50%,#f0fdf4)!important}.product-card-image-responsive{transition:transform .4s ease!important}.product-card-responsive:hover .product-card-image-responsive{transform:scale(1.05)!important}.product-card-placeholder-responsive:after{content:"";position:absolute;width:80px;height:80px;background:radial-gradient(circle,hsla(0,0%,100%,.8) 0,transparent 70%);border-radius:50%;top:50%;left:50%;transform:translate(-50%,-50%)}.product-card-badge-responsive{top:4px!important;left:4px!important;padding:5px 10px!important;box-shadow:0 2px 8px rgba(16,185,129,.4)!important}.product-card-tag-responsive{top:4px!important;right:10px!important;background:linear-gradient(135deg,#f59e0b,#d97706)!important;box-shadow:0 2px 8px rgba(245,158,11,.4)!important;font-weight:600!important}.product-card-body-responsive{padding:12px 14px 14px!important}.product-card-name-responsive{font-size:14px!important;font-weight:600!important;margin-bottom:8px!important}.product-card-price-row-responsive{margin-bottom:10px!important}.product-card-price-responsive{font-size:18px!important}.product-card-stock-responsive{font-size:11px!important;font-weight:600!important;padding:3px 8px!important;border-radius:4px!important}.product-card-stock-responsive.in-stock{background:#ecfdf5!important;color:#059669!important}.product-card-stock-responsive.out-of-stock{background:#fef2f2!important;color:#dc2626!important}.product-card-sales-responsive{gap:4px!important;font-size:12px!important}.product-card-responsive{border-radius:14px!important;overflow:hidden!important;background:#fff!important;border:1px solid #f1f5f9!important;transition:all .3s cubic-bezier(.4,0,.2,1)!important;box-shadow:0 1px 3px rgba(0,0,0,.04),0 1px 2px rgba(0,0,0,.06)!important}.product-card-responsive:hover{transform:translateY(-6px)!important;box-shadow:0 20px 40px -12px rgba(0,0,0,.15),0 0 0 1px rgba(59,130,246,.2)!important;border-color:#bfdbfe!important}.product-card-img-responsive{aspect-ratio:16/10!important;background:linear-gradient(135deg,#fef3c7,#fde68a 30%,#fcd34d 60%,#fbbf24)!important;position:relative!important;overflow:hidden!important}.product-card-placeholder-responsive{width:100%!important;height:100%!important;display:flex!important;align-items:center!important;justify-content:center!important;position:relative!important}.product-card-placeholder-pattern{position:absolute!important;width:100%!important;height:100%!important;background-image:radial-gradient(circle at 20% 30%,hsla(0,0%,100%,.3) 0,transparent 40%),radial-gradient(circle at 80% 70%,hsla(0,0%,100%,.2) 0,transparent 40%)!important}.product-card-placeholder-icon{font-size:52px!important;z-index:2!important;filter:drop-shadow(0 8px 16px rgba(0,0,0,.15))!important;animation:float 3s ease-in-out infinite!important}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-6px)}}.product-card-overlay-responsive{position:absolute!important;bottom:0!important;left:0!important;right:0!important;height:50%!important;background:linear-gradient(0deg,rgba(0,0,0,.1) 0,transparent)!important;pointer-events:none!important}.product-card-badges-responsive{position:absolute!important;top:4px!important;left:4px!important;display:flex!important;gap:6px!important;z-index:3!important}.product-card-badge-responsive{display:flex!important;align-items:center!important;gap:4px!important;background:linear-gradient(135deg,#10b981,#059669)!important;box-shadow:0 4px 12px rgba(16,185,129,.4)!important;-webkit-backdrop-filter:blur(4px)!important;backdrop-filter:blur(4px)!important}.product-card-badge-responsive,.product-card-tag-responsive{padding:4px 10px!important;color:#fff!important;font-size:11px!important;font-weight:700!important;border-radius:20px!important;white-space:nowrap!important;flex-shrink:0!important}.product-card-tag-responsive{background:linear-gradient(135deg,#f472b6,#ec4899)!important;box-shadow:0 4px 12px rgba(236,72,153,.4)!important}.product-card-price-tag-responsive{position:absolute!important;top:4px!important;right:10px!important;display:flex!important;align-items:baseline!important;padding:6px 12px!important;background:linear-gradient(135deg,#ef4444,#dc2626)!important;color:#fff!important;border-radius:20px!important;box-shadow:0 4px 12px rgba(239,68,68,.4)!important;z-index:3!important}.product-card-price-tag-symbol{font-size:11px!important;font-weight:600!important}.product-card-price-tag-num{font-size:15px!important;font-weight:800!important;margin-left:1px!important}.product-card-soldout-mask-responsive{position:absolute!important;top:0!important;left:0!important;right:0!important;bottom:0!important;background:rgba(0,0,0,.5)!important;display:flex!important;align-items:center!important;justify-content:center!important;z-index:4!important;-webkit-backdrop-filter:blur(2px)!important;backdrop-filter:blur(2px)!important}.product-card-soldout-text-responsive{padding:8px 24px!important;background:hsla(0,0%,100%,.95)!important;color:#374151!important;font-size:14px!important;font-weight:700!important;border-radius:8px!important;letter-spacing:4px!important;transform:rotate(-10deg)!important}.product-card-body-responsive{padding:14px!important}.product-card-name-row-responsive{display:flex!important;justify-content:space-between!important;align-items:center!important;margin-bottom:10px!important}.product-card-name-responsive{font-size:15px!important;font-weight:700!important;color:#111827!important;flex:1 1!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;margin-right:8px!important}.product-card-stock-badge-responsive{display:flex!important;align-items:center!important;gap:4px!important;font-size:11px!important;color:#6b7280!important;flex-shrink:0!important}.stock-dot{width:6px!important;height:6px!important;border-radius:50%!important;background:#d1d5db!important}.stock-dot.active{background:#10b981!important;box-shadow:0 0 0 3px rgba(16,185,129,.2)!important}.product-card-stock-bar-responsive{height:4px!important;background:#f3f4f6!important;border-radius:2px!important;margin-bottom:12px!important;overflow:hidden!important}.product-card-stock-progress-responsive{height:100%!important;background:linear-gradient(90deg,#10b981,#34d399)!important;border-radius:2px!important;transition:width .5s ease!important}.product-card-info-row-responsive{display:flex!important;justify-content:space-between!important;align-items:flex-end!important;margin-bottom:12px!important}.product-card-price-wrapper-responsive{display:flex!important;align-items:baseline!important;gap:6px!important}.product-card-price-responsive{font-size:22px!important;font-weight:800!important;color:#dc2626!important;display:flex!important;align-items:baseline!important;line-height:1!important}.product-card-price-symbol-responsive{font-size:13px!important;font-weight:700!important;margin-right:1px!important}.product-card-original-price-responsive{font-size:12px!important;color:#9ca3af!important;text-decoration:line-through!important}.product-card-sales-responsive{font-size:11px!important;color:#9ca3af!important;display:flex!important;align-items:center!important;gap:3px!important}.product-card-action-responsive{display:flex!important;justify-content:space-between!important;align-items:center!important;padding-top:12px!important;border-top:1px solid #f3f4f6!important}.product-card-buy-text-responsive{font-size:13px!important;font-weight:600!important;color:#374151!important}.product-card-buy-btn-responsive{width:28px!important;height:28px!important;background:linear-gradient(135deg,#3b82f6,#2563eb)!important;border-radius:50%!important;display:flex!important;align-items:center!important;justify-content:center!important;color:#fff!important;transition:all .3s ease!important;box-shadow:0 4px 10px rgba(59,130,246,.3)!important}.product-card-responsive:hover .product-card-buy-btn-responsive{transform:scale(1.1)!important;box-shadow:0 6px 16px rgba(59,130,246,.5)!important}@media (max-width:768px){.product-grid-responsive{grid-template-columns:repeat(2,1fr)!important;gap:12px!important}.product-card-img-responsive{aspect-ratio:4/3!important}.product-card-body-responsive{padding:10px!important}.product-card-price-tag-responsive{padding:4px 8px!important}.product-card-price-tag-num{font-size:13px!important}.product-card-badge-responsive,.product-card-tag-responsive{padding:3px 8px!important;font-size:10px!important}.product-card-price-responsive{font-size:18px!important}.product-card-stock-bar-responsive{display:none!important}.product-card-placeholder-icon{font-size:40px!important}.product-card-name-responsive{font-size:13px!important}.product-card-sales-responsive{font-size:10px!important}.product-card-buy-btn-responsive{width:24px!important;height:24px!important}}.hero-banner-responsive{background:linear-gradient(135deg,#fff,#f8fafc);border-radius:20px;padding:32px 36px;margin-bottom:24px;display:flex;justify-content:space-between;align-items:center;box-shadow:0 4px 20px rgba(0,0,0,.08);border:1px solid #e5e7eb;position:relative;overflow:hidden}.hero-banner-left-responsive{flex:1 1;z-index:2}.hero-banner-title-responsive{font-size:30px;font-weight:800;background:linear-gradient(135deg,#111827,#374151);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin:0 0 10px;letter-spacing:-.5px;line-height:1.2}.hero-banner-subtitle-responsive{font-size:14px;color:#6b7280;margin:0 0 18px;line-height:1.7;max-width:480px}.hero-banner-tags-responsive{display:flex;gap:10px;flex-wrap:wrap}.hero-banner-tag-responsive{display:flex;align-items:center;gap:5px;padding:7px 14px;background:linear-gradient(135deg,#eff6ff,#dbeafe);border:1px solid #bfdbfe;border-radius:20px;font-size:12px;color:#1d4ed8;font-weight:600;transition:all .2s ease}.hero-banner-tag-responsive:hover{transform:translateY(-1px);box-shadow:0 2px 8px rgba(37,99,235,.15)}.hero-banner-tag-icon-responsive{font-size:13px;display:flex;align-items:center;justify-content:center}.hero-banner-right-responsive{flex-shrink:0;margin-left:20px}.hero-banner-flower-responsive{width:100px;height:100px;opacity:.8}.hero-banner-flower-svg-responsive{width:100%;height:100%}.hero-banner-image-responsive{width:100px;height:100px;object-fit:contain;border-radius:12px}.hero-banner-bg-image-responsive{position:absolute;top:-10px;right:-10px;width:160px;height:160px;object-fit:contain;opacity:.2;z-index:1;pointer-events:none}.footer-top-responsive{display:flex!important;justify-content:space-between!important;align-items:flex-start!important;gap:20px!important}.footer-left-responsive{flex:1 1!important;text-align:left!important}.footer-right-responsive{display:flex!important;gap:20px!important;flex-shrink:0!important}.footer-link-responsive{color:#6b7280!important;text-decoration:none!important;font-size:13px!important;transition:color .2s!important}.footer-link-responsive:hover{color:#2563eb!important}@media (max-width:768px){.product-card-badges-responsive{top:4px!important;left:4px!important;gap:4px!important}.hero-banner-responsive{padding:20px!important;position:relative!important;min-height:120px!important;border-radius:16px!important}.hero-banner-left-responsive{padding-right:80px!important;text-align:left!important}.hero-banner-title-responsive{font-size:22px!important}.hero-banner-subtitle-responsive{font-size:12px!important}.hero-banner-tags-responsive{justify-content:flex-start!important;flex-wrap:nowrap!important;gap:6px!important}.hero-banner-tag-responsive{padding:4px 8px!important;font-size:10px!important;gap:3px!important;white-space:nowrap!important}.hero-banner-right-responsive{position:absolute!important;top:12px!important;right:12px!important;margin-left:0!important}.hero-banner-flower-responsive,.hero-banner-image-responsive{width:60px!important;height:60px!important}.hero-banner-bg-image-responsive{width:100px!important;height:100px!important;top:-5px!important;right:-5px!important;left:auto!important;opacity:.15!important}.product-card-info-row-responsive{flex-direction:column!important;align-items:flex-start!important;gap:6px!important}.product-card-price-wrapper-responsive{width:100%!important;display:flex!important;align-items:baseline!important;gap:8px!important}.product-card-price-responsive{font-size:20px!important}.product-card-original-price-responsive{font-size:12px!important}.product-card-sales-responsive{width:100%!important;justify-content:flex-start!important;font-size:11px!important}.product-card-badge-responsive,.product-card-tag-responsive{padding:3px 6px!important;font-size:10px!important}}