:root{--orange: #FF6B35;--orange-hover: #e55a28;--orange-light: #FFF3ED;--bg: #FAFAF8;--white: #FFFFFF;--text: #2D2D2D;--text-light: #6B6B6B;--text-muted: #999;--border: #E8E8E8;--border-light: #F0F0F0;--success: #34C759;--danger: #FF3B30;--warning: #FFCC00;--radius: 12px;--radius-sm: 8px;--shadow: 0 2px 8px rgba(0,0,0,.06);--shadow-lg: 0 8px 32px rgba(0,0,0,.1);--max-width: 1200px;--header-height: 64px}*{box-sizing:border-box;margin:0;padding:0}body{font-family:Lato,system-ui,-apple-system,sans-serif;background:var(--bg);color:var(--text);line-height:1.5;min-height:100vh}#root{min-height:100vh;display:flex;flex-direction:column}h1,h2,h3,h4,h5,h6,.page-title{font-family:Playfair Display,Georgia,Times New Roman,serif;letter-spacing:-.01em}a{color:var(--orange);text-decoration:none}a:hover{color:var(--orange-hover)}a.btn{text-decoration:none}a.btn:hover{color:inherit}button,.btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;padding:10px 20px;border-radius:var(--radius-sm);font-size:14px;font-weight:500;cursor:pointer;border:none;transition:all .2s;font-family:inherit}.btn-primary{background:var(--orange);color:#fff}.btn-primary:hover{background:var(--orange-hover);color:#fff;transform:translateY(-1px);box-shadow:0 4px 12px #ff6b354d}.btn-outline{background:transparent;color:var(--orange);border:1.5px solid var(--orange)}.btn-outline:hover{background:var(--orange-light);color:var(--orange);transform:translateY(-1px);box-shadow:0 4px 12px #ff6b3526}.btn-danger{background:var(--danger);color:#fff}.btn-danger:hover{opacity:.9}.btn-success{background:var(--success);color:#fff}.btn-sm{padding:6px 12px;font-size:13px}.btn-lg{padding:14px 32px;font-size:16px}.btn:disabled{opacity:.5;cursor:not-allowed}input,textarea,select{width:100%;padding:10px 14px;border:1.5px solid var(--border);border-radius:var(--radius-sm);font-size:14px;font-family:inherit;background:#fff;transition:border-color .2s}input:focus,textarea:focus,select:focus{outline:none;border-color:var(--orange)}textarea{resize:vertical;min-height:100px}label{display:block;font-size:14px;font-weight:500;margin-bottom:4px}.container{max-width:var(--max-width);margin:0 auto;padding:0 20px;width:100%}.page{padding:24px 0;flex:1}.page-title{font-size:28px;font-weight:700;margin-bottom:24px}.card{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;transition:box-shadow .2s}.card:hover{box-shadow:var(--shadow-lg)}.grid{display:grid;gap:20px}.grid-2{grid-template-columns:repeat(2,1fr)}.grid-3{grid-template-columns:repeat(3,1fr)}.grid-4{grid-template-columns:repeat(4,1fr)}.badge{display:inline-block;padding:4px 10px;border-radius:20px;font-size:12px;font-weight:500}.badge-orange{background:var(--orange-light);color:var(--orange)}.badge-green{background:#e8f9ed;color:var(--success)}.badge-red{background:#ffe8e7;color:var(--danger)}.badge-yellow{background:#fff8e0;color:#b8860b}.badge-gray{background:#f0f0f0;color:var(--text-light)}.form-group{margin-bottom:16px}.form-error{color:var(--danger);font-size:13px;margin-top:4px}.form-row{display:flex;gap:16px}.form-row>*{flex:1}.empty-state{text-align:center;padding:60px 20px;color:var(--text-light)}.empty-state p{font-size:16px;margin-bottom:16px}.loading{text-align:center;padding:40px;color:var(--text-muted)}@media(max-width:768px){.grid-2,.grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}.form-row{flex-direction:column;gap:0}.page-title{font-size:22px}}@media(max-width:480px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}}.info-page h3{font-size:18px;font-weight:600;margin:24px 0 8px}.info-page p{margin-bottom:12px;color:var(--text-light)}.info-content{font-size:15px}.toast-container{position:fixed;bottom:24px;right:24px;z-index:9999;display:flex;flex-direction:column;gap:8px}.toast{display:flex;align-items:center;gap:10px;padding:12px 20px;border-radius:var(--radius-sm);font-size:14px;font-weight:500;color:#fff;box-shadow:0 4px 16px #00000026;animation:toastSlide .3s ease;min-width:200px;max-width:400px}.toast-success{background:var(--success)}.toast-error{background:var(--danger)}.toast-info{background:#333}.toast-icon{width:20px;height:20px;border-radius:50%;background:#fff3;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;flex-shrink:0}@keyframes toastSlide{0%{transform:translate(100px);opacity:0}to{transform:translate(0);opacity:1}}@media(max-width:480px){.toast-container{left:16px;right:16px;bottom:16px}.toast{max-width:100%}}.header{background:#fff;border-bottom:1px solid var(--border-light);height:var(--header-height);position:sticky;top:0;z-index:100}.header-inner{display:flex;align-items:center;height:100%;gap:24px}.logo-link{display:flex;align-items:center;gap:8px;text-decoration:none;color:var(--text);flex-shrink:0}.logo-img{width:36px;height:36px;border-radius:50%;object-fit:cover}.logo-text{font-size:22px;font-weight:700;color:var(--orange);font-family:Playfair Display,serif}.nav-links-desktop{display:flex;gap:20px;flex:1}.nav-links-desktop a{color:var(--text);font-weight:500;font-size:15px;text-decoration:none}.nav-links-desktop a:hover{color:var(--orange)}.header-right{display:flex;align-items:center;gap:12px;margin-left:auto;flex-shrink:0}.auth-buttons{display:flex;gap:8px}.user-menu-wrap{position:relative}.user-btn{display:flex;align-items:center;gap:8px;background:none;border:none;cursor:pointer;padding:4px 8px;border-radius:var(--radius-sm)}.user-btn:hover{background:var(--border-light)}.user-avatar-sm{width:32px;height:32px;border-radius:50%;object-fit:cover}.user-avatar-placeholder{width:32px;height:32px;border-radius:50%;background:var(--orange);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:600;font-size:14px}.user-name-header{font-weight:500;font-size:14px;color:var(--text)}.dropdown-menu{position:absolute;top:100%;right:0;background:#fff;border-radius:var(--radius);box-shadow:var(--shadow-lg);min-width:200px;padding:8px 0;margin-top:4px;z-index:200}.dropdown-item{display:block;width:100%;padding:10px 16px;text-align:left;font-size:14px;color:var(--text);background:none;border:none;cursor:pointer;text-decoration:none;border-radius:0}.dropdown-item:hover{background:var(--border-light)}.dropdown-logout{color:var(--danger)}.header-cart-icon{position:relative;display:flex;align-items:center;justify-content:center;color:var(--text);padding:6px;border-radius:var(--radius-sm);text-decoration:none}.header-cart-icon:hover{color:var(--orange);background:var(--border-light)}.cart-badge{position:absolute;top:-4px;right:-4px;background:var(--orange);color:#fff;font-size:11px;font-weight:700;min-width:18px;height:18px;border-radius:9px;display:flex;align-items:center;justify-content:center;line-height:1;padding:0 4px}.hamburger{display:none;flex-direction:column;gap:5px;padding:8px;background:none;border:none;cursor:pointer}.hamburger-line{width:24px;height:2px;background:var(--text);border-radius:2px}.mobile-overlay{position:fixed;inset:0;background:#0006;z-index:200;cursor:pointer}.mobile-drawer{position:fixed;top:0;right:0;bottom:0;width:300px;max-width:85vw;background:#fff;z-index:201;display:flex;flex-direction:column;box-shadow:-4px 0 24px #0000001f;animation:slideIn .25s ease}.mobile-drawer-header{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-bottom:1px solid var(--border-light);flex-shrink:0}.mobile-drawer-brand{display:flex;align-items:center;gap:10px}.mobile-drawer-logo{width:36px;height:36px;border-radius:50%;object-fit:cover}.mobile-drawer-title{font-size:20px;font-weight:700;color:var(--orange);font-family:Playfair Display,serif}.mobile-drawer-close{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border:none;background:none;cursor:pointer;color:#999;border-radius:50%;transition:background .2s,color .2s}.mobile-drawer-close:hover{background:var(--border-light);color:var(--text)}.mobile-drawer-nav{padding:8px 0;flex:1;overflow-y:auto}.mobile-drawer-item{display:flex;align-items:center;gap:14px;padding:14px 20px;color:var(--text);text-decoration:none;font-size:16px;font-weight:500;transition:background .15s;width:100%;text-align:left;background:none;border:none;cursor:pointer;font-family:inherit}.mobile-drawer-item:hover,.mobile-drawer-item:active{background:#fff5ee;color:var(--orange)}.mobile-drawer-item svg{color:#999;flex-shrink:0}.mobile-drawer-item:hover svg{color:var(--orange)}.mobile-cart-count{background:var(--orange);color:#fff;font-size:12px;font-weight:700;min-width:20px;height:20px;border-radius:10px;display:inline-flex;align-items:center;justify-content:center;padding:0 6px;margin-left:auto}.mobile-drawer-divider{height:1px;background:var(--border-light);margin:4px 20px}.mobile-drawer-auth{padding:8px 0}.mobile-drawer-btn{display:flex;align-items:center;gap:14px;padding:14px 20px;color:var(--text);font-size:16px;font-weight:500;width:100%;text-align:left;background:none;border:none;cursor:pointer;font-family:inherit;transition:background .15s}.mobile-drawer-btn:hover{background:#fff5ee;color:var(--orange)}.mobile-drawer-btn svg{color:#999;flex-shrink:0}.mobile-drawer-logout{color:var(--danger)!important}.mobile-drawer-logout svg{color:var(--danger)!important}.mobile-drawer-cta{display:flex;align-items:center;justify-content:center;gap:10px;margin:8px 20px;padding:12px;background:var(--orange);color:#fff;border-radius:var(--radius);font-size:16px;font-weight:600;text-decoration:none;transition:opacity .2s}.mobile-drawer-cta:hover{opacity:.9;color:#fff}.mobile-drawer-cta svg{color:#fff}.footer{background:#fff;border-top:1px solid var(--border-light);padding:24px 0;margin-top:auto}.footer-inner{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px}.footer-brand{display:flex;align-items:center;gap:8px;color:var(--text-light);font-size:14px}.footer-logo{width:28px;height:28px;border-radius:50%;object-fit:cover}.footer-links{display:flex;gap:20px;font-size:14px;color:var(--text-muted)}.footer-links a{color:var(--text-light);text-decoration:none}@keyframes slideIn{0%{transform:translate(100%)}to{transform:translate(0)}}@media(max-width:1024px){.nav-links-desktop{display:none}.hamburger{display:flex}.user-name-header,.auth-buttons,.user-menu-wrap{display:none}}@media(max-width:768px){.footer-inner{flex-direction:column;text-align:center}}@media(min-width:1025px){.header-cart-icon{display:flex}}.product-card{text-decoration:none;color:var(--text);display:block}.product-card-img-wrap{position:relative;aspect-ratio:1;overflow:hidden;background:var(--border-light)}.product-card-img{width:100%;height:100%;object-fit:cover;transition:transform .3s}.product-card:hover .product-card-img{transform:scale(1.05)}.fav-btn{position:absolute;top:8px;right:8px;width:36px;height:36px;border-radius:50%;background:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 8px #00000026;font-size:16px;transition:transform .2s}.fav-btn:hover{transform:scale(1.1)}.product-card-body{padding:12px}.product-card-title{font-size:14px;font-weight:500;margin-bottom:4px;line-height:1.3;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.product-card-price{font-size:16px;font-weight:700;color:var(--orange);margin-bottom:4px}.product-card-seller{font-size:13px;color:var(--text-light)}.icon-animated{transition:transform .3s cubic-bezier(.34,1.56,.64,1)}.feature:hover .icon-animated{transform:scale(1.15) rotate(-5deg)}.lottie-icon{display:inline-flex;align-items:center;justify-content:center;transition:transform .3s cubic-bezier(.34,1.56,.64,1)}.lottie-icon-bg{display:inline-flex;align-items:center;justify-content:center;border-radius:50%;padding:18px;transition:transform .3s cubic-bezier(.34,1.56,.64,1),box-shadow .3s ease}.lottie-icon-bg.palette-bg{background:linear-gradient(135deg,#fff3e0,#ffe0b2);box-shadow:0 4px 20px #ff6b3526}.lottie-icon-bg.handshake-bg{background:linear-gradient(135deg,#e8f5e9,#c8e6c9);box-shadow:0 4px 20px #4caf5026}.lottie-icon-bg.star-bg{background:linear-gradient(135deg,#e3f2fd,#bbdefb);box-shadow:0 4px 20px #2196f326}.feature:hover .lottie-icon,.feature:hover .lottie-icon-bg{transform:scale(1.1);box-shadow:0 8px 30px #ff6b3540}.icon-dot{animation:float 3s ease-in-out infinite}.icon-dot-1{animation-delay:0s}.icon-dot-2{animation-delay:.5s}.icon-dot-3{animation-delay:1s}.icon-dot-4{animation-delay:1.5s}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-2px)}}.icon-star{animation:shimmer 4s ease-in-out infinite}@keyframes shimmer{0%,to{filter:brightness(1)}50%{filter:brightness(1.2)}}.icon-heart{transition:all .25s cubic-bezier(.34,1.56,.64,1);cursor:pointer}.icon-heart:hover{transform:scale(1.2)}.icon-heart-filled{animation:heartBeat .4s cubic-bezier(.34,1.56,.64,1)}@keyframes heartBeat{0%{transform:scale(1)}30%{transform:scale(1.3)}60%{transform:scale(.9)}to{transform:scale(1)}}.icon-check-path{stroke-dasharray:20;stroke-dashoffset:20;animation:drawCheck .5s ease forwards .2s}@keyframes drawCheck{to{stroke-dashoffset:0}}.icon-package{display:inline-block;vertical-align:-3px;margin-right:6px}.hero{background:linear-gradient(135deg,var(--orange-light) 0%,#FFF8F4 100%);border-radius:var(--radius);padding:60px 40px;margin-bottom:48px}.hero-content{display:flex;align-items:center;gap:48px}.hero-mascot{width:280px;height:280px;border-radius:50%;object-fit:cover;box-shadow:0 8px 40px #ff6b3533}.hero-text{flex:1}.hero-text h1{font-size:42px;font-weight:700;margin-bottom:16px;line-height:1.2}.text-orange{color:var(--orange)}.hero-subtitle{font-size:18px;color:var(--text-light);margin-bottom:32px;line-height:1.6}.hero-buttons{display:flex;gap:12px}.features{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-bottom:48px}.feature{text-align:center;padding:40px 24px 32px;background:#fff;border-radius:16px;box-shadow:0 2px 16px #0000000f;transition:transform .3s ease,box-shadow .3s ease}.feature:hover{transform:translateY(-4px);box-shadow:0 8px 32px #ff6b351f}.feature-icon{display:flex;justify-content:center;margin-bottom:24px;width:110px;height:110px;margin-left:auto;margin-right:auto;background:linear-gradient(135deg,#fff5ee,#ffe8d6);border-radius:50%;align-items:center;box-shadow:0 4px 20px #ff6b351a}.feature h3{font-size:20px;font-weight:600;margin-bottom:10px}.feature p{font-size:15px;color:var(--text-light);line-height:1.5}.featured-section h2{font-size:28px;font-weight:700;margin-bottom:24px}@media(max-width:768px){.hero{padding:32px 20px}.hero-content{flex-direction:column;text-align:center}.hero-mascot{width:180px;height:180px}.hero-text h1{font-size:28px}.hero-buttons{justify-content:center;flex-wrap:wrap}.features{grid-template-columns:1fr}}.catalog-toolbar{display:flex;gap:12px;margin-bottom:24px}.catalog-toolbar .search-box{flex:1}.catalog-toolbar select{width:200px}.catalog-layout{display:flex;gap:24px}.catalog-sidebar{width:220px;flex-shrink:0}.catalog-sidebar h3{font-size:16px;margin-bottom:12px}.category-list{list-style:none}.category-list li{padding:8px 12px;cursor:pointer;border-radius:var(--radius-sm);font-size:14px;display:flex;justify-content:space-between;align-items:center;transition:background .2s}.category-list li:hover{background:var(--border-light)}.category-list li.active{background:var(--orange-light);color:var(--orange);font-weight:500}.cat-count{font-size:12px;color:var(--text-muted)}.catalog-content{flex:1;min-width:0}.catalog-total{font-size:14px;color:var(--text-muted);margin-bottom:16px}.pagination{display:flex;align-items:center;justify-content:center;gap:16px;margin-top:24px;font-size:14px;color:var(--text-light)}@media(max-width:1024px){.catalog-layout{flex-direction:column}.catalog-sidebar{width:100%}.catalog-sidebar h3{margin-bottom:8px}.category-list{display:flex;flex-wrap:wrap;gap:6px}.category-list li{padding:8px 14px;font-size:13px;background:#f5f5f5;border-radius:20px;white-space:nowrap}.category-list li.active{background:var(--orange);color:#fff}.category-list li:hover{background:var(--orange-light)}.cat-count{display:none}.catalog-toolbar{flex-direction:column}.catalog-toolbar select{width:100%}}.product-layout{display:flex;gap:40px}.product-gallery{flex:1}.gallery-main{border-radius:var(--radius);overflow:hidden;background:var(--border-light);aspect-ratio:1}.gallery-main img{width:100%;height:100%;object-fit:contain}.gallery-thumbs{display:flex;gap:8px;margin-top:12px}.gallery-thumbs img{width:64px;height:64px;object-fit:cover;border-radius:var(--radius-sm);cursor:pointer;border:2px solid transparent}.gallery-thumbs img.thumb-active{border-color:var(--orange)}.product-info{flex:1}.product-info h1{font-size:28px;margin:8px 0 12px}.product-price{font-size:32px;font-weight:700;color:var(--orange);margin-bottom:20px}.product-actions{display:flex;gap:12px;margin-bottom:24px}.product-description{margin-bottom:24px}.product-description h3{font-size:16px;margin-bottom:8px}.product-description p{color:var(--text-light);line-height:1.7;white-space:pre-line}.product-delivery-note{padding:12px 16px;background:#fff8e0;border-radius:var(--radius-sm);font-size:14px;margin-bottom:24px}.seller-card{display:flex;align-items:center;gap:12px;padding:16px;background:#fff;border:1px solid var(--border);border-radius:var(--radius);text-decoration:none;color:var(--text);transition:border-color .2s}.seller-card:hover{border-color:var(--orange)}.seller-card-avatar{width:48px;height:48px;border-radius:50%;object-fit:cover}.seller-card-avatar-ph{width:48px;height:48px;border-radius:50%;background:var(--orange);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:600;font-size:18px}.seller-card-name{font-weight:600;font-size:15px}.seller-card-subs{font-size:13px;color:var(--text-muted)}.product-demo-notice{display:flex;align-items:center;gap:8px;margin-bottom:24px;padding:10px 14px;background:#fff3e0;border:1px solid #FFB74D;border-radius:var(--radius-sm);color:#e65100;font-size:13px;line-height:1.4}.product-demo-notice svg{flex-shrink:0;color:#f57c00}@media(max-width:768px){.product-layout{flex-direction:column}.product-info h1{font-size:22px}.product-price{font-size:26px}.product-actions{flex-direction:column}}.auth-page{display:flex;justify-content:center;padding-top:60px}.auth-card{padding:40px;max-width:420px;width:100%}.auth-card h2{font-size:24px;margin-bottom:24px;text-align:center}.auth-switch{text-align:center;margin-top:16px;font-size:14px;color:var(--text-light)}.cart-layout{display:flex;gap:24px}.cart-items{flex:1;display:flex;flex-direction:column;gap:12px}.cart-item{display:flex;align-items:center;gap:16px;padding:16px}.cart-item-img{width:80px;height:80px;object-fit:cover;border-radius:var(--radius-sm)}.cart-item-info{flex:1}.cart-item-title{font-weight:500;font-size:15px;color:var(--text)}.cart-item-seller{font-size:13px;color:var(--text-muted)}.cart-item-price{font-weight:600;color:var(--orange);margin-top:4px}.cart-item-qty{display:flex;align-items:center;gap:8px;font-weight:500}.cart-summary{padding:24px;width:300px;height:fit-content;position:sticky;top:80px}.cart-summary h3{margin-bottom:12px}.cart-total-price{font-size:28px;font-weight:700;color:var(--orange)}.cart-total-items{color:var(--text-muted);font-size:14px;margin-top:4px}.cart-note{font-size:13px;color:var(--text-light);margin-top:16px;padding-top:16px;border-top:1px solid var(--border-light)}.cart-demo-notice{display:flex;align-items:center;gap:8px;margin-top:16px;padding:12px 14px;background:#fff3e0;border:1px solid #FFB74D;border-radius:var(--radius-sm);color:#e65100;font-size:13px;line-height:1.4}.cart-demo-notice svg{flex-shrink:0;color:#f57c00}@media(max-width:768px){.cart-layout{flex-direction:column}.cart-summary{width:100%;position:static}.cart-item{flex-wrap:wrap}}.seller-hero{background:linear-gradient(135deg,var(--orange-light),#FFF8F4);border-radius:var(--radius);padding:48px;text-align:center;background-size:cover;background-position:center;position:relative}.seller-hero-overlay{position:relative;z-index:1}.seller-avatar-lg{width:96px;height:96px;border-radius:50%;object-fit:cover;margin:0 auto 16px;display:block;border:3px solid white;box-shadow:var(--shadow)}.seller-avatar-ph{background:var(--orange);color:#fff;display:flex;align-items:center;justify-content:center;font-size:36px;font-weight:600}.seller-hero h1{font-size:28px;margin-bottom:8px}.seller-stats{display:flex;gap:12px;justify-content:center;color:var(--text-light);font-size:14px;margin-bottom:12px}.seller-bio{max-width:500px;margin:0 auto 16px;color:var(--text-light);font-size:15px}.support-page{max-width:700px}.faq-section{margin-bottom:40px}.faq-section h2,.ticket-section h2{font-size:20px;margin-bottom:16px}.faq-list{display:flex;flex-direction:column;gap:4px}.faq-item{background:#fff;border-radius:var(--radius-sm);overflow:hidden}.faq-question{width:100%;display:flex;justify-content:space-between;align-items:center;padding:14px 16px;background:none;border:none;cursor:pointer;font-size:15px;font-weight:500;text-align:left;font-family:inherit;color:var(--text)}.faq-question:hover{background:var(--border-light)}.faq-arrow{font-size:18px;color:var(--orange);font-weight:700}.faq-answer{padding:0 16px 14px;font-size:14px;color:var(--text-light);line-height:1.6}.faq-item.open{background:var(--orange-light)}.admin-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px;flex-wrap:wrap;gap:16px}.admin-nav{display:flex;gap:8px}.admin-nav-link{padding:8px 16px;border-radius:var(--radius-sm);font-size:14px;font-weight:500;color:var(--text-light);background:#fff;text-decoration:none}.admin-nav-link:hover{color:var(--orange)}.admin-nav-link.active{background:var(--orange);color:#fff}.admin-filters{display:flex;gap:8px;margin-bottom:20px;flex-wrap:wrap}.admin-list{display:flex;flex-direction:column;gap:8px}.admin-item{display:flex;align-items:center;gap:16px;padding:16px}.admin-item-img{width:64px;height:64px;object-fit:cover;border-radius:var(--radius-sm)}.admin-item-info{flex:1}.admin-item-actions{display:flex;gap:6px;flex-wrap:wrap}.modal-overlay{position:fixed;inset:0;background:#00000080;display:flex;align-items:center;justify-content:center;z-index:1000}.modal{background:#fff;border-radius:var(--radius);padding:24px;max-width:450px;width:90%}.modal h3{margin-bottom:12px}@media(max-width:768px){.admin-item{flex-wrap:wrap}.admin-item-actions{width:100%}}
