.loader-container{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:3rem 2rem;min-height:200px}.loader-small{padding:1.5rem;min-height:100px}.loader-medium{padding:3rem 2rem;min-height:200px}.loader-large{padding:5rem 3rem;min-height:400px}.loader-spinner{position:relative;width:64px;height:64px}.loader-small .loader-spinner{width:40px;height:40px}.loader-large .loader-spinner{width:80px;height:80px}.spinner-ring{position:absolute;width:100%;height:100%;border:4px solid transparent;border-top-color:var(--primary-color, #3498db);border-radius:50%;animation:spin 1.2s cubic-bezier(.5,0,.5,1) infinite}.spinner-ring:nth-child(1){animation-delay:-.45s;border-top-color:var(--primary-color, #3498db)}.spinner-ring:nth-child(2){animation-delay:-.3s;border-top-color:var(--secondary-color, #2980b9);width:80%;height:80%;top:10%;left:10%}.spinner-ring:nth-child(3){animation-delay:-.15s;border-top-color:var(--primary-color, #3498db);width:60%;height:60%;top:20%;left:20%}.spinner-ring:nth-child(4){animation-delay:0s;border-top-color:var(--secondary-color, #2980b9);width:40%;height:40%;top:30%;left:30%}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.loader-text{margin-top:1.5rem;color:#7f8c8d;font-size:1rem;font-weight:500;animation:pulse 2s ease-in-out infinite}.loader-small .loader-text{font-size:.875rem;margin-top:1rem}.loader-large .loader-text{font-size:1.125rem;margin-top:2rem}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}.loader-dots{display:flex;gap:.5rem;align-items:center;justify-content:center}.loader-dot{width:12px;height:12px;border-radius:50%;background:linear-gradient(135deg,var(--primary-color, #3498db) 0%,var(--secondary-color, #2980b9) 100%);animation:bounce 1.4s ease-in-out infinite both}.loader-dot:nth-child(1){animation-delay:-.32s}.loader-dot:nth-child(2){animation-delay:-.16s}.loader-dot:nth-child(3){animation-delay:0s}@keyframes bounce{0%,80%,to{transform:scale(0);opacity:.5}40%{transform:scale(1);opacity:1}}.toast-container{position:fixed;top:100px;right:20px;z-index:1000;display:flex;flex-direction:column;gap:.75rem;max-width:400px}.toast{display:flex;align-items:center;gap:.75rem;padding:1rem 1.25rem;background:#fff;border-radius:12px;box-shadow:0 4px 20px #00000026;cursor:pointer;animation:slideIn .3s ease-out;min-width:300px;transition:transform .2s,opacity .2s}.dark-theme .toast{background:var(--card-background, #2c3e50);box-shadow:0 4px 20px #0006;border:1px solid var(--card-border, rgba(255, 255, 255, .1))}.toast:hover{transform:translate(-5px)}@keyframes slideIn{0%{transform:translate(100%);opacity:0}to{transform:translate(0);opacity:1}}.toast-icon{width:24px;height:24px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.875rem;flex-shrink:0}.toast-success .toast-icon{background-color:#27ae60;color:#fff}.toast-error .toast-icon{background-color:var(--accent-color, #e74c3c);color:#fff}.toast-info .toast-icon{background-color:var(--primary-color, #3498db);color:#fff}.toast-message{flex:1;font-size:.95rem;color:var(--text-color, #2c3e50);line-height:1.4}.dark-theme .toast-message{color:var(--text-color, #e0e0e0)}.toast-close{background:none;border:none;font-size:1.5rem;color:#7f8c8d;cursor:pointer;padding:0;width:24px;height:24px;display:flex;align-items:center;justify-content:center;transition:color .2s;flex-shrink:0}.toast-close:hover{color:var(--text-color, #2c3e50)}.dark-theme .toast-close{color:#bdc3c7}.dark-theme .toast-close:hover{color:#e0e0e0}.toast-success{border-left:4px solid #27ae60}.toast-error{border-left:4px solid var(--accent-color, #e74c3c)}.toast-info{border-left:4px solid var(--primary-color, #3498db)}@media (max-width: 768px){.toast-container{right:10px;left:10px;max-width:none}.toast{min-width:auto}}.modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background-color:#0009;display:flex;align-items:center;justify-content:center;z-index:10000;padding:1rem;animation:fadeIn .2s ease}.modal-content{background:var(--background-color, white);color:var(--text-color, #2c3e50);border-radius:12px;box-shadow:0 8px 32px #0003;width:100%;max-width:500px;max-height:90vh;overflow-y:auto;animation:slideUp .3s ease}.modal-content-large{max-width:600px}@keyframes slideUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.modal-header{display:flex;justify-content:space-between;align-items:center;padding:1.5rem;border-bottom:1px solid var(--border-color, #e0e0e0)}.modal-header h2{margin:0;font-size:1.5rem;color:var(--text-color, #2c3e50);font-weight:600}.modal-close{background:none;border:none;font-size:2rem;color:var(--text-secondary, #999);cursor:pointer;padding:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:all .2s;line-height:1}.modal-close:hover{background-color:var(--hover-background, #f5f5f5);color:var(--text-color, #333)}.modal-form{padding:1.5rem}.form-group{margin-bottom:1.25rem}.form-group label{display:block;margin-bottom:.5rem;font-weight:500;color:var(--text-color, #333);font-size:.95rem}.form-group input,.form-group textarea,.form-group select{width:100%;padding:.75rem;background:var(--input-background, white);color:var(--text-color, #2c3e50);border:1px solid var(--input-border, #ddd);border-radius:8px;font-size:1rem;font-family:inherit;transition:border-color .2s,box-shadow .2s}.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:var(--primary-color, #3498db);box-shadow:0 0 0 3px #3498db1a}.form-group textarea{resize:vertical;min-height:100px}.form-hint{display:block;margin-top:.25rem;font-size:.85rem;color:var(--text-secondary, #666)}.filters-selector{margin-top:.5rem}.filters-checkbox-list{display:flex;flex-direction:column;gap:.5rem;max-height:200px;overflow-y:auto;padding:.5rem;border:1px solid #e5e7eb;border-radius:6px;background-color:#f9fafb}.filter-checkbox-item{display:flex;align-items:center;gap:.5rem;padding:.5rem;cursor:pointer;border-radius:4px;transition:background-color .2s}.filter-checkbox-item:hover{background-color:#f3f4f6}.filter-checkbox-item input[type=checkbox]{cursor:pointer;width:18px;height:18px}.filter-checkbox-item span{font-size:.9rem;color:#374151}.filter-hint{font-size:.75rem;color:var(--text-secondary, #999);margin-left:.25rem}.dark-theme .filters-checkbox-list{background-color:var(--input-background, #3d3d3d);border-color:var(--input-border, #555)}.dark-theme .filter-checkbox-item{color:var(--text-color, #e0e0e0)}.dark-theme .filter-checkbox-item:hover{background-color:var(--hover-background, #353535)}.dark-theme .filter-checkbox-item span{color:var(--text-color, #e0e0e0)}.dark-theme .filter-hint{color:var(--text-secondary, #bdc3c7)}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}.loading-text{padding:.75rem;color:#666;font-size:.9rem;text-align:center}.error-message{background-color:#fee;color:#c33;padding:.75rem;border-radius:8px;margin-bottom:1rem;font-size:.9rem}.modal-actions{display:flex;gap:1rem;justify-content:flex-end;margin-top:1.5rem;padding-top:1.5rem;border-top:1px solid var(--border-color, #e0e0e0)}.btn-cancel{background-color:var(--hover-background, #f5f5f5);color:var(--text-color, #333)}.btn-cancel:hover:not(:disabled){background-color:var(--card-background, #e0e0e0)}.btn-submit:hover:not(:disabled){background:linear-gradient(135deg,var(--secondary-color, #2980b9) 0%,#1f5f8b 100%);transform:translateY(-1px);box-shadow:0 4px 12px #3498db66}@media (max-width: 768px){.modal-content{max-width:100%;margin:1rem}.form-row{grid-template-columns:1fr}.modal-actions{flex-direction:column-reverse}.btn-cancel,.btn-submit{width:100%}}.order-success-content{text-align:center}.order-success-icon{width:80px;height:80px;border-radius:50%;background:linear-gradient(135deg,#27ae60,#229954);color:#fff;font-size:3rem;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;box-shadow:0 4px 12px #27ae604d;animation:scaleIn .3s ease}@keyframes scaleIn{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}.order-success-message{font-size:1.25rem;color:var(--text-color, #2c3e50);font-weight:600;margin-bottom:2rem}.order-success-details{background:var(--card-background, #f8f9fa);border:1px solid var(--card-border, transparent);border-radius:8px;padding:1.5rem;margin-bottom:1.5rem;text-align:left}.order-detail-row{display:flex;justify-content:space-between;align-items:center;padding:.75rem 0;border-bottom:1px solid var(--border-color, #e0e0e0)}.order-detail-row:last-child{border-bottom:none}.order-detail-label{color:var(--text-secondary, #7f8c8d);font-weight:500}.order-detail-value{color:var(--text-color, #2c3e50);font-weight:600}.order-detail-total{color:#27ae60;font-size:1.1rem}.order-success-info{background:var(--card-background, #e8f4f8);border-left:4px solid var(--primary-color, #3498db);border-radius:6px;padding:1rem;margin-bottom:1.5rem;text-align:left}.order-success-info p{margin:.5rem 0;color:var(--text-color, #2c3e50);font-size:.95rem;line-height:1.5}.order-success-info p:first-child{margin-top:0}.order-success-info p:last-child{margin-bottom:0}.modal-actions-center{justify-content:center}.modal-actions-center .btn-submit{min-width:150px}.specifications-section{display:flex;flex-direction:column;gap:1rem;padding:1rem;background:var(--card-background, #f9fafb);border:1px solid var(--border-color, #e5e7eb);border-radius:8px;margin-top:.5rem}.specification-field{display:flex;flex-direction:column;gap:.5rem}.specification-field label{font-weight:500;color:var(--text-color, #374151);font-size:.9rem}.specification-input,.specification-select{width:100%;padding:.75rem;border:1px solid var(--input-border, #ddd);border-radius:6px;font-size:.9rem;font-family:inherit;background-color:var(--input-background, white);color:var(--text-color, #2c3e50);transition:border-color .2s,box-shadow .2s}.specification-input:focus,.specification-select:focus{outline:none;border-color:var(--primary-color, #3498db);box-shadow:0 0 0 3px #3498db1a}.specification-range{display:flex;align-items:center;gap:.5rem}.specification-range input{flex:1}.specification-range span{color:var(--text-secondary, #7f8c8d);font-weight:500}.dark-theme .specifications-section{background-color:var(--input-background, #3d3d3d);border-color:var(--input-border, #555)}.dark-theme .specification-field label{color:var(--text-color, #e0e0e0)}.dark-theme .specification-input,.dark-theme .specification-select{background-color:var(--input-background, #3d3d3d);color:var(--text-color, #e0e0e0);border-color:var(--input-border, #555)}.dark-theme .specification-input:focus,.dark-theme .specification-select:focus{border-color:var(--primary-color, #4a9eff);box-shadow:0 0 0 3px #4a9eff33}.dark-theme .specification-range span{color:var(--text-secondary, #bdc3c7)}.notification-center{position:relative}.notification-bell{position:relative;background:none;border:none;cursor:pointer;padding:.5rem;transition:all .2s;display:flex;align-items:center;justify-content:center;color:var(--text-color, #2c3e50);border-radius:50%;width:40px;height:40px}.notification-bell:hover{background:var(--hover-background, rgba(0, 0, 0, .05));transform:scale(1.05)}.notification-bell svg{width:24px;height:24px}.notification-badge{position:absolute;top:0;right:0;background:var(--accent-color, #e74c3c);color:#fff;border-radius:50%;width:20px;height:20px;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700}.notification-dropdown{position:absolute;top:100%;right:0;margin-top:.5rem;background:var(--card-background, white);border-radius:8px;box-shadow:0 4px 20px #00000026;width:400px;max-height:500px;display:flex;flex-direction:column;z-index:1000;border:1px solid var(--card-border, rgba(0, 0, 0, .1))}.dark-theme .notification-dropdown{box-shadow:0 4px 20px #0006}.notification-header{padding:1rem;border-bottom:1px solid var(--border-color, rgba(0, 0, 0, .1));display:flex;justify-content:space-between;align-items:center}.notification-header h3{margin:0;font-size:1.25rem;color:var(--text-color, #2c3e50)}.mark-all-read{background:none;border:none;color:var(--primary-color, #3498db);cursor:pointer;font-size:.875rem;padding:.25rem .5rem;border-radius:4px;transition:background .2s}.mark-all-read:hover{background:var(--hover-background, rgba(52, 152, 219, .1))}.notification-list{overflow-y:auto;max-height:400px}.notification-item{padding:1rem;border-bottom:1px solid var(--border-color, rgba(0, 0, 0, .05));display:flex;justify-content:space-between;align-items:flex-start;cursor:pointer;transition:background .2s}.notification-item:hover{background:var(--hover-background, rgba(0, 0, 0, .02))}.notification-item.unread{background:var(--hover-background, rgba(52, 152, 219, .05));font-weight:500}.notification-item.info{border-left:4px solid var(--primary-color, #3498db)}.notification-item.success{border-left:4px solid #27ae60}.notification-item.warning{border-left:4px solid #f39c12}.notification-item.error{border-left:4px solid var(--accent-color, #e74c3c)}.notification-content{flex:1}.notification-title{font-weight:600;color:var(--text-color, #2c3e50);margin-bottom:.25rem}.notification-message{color:var(--text-secondary, #7f8c8d);font-size:.9rem;margin-bottom:.5rem}.notification-time{font-size:.75rem;color:var(--text-secondary, #95a5a6)}.delete-notification{background:none;border:none;color:var(--text-secondary, #95a5a6);cursor:pointer;font-size:1.5rem;padding:0;width:24px;height:24px;display:flex;align-items:center;justify-content:center;border-radius:4px;transition:all .2s;flex-shrink:0}.delete-notification:hover{background:var(--accent-color, #e74c3c);color:#fff}.loading,.empty{padding:2rem;text-align:center;color:var(--text-secondary, #7f8c8d)}@media (max-width: 768px){.notification-center{position:relative}.notification-bell{width:36px;height:36px;padding:.4rem}.notification-bell svg{width:20px;height:20px}.notification-badge{width:18px;height:18px;font-size:.7rem;top:-2px;right:-2px}.notification-dropdown{width:calc(100vw - 2rem);max-width:350px;right:0;left:auto;margin-top:.5rem;max-height:70vh}.notification-item{padding:.75rem}.notification-title{font-size:.95rem}.notification-message{font-size:.85rem}}.footer{background:var(--footer-background, #f5f5f5);color:var(--footer-text, #2c3e50);padding:3rem 0 1.5rem;margin-top:4rem;border-top:1px solid var(--footer-border, #e0e0e0)}.footer-content{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2.5rem;margin-bottom:2rem;align-items:start}.footer-section{display:flex;flex-direction:column;min-height:100%}.footer-section h3{margin:0 0 1.5rem;color:var(--footer-text, #2c3e50);font-size:1.15rem;font-weight:600;letter-spacing:.3px;line-height:1.4;padding-bottom:.5rem;border-bottom:2px solid var(--footer-border, rgba(0, 0, 0, .1))}.footer-links{display:flex;flex-direction:column;gap:.65rem}.footer-link{color:var(--footer-text, #2c3e50);text-decoration:none;transition:color .2s,transform .2s;font-size:.9rem;line-height:1.6;padding:.2rem 0;display:inline-block}.footer-link:hover{color:var(--primary-color, #3498db);transform:translate(3px)}.footer-link-button{background:none;border:none;padding:.2rem 0;text-align:left;cursor:pointer;font-family:inherit;font-size:.9rem;color:var(--footer-text, #2c3e50);transition:color .2s,transform .2s;line-height:1.6;display:inline-block}.footer-link-button:hover{color:var(--primary-color, #3498db);transform:translate(3px)}.footer-contacts{display:flex;flex-direction:column;gap:.9rem}.footer-contact-item{display:flex;flex-direction:row;align-items:flex-start;gap:.75rem;font-size:.9rem;line-height:1.6;flex-wrap:wrap;padding:.25rem 0}.footer-contact-label{font-weight:600;color:var(--footer-text, #2c3e50);min-width:110px;flex-shrink:0;margin:0;padding:0;opacity:.85}.footer-contact-value{color:var(--footer-text, #2c3e50);text-decoration:none;transition:color .2s;flex:1;word-break:break-word;margin:0;padding:0}.footer-contact-value:hover{color:var(--primary-color, #3498db)}.footer-copyright{text-align:center;padding-top:2rem;border-top:1px solid var(--footer-border, #e0e0e0);color:var(--footer-text, #2c3e50);font-size:.9rem;line-height:1.6;margin:0}@media (max-width: 768px){.footer-content{grid-template-columns:1fr;gap:2rem}.footer-section h3{margin-bottom:1rem}.footer-contact-item{flex-direction:column;gap:.25rem}.footer-contact-label{min-width:auto}}.layout{min-height:100vh;display:flex;flex-direction:column}.container{max-width:1200px;margin:0 auto;padding:0 20px;width:100%}.header{background-color:var(--header-background, #ffffff);color:var(--header-text, #333);padding:1rem 0;box-shadow:0 2px 8px #00000014;border-bottom:1px solid var(--header-border, #e0e0e0);position:sticky;top:0;z-index:100}.header .container{display:flex;justify-content:space-between;align-items:center;gap:1rem;position:relative}.mobile-menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:.5rem;color:var(--header-text, #333);transition:color .2s;width:40px;height:40px;justify-content:center;align-items:center}.mobile-menu-toggle:hover{color:#3498db}.hamburger-icon{display:flex;flex-direction:column;justify-content:space-around;width:24px;height:18px;position:relative}.hamburger-icon span{display:block;height:2px;width:100%;background-color:currentColor;border-radius:2px;transition:all .3s ease;transform-origin:center}.hamburger-icon.open span:nth-child(1){transform:rotate(45deg) translate(6px,6px)}.hamburger-icon.open span:nth-child(2){opacity:0;transform:translate(-10px)}.hamburger-icon.open span:nth-child(3){transform:rotate(-45deg) translate(6px,-6px)}.logo{text-decoration:none;color:var(--header-text, #333);transition:opacity .2s;display:flex;align-items:center}.logo:hover{opacity:.8}.logo-image{max-height:40px;width:auto;object-fit:contain}.logo-text{font-size:1.75rem;font-weight:700;letter-spacing:-.5px;background:linear-gradient(135deg,var(--primary-color, #3498db) 0%,var(--secondary-color, #2980b9) 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.nav{display:flex;gap:1rem;align-items:center;transition:max-height .3s ease,opacity .3s ease}.nav-link-icon{display:flex;align-items:center;gap:.5rem}.nav-link-icon svg{width:20px;height:20px}.nav-link-text{display:inline}.theme-toggle{background:none;border:none;cursor:pointer;padding:.5rem;display:flex;align-items:center;color:var(--text-color, #333);transition:color .2s}.theme-toggle:hover{color:var(--primary-color, #3498db)}@media (max-width: 768px){.nav-link-text{display:none}}.mobile-menu-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background-color:#00000080;z-index:998;animation:fadeIn .3s ease forwards}.mobile-nav{position:fixed;top:0;right:-100%;width:280px;max-width:85vw;height:100vh;background:var(--card-background, white);box-shadow:-2px 0 10px #0000001a;z-index:999;transition:right .3s ease;overflow-y:auto}.mobile-nav.mobile-nav-open{right:0}.mobile-nav-content{padding:4rem 1.5rem 1.5rem;display:flex;flex-direction:column;gap:.5rem}.mobile-nav-link{display:flex;align-items:center;gap:.75rem;padding:1rem;color:var(--text-color, #333);text-decoration:none;border-radius:8px;font-weight:500;transition:background-color .2s}.mobile-nav-link:hover{background-color:var(--hover-background, #f5f5f5);color:var(--primary-color, #3498db)}.mobile-nav-button{background:none;border:none;cursor:pointer;font-family:inherit;font-size:inherit;text-align:left;width:100%}.mobile-nav-button svg{flex-shrink:0;width:20px;height:20px}.mobile-nav-button-primary svg{display:none}.mobile-nav-button-primary{background:linear-gradient(135deg,var(--primary-color, #3498db) 0%,var(--secondary-color, #2980b9) 100%);color:#fff;justify-content:center}.mobile-nav-button-primary:hover{background:linear-gradient(135deg,var(--secondary-color, #2980b9) 0%,#1f5f8b 100%);color:#fff}.mobile-nav-button-logout{color:var(--accent-color, #e74c3c)}.mobile-nav-button-logout:hover{background-color:#fee;color:var(--accent-color, #e74c3c)}.mobile-profile-section{margin-top:1rem;padding-top:1rem;border-top:1px solid var(--border-color, #e0e0e0)}.mobile-profile-info{display:flex;align-items:center;gap:1rem;padding:1rem;margin-bottom:.5rem}.mobile-profile-username{font-weight:600;color:var(--text-color, #333);font-size:1rem}.mobile-auth-section{margin-top:1rem;padding-top:1rem;border-top:1px solid var(--border-color, #e0e0e0);display:flex;flex-direction:column;gap:.5rem}.mobile-header-actions{display:none;align-items:center;gap:.5rem}.mobile-notification-wrapper{display:flex;align-items:center}@media (max-width: 768px){.mobile-header-actions{display:flex;order:1}.mobile-menu-toggle{display:flex;order:2}.nav{display:none}.logo-text{font-size:1.5rem}}.nav-link{color:var(--header-text, var(--text-color, #333));text-decoration:none;padding:.5rem 1.25rem;border-radius:8px;font-weight:500;transition:all .2s;position:relative}.nav-link:hover{background-color:var(--hover-background, rgba(0, 0, 0, .05));color:var(--primary-color, #3498db)}.nav-link.active{color:var(--primary-color, #3498db);background-color:var(--hover-background, rgba(52, 152, 219, .1))}.nav-link.cart-link{display:flex;align-items:center;justify-content:center;padding:.5rem;min-width:40px}.nav-link.cart-link svg{width:20px;height:20px}.profile-menu-wrapper{position:relative}.profile-button{background:none;border:none;cursor:pointer;padding:.5rem;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:background-color .2s}.profile-button:hover{background-color:var(--hover-background, #f5f5f5)}.profile-dropdown{position:absolute;top:calc(100% + .5rem);right:0;background:var(--card-background, white);border-radius:12px;box-shadow:0 4px 20px #00000026;min-width:220px;overflow:hidden;animation:slideDown .2s ease-out}.profile-info{padding:1rem 1.25rem;border-bottom:1px solid var(--border-color, #f0f0f0);display:flex;align-items:center;gap:.5rem;flex-wrap:wrap}.profile-username{font-weight:600;color:var(--text-color, #333);font-size:.95rem}.admin-badge{background:linear-gradient(135deg,var(--accent-color, #e74c3c) 0%,#c0392b 100%);color:#fff;padding:.25rem .6rem;border-radius:12px;font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:.5px}.dropdown-item{width:100%;display:flex;align-items:center;gap:.75rem;padding:.875rem 1.25rem;background:none;border:none;text-align:left;cursor:pointer;color:var(--text-color, #333);font-size:.95rem;transition:background-color .2s;font-family:inherit}.dropdown-item:hover{background-color:var(--hover-background, #f5f5f5)}.dropdown-item svg{color:var(--primary-color, #3498db);flex-shrink:0}.dropdown-item:last-child{color:var(--accent-color, #e74c3c)}.dropdown-item:last-child svg{color:var(--accent-color, #e74c3c)}.dropdown-divider{height:1px;background-color:var(--border-color, #e0e0e0);margin:.5rem 0}.auth-links{display:flex;gap:.75rem;align-items:center}.btn-register{background:linear-gradient(135deg,var(--primary-color, #3498db) 0%,var(--secondary-color, #2980b9) 100%);color:#fff;padding:.5rem 1.25rem;border-radius:8px;text-decoration:none;font-weight:500;transition:transform .2s,box-shadow .2s}.btn-register:hover{transform:translateY(-1px);box-shadow:0 4px 12px #3498db66}.main{flex:1;padding:2rem 0}@media (max-width: 768px){.footer{padding:1.5rem 0}.footer-links{flex-direction:column;gap:1rem}.footer-link{font-size:.95rem}.footer-copyright{font-size:.85rem;padding-top:.75rem}}.loading{text-align:center;padding:2rem;font-size:1.2rem}@media (max-width: 768px){.logo-text{font-size:1.5rem}}.home{width:100%}.hero{padding:4rem 2rem;background:linear-gradient(135deg,var(--hero-gradient-start, #3498db) 0%,var(--hero-gradient-end, #2980b9) 100%);border-radius:16px;color:#fff;margin-bottom:4rem;text-align:center;position:relative;overflow:hidden}.hero:before{content:"";position:absolute;top:-50%;right:-50%;width:200%;height:200%;background:radial-gradient(circle,rgba(255,255,255,.1) 0%,transparent 70%);animation:pulse 20s ease-in-out infinite}@keyframes pulse{0%,to{transform:scale(1);opacity:.5}50%{transform:scale(1.1);opacity:.3}}.hero h1{font-size:3.5rem;margin-bottom:1rem;position:relative;z-index:1;font-weight:700}.hero p{font-size:1.25rem;margin-bottom:2.5rem;opacity:.95;position:relative;z-index:1}.btn-search{display:inline-block;padding:1rem 2.5rem;background-color:#fff;color:var(--primary-color, #3498db);border-radius:12px;text-decoration:none;font-weight:600;font-size:1.1rem;transition:all .3s;position:relative;z-index:1;box-shadow:0 4px 20px #0003}.btn-search:hover{transform:translateY(-3px);box-shadow:0 6px 30px #0000004d;background-color:#f8f9fa}.info-blocks{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;margin-bottom:4rem}.info-blocks-group{width:100%!important;transition:all .3s ease;display:grid!important;gap:2rem;margin-bottom:2rem;box-sizing:border-box!important;grid-auto-flow:row;align-items:stretch;justify-items:stretch}.info-blocks-group .info-block{min-width:0!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important;grid-column:auto!important;grid-row:auto!important}.info-block{background:var(--card-background, white);border-radius:16px;padding:2rem;text-align:center;box-shadow:0 2px 12px #00000014;transition:all .3s;color:var(--text-color, #2c3e50)}.info-block h3{color:var(--text-color, #2c3e50)}.info-block p{color:var(--text-secondary, #7f8c8d);opacity:.8}.info-image{margin-bottom:1rem}.info-image img{max-width:100%;max-height:200px;border-radius:8px;object-fit:cover}.info-block:hover{transform:translateY(-5px);box-shadow:0 8px 24px #0000001f}.info-icon{font-size:3rem;margin-bottom:1rem;display:block}.features-section{margin-top:4rem;padding:3rem 2rem;background:var(--card-background, white);border-radius:16px;box-shadow:0 2px 12px #00000014;color:var(--text-color, #2c3e50)}.features-section h2{text-align:center;font-size:2.5rem;margin-bottom:3rem;color:var(--text-color, #2c3e50);font-weight:700}.features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem}.feature-card{padding:2rem;background:var(--card-background, linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%));border-radius:12px;border:1px solid var(--border-color, #e9ecef);transition:all .3s;color:var(--text-color, #2c3e50)}.feature-card:hover{border-color:var(--primary-color, #3498db);box-shadow:0 4px 16px #3498db26}.feature-card h3{font-size:1.5rem;margin-bottom:1rem;color:var(--text-color, #2c3e50);font-weight:600}.feature-card p{color:var(--text-secondary, #7f8c8d);line-height:1.7;font-size:1rem}@media (max-width: 768px){.hero{padding:3rem 1.5rem}.hero h1{font-size:2.5rem}.hero p{font-size:1.1rem}.btn-search{padding:.875rem 2rem;font-size:1rem}.info-blocks{grid-template-columns:1fr;gap:1.5rem}@media (max-width: 767px){.info-blocks-group{grid-template-columns:1fr!important;gap:1.5rem!important}}.info-blocks-group .info-block{width:100%!important;max-width:100%!important;min-width:0!important}.features-section{padding:2rem 1.5rem}.features-section h2{font-size:2rem;margin-bottom:2rem}.features-grid{grid-template-columns:1fr;gap:1.5rem}}.sale-products-section{margin:4rem 0;padding:3rem 2rem;background:var(--card-background, white);border-radius:16px;box-shadow:0 2px 12px #00000014}.section-title{text-align:center;font-size:2.5rem;margin-bottom:2rem;color:var(--text-color, #2c3e50);font-weight:700}.sale-products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:1.5rem;margin-bottom:2rem}.sale-product-card{background:var(--card-background, white);border-radius:12px;overflow:hidden;box-shadow:0 2px 8px #0000001a;transition:transform .2s,box-shadow .2s;cursor:pointer;position:relative;border:2px solid var(--accent-color, #e74c3c);color:var(--text-color, #2c3e50)}.sale-product-card:hover{transform:translateY(-4px);box-shadow:0 4px 16px #00000026}.sale-product-image{width:100%;height:200px;object-fit:cover}.sale-product-info{padding:1.5rem}.sale-product-info h3{margin-bottom:1rem;color:var(--text-color, #2c3e50)}.sale-product-price{display:flex;align-items:baseline;gap:.5rem}.sale-product-price .sale-price{font-size:1.5rem;font-weight:700;color:var(--accent-color, #e74c3c)}.sale-product-price .old-price{font-size:1rem;color:var(--text-secondary, #7f8c8d);text-decoration:line-through}.view-all-link{display:block;text-align:center;color:var(--primary-color, #3498db);text-decoration:none;font-weight:600;font-size:1.1rem;transition:color .2s}.view-all-link:hover{color:var(--secondary-color, #2980b9)}.home-section{margin:4rem 0;padding:3rem 2rem;background:var(--card-background, white);border-radius:16px;box-shadow:0 2px 12px #00000014}.section-content{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}.section-text h2{font-size:2.5rem;margin-bottom:1.5rem;color:var(--text-color, #2c3e50);font-weight:700}.section-text p{font-size:1.1rem;line-height:1.8;color:var(--text-secondary, #7f8c8d);margin-bottom:1.5rem}.section-image{width:100%}.section-image img{width:100%;height:auto;border-radius:12px;object-fit:cover}.section-link{display:inline-block;color:var(--primary-color, #3498db);text-decoration:none;font-weight:600;font-size:1.1rem;transition:color .2s}.section-link:hover{color:var(--secondary-color, #2980b9)}.contacts-info{display:flex;flex-direction:column;gap:1rem;margin-top:1.5rem}.contact-item{font-size:1rem;color:var(--text-color, #2c3e50)}.contact-item strong{margin-right:.5rem}.contact-item a{color:var(--primary-color, #3498db);text-decoration:none;transition:color .2s}.contact-item a:hover{color:var(--secondary-color, #2980b9)}@media (max-width: 768px){.sale-products-section,.home-section{padding:2rem 1.5rem}.section-title,.section-text h2{font-size:2rem}.sale-products-grid{grid-template-columns:1fr}.section-content{grid-template-columns:1fr;gap:2rem}.section-image{order:-1}}.copyable-id{display:flex;align-items:center;gap:.5rem;padding:.5rem;background-color:#f8f9fa;border-radius:6px;font-size:.85rem;margin-top:.5rem}.copyable-id-label{color:#666;font-weight:500}.copyable-id-value{flex:1;color:#333;font-family:Courier New,monospace;font-size:.8rem;word-break:break-all;-webkit-user-select:all;user-select:all}.copyable-id-button{background:none;border:none;cursor:pointer;padding:.25rem;color:var(--primary-color, #3498db);display:flex;align-items:center;justify-content:center;border-radius:4px;transition:all .2s;flex-shrink:0}.copyable-id-button:hover{background-color:#e8f4f8;color:var(--secondary-color, #2980b9)}.copyable-id-button:active{transform:scale(.95)}.copyable-id-button svg{width:16px;height:16px}.category-tree{background:var(--card-background, white);border-radius:12px;padding:1.5rem;box-shadow:0 2px 8px #00000014;height:fit-content;position:sticky;top:100px;color:var(--text-color, #2c3e50)}.tree-title-wrapper{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem;padding-bottom:.75rem;border-bottom:2px solid #f0f0f0}.tree-title{font-size:1.25rem;font-weight:600;margin:0;color:var(--text-color, #2c3e50)}.tree-content{max-height:calc(100vh - 200px);overflow-y:auto}.tree-content::-webkit-scrollbar{width:6px}.tree-content::-webkit-scrollbar-track{background:#f1f1f1;border-radius:3px}.tree-content::-webkit-scrollbar-thumb{background:var(--primary-color, #3498db);border-radius:3px}.tree-content::-webkit-scrollbar-thumb:hover{background:var(--secondary-color, #2980b9)}.category-tree-item{margin-bottom:.25rem}.category-tree-node{display:flex;align-items:center;padding:.75rem .5rem;border-radius:8px;cursor:pointer;transition:all .2s;gap:.5rem}.category-tree-node:hover{background-color:var(--hover-background, #f5f5f5)}.category-tree-node.selected{background:linear-gradient(135deg,var(--primary-color, #3498db) 0%,var(--secondary-color, #2980b9) 100%);color:#fff;font-weight:500}.tree-toggle{font-size:.75rem;color:var(--primary-color, #3498db);width:1rem;display:inline-flex;align-items:center;justify-content:center;transition:transform .3s ease;transform-origin:center}.category-tree-node.selected .tree-toggle{color:#fff}.category-tree-node:hover .tree-toggle{transform:scale(1.2)}.tree-spacer{width:1rem;display:inline-block}.category-tree-name{flex:1;font-size:.95rem;color:var(--text-color, #333);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-width:0}.category-tree-node.selected .category-tree-name{color:#fff}.category-tree-children{margin-top:.25rem;overflow:hidden;transition:max-height .3s ease,opacity .3s ease;max-height:0;opacity:0}.category-tree-children.expanded{max-height:2000px;opacity:1}.category-tree-children.collapsed{max-height:0;opacity:0}.category-tree-children-inner{padding-left:.5rem;animation:slideDown .3s ease}@keyframes slideDown{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.category-tree-item{margin-bottom:.25rem;animation:fadeIn .2s ease}.category-tree-id{margin-top:.25rem;margin-bottom:.5rem;padding-left:.5rem}.category-tree-actions{position:relative;margin-left:auto;display:flex;align-items:center;gap:.15rem;opacity:0;transition:opacity .2s;flex-shrink:0;z-index:10}.category-tree-node:hover .category-tree-actions,.category-tree-actions:focus-within{opacity:1}.category-action-btn{background:none;border:none;cursor:pointer;padding:.2rem;border-radius:4px;font-size:.85rem;transition:all .2s;display:flex;align-items:center;justify-content:center;min-width:20px;width:20px;height:20px;opacity:.7;flex-shrink:0}.category-action-btn:hover{opacity:1;transform:scale(1.15);background-color:#e8f4f8}.category-action-add{color:var(--primary-color, #3498db);font-weight:600;font-size:1rem;line-height:1}.category-action-edit{color:var(--primary-color, #3498db);font-size:.75rem}.category-action-delete{color:var(--accent-color, #e74c3c);font-size:.75rem}.category-action-delete:hover{background-color:#fee}.category-action-menu{position:absolute;top:calc(100% + .25rem);right:0;background:var(--card-background, white);border-radius:8px;box-shadow:0 4px 12px #00000026;min-width:180px;z-index:10001;overflow:hidden;animation:slideDown .2s ease-out;color:var(--text-color, #333)}.action-menu-item{width:100%;padding:.75rem 1rem;background:none;border:none;text-align:left;cursor:pointer;color:#333;font-size:.9rem;transition:background-color .2s;font-family:inherit}.action-menu-item:hover{background-color:#f5f5f5}.action-menu-item-danger{color:var(--accent-color, #e74c3c)}.action-menu-item-danger:hover{background-color:#fee}.action-menu-divider{height:1px;background-color:#e0e0e0;margin:.25rem 0}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.tree-empty{text-align:center;color:#7f8c8d;padding:2rem 0;font-size:.9rem}@media (max-width: 768px){.category-tree{position:static;margin-bottom:2rem}.tree-content{max-height:300px}}.add-to-cart-form{display:flex;flex-direction:column;gap:1rem;margin-top:1rem}.quantity-input-group{display:flex;align-items:center;gap:.75rem;flex-wrap:wrap}.quantity-input-group label{font-weight:500;color:var(--text-color, #2c3e50)}.quantity-input{width:80px;padding:.5rem;border:1px solid #ddd;border-radius:6px;font-size:1rem;text-align:center}.stock-info{font-size:.875rem;color:#7f8c8d;flex:1;text-align:right}.error-message{background-color:#fee;color:#c33;padding:.75rem;border-radius:6px;font-size:.9rem}.btn-add-to-cart{padding:.75rem 1.5rem;background:linear-gradient(135deg,var(--primary-color, #3498db) 0%,var(--secondary-color, #2980b9) 100%);color:#fff;border:none;border-radius:8px;font-size:1rem;font-weight:600;cursor:pointer;transition:transform .2s,box-shadow .2s}.btn-add-to-cart:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 4px 12px #3498db66}.btn-add-to-cart:disabled{opacity:.6;cursor:not-allowed}.filters-sidebar{position:sticky;top:2rem;align-self:start;width:100%;max-width:300px}.filters-panel{background:var(--card-background, white);border-radius:8px;box-shadow:0 2px 8px #0000001a;overflow:hidden;max-height:calc(100vh - 4rem);display:flex;flex-direction:column}.filters-title{margin:0;padding:1.5rem 1.5rem 1rem;font-size:1.2rem;font-weight:600;color:var(--text-color, #2c3e50);border-bottom:1px solid var(--border-color, #ecf0f1)}.filters-content{padding:1.5rem;display:flex;flex-direction:column;gap:1.5rem;overflow-y:auto;flex:1}.filters-loading{text-align:center;color:var(--text-secondary, #7f8c8d);padding:2rem 0}.filter-label{font-weight:500;color:var(--text-color, #2c3e50);font-size:.9rem}.filter-input,.filter-select{width:100%;padding:.75rem;border:1px solid var(--input-border, #ddd);border-radius:6px;font-size:.9rem;font-family:inherit;background-color:var(--input-background, white);color:var(--text-color, #2c3e50);transition:border-color .2s,box-shadow .2s}.filter-input:focus,.filter-select:focus{outline:none;border-color:var(--primary-color, #3498db);box-shadow:0 0 0 3px #3498db1a}.filter-actions{display:flex;justify-content:flex-end;margin-top:.5rem;padding-top:1rem;border-top:1px solid var(--border-color, #ecf0f1)}.btn-reset{padding:.625rem 1.25rem;background:var(--text-secondary, #95a5a6);color:#fff;border:none;border-radius:6px;cursor:pointer;font-size:.9rem;font-weight:500;transition:all .2s}.btn-reset:hover{background:var(--text-secondary, #7f8c8d);transform:translateY(-1px);box-shadow:0 2px 8px #00000026}.dark-theme .filters-panel{background-color:var(--card-background, #2d2d2d);border-color:var(--card-border, #404040);box-shadow:0 2px 8px #0000004d}.dark-theme .filters-title{color:var(--text-color, #e0e0e0);border-bottom-color:var(--card-border, #404040)}.dark-theme .filter-label{color:var(--text-color, #e0e0e0)}.dark-theme .filter-input,.dark-theme .filter-select{background-color:var(--input-background, #3d3d3d);color:var(--text-color, #e0e0e0);border-color:var(--input-border, #555)}.dark-theme .filter-input:focus,.dark-theme .filter-select:focus{border-color:var(--primary-color, #4a9eff);box-shadow:0 0 0 3px #4a9eff33}@media (max-width: 1024px){.filters-sidebar{position:static;max-width:100%;margin-bottom:2rem}.filters-panel{max-height:none}}@media (max-width: 768px){.filters-sidebar{order:-1}.filters-content{gap:1rem}}.categories-page{width:100%}.categories-layout{display:grid;grid-template-columns:280px 1fr;gap:2rem;align-items:start}.categories-sidebar{position:sticky;top:100px}.categories-content{min-height:400px}.categories-products-layout{display:grid;grid-template-columns:1fr 300px;gap:2rem;align-items:start}.categories-products-main{min-width:0}.products-controls{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;padding:1rem 1.5rem;background:var(--card-background, white);border-radius:8px;box-shadow:0 2px 4px #0000001a;flex-wrap:wrap;gap:1rem;border:1px solid var(--card-border, transparent)}.sort-label{font-weight:500;margin-right:.75rem;color:var(--text-color, #2c3e50);font-size:.95rem}.controls-left{display:flex;gap:1rem;align-items:center}.sort-select{padding:.5rem 1rem;border:1px solid var(--input-border, #ddd);border-radius:4px;font-size:.9rem;cursor:pointer;background:var(--input-background, white);color:var(--text-color, #2c3e50);transition:border-color .2s,background-color .2s}.sort-select:hover{border-color:var(--primary-color, #3498db)}.sort-select:focus{outline:none;border-color:var(--primary-color, #3498db);box-shadow:0 0 0 2px #3498db33}.filters-panel{background:var(--card-background, white);border-radius:8px;box-shadow:0 2px 4px #0000001a;overflow:hidden;max-height:calc(100vh - 4rem);overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--primary-color, #3498db) transparent}.filters-panel::-webkit-scrollbar{width:8px}.filters-panel::-webkit-scrollbar-track{background:transparent;border-radius:4px}.filters-panel::-webkit-scrollbar-thumb{background:var(--primary-color, #3498db);border-radius:4px;border:2px solid var(--card-background, white)}.filters-panel::-webkit-scrollbar-thumb:hover{background:var(--secondary-color, #2980b9)}.dark-theme .filters-panel::-webkit-scrollbar-thumb{border-color:var(--card-background, #2d2d2d)}.dark-theme .filters-panel::-webkit-scrollbar-track{background:var(--card-background, #2d2d2d)}.filters-title{margin:0;padding:1.5rem 1.5rem 1rem;font-size:1.2rem;font-weight:600;color:var(--text-color, #2c3e50);border-bottom:1px solid var(--card-border, #ecf0f1)}.filters-content{padding:1.5rem 1.75rem 1.5rem 1.5rem;display:flex;flex-direction:column;gap:1.5rem;margin-right:0}.filter-group{display:flex;flex-direction:column;gap:.75rem}.filter-group label{font-weight:500;color:var(--text-color, #2c3e50);font-size:.9rem;line-height:1.4}.filter-group input[type=text],.filter-group input[type=number],.filter-group select{padding:.5rem;border:1px solid var(--input-border, #ddd);border-radius:4px;font-size:.9rem;background:var(--input-background, white);color:var(--text-color, #2c3e50);transition:border-color .2s,background-color .2s}.filter-group input[type=text]:focus,.filter-group input[type=number]:focus,.filter-group select:focus{outline:none;border-color:var(--primary-color, #3498db);box-shadow:0 0 0 2px #3498db1a}.filter-group input[type=text]:hover,.filter-group input[type=number]:hover,.filter-group select:hover{border-color:var(--primary-color, #3498db)}.filter-range span{color:var(--text-secondary, #7f8c8d);font-weight:500}.btn-reset{padding:.5rem 1rem;background:var(--text-secondary, #95a5a6);color:#fff;border:none;border-radius:4px;cursor:pointer;font-size:.9rem;font-weight:500;transition:background .2s,transform .1s;width:100%}.btn-reset:hover{background:var(--text-secondary, #7f8c8d);transform:translateY(-1px)}.btn-reset:active{transform:translateY(0)}.category-header h1{font-size:2rem;margin-bottom:.5rem;color:var(--text-color, #2c3e50)}.category-description{color:var(--text-secondary, #7f8c8d);font-size:1.1rem;line-height:1.6}.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem}.product-card{background:var(--card-background, white);border-radius:8px;overflow:hidden;box-shadow:0 2px 8px #0000001a;transition:transform .2s,box-shadow .2s;display:flex;flex-direction:column;color:var(--text-color, #2c3e50);position:relative}.dark-theme .product-card:hover{box-shadow:0 4px 16px #0006}.product-image{width:100%;height:250px;object-fit:cover}.product-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:.5rem}.product-info h3{margin:0;color:var(--text-color, #2c3e50);flex:1}.product-admin-actions{display:flex;gap:.5rem;margin-left:.5rem}.product-action-btn{background:none;border:none;cursor:pointer;padding:.25rem;font-size:1rem;opacity:.7;transition:opacity .2s,transform .2s;border-radius:4px}.product-action-btn:hover{opacity:1;transform:scale(1.1);background-color:var(--hover-background, #f5f5f5)}.product-action-delete:hover{background-color:#e74c3c1a}.dark-theme .product-action-btn:hover{background-color:var(--hover-background, #353535)}body:has(.modal-overlay) .product-action-btn{display:none}.product-description{color:var(--text-secondary, #7f8c8d);font-size:.9rem;margin-bottom:1rem;flex:1}.product-footer{display:flex;justify-content:space-between;align-items:center;margin-top:auto;padding-top:1rem;border-top:1px solid var(--card-border, #ecf0f1)}.product-specs span{padding:.25rem .5rem;background:var(--hover-background, #f5f5f5);border-radius:4px;border:1px solid var(--card-border, transparent)}.old-price{font-size:1rem;color:var(--text-secondary, #7f8c8d);text-decoration:line-through}.product-unit{font-size:.9rem;color:var(--text-secondary, #7f8c8d)}.product-stock{font-size:.9rem;color:#7f8c8d}.categories-welcome{text-align:center;padding:4rem 2rem;background:var(--card-background, white);border-radius:12px;box-shadow:0 2px 8px #00000014;color:var(--text-color, #2c3e50)}.categories-welcome h2{font-size:2rem;margin-bottom:1rem;color:var(--text-color, #2c3e50)}.categories-welcome p{color:var(--text-secondary, #7f8c8d);font-size:1.1rem}.empty{text-align:center;padding:3rem;color:var(--text-secondary, #7f8c8d);font-size:1.1rem;background:var(--card-background, white);border-radius:12px;box-shadow:0 2px 8px #00000014}.error{text-align:center;padding:2rem;font-size:1.1rem;color:var(--accent-color, #e74c3c);background:var(--card-background, white);border-radius:12px;box-shadow:0 2px 8px #00000014}@media (max-width: 1024px){.categories-layout{grid-template-columns:240px 1fr;gap:1.5rem}.categories-products-layout{grid-template-columns:1fr}.filters-sidebar{position:static;order:-1}.filters-panel{max-height:none}}@media (max-width: 768px){.categories-layout{grid-template-columns:1fr;gap:1.5rem}.categories-sidebar{position:static}.categories-products-layout{grid-template-columns:1fr}.products-controls{flex-direction:column;align-items:stretch}.controls-left{width:100%;justify-content:space-between}.products-grid{grid-template-columns:repeat(auto-fill,minmax(250px,1fr))}}.dark-theme .products-controls{background:var(--card-background, #2d2d2d);border:1px solid var(--card-border, #404040);box-shadow:0 2px 4px #0000004d}.dark-theme .sort-label{color:var(--text-color, #e0e0e0)}.dark-theme .filters-panel{background:var(--card-background, #2d2d2d);border:1px solid var(--card-border, #404040);box-shadow:0 2px 4px #0000004d}.dark-theme .filters-title{border-bottom-color:var(--card-border, #404040)}.dark-theme .filter-group input[type=checkbox]{accent-color:var(--primary-color, #4a9eff)}.dark-theme .filters-content::-webkit-scrollbar{width:8px}.dark-theme .filters-content::-webkit-scrollbar-track{background:var(--card-background, #2d2d2d)}.dark-theme .filters-content::-webkit-scrollbar-thumb{background:var(--primary-color, #4a9eff);border-radius:4px}.dark-theme .filters-content::-webkit-scrollbar-thumb:hover{background:var(--secondary-color, #357abd)}.filter-group{position:relative}.filter-group label{display:flex;align-items:center;gap:.5rem;margin-bottom:.25rem}.filter-group input[type=checkbox]{width:auto;margin-right:0;cursor:pointer}.products-controls{align-items:center}.controls-left{flex:1;min-width:0}.sort-label{white-space:nowrap;flex-shrink:0}.sort-select{min-width:200px;flex-shrink:1}.filter-group input,.filter-group select{transition:all .2s ease}.filter-actions{padding-top:.5rem;border-top:1px solid var(--card-border, #ecf0f1);margin-top:.5rem}.dark-theme .filter-actions{border-top-color:var(--card-border, #404040)}.products-page h1{margin-bottom:2rem;color:var(--text-color, #2c3e50)}.category-header{margin-bottom:2rem}.back-button{background:none;border:none;color:var(--primary-color, #3498db);font-size:1rem;cursor:pointer;padding:.5rem 0;margin-bottom:1rem;transition:opacity .2s;font-family:inherit;font-weight:500}.back-button:hover{opacity:.8}.category-description{color:#7f8c8d;font-size:1.1rem;margin-top:.5rem}.products-layout{display:grid;grid-template-columns:1fr;gap:2rem;align-items:start}@media (min-width: 1024px){.products-layout{grid-template-columns:1fr 300px}}.products-main{min-width:0}.products-controls{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;padding:1rem;background:#fff;border-radius:8px;box-shadow:0 2px 4px #0000001a;flex-wrap:wrap;gap:1rem}.sort-label{font-weight:500;margin-right:.5rem}.controls-left,.controls-right{display:flex;gap:1rem;align-items:center}.sort-select{padding:.5rem 1rem;border:1px solid #ddd;border-radius:4px;font-size:.9rem;cursor:pointer;background:#fff}.view-mode-buttons{display:flex;gap:.5rem}.view-mode-btn{padding:.5rem;background:#fff;border:1px solid #ddd;border-radius:4px;cursor:pointer;font-size:1rem;transition:all .2s;min-width:40px}.view-mode-btn:hover{background:#f5f5f5}.view-mode-btn.active{background:var(--primary-color, #3498db);color:#fff;border-color:var(--primary-color, #3498db)}.filters-sidebar{position:sticky;top:2rem;align-self:start}.filters-panel{background:#fff;border-radius:8px;box-shadow:0 2px 4px #0000001a;overflow:hidden;max-height:calc(100vh - 4rem);overflow-y:auto}.filters-title{margin:0;padding:1.5rem 1.5rem 1rem;font-size:1.2rem;font-weight:600;color:var(--text-color, #2c3e50);border-bottom:1px solid #ecf0f1}.filters-content{padding:1.5rem;display:flex;flex-direction:column;gap:1.5rem}.filter-group{display:flex;flex-direction:column;gap:.5rem}.filter-group label{font-weight:500;color:var(--text-color, #2c3e50);font-size:.9rem}.filter-group input[type=text],.filter-group input[type=number],.filter-group select{padding:.5rem;border:1px solid #ddd;border-radius:4px;font-size:.9rem}.filter-range{display:flex;align-items:center;gap:.5rem}.filter-range input{flex:1}.filter-range span{color:#7f8c8d}.filter-group input[type=checkbox]{margin-right:.5rem}.filter-actions{grid-column:1 / -1;display:flex;justify-content:flex-end;margin-top:1rem}.btn-reset{padding:.5rem 1rem;background:#95a5a6;color:#fff;border:none;border-radius:4px;cursor:pointer;font-size:.9rem;transition:background .2s}.btn-reset:hover{background:#7f8c8d}.products-container{width:100%}.products-grid{display:grid;gap:1.5rem}.products-grid-grid{grid-template-columns:repeat(auto-fill,minmax(280px,1fr))}.products-grid-grid_large{grid-template-columns:repeat(auto-fill,minmax(350px,1fr))}.products-grid-grid_small{grid-template-columns:repeat(auto-fill,minmax(200px,1fr))}.products-grid-list{grid-template-columns:1fr}.product-card{background:#fff;border-radius:8px;overflow:hidden;box-shadow:0 2px 8px #0000001a;transition:transform .2s,box-shadow .2s;display:flex;flex-direction:column;position:relative;cursor:pointer}.product-card:hover{transform:translateY(-4px);box-shadow:0 4px 16px #00000026}.product-card.on-sale{border:2px solid var(--accent-color, #e74c3c)}.sale-badge{position:absolute;top:10px;right:10px;background:var(--accent-color, #e74c3c);color:#fff;padding:.25rem .75rem;border-radius:4px;font-size:.8rem;font-weight:700;z-index:1}.product-image{width:100%;object-fit:cover}.products-grid-grid .product-image{height:250px}.products-grid-grid_large .product-image{height:300px}.products-grid-grid_small .product-image{height:180px}.products-grid-list .product-card{flex-direction:row}.products-grid-list .product-image{width:200px;height:200px;flex-shrink:0}.product-info{padding:1.5rem;display:flex;flex-direction:column;flex:1}.product-info h3{margin-bottom:.5rem;color:var(--text-color, #2c3e50)}.product-description{color:#7f8c8d;font-size:.9rem;margin-bottom:1rem;flex:1}.product-specs{display:flex;flex-wrap:wrap;gap:1rem;margin-bottom:1rem;font-size:.85rem;color:#7f8c8d}.product-specs span{padding:.25rem .5rem;background:#f5f5f5;border-radius:4px}.product-footer{display:flex;justify-content:space-between;align-items:center;margin-top:auto;padding-top:1rem;border-top:1px solid #ecf0f1}.price-container{display:flex;align-items:baseline;gap:.5rem;flex-wrap:wrap}.product-price{font-size:1.5rem;font-weight:700;color:#27ae60}.sale-price{color:var(--accent-color, #e74c3c)}.old-price{font-size:1rem;color:#7f8c8d;text-decoration:line-through}.product-unit{font-size:.9rem;color:#7f8c8d}.products-table{width:100%;border-collapse:collapse;background:#fff;border-radius:8px;overflow:hidden;box-shadow:0 2px 8px #0000001a}.products-table thead{background:var(--primary-color, #3498db);color:#fff}.products-table th{padding:1rem;text-align:left;font-weight:600}.products-table td{padding:1rem;border-bottom:1px solid #ecf0f1}.products-table tbody tr{cursor:pointer;transition:background .2s}.products-table tbody tr:hover{background:#f5f5f5}.table-product-image{width:80px;height:80px;object-fit:cover;border-radius:4px}.empty{text-align:center;padding:3rem;color:#7f8c8d;font-size:1.1rem}.loading,.error{text-align:center;padding:2rem;font-size:1.1rem}.error{color:var(--accent-color, #e74c3c)}@media (max-width: 1024px){.products-layout{grid-template-columns:1fr!important}}@media (max-width: 768px){.products-controls{flex-direction:column;align-items:stretch}.controls-left,.controls-right{width:100%;justify-content:space-between}.filters-content{display:flex;flex-direction:column}.products-grid-grid,.products-grid-grid_large,.products-grid-grid_small{grid-template-columns:1fr}.products-grid-list .product-card{flex-direction:column}.products-grid-list .product-image{width:100%;height:250px}.products-table{font-size:.85rem}.products-table th,.products-table td{padding:.5rem}}.product-gallery{display:flex;flex-direction:column;gap:1rem}.gallery-main{position:relative;width:100%;aspect-ratio:1;border-radius:12px;overflow:hidden;background:var(--input-background, #f8f9fa);box-shadow:0 2px 8px #0000001a}.gallery-main-container{position:relative;width:100%;height:100%}.gallery-main-image{width:100%;height:100%;object-fit:contain;display:block}.gallery-main-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--text-secondary, #7f8c8d);font-size:1.1rem;background:var(--input-background, #f8f9fa)}.gallery-nav-btn{position:absolute;top:50%;transform:translateY(-50%);background:var(--card-background, rgba(255, 255, 255, .9));border:none;width:48px;height:48px;border-radius:50%;font-size:1.5rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s;box-shadow:0 2px 8px #00000026;z-index:10;color:var(--text-color, #2c3e50)}.gallery-nav-btn:hover{background:var(--hover-background, white);box-shadow:0 4px 12px #0003;transform:translateY(-50%) scale(1.1)}.gallery-prev{left:1rem}.gallery-next{right:1rem}.gallery-counter{position:absolute;bottom:1rem;right:1rem;background:#000000b3;color:#fff;padding:.5rem 1rem;border-radius:20px;font-size:.9rem;font-weight:500}.gallery-thumbnails{display:flex;gap:.75rem;overflow-x:auto;padding:.5rem 0;scrollbar-width:thin;scrollbar-color:#ddd transparent}.gallery-thumbnails::-webkit-scrollbar{height:6px}.gallery-thumbnails::-webkit-scrollbar-track{background:transparent}.gallery-thumbnails::-webkit-scrollbar-thumb{background:#ddd;border-radius:3px}.gallery-thumbnail{flex-shrink:0;width:100px;height:100px;border:3px solid transparent;border-radius:8px;overflow:hidden;cursor:pointer;transition:all .2s;background:var(--input-background, #f8f9fa);padding:0}.gallery-thumbnail:hover{border-color:var(--primary-color, #3498db);transform:scale(1.05)}.gallery-thumbnail.active{border-color:var(--primary-color, #3498db);box-shadow:0 0 0 2px #3498db33}.gallery-thumbnail img{width:100%;height:100%;object-fit:cover}@media (max-width: 768px){.gallery-nav-btn{width:40px;height:40px;font-size:1.2rem}.gallery-thumbnail{width:80px;height:80px}.gallery-counter{font-size:.8rem;padding:.4rem .8rem}}.product-rating{display:flex;align-items:center;gap:.75rem;flex-wrap:wrap}.rating-stars{display:flex;gap:.25rem;align-items:center}.star{color:#ddd;font-size:1.5rem;line-height:1;display:inline-block;transition:color .2s}.rating-small .star{font-size:1rem}.rating-large .star{font-size:2rem}.star-full{color:#ffc107}.star-half{color:#ffc107;position:relative;overflow:hidden}.star-half:after{content:"★";position:absolute;left:0;top:0;width:50%;overflow:hidden;color:#ddd}.star-empty{color:#ddd}.rating-info{display:flex;align-items:center;gap:.5rem;font-size:1rem}.rating-small .rating-info{font-size:.85rem}.rating-large .rating-info{font-size:1.25rem}.rating-value{font-weight:600;color:var(--text-color, #2c3e50)}.rating-count{color:var(--text-secondary, #7f8c8d);font-size:.9em}@media (max-width: 768px){.rating-info{font-size:.9rem}.rating-count{font-size:.85em}}.product-reviews{background:var(--card-background, white);border-radius:12px;padding:2rem;box-shadow:0 2px 8px #0000001a;color:var(--text-color, #2c3e50)}.reviews-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;flex-wrap:wrap;gap:1rem}.reviews-title{font-size:1.75rem;font-weight:600;color:var(--text-color, #2c3e50);margin:0}.reviews-summary{display:flex;align-items:center}.reviews-actions{margin-bottom:2rem}.btn-add-review{padding:.75rem 1.5rem;background:linear-gradient(135deg,var(--primary-color, #3498db) 0%,var(--secondary-color, #2980b9) 100%);color:#fff;border:none;border-radius:8px;font-size:1rem;font-weight:500;cursor:pointer;transition:all .2s}.btn-add-review:hover{transform:translateY(-2px);box-shadow:0 4px 12px #3498db66}.review-form-container{background:var(--form-background, #f8f9fa);border-radius:12px;padding:1.5rem;margin-bottom:2rem}.review-form h3{font-size:1.25rem;font-weight:600;color:var(--text-color, #2c3e50);margin:0 0 1.5rem}.review-form .form-group{margin-bottom:1.25rem}.review-form .form-group label{display:block;margin-bottom:.5rem;font-weight:500;color:var(--text-color, #2c3e50);font-size:.95rem}.review-form input,.review-form textarea{width:100%;padding:.75rem;border:1px solid #ddd;border-radius:8px;font-size:1rem;font-family:inherit;transition:border-color .2s,box-shadow .2s;box-sizing:border-box}.review-form input:focus,.review-form textarea:focus{outline:none;border-color:var(--primary-color, #3498db);box-shadow:0 0 0 3px #3498db1a}.review-form textarea{resize:vertical;min-height:100px}.rating-selector{display:flex;gap:.5rem;align-items:center}.star-btn{background:none;border:none;font-size:2rem;color:#ddd;cursor:pointer;transition:all .2s;padding:0;line-height:1}.star-btn:hover{transform:scale(1.2)}.star-btn.active{color:#ffc107}.form-actions{display:flex;gap:1rem;justify-content:flex-end;margin-top:1.5rem}.btn-cancel,.btn-submit{padding:.75rem 1.5rem;border-radius:8px;font-size:1rem;font-weight:500;cursor:pointer;transition:all .2s;border:none}.btn-cancel{background:#f5f5f5;color:#333}.btn-cancel:hover:not(:disabled){background:#e0e0e0}.btn-submit{background:linear-gradient(135deg,var(--primary-color, #3498db) 0%,var(--secondary-color, #2980b9) 100%);color:#fff}.btn-submit:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 4px 12px #3498db66}.btn-cancel:disabled,.btn-submit:disabled{opacity:.6;cursor:not-allowed}.reviews-loading,.reviews-empty{text-align:center;padding:3rem;color:#7f8c8d;font-size:1.1rem}.reviews-list{display:flex;flex-direction:column;gap:1.5rem}.review-item{padding:1.5rem;background:var(--review-item-background, #f8f9fa);border-radius:8px;border-left:4px solid var(--primary-color, #3498db)}.review-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:.75rem;flex-wrap:wrap;gap:1rem}.review-author{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap}.review-author strong{color:var(--text-color, #2c3e50);font-size:1rem}.admin-badge{background:var(--accent-color, #e74c3c);color:#fff;padding:.25rem .5rem;border-radius:4px;font-size:.75rem;font-weight:600;text-transform:uppercase}.review-rating{flex-shrink:0}.review-comment{color:#555;line-height:1.6;margin-bottom:.75rem;white-space:pre-wrap;word-wrap:break-word}.review-date{font-size:.85rem;color:#7f8c8d}@media (max-width: 768px){.product-reviews{padding:1.5rem}.reviews-title{font-size:1.5rem}.review-form-container,.review-item{padding:1rem}.star-btn{font-size:1.5rem}.form-actions{flex-direction:column-reverse}.btn-cancel,.btn-submit{width:100%}}.product-detail-page{width:100%;max-width:1400px;margin:0 auto;padding:2rem 1rem}.breadcrumbs{display:flex;align-items:center;gap:.5rem;margin-bottom:2rem;font-size:.9rem;color:var(--text-secondary, #7f8c8d)}.breadcrumbs a{color:var(--primary-color, #3498db);text-decoration:none;transition:opacity .2s}.breadcrumbs a:hover{opacity:.8}.breadcrumbs span{color:var(--text-secondary, #bdc3c7)}.error-message{text-align:center;padding:3rem;background:var(--card-background, white);border-radius:12px;box-shadow:0 2px 8px #0000001a;color:var(--text-color, #2c3e50)}.error-message p{font-size:1.25rem;color:var(--accent-color, #e74c3c);margin-bottom:1.5rem}.btn-back{padding:.75rem 1.5rem;background:var(--primary-color, #3498db);color:#fff;border:none;border-radius:8px;font-size:1rem;font-weight:500;cursor:pointer;transition:all .2s}.btn-back:hover{background:var(--secondary-color, #2980b9);transform:translateY(-1px);box-shadow:0 4px 12px #3498db4d}.product-detail-content{display:grid;grid-template-columns:1fr 1fr;gap:3rem;margin-bottom:3rem;align-items:start}.product-gallery-section{position:sticky;top:100px;height:fit-content;background:var(--card-background, white);padding:1.5rem;border-radius:16px;box-shadow:0 4px 20px #00000014;border:1px solid var(--card-border, rgba(0, 0, 0, .05))}.product-info-section{display:flex;flex-direction:column;gap:1.5rem;align-items:stretch;background:var(--card-background, white);padding:2rem;border-radius:16px;box-shadow:0 4px 20px #00000014;border:1px solid var(--card-border, rgba(0, 0, 0, .05))}.product-title{font-size:2.5rem;font-weight:700;color:var(--text-color, #2c3e50);margin:0;line-height:1.2}.product-rating-section{display:flex;align-items:center;gap:1rem}.product-price-section{display:flex;flex-direction:column;gap:.75rem;padding:1.75rem;background:linear-gradient(135deg,#27ae6014,#2ecc710d);border-radius:12px;color:var(--text-color, #2c3e50);border:2px solid rgba(39,174,96,.15);box-shadow:0 2px 8px #27ae601a}.dark-theme .product-price-section{background:linear-gradient(135deg,#2ecc711f,#27ae6014);border-color:#2ecc7133}.product-price{font-size:2.5rem;font-weight:700;color:#27ae60}.dark-theme .product-price{color:#2ecc71}.product-stock{font-size:1rem;font-weight:500;display:flex;align-items:center;gap:.5rem}.product-stock.in-stock{color:#27ae60}.product-stock.in-stock:before{content:"✓";display:inline-block;width:20px;height:20px;background:#27ae60;color:#fff;border-radius:50%;text-align:center;line-height:20px;font-size:.75rem;font-weight:700}.dark-theme .product-stock.in-stock{color:#2ecc71}.dark-theme .product-stock.in-stock:before{background:#2ecc71}.product-stock.out-of-stock{color:var(--accent-color, #e74c3c)}.product-stock.out-of-stock:before{content:"✗";display:inline-block;width:20px;height:20px;background:var(--accent-color, #e74c3c);color:#fff;border-radius:50%;text-align:center;line-height:20px;font-size:.75rem;font-weight:700}.product-description-section{padding:1.5rem 0;border-top:1px solid var(--border-color, rgba(0, 0, 0, .08));border-bottom:1px solid var(--border-color, rgba(0, 0, 0, .08))}.product-description-section h2{font-size:1.5rem;font-weight:600;color:var(--text-color, #2c3e50);margin-bottom:1rem}.product-description{font-size:1.1rem;line-height:1.7;color:var(--text-secondary, #555);white-space:pre-wrap}.dark-theme .product-description{color:var(--text-secondary, #bdc3c7)}.product-actions{padding-top:1rem;border-top:1px solid var(--border-color, rgba(0, 0, 0, .08));margin-top:.5rem}.product-specifications-section,.product-reviews-section{margin-top:3rem;padding-top:3rem;border-top:2px solid var(--border-color, #e0e0e0)}@media (max-width: 1024px){.product-detail-content{grid-template-columns:1fr;gap:2rem}.product-gallery-section{position:static;padding:1.25rem}.product-info-section{padding:1.5rem}.product-title,.product-price{font-size:2rem}}@media (max-width: 768px){.product-detail-page{padding:1rem}.breadcrumbs{font-size:.85rem;margin-bottom:1.5rem}.product-gallery-section{padding:1rem;border-radius:12px}.product-info-section{padding:1.25rem;border-radius:12px}.product-title,.product-price{font-size:1.75rem}.product-price-section{padding:1.25rem}.product-description{font-size:1rem}}.auth-page{display:flex;justify-content:center;align-items:center;min-height:60vh;padding:2rem 0}.auth-card{background:var(--card-background, white);border-radius:12px;padding:2.5rem;box-shadow:0 4px 16px #0000001a;width:100%;max-width:400px;color:var(--text-color, #2c3e50)}.auth-card h1{margin-bottom:1.5rem;color:var(--text-color, #2c3e50);text-align:center}.form-group label{display:block;margin-bottom:.5rem;color:var(--text-color, #2c3e50);font-weight:500}.form-group input{width:100%;padding:.75rem;border:1px solid var(--input-border, #ddd);border-radius:6px;font-size:1rem;transition:border-color .2s;background-color:var(--input-background, white);color:var(--text-color, #2c3e50);box-sizing:border-box}.error-message{background-color:var(--error-background, #fee);color:var(--error-color, #c33);padding:.75rem;border-radius:6px;margin-bottom:1rem;text-align:center}.btn-submit{width:100%;padding:.75rem;background-color:var(--primary-color, #3498db);color:#fff;border:none;border-radius:6px;font-size:1rem;font-weight:600;cursor:pointer;transition:background-color .2s}.btn-submit:hover:not(:disabled){background-color:var(--secondary-color, #2980b9)}.btn-submit:disabled{opacity:.6;cursor:not-allowed}.auth-link{text-align:center;margin-top:1.5rem;color:var(--text-secondary, #7f8c8d)}.auth-link a{color:var(--primary-color, #3498db);text-decoration:none;font-weight:500}.auth-link a:hover{text-decoration:underline;opacity:.8}.slider-captcha{margin-bottom:1.5rem}.slider-captcha-label{display:block;margin-bottom:.75rem;color:var(--text-color, #2c3e50);font-weight:500;font-size:.95rem}.slider-captcha-track{position:relative;width:100%;height:50px;background:var(--input-background, #f0f0f0);border-radius:25px;border:2px solid var(--input-border, #ddd);overflow:hidden;cursor:pointer;-webkit-user-select:none;user-select:none}.slider-captcha-slider{position:absolute;left:0;top:0;width:50px;height:46px;background:linear-gradient(135deg,var(--primary-color, #3498db) 0%,var(--secondary-color, #2980b9) 100%);border-radius:23px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.2rem;font-weight:700;cursor:grab;transition:background .3s;z-index:2;box-shadow:0 2px 8px #0003}.slider-captcha-slider:active{cursor:grabbing}.slider-captcha-slider.verified{background:linear-gradient(135deg,#27ae60,#229954);cursor:default}.slider-captcha-text{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:var(--text-secondary, #7f8c8d);font-size:.9rem;font-weight:500;pointer-events:none;z-index:1;white-space:nowrap}.slider-captcha-slider.verified~.slider-captcha-text{color:#27ae60;font-weight:600}.settings-page{max-width:800px;margin:0 auto}.settings-page h1{margin-bottom:2rem;color:var(--text-color, #2c3e50)}.settings-content{background:var(--card-background, white);border-radius:12px;padding:2rem;box-shadow:0 2px 8px #00000014;color:var(--text-color, #2c3e50)}.settings-section{margin-bottom:2rem}.settings-section h2{font-size:1.5rem;margin-bottom:1.5rem;color:var(--text-color, #2c3e50);font-weight:600}.info-fields{display:flex;flex-direction:column;gap:1.5rem}.info-field{display:flex;flex-direction:column;gap:.5rem}.info-field label{font-size:.9rem;font-weight:500;color:var(--text-secondary, #7f8c8d);text-transform:uppercase;letter-spacing:.5px}.info-value{font-size:1.1rem;color:var(--text-color, #2c3e50);padding:.75rem 1rem;background-color:var(--input-background, #f8f9fa);border-radius:8px;border:1px solid var(--input-border, #e9ecef)}.password-field{font-family:Courier New,monospace;letter-spacing:2px;font-weight:600}.loading{text-align:center;padding:2rem;font-size:1.2rem;color:var(--text-secondary, #7f8c8d)}.page-layout-editor{max-width:1200px;width:95%;max-height:90vh;overflow-y:auto}.editor-header{display:flex;justify-content:space-between;align-items:center;padding:1.5rem;border-bottom:1px solid #e0e0e0}.editor-header h2{margin:0;font-size:1.5rem}.editor-tabs{display:flex;gap:.5rem;padding:1rem 1.5rem;border-bottom:1px solid #e0e0e0;background:#f8f9fa}.editor-tabs button{padding:.75rem 1.5rem;border:none;background:transparent;cursor:pointer;border-radius:8px 8px 0 0;font-weight:500;transition:all .2s}.editor-tabs button:hover{background:#e9ecef}.editor-tabs button.active{background:#fff;border-bottom:2px solid var(--primary-color, #3498db);color:var(--primary-color, #3498db)}.editor-body{padding:1.5rem;min-height:400px}.editor-section h3{margin-top:0;margin-bottom:1rem}.section-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;flex-wrap:wrap;gap:1rem}.block-types{display:flex;gap:.5rem;flex-wrap:wrap}.add-block-btn{padding:.5rem 1rem;border:1px solid #ddd;background:#fff;border-radius:6px;cursor:pointer;font-size:.9rem;transition:all .2s}.add-block-btn:hover{background:#f8f9fa;border-color:var(--primary-color, #3498db)}.blocks-list{display:flex;flex-direction:column;gap:1rem}.block-item{display:flex;align-items:center;gap:1rem;padding:1rem;border:1px solid #e0e0e0;border-radius:8px;background:#fff}.block-controls{display:flex;gap:.5rem}.btn-move,.btn-edit,.btn-delete{padding:.5rem;border:none;background:#f8f9fa;border-radius:4px;cursor:pointer;font-size:1rem;transition:all .2s}.btn-move:hover,.btn-edit:hover{background:#e9ecef}.btn-delete:hover{background:#fee}.btn-move:disabled{opacity:.5;cursor:not-allowed}.block-preview{flex:1}.block-preview strong{margin-right:.5rem}.block-hidden{color:#999;font-size:.9rem}.empty-state{text-align:center;padding:3rem;color:#999;background:#f8f9fa;border-radius:8px}.css-editor{width:100%;padding:1rem;border:1px solid #ddd;border-radius:8px;font-family:Courier New,monospace;font-size:.9rem;resize:vertical}.editor-footer{display:flex;justify-content:flex-end;gap:1rem;padding:1.5rem;border-top:1px solid #e0e0e0;background:#f8f9fa}.btn-cancel,.btn-save{padding:.75rem 1.5rem;border:none;border-radius:8px;font-size:1rem;font-weight:500;cursor:pointer;transition:all .2s}.btn-cancel{background:#e9ecef;color:#333}.btn-cancel:hover{background:#dee2e6}.btn-save{background:var(--primary-color, #3498db);color:#fff}.btn-save:hover{background:var(--secondary-color, #2980b9)}.btn-save:disabled{opacity:.6;cursor:not-allowed}.block-editor-overlay{z-index:2000}.block-editor-modal{max-width:600px;width:90%}.block-editor-form{padding:1.5rem}.form-group{margin-bottom:1.5rem}.form-group label{display:block;margin-bottom:.5rem;font-weight:500}.form-group input[type=text],.form-group textarea{width:100%;padding:.75rem;border:1px solid #ddd;border-radius:6px;font-size:1rem;font-family:inherit}.form-group textarea{resize:vertical}.checkbox-label{display:flex;align-items:center;gap:.5rem;cursor:pointer}.checkbox-label input[type=checkbox]{width:auto;cursor:pointer}.form-actions{display:flex;justify-content:flex-end;gap:1rem;margin-top:2rem;padding-top:1.5rem;border-top:1px solid #e0e0e0}.modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:#00000080;display:flex;align-items:center;justify-content:center;z-index:1000}.modal-content{background:#fff;border-radius:12px;box-shadow:0 4px 24px #0003;max-height:90vh;overflow-y:auto}.modal-header{display:flex;justify-content:space-between;align-items:center;padding:1.5rem;border-bottom:1px solid #e0e0e0}.modal-close{background:none;border:none;font-size:2rem;cursor:pointer;color:#999;line-height:1;padding:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:4px;transition:all .2s}.modal-close:hover{background:#f8f9fa;color:#333}.loading{text-align:center;padding:3rem;color:#999}@media (max-width: 768px){.page-layout-editor{width:100%;max-height:100vh;border-radius:0}.editor-tabs{flex-wrap:wrap}.section-header{flex-direction:column;align-items:flex-start}.block-types{width:100%}.add-block-btn{flex:1;min-width:120px}}.admin-settings-page{max-width:900px;margin:0 auto;padding:2rem 0}.admin-settings-page h1{margin-bottom:2rem;color:var(--text-color, #2c3e50);font-size:2rem}.admin-settings-content{background:#fff;border-radius:12px;padding:2rem;box-shadow:0 2px 8px #00000014}.admin-settings-section{margin-bottom:3rem;padding-bottom:2rem;border-bottom:1px solid #e9ecef}.admin-settings-section:last-of-type{border-bottom:none;margin-bottom:2rem}.admin-settings-section h2{font-size:1.5rem;margin-bottom:1.5rem;color:var(--text-color, #2c3e50);font-weight:600}.image-upload-section{display:flex;flex-direction:column;gap:1rem}.image-preview{position:relative;display:inline-block;max-width:100%;border:2px dashed #e9ecef;border-radius:8px;padding:1rem;background:#f8f9fa}.image-preview img{max-width:100%;max-height:300px;object-fit:contain;border-radius:4px}.remove-image-btn{margin-top:1rem;padding:.5rem 1rem;background:#dc3545;color:#fff;border:none;border-radius:6px;cursor:pointer;font-size:.9rem;transition:background .2s}.remove-image-btn:hover{background:#c82333}.image-upload-placeholder{padding:3rem;text-align:center;border:2px dashed #dee2e6;border-radius:8px;background:#f8f9fa;color:#6c757d}.upload-btn{display:inline-block;padding:.75rem 1.5rem;background:#007bff;color:#fff;border:none;border-radius:6px;cursor:pointer;font-size:1rem;text-align:center;transition:background .2s;width:fit-content}.upload-btn:hover{background:#0056b3}.admin-settings-actions{display:flex;justify-content:flex-end;gap:1rem;margin-top:2rem;padding-top:2rem;border-top:1px solid #e9ecef}.save-btn{padding:.75rem 2rem;background:#28a745;color:#fff;border:none;border-radius:6px;cursor:pointer;font-size:1rem;font-weight:500;transition:background .2s}.save-btn:hover:not(:disabled){background:#218838}.save-btn:disabled{background:#6c757d;cursor:not-allowed}.page-editor-btn{padding:1rem 2rem;background:linear-gradient(135deg,var(--primary-color, #3498db) 0%,var(--secondary-color, #2980b9) 100%);color:#fff;border:none;border-radius:8px;font-size:1.1rem;font-weight:600;cursor:pointer;transition:all .2s;box-shadow:0 2px 8px #3498db4d}.page-editor-btn:hover{transform:translateY(-2px);box-shadow:0 4px 12px #3498db66}.site-name-section{display:flex;flex-direction:column;gap:.75rem}.site-name-input{padding:.75rem 1rem;border:2px solid #e9ecef;border-radius:6px;font-size:1rem;transition:border-color .2s;width:100%;max-width:500px}.site-name-input:focus{outline:none;border-color:#007bff}.site-name-hint{font-size:.875rem;color:#6c757d;margin:0}@media (max-width: 768px){.admin-settings-page{padding:1rem}.admin-settings-content{padding:1.5rem}.admin-settings-section{margin-bottom:2rem;padding-bottom:1.5rem}.image-preview img{max-height:200px}}.cart-page{width:100%}.cart-page h1{margin-bottom:2rem;color:var(--text-color, #2c3e50)}.cart-empty{text-align:center;padding:4rem 2rem;background:var(--card-background, white);border-radius:12px;box-shadow:0 2px 8px #00000014;color:var(--text-color, #2c3e50)}.cart-empty p{font-size:1.25rem;color:#7f8c8d;margin-bottom:2rem}.cart-content{display:grid;grid-template-columns:1fr 350px;gap:2rem;align-items:start}.cart-items{display:flex;flex-direction:column;gap:1.5rem}.cart-item{background:var(--card-background, white);border-radius:12px;padding:1.5rem;box-shadow:0 2px 8px #00000014;display:grid;grid-template-columns:120px 1fr auto;gap:1.5rem;align-items:start;color:var(--text-color, #2c3e50)}.cart-item-image{width:120px;height:120px;object-fit:cover;border-radius:8px}.cart-item-info{display:flex;flex-direction:column;gap:.5rem}.cart-item-info h3{margin:0;color:var(--text-color, #2c3e50);font-size:1.25rem}.cart-item-description{color:#7f8c8d;font-size:.9rem;margin:0}.cart-item-price{font-size:1.1rem;font-weight:600;color:#27ae60;margin-top:.5rem}.cart-item-actions{display:flex;flex-direction:column;gap:1rem;align-items:flex-end}.quantity-controls{display:flex;align-items:center;gap:.5rem}.quantity-btn{width:36px;height:36px;border:1px solid var(--input-border, #ddd);background:var(--card-background, white);border-radius:6px;font-size:1.25rem;cursor:pointer;transition:all .2s;display:flex;align-items:center;justify-content:center;color:var(--text-color, #2c3e50)}.quantity-btn:hover:not(:disabled){background-color:#f5f5f5;border-color:var(--primary-color, #3498db)}.quantity-btn:disabled{opacity:.5;cursor:not-allowed}.quantity-input{width:60px;padding:.5rem;border:1px solid #ddd;border-radius:6px;text-align:center;font-size:1rem}.quantity-input:focus{outline:none;border-color:var(--primary-color, #3498db)}.quantity-input:disabled{background-color:#f5f5f5}.btn-remove{padding:.5rem 1rem;background-color:var(--accent-color, #e74c3c);color:#fff;border:none;border-radius:6px;cursor:pointer;font-size:.9rem;transition:background-color .2s}.btn-remove:hover:not(:disabled){background-color:#c0392b}.btn-remove:disabled{opacity:.6;cursor:not-allowed}.cart-summary{background:var(--card-background, white);border-radius:12px;padding:1.5rem;box-shadow:0 2px 8px #00000014;position:sticky;top:100px;color:var(--text-color, #2c3e50)}.cart-summary h2{margin-top:0;margin-bottom:1.5rem;color:var(--text-color, #2c3e50)}.summary-row{display:flex;justify-content:space-between;padding:.75rem 0;font-size:1rem}.summary-row.total{font-size:1.25rem;font-weight:600;color:var(--text-color, #2c3e50);border-top:2px solid #e0e0e0;margin-top:.5rem;padding-top:1rem}.btn-checkout{width:100%;padding:1rem;margin-top:1.5rem;background:linear-gradient(135deg,var(--primary-color, #3498db) 0%,var(--secondary-color, #2980b9) 100%);color:#fff;border:none;border-radius:8px;font-size:1.1rem;font-weight:600;cursor:pointer;transition:transform .2s,box-shadow .2s}.btn-checkout:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 4px 12px #3498db66}.btn-checkout:disabled{opacity:.6;cursor:not-allowed}.btn-continue-shopping{width:100%;padding:.75rem;margin-top:.75rem;background:var(--card-background, white);color:var(--primary-color, #3498db);border:2px solid var(--primary-color, #3498db);border-radius:8px;font-size:1rem;font-weight:500;cursor:pointer;transition:all .2s}.btn-continue-shopping:hover{background-color:#e8f4f8}.order-form{margin-top:1.5rem;padding-top:1.5rem;border-top:2px solid #e0e0e0}.order-form h3{margin-top:0;margin-bottom:1rem;color:var(--text-color, #2c3e50);font-size:1.1rem}.form-group{margin-bottom:1rem}.form-group label{display:block;margin-bottom:.5rem;color:var(--text-color, #2c3e50);font-size:.9rem;font-weight:500}.form-group input{width:100%;padding:.75rem;border:1px solid #ddd;border-radius:6px;font-size:1rem;transition:border-color .2s;box-sizing:border-box}.form-group input:focus{outline:none;border-color:var(--primary-color, #3498db)}.form-group input:disabled{background-color:#f5f5f5;cursor:not-allowed}.form-actions{display:flex;flex-direction:column;gap:.75rem;margin-top:1rem}.btn-cancel{width:100%;padding:.75rem;background:var(--card-background, white);color:var(--text-secondary, #7f8c8d);border:2px solid var(--input-border, #ddd);border-radius:8px;font-size:1rem;font-weight:500;cursor:pointer;transition:all .2s}.btn-cancel:hover:not(:disabled){background-color:#f5f5f5;border-color:#bdc3c7}.btn-cancel:disabled{opacity:.6;cursor:not-allowed}.address-section{margin-top:1.5rem;padding-top:1.5rem;border-top:2px solid #e0e0e0}.address-section h4{margin-top:0;margin-bottom:1rem;color:var(--text-color, #2c3e50);font-size:1rem;font-weight:600;display:flex;align-items:center;gap:.5rem}.address-section h4:before{content:"🚚";font-size:1.2rem}.label-icon{display:inline-block;margin-right:.5rem;font-size:1rem}.payment-section{margin-top:1.5rem;padding-top:1.5rem;border-top:2px solid #e0e0e0}.payment-section h4{margin-top:0;margin-bottom:1rem;color:var(--text-color, #2c3e50);font-size:1rem;font-weight:600;display:flex;align-items:center;gap:.5rem}.payment-section h4:before{content:"💳";font-size:1.2rem}.payment-methods-list{display:flex;flex-direction:column;gap:.75rem}.payment-method-option{display:flex;align-items:center;padding:1rem;border:2px solid var(--input-border, #ddd);border-radius:8px;cursor:pointer;transition:all .2s;background:var(--card-background, white)}.payment-method-option:hover{border-color:var(--primary-color, #3498db);background-color:#f8f9fa}.payment-method-option input[type=radio]{margin-right:1rem;width:20px;height:20px;cursor:pointer;accent-color:var(--primary-color, #3498db)}.payment-method-option.selected{border-color:var(--primary-color, #3498db);background-color:#e8f4f8}.payment-method-option.selected .payment-method-name{color:var(--primary-color, #3498db)}.payment-method-content{display:flex;align-items:center;gap:1rem;flex:1}.payment-method-icon{width:40px;height:40px;object-fit:contain;border-radius:6px}.payment-method-info{display:flex;flex-direction:column;gap:.25rem;flex:1}.payment-method-name{font-weight:600;color:var(--text-color, #2c3e50);font-size:1rem}.payment-method-description{font-size:.85rem;color:var(--text-secondary, #7f8c8d)}.payment-methods-loading,.payment-methods-empty{padding:1rem;text-align:center;color:var(--text-secondary, #7f8c8d);font-size:.9rem;background:var(--card-background, #f8f9fa);border-radius:6px}.form-group label{display:flex;align-items:center}@media (max-width: 1024px){.cart-content{grid-template-columns:1fr}.cart-summary{position:static}}@media (max-width: 768px){.cart-item{grid-template-columns:1fr;text-align:center}.cart-item-image{width:100%;height:200px;margin:0 auto}.cart-item-actions{align-items:center}}.orders-page{width:100%}.orders-page h1{margin-bottom:2rem;color:var(--text-color, #2c3e50)}.orders-empty{text-align:center;padding:4rem 2rem;background:var(--card-background, white);border-radius:12px;box-shadow:0 2px 8px #00000014;color:var(--text-color, #2c3e50)}.orders-empty p{font-size:1.25rem;color:#7f8c8d;margin-bottom:2rem}.orders-list{display:flex;flex-direction:column;gap:1.5rem}.order-card{background:var(--card-background, white);border-radius:12px;box-shadow:0 2px 8px #00000014;overflow:hidden;transition:box-shadow .2s;color:var(--text-color, #2c3e50)}.order-card:hover{box-shadow:0 4px 12px #0000001f}.order-header{display:flex;justify-content:space-between;align-items:center;padding:1.5rem;cursor:pointer;border-bottom:2px solid #f0f0f0;transition:background-color .2s}.order-header:hover{background-color:#f8f9fa}.order-header-info{display:flex;flex-direction:column;gap:.5rem}.order-id{font-size:1.1rem;font-weight:600;color:var(--text-color, #2c3e50)}.order-date{font-size:.9rem;color:#7f8c8d}.order-header-right{display:flex;align-items:center;gap:1rem}.order-total{font-size:1.25rem;font-weight:600;color:#27ae60}.order-toggle-btn{width:32px;height:32px;border:none;background:transparent;font-size:1rem;color:var(--primary-color, #3498db);cursor:pointer;display:flex;align-items:center;justify-content:center;border-radius:4px;transition:background-color .2s}.order-toggle-btn:hover{background-color:#e8f4f8}.order-details{padding:1.5rem;background-color:#f8f9fa}.order-info{margin-bottom:1.5rem;padding:1rem;background:var(--card-background, white);border-radius:8px}.info-row{display:flex;justify-content:space-between;padding:.5rem 0;border-bottom:1px solid #e0e0e0}.info-row:last-child{border-bottom:none}.info-label{font-weight:500;color:#7f8c8d}.info-value{color:var(--text-color, #2c3e50);font-weight:500}.info-value-total{color:#27ae60;font-size:1.1rem;font-weight:600}.order-items{background:var(--card-background, white);border-radius:8px;padding:1rem}.order-items-title{margin-top:0;margin-bottom:1rem;color:var(--text-color, #2c3e50);font-size:1.1rem}.items-list{display:flex;flex-direction:column;gap:1rem}.order-item{display:grid;grid-template-columns:100px 1fr;gap:1rem;padding:1rem;background:#f8f9fa;border-radius:8px}.order-item-image{width:100px;height:100px;object-fit:cover;border-radius:8px}.order-item-info{display:flex;flex-direction:column;gap:.5rem}.order-item-name{margin:0;color:var(--text-color, #2c3e50);font-size:1rem}.order-item-description{color:#7f8c8d;font-size:.9rem;margin:0}.order-item-meta{display:flex;justify-content:space-between;align-items:center;margin-top:.5rem}.order-item-quantity{color:#7f8c8d;font-size:.9rem}.order-item-price{font-weight:600;color:#27ae60;font-size:1rem}.btn-continue-shopping{padding:.75rem 2rem;background:linear-gradient(135deg,var(--primary-color, #3498db) 0%,var(--secondary-color, #2980b9) 100%);color:#fff;border:none;border-radius:8px;font-size:1rem;font-weight:500;cursor:pointer;transition:transform .2s,box-shadow .2s}.btn-continue-shopping:hover{transform:translateY(-2px);box-shadow:0 4px 12px #3498db66}.error{text-align:center;padding:2rem;color:var(--accent-color, #e74c3c);background:var(--card-background, white);border-radius:12px;box-shadow:0 2px 8px #00000014}@media (max-width: 768px){.order-header{flex-direction:column;align-items:flex-start;gap:1rem}.order-header-right{width:100%;justify-content:space-between}.order-item{grid-template-columns:1fr;text-align:center}.order-item-image{width:100%;height:200px;margin:0 auto}.info-row{flex-direction:column;gap:.25rem}}.delivery-page{padding:2rem 0}.delivery-page h1{margin-bottom:2rem;color:var(--text-color, #2c3e50)}.delivery-infos{display:flex;flex-direction:column;gap:2rem}.delivery-info-card{background:var(--card-background, white);border-radius:12px;padding:2rem;box-shadow:0 2px 8px #0000001a;color:var(--text-color, #2c3e50);border:1px solid var(--card-border, transparent)}.delivery-info-card h2{margin-bottom:1rem;color:var(--text-color, #2c3e50)}.delivery-info-card p{color:var(--text-secondary, #7f8c8d);line-height:1.8;margin-bottom:1.5rem}.delivery-images{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1rem;margin-top:1.5rem}.delivery-images img{width:100%;height:auto;border-radius:8px;object-fit:cover}.certificates-page{padding:2rem 0}.certificates-page h1{margin-bottom:2rem;color:var(--text-color, #2c3e50)}.certificates-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:2rem}.certificate-card{background:var(--card-background, white);border-radius:12px;overflow:hidden;box-shadow:0 2px 8px #0000001a;transition:transform .2s,box-shadow .2s;color:var(--text-color, #2c3e50)}.certificate-card:hover{transform:translateY(-4px);box-shadow:0 4px 16px #00000026}.certificate-image{width:100%;height:300px;overflow:hidden}.certificate-image img{width:100%;height:100%;object-fit:cover}.certificate-info{padding:1.5rem}.certificate-info h2{margin-bottom:.5rem;color:var(--text-color, #2c3e50)}.certificate-info p{color:var(--text-secondary, #7f8c8d);line-height:1.8}.services-page{padding:2rem 0}.services-page h1{margin-bottom:2rem;color:var(--text-color, #2c3e50)}.services-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:2rem}.service-card{background:var(--card-background, white);border-radius:12px;overflow:hidden;box-shadow:0 2px 8px #0000001a;transition:transform .2s,box-shadow .2s;color:var(--text-color, #2c3e50)}.service-card:hover{transform:translateY(-4px);box-shadow:0 4px 16px #00000026}.service-image{width:100%;height:200px;overflow:hidden}.service-image img{width:100%;height:100%;object-fit:cover}.service-info{padding:1.5rem}.service-info h2{margin-bottom:.5rem;color:var(--text-color, #2c3e50)}.service-info p{color:var(--text-secondary, #7f8c8d);line-height:1.8;margin-bottom:1rem}.service-price{display:flex;align-items:baseline;gap:.5rem}.service-price .price{font-size:1.5rem;font-weight:700;color:#27ae60}.dark-theme .service-price .price{color:#2ecc71}.service-price .unit{font-size:.9rem;color:var(--text-secondary, #7f8c8d)}.empty{text-align:center;padding:3rem;color:var(--text-secondary, #7f8c8d);font-size:1.1rem}.privacy-page{padding:2rem 0;max-width:900px;margin:0 auto}.privacy-page h1{margin-bottom:2rem;color:var(--text-color, #2c3e50)}.privacy-content{background:var(--card-background, white);border-radius:12px;padding:2rem;box-shadow:0 2px 8px #0000001a;color:var(--text-color, #2c3e50);line-height:1.8;border:1px solid var(--card-border, transparent)}.privacy-content h2{margin-top:2rem;margin-bottom:1rem;color:var(--text-color, #2c3e50)}.privacy-content h3{margin-top:1.5rem;margin-bottom:.75rem;color:var(--text-color, #2c3e50)}.privacy-content p{margin-bottom:1rem;color:var(--text-secondary, #7f8c8d)}.privacy-content ul,.privacy-content ol{margin-bottom:1rem;padding-left:2rem}.privacy-content li{margin-bottom:.5rem;color:var(--text-secondary, #7f8c8d)}.error{text-align:center;padding:2rem;color:var(--accent-color, #e74c3c);font-size:1.1rem}*{margin:0;padding:0;box-sizing:border-box}:root{--primary-color: #3498db;--secondary-color: #2980b9;--accent-color: #e74c3c;--background-color: #ffffff;--text-color: #2c3e50;--hero-gradient-start: #3498db;--hero-gradient-end: #2980b9}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:var(--background-color, #f5f5f5);color:var(--text-color, #333)}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}#root{min-height:100vh}.dark-theme{--background-color: #1a1a1a;--text-color: #e0e0e0;--text-secondary: #bdc3c7;--primary-color: #4a9eff;--secondary-color: #357abd;--accent-color: #ff6b6b;--card-background: #2d2d2d;--card-border: #404040;--border-color: #404040;--input-background: #3d3d3d;--input-border: #555;--hover-background: #353535;--price-section-background: #2d2d2d}.dark-theme body{background-color:var(--background-color);color:var(--text-color)}.dark-theme .header{background-color:var(--header-background, #2d2d2d);box-shadow:0 2px 8px #0000004d}.dark-theme .footer{background-color:var(--footer-background, #2d2d2d);color:var(--footer-text, var(--text-color))}.dark-theme .product-card,.dark-theme .admin-settings-content,.dark-theme .modal-content,.dark-theme .categories-welcome,.dark-theme .empty,.dark-theme .error,.dark-theme .order-card,.dark-theme .order-info,.dark-theme .order-items,.dark-theme .orders-empty,.dark-theme .product-reviews,.dark-theme .review-item,.dark-theme .review-form-container,.dark-theme .product-specifications,.dark-theme .product-gallery,.dark-theme .product-detail-content,.dark-theme .category-tree,.dark-theme .category-item,.dark-theme .auth-card{background-color:var(--card-background, #2d2d2d);color:var(--text-color);border-color:var(--card-border, #404040)}.dark-theme input,.dark-theme textarea,.dark-theme select{background-color:var(--input-background, #3d3d3d);color:var(--text-color);border-color:var(--input-border, #555)}.dark-theme .nav-link{color:var(--text-color)}.dark-theme .nav-link:hover{color:var(--primary-color)}.dark-theme .product-card:hover,.dark-theme .order-card:hover,.dark-theme .certificate-card:hover,.dark-theme .service-card:hover,.dark-theme .sale-product-card:hover{box-shadow:0 4px 16px #0006}.dark-theme .order-header:hover{background-color:var(--hover-background, #353535)}.dark-theme .order-details,.dark-theme .order-item{background-color:#252525}.dark-theme .info-row{border-bottom-color:#404040}.dark-theme .product-footer{border-top-color:#404040}.dark-theme .review-form-container,.dark-theme .review-item{background-color:#252525}.dark-theme .cart-item,.dark-theme .cart-summary,.dark-theme .quantity-btn,.dark-theme .btn-continue-shopping,.dark-theme .btn-cancel{background-color:var(--card-background, #2d2d2d);border-color:var(--card-border, #404040)}.dark-theme .specification-item{border-bottom-color:#404040}.dark-theme .category-tree-node:hover,.dark-theme .action-menu-item:hover{background-color:var(--hover-background, #353535)}.dark-theme .product-price-section{background-color:var(--card-background, #2d2d2d);border:1px solid var(--card-border, #404040)}.dark-theme .category-tree-name{color:var(--text-color, #e0e0e0)}.dark-theme .category-tree-node:not(.selected){color:var(--text-color, #e0e0e0)}.dark-theme .category-tree-node:not(.selected):hover{background-color:var(--hover-background, #353535)}.dark-theme .tree-title-wrapper{border-bottom-color:var(--card-border, #404040)}.dark-theme .tree-content::-webkit-scrollbar-track{background:#2d2d2d}.dark-theme .tree-content::-webkit-scrollbar-thumb{background:var(--primary-color, #4a9eff)}.dark-theme .tree-content::-webkit-scrollbar-thumb:hover{background:var(--secondary-color, #357abd)}.dark-theme .features-section,.dark-theme .feature-card,.dark-theme .info-block,.dark-theme .settings-content,.dark-theme .certificate-card,.dark-theme .service-card,.dark-theme .delivery-info-card,.dark-theme .privacy-content,.dark-theme .sale-product-card,.dark-theme .sale-products-section,.dark-theme .home-section{background-color:var(--card-background, #2d2d2d);border-color:var(--card-border, #404040)}.dark-theme .feature-card{background:var(--card-background, #2d2d2d)}.dark-theme .info-value{background-color:var(--input-background, #3d3d3d);border-color:var(--input-border, #555)}.dark-theme .gallery-main,.dark-theme .gallery-main-placeholder,.dark-theme .gallery-thumbnail{background:var(--input-background, #3d3d3d)}.dark-theme .gallery-nav-btn{background:var(--card-background, #2d2d2d);color:var(--text-color, #e0e0e0)}.dark-theme .gallery-nav-btn:hover{background:var(--hover-background, #353535)}.dark-theme .gallery-thumbnails::-webkit-scrollbar-thumb{background:var(--primary-color, #4a9eff)}.dark-theme .gallery-thumbnails{scrollbar-color:var(--primary-color, #4a9eff) transparent}.dark-theme .auth-card{box-shadow:0 4px 16px #0006}.dark-theme .error-message{background-color:#4a1a1a;color:#ff6b6b;border:1px solid #6a2a2a}.dark-theme .slider-captcha-track{background:#3d3d3d;border-color:#555}.dark-theme .slider-captcha-text{color:#bdc3c7}.dark-theme .filters-panel,.dark-theme .products-controls{background-color:var(--card-background, #2d2d2d);border-color:var(--card-border, #404040)}.dark-theme .filter-group input[type=text],.dark-theme .filter-group input[type=number],.dark-theme .filter-group select,.dark-theme .sort-select{background-color:var(--input-background, #3d3d3d);color:var(--text-color, #e0e0e0);border-color:var(--input-border, #555)}.dark-theme .filter-group input[type=text]:focus,.dark-theme .filter-group input[type=number]:focus,.dark-theme .filter-group select:focus,.dark-theme .sort-select:focus{border-color:var(--primary-color, #4a9eff);box-shadow:0 0 0 2px #4a9eff33}.dark-theme .filter-group input[type=text]:hover,.dark-theme .filter-group input[type=number]:hover,.dark-theme .filter-group select:hover,.dark-theme .sort-select:hover{border-color:var(--primary-color, #4a9eff)}.dark-theme .filter-group label{color:var(--text-color, #e0e0e0)}.dark-theme .filter-range span{color:var(--text-secondary, #bdc3c7)}.dark-theme .btn-reset{background:var(--text-secondary, #7f8c8d)}.dark-theme .btn-reset:hover{background:var(--text-secondary, #95a5a6)}.dark-theme .product-specs span{background-color:var(--input-background, #3d3d3d);border-color:var(--input-border, #555);color:var(--text-secondary, #bdc3c7)}
