@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap";:root{--primary: #1a472a;--primary-dark: #12331f;--accent: #c5a059;--bg: #f9f8f4;--text: #2c2c2c;--text-light: #666;--white: #ffffff;--border: #e0e0e0;--font-heading: "Playfair Display", serif;--font-body: "Inter", sans-serif;--shadow-sm: 0 1px 3px rgba(0,0,0,.05);--shadow-md: 0 4px 6px rgba(0,0,0,.05);--shadow-lg: 0 10px 15px rgba(0,0,0,.05);--radius-sm: 4px;--radius-md: 8px;--radius-lg: 16px}*{margin:0;padding:0;box-sizing:border-box}body{font-family:var(--font-body);background-color:var(--bg);color:var(--text);line-height:1.6;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);color:var(--primary);font-weight:600;line-height:1.2}a{text-decoration:none;color:inherit;transition:color .3s ease}button{cursor:pointer;border:none;background:none;font-family:var(--font-body)}.container{max-width:1200px;margin:0 auto;padding:0 20px}.text-center{text-align:center}.flex{display:flex}.items-center{align-items:center}.justify-between{justify-content:space-between}.gap-4{gap:1rem}.mt-4{margin-top:1rem}.mb-4{margin-bottom:1rem}.btn{display:inline-block;padding:12px 24px;font-weight:500;border-radius:var(--radius-sm);transition:all .3s ease;letter-spacing:.5px}.btn-primary{background-color:var(--primary);color:var(--white)}.btn-primary:hover{background-color:var(--primary-dark)}.btn-outline{border:1px solid var(--primary);color:var(--primary)}.btn-outline:hover{background-color:var(--primary);color:var(--white)}.navbar{position:fixed;top:0;left:0;width:100%;z-index:1000;padding:20px 0;transition:all .3s ease}.navbar.solid{background-color:var(--white);box-shadow:var(--shadow-sm);padding:15px 0}.navbar-content{display:flex;justify-content:space-between;align-items:center}.logo{font-family:var(--font-heading);font-size:2rem;font-weight:700;letter-spacing:2px;color:var(--primary);text-transform:uppercase;transition:font-size .3s ease}.navbar.scrolled .logo{font-size:1.5rem}.navbar.scrolled{padding:10px 0;box-shadow:var(--shadow-md)}.nav-links{display:flex;gap:30px}.nav-links a{font-size:.9rem;text-transform:uppercase;letter-spacing:1px;font-weight:500;position:relative}.nav-links a:after{content:"";position:absolute;bottom:-5px;left:0;width:0;height:1px;background-color:var(--primary);transition:width .3s ease}.nav-links a:hover:after{width:100%}.navbar-right{display:flex;gap:20px;align-items:center}.search-container{position:relative}.search-bar-open{position:absolute;top:50px;right:0;width:400px;background:var(--white);border-radius:var(--radius-md);box-shadow:var(--shadow-lg);z-index:1001;padding:15px}.search-form{display:flex;gap:10px;align-items:center}.search-input{flex:1;padding:10px 15px;border:1px solid var(--border);border-radius:var(--radius-sm);font-family:var(--font-body);font-size:.9rem;outline:none}.search-input:focus{border-color:var(--primary);box-shadow:0 0 0 2px #1a472a1a}.search-submit-btn,.search-close-btn{background:none;border:none;cursor:pointer;color:var(--primary);padding:5px;display:flex;align-items:center;justify-content:center;transition:color .3s}.search-submit-btn:hover,.search-close-btn:hover{color:var(--accent)}.search-results{margin-top:10px;max-height:400px;overflow-y:auto;border-top:1px solid var(--border);padding-top:10px}.search-result-item{display:flex;gap:15px;padding:10px;cursor:pointer;border-radius:var(--radius-sm);transition:background-color .2s}.search-result-item:hover{background-color:#f5f5f5}.search-result-item img{width:60px;height:60px;object-fit:cover;border-radius:var(--radius-sm)}.search-result-info{flex:1}.search-result-info h4{font-size:.9rem;margin:0 0 5px;color:var(--text);font-weight:500}.search-result-info p{font-size:.85rem;color:var(--primary);font-weight:600;margin:0}.search-no-results{padding:20px;text-align:center;color:var(--text-light);font-size:.9rem}.icon{cursor:pointer;color:var(--primary);transition:color .3s}.icon:hover{color:var(--accent)}.cart-icon{position:relative}.cart-count{position:absolute;top:-5px;right:-5px;background-color:var(--accent);color:var(--white);font-size:10px;width:18px;height:18px;border-radius:50%;display:flex;justify-content:center;align-items:center;font-weight:700}.mobile-only{display:none}@media(max-width:768px){.desktop-only{display:none}.mobile-only{display:block}.logo{font-size:1.5rem}.search-bar-open{width:calc(100vw - 40px);right:-20px}}.user-profile-menu{position:relative}.user-avatar{width:36px;height:36px;border-radius:50%;cursor:pointer;border:2px solid var(--primary);transition:transform .2s;object-fit:cover}.user-avatar:hover{transform:scale(1.1)}.user-initials{width:36px;height:36px;border-radius:50%;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:600;cursor:pointer;transition:transform .2s;font-size:.9rem}.user-initials:hover{transform:scale(1.1)}.profile-dropdown{position:absolute;top:50px;right:0;background:#fff;border-radius:var(--radius-md);box-shadow:var(--shadow-lg);min-width:200px;z-index:1002;overflow:hidden}.profile-dropdown-header{padding:15px;border-bottom:1px solid var(--border);background:#f9fafb}.profile-dropdown-header p{margin:0;font-size:.85rem;color:var(--text-light)}.profile-dropdown-header h4{margin:5px 0 0;font-size:1rem;color:var(--text)}.profile-dropdown-item{padding:12px 20px;cursor:pointer;transition:background .2s;display:flex;align-items:center;gap:10px;color:var(--text);text-decoration:none}.profile-dropdown-item:hover{background:#f5f5f5}.profile-dropdown-item.logout{color:#dc2626;border-top:1px solid var(--border)}.section-padding{padding:80px 0}.hero{height:100vh;background:radial-gradient(circle at center,#f3f4f6,#e5e7eb);position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center;color:var(--text);margin-top:-80px}.hero-3d-container{position:absolute;top:50%;left:50%;transform-origin:center center;width:60%;max-width:800px;z-index:1;pointer-events:none;margin-top:-300px;margin-left:-30%;opacity:.8}.hero-3d-obj{width:100%;height:auto;object-fit:contain;filter:drop-shadow(0 20px 50px rgba(0,0,0,.2))}.hero-content{position:relative;z-index:10}.hero-title{font-size:5rem;margin-bottom:20px;color:var(--white);text-shadow:2px 2px 4px rgba(0,0,0,.5);font-weight:800}.hero-subtitle{font-size:1.5rem;font-weight:400;letter-spacing:4px;color:var(--white);margin-bottom:30px;text-transform:uppercase;text-shadow:0 2px 4px rgba(0,0,0,.5)}.section-title{font-size:2.5rem;margin-bottom:50px;position:relative;display:inline-block}.section-title:after{content:"";position:absolute;bottom:-10px;left:50%;transform:translate(-50%);width:60px;height:3px;background-color:var(--accent)}.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:30px;margin-bottom:40px}.product-card{background:var(--white);border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-sm);transition:transform .3s ease,box-shadow .3s ease}.product-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}.product-image{height:400px;overflow:hidden}.product-image img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}.product-card:hover .product-image img{transform:scale(1.05)}.product-info{padding:20px;text-align:center}.product-info h3{font-size:1.2rem;color:var(--text);margin-bottom:10px;font-family:var(--font-heading)}.price{color:var(--text-light);font-weight:600;margin-bottom:15px;font-size:1.1rem}.link-arrow{display:flex;align-items:center;justify-content:center;gap:5px;color:var(--primary);font-weight:500;font-size:.9rem}.about-teaser .about-image img{border-radius:var(--radius-md);width:100%;max-width:500px;box-shadow:var(--shadow-md)}.about-text{flex:1;padding-right:50px}@media(max-width:768px){.hero-title{font-size:2.5rem}.about-teaser .container{flex-direction:column-reverse}.about-text{padding-right:0;text-align:center}}.btn-admin{background:linear-gradient(135deg,#667eea,#764ba2);color:var(--white);padding:14px 28px;border-radius:var(--radius-md);text-decoration:none;font-weight:600;display:inline-flex;align-items:center;gap:8px;transition:all .3s ease;box-shadow:0 4px 15px #667eea66}.btn-admin:hover{background:linear-gradient(135deg,#764ba2,#667eea);transform:translateY(-2px);box-shadow:0 6px 20px #667eea99;color:var(--white)}.btn-admin svg{animation:rotate 3s linear infinite}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.btn-admin:hover svg{animation-duration:1s}.page-title{margin-top:60px;margin-bottom:30px;font-size:3rem}.filters{display:flex;justify-content:center;gap:15px;margin-bottom:50px}.filter-btn{padding:8px 20px;border:none;background:none;border-bottom:2px solid transparent;font-weight:500;text-transform:uppercase;font-size:.9rem;color:var(--text-light);transition:all .3s;cursor:pointer}.filter-btn:hover,.filter-btn.active{color:var(--primary);border-bottom-color:var(--accent)}.product-image{position:relative;overflow:hidden}.product-card .product-image img{transition:filter .3s ease}.product-card:hover .product-image img{filter:grayscale(100%)}.stock-status-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:transparent;display:flex;align-items:center;justify-content:center;pointer-events:none;z-index:10}.stock-status-overlay span{background:#dc2626;color:#fff;padding:.5rem 1.2rem;border-radius:4px;font-weight:600;font-size:.9rem;text-transform:uppercase;letter-spacing:1px;box-shadow:0 4px 15px #dc262666;opacity:.9}.product-details-page{margin-top:80px}.details-wrapper{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}.details-image img{width:100%;border-radius:var(--radius-md);box-shadow:var(--shadow-md)}.details-info h1{font-size:2.5rem;margin-bottom:10px}.category-tag{display:inline-block;background-color:#f0f0f0;padding:4px 12px;border-radius:20px;font-size:.8rem;text-transform:uppercase;margin-bottom:15px;color:var(--text-light)}.details-price{font-size:2rem;color:var(--primary);font-weight:600;margin-bottom:30px}.description{color:var(--text-light);margin-bottom:40px;line-height:1.8}.add-to-cart-btn{display:flex;align-items:center;gap:10px;width:100%;justify-content:center;padding:18px;font-size:1.1rem}.delivery-info{background-color:var(--white);padding:20px;border:1px solid var(--border);border-radius:var(--radius-sm)}@media(max-width:768px){.details-wrapper{grid-template-columns:1fr;gap:30px}}.about-page{margin-top:60px}.about-hero{margin-bottom:80px}.about-hero h1{font-size:3.5rem;margin-bottom:20px}.about-hero .subtitle{font-size:1.2rem;color:var(--text-light);letter-spacing:2px;text-transform:uppercase}.about-section{display:flex;align-items:center;gap:60px;margin-bottom:100px}.about-section.reverse{flex-direction:row-reverse}.about-section .text{flex:1}.about-section .text h2{font-size:2rem;margin-bottom:20px;position:relative;display:inline-block}.about-section .text h2:after{content:"";position:absolute;bottom:-10px;left:0;width:40px;height:2px;background-color:var(--accent)}.about-section .image{flex:1}.about-section .image img{width:100%;border-radius:var(--radius-md);box-shadow:var(--shadow-md)}@media(max-width:768px){.about-section,.about-section.reverse{flex-direction:column;gap:30px}}.cart-page{margin-top:80px;min-height:60vh}.empty-state h2{font-size:2rem;margin-bottom:10px}.empty-state p{color:var(--text-light)}.cart-layout{display:grid;grid-template-columns:2fr 1fr;gap:40px}.cart-items{display:flex;flex-direction:column;gap:20px}.cart-item{display:flex;align-items:center;gap:20px;background:var(--white);padding:20px;border-radius:var(--radius-md);box-shadow:var(--shadow-sm)}.cart-item-image{width:80px;height:80px;overflow:hidden;border-radius:var(--radius-sm)}.cart-item-image img{width:100%;height:100%;object-fit:cover}.cart-item-details{flex:1}.cart-item-details h3{font-size:1.1rem;margin-bottom:5px}.item-price{font-weight:600;color:var(--primary)}.cart-item-actions{display:flex;align-items:center;gap:20px}.quantity-controls{display:flex;align-items:center;border:1px solid #e0e0e0;border-radius:var(--radius-sm)}.quantity-controls button{padding:5px 10px;font-weight:600}.quantity-controls span{padding:0 10px;font-weight:500}.remove-btn{color:#ef4444;padding:8px;border-radius:4px;transition:background .2s}.remove-btn:hover{background-color:#fef2f2}.cart-summary{background:var(--white);padding:30px;border-radius:var(--radius-md);box-shadow:var(--shadow-sm);height:fit-content}.cart-summary h2{font-size:1.5rem;margin-bottom:20px}.summary-row{display:flex;justify-content:space-between;margin-bottom:15px;color:var(--text-light)}.summary-row.total{color:var(--text);font-weight:700;font-size:1.2rem;margin-top:15px;margin-bottom:25px}.summary-divider{height:1px;background-color:#e0e0e0;margin:15px 0}.checkout-btn{display:flex;align-items:center;justify-content:center;gap:10px;font-size:1rem}@media(max-width:768px){.cart-layout{grid-template-columns:1fr}}.admin-layout{display:flex;min-height:100vh;background-color:#f3f4f6}.admin-sidebar{width:250px;background-color:#1e293b;color:var(--white);display:flex;flex-direction:column;padding:20px;position:fixed;height:100vh}.admin-logo h2{color:var(--white);margin-bottom:40px;font-size:1.5rem;letter-spacing:1px}.admin-nav{display:flex;flex-direction:column;gap:10px;flex:1}.admin-nav-item{display:flex;align-items:center;gap:12px;padding:12px 15px;color:#94a3b8;border-radius:var(--radius-sm);transition:all .3s;position:relative}.admin-nav-item:hover,.admin-nav-item.active{background-color:#334155;color:var(--white)}.admin-content{flex:1;margin-left:250px;padding:30px}.admin-footer{border-top:1px solid #334155;padding-top:20px}.notification-dot{position:absolute;top:10px;right:12px;width:8px;height:8px;background:#ef4444;border-radius:50%;border:2px solid #1e293b;box-shadow:0 0 #ef4444;animation:notificationPulse 2s ease-in-out infinite}@keyframes notificationPulse{0%{box-shadow:0 0 #ef4444b3}50%{box-shadow:0 0 0 6px #ef444400}to{box-shadow:0 0 #ef444400}}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px}.stat-card{background:var(--white);padding:25px;border-radius:var(--radius-md);box-shadow:var(--shadow-sm);display:flex;align-items:center;gap:20px}.stat-icon{width:50px;height:50px;border-radius:50%;display:flex;justify-content:center;align-items:center}.bg-green{background-color:#dcfce7}.bg-gold{background-color:#fef9c3}.bg-blue{background-color:#dbeafe}.stat-card h3{font-size:.9rem;color:var(--text-light);margin-bottom:5px}.stat-value{font-size:1.8rem;font-weight:700;color:var(--text)}.quick-actions-section{margin-top:40px}.quick-actions-section h2{margin-bottom:20px;font-size:1.5rem}.actions-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px}.action-card{background:var(--white);padding:30px;border-radius:var(--radius-md);box-shadow:var(--shadow-sm);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:15px;color:var(--primary);font-weight:600;transition:all .3s;border:1px solid transparent}.action-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);border-color:var(--primary)}.checkout-page{background-color:#f8f9fa;min-height:80vh}.checkout-grid{display:grid;grid-template-columns:1.5fr 1fr;gap:2rem}.checkout-form-section,.checkout-summary-section{background:#fff;padding:2rem;border-radius:12px;box-shadow:0 5px 15px #0000000d}.checkout-section h2{font-size:1.25rem;margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid #eee;color:#1a472a}.form-group label{display:block;margin-bottom:.5rem;font-weight:500;color:#333}.form-control{width:100%;padding:.75rem;border:1px solid #e2e8f0;border-radius:8px;transition:all .2s}.form-control:focus{border-color:#1a472a;outline:none;box-shadow:0 0 0 3px #1a472a1a}.payment-methods{display:grid;gap:1rem;margin-bottom:1.5rem}.payment-method-card{border:2px solid #e2e8f0;border-radius:10px;padding:1rem;cursor:pointer;display:flex;align-items:center;gap:1rem;transition:all .2s}.payment-method-card:hover{border-color:#d1d5db}.payment-method-card.active{border-color:#1a472a;background-color:#f0fdf4}.method-icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;background:#fff;border-radius:50%;box-shadow:0 2px 5px #0000000d}.method-info h4{margin:0;font-size:1rem;color:#333}.method-info p{margin:0;font-size:.85rem;color:#666}.bkash-details{background:#fff0f6;padding:1rem;border-radius:8px;margin-top:1rem;border:1px solid #ffcce0}.nagad-details{background:#fff4e6;padding:1rem;border-radius:8px;margin-top:1rem;border:1px solid #ffe8cc}.summary-items{max-height:300px;overflow-y:auto;margin-bottom:1.5rem}.summary-item{display:flex;gap:1rem;margin-bottom:1rem;padding-bottom:1rem;border-bottom:1px solid #f0f0f0}.summary-image{width:60px;height:60px;border-radius:6px;object-fit:cover}.summary-info h4{margin:0 0 .25rem;font-size:.9rem}.summary-totals{border-top:2px solid #f0f0f0;padding-top:1rem}.total-row{display:flex;justify-content:space-between;margin-bottom:.75rem;color:#666}.total-row.final{color:#1a472a;font-weight:700;font-size:1.2rem;margin-top:1rem;border-top:1px solid #eee;padding-top:1rem}.place-order-btn{width:100%;margin-top:1.5rem;padding:1rem;font-size:1.1rem}@media(max-width:768px){.checkout-grid{grid-template-columns:1fr}}.profile-page{min-height:80vh;background:#f9fafb}.profile-header{display:flex;align-items:center;gap:30px;background:#fff;padding:40px;border-radius:12px;box-shadow:0 2px 8px #0000000d;margin-bottom:30px}.profile-avatar-lg{width:120px;height:120px;border-radius:50%;object-fit:cover;border:4px solid var(--primary)}.profile-initials-lg{background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;font-size:2.5rem;font-weight:700}.profile-info h1{margin:0 0 10px;color:var(--text)}.profile-email{color:var(--text-light);margin:0 0 10px}.profile-role{display:inline-block;background:#e0f2e9;color:var(--primary);padding:5px 15px;border-radius:20px;font-size:.85rem;font-weight:600}.profile-content{background:#fff;padding:40px;border-radius:12px;box-shadow:0 2px 8px #0000000d}.profile-section h2{margin-top:0;margin-bottom:30px;color:var(--text)}.empty-orders{text-align:center;padding:60px 20px}.empty-orders p{color:var(--text-light);margin-bottom:20px}.orders-list{display:flex;flex-direction:column;gap:20px}.order-card{border:1px solid #e5e7eb;border-radius:8px;padding:20px;transition:box-shadow .2s}.order-card:hover{box-shadow:0 4px 12px #00000014}.order-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid #e5e7eb}.order-header h4{margin:0 0 5px;font-size:1.1rem;color:var(--text)}.order-date{margin:0;color:var(--text-light);font-size:.9rem}.status-badge{padding:6px 12px;border-radius:20px;font-size:.85rem;font-weight:600;text-transform:capitalize}.status-badge.pending{background:#fef3c7;color:#92400e}.status-badge.processing{background:#dbeafe;color:#1e40af}.status-badge.delivered{background:#d1fae5;color:#065f46}.order-body{display:flex;justify-content:space-between;align-items:center}.order-items{display:flex;gap:15px;align-items:center;flex:1}.order-item-preview{display:flex;align-items:center;gap:10px;font-size:.9rem;color:var(--text-light)}.order-item-preview img{width:50px;height:50px;object-fit:cover;border-radius:4px}.more-items{color:var(--text-light);font-size:.9rem}.order-total{font-size:1.2rem;color:var(--primary)}@media(max-width:768px){.profile-header{flex-direction:column;text-align:center;padding:30px 20px}.profile-content{padding:20px}.order-body{flex-direction:column;gap:15px;align-items:flex-start}.order-items{flex-wrap:wrap}}.product-table-container{background:var(--white);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);overflow-x:auto}.product-table{width:100%;border-collapse:collapse}.product-table th,.product-table td{padding:15px 20px;text-align:left;border-bottom:1px solid #e2e8f0}.product-table th{background-color:#f8fafc;color:#64748b;font-weight:600;text-transform:uppercase;font-size:.8rem}.table-img{width:50px;height:50px;object-fit:cover;border-radius:4px}.badge{background-color:#e2e8f0;padding:4px 10px;border-radius:20px;font-size:.8rem;color:#475569}.actions{display:flex;gap:10px}.action-btn{padding:6px;border-radius:4px;transition:all .2s}.action-btn.edit{color:#3b82f6;background-color:#eff6ff}.action-btn.delete{color:#ef4444;background-color:#fef2f2}.action-btn:hover{filter:brightness(.9)}.product-form{background:var(--white);padding:30px;border-radius:var(--radius-md);box-shadow:var(--shadow-sm);max-width:600px}.form-group{margin-bottom:20px}.form-group label{display:block;margin-bottom:8px;font-weight:500;color:var(--text)}.form-group input[type=text],.form-group input[type=number],.form-group input[type=url],.form-group input[type=file],.form-group select,.form-group textarea{width:100%;padding:10px;border:1px solid #e2e8f0;border-radius:var(--radius-sm);font-family:var(--font-body)}.form-group input[type=file]{padding:8px;cursor:pointer;background-color:var(--white)}.form-group input[type=file]:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 2px #1a472a1a}.image-preview{margin-top:15px;padding:15px;border:1px solid #e2e8f0;border-radius:var(--radius-sm);background-color:#f9f9f9;text-align:center}.image-preview img{max-width:100%;max-height:300px;object-fit:contain;border-radius:var(--radius-sm);box-shadow:var(--shadow-sm)}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 2px #1a472a1a}.form-group.checkbox label{display:flex;align-items:center;gap:10px;font-weight:400;cursor:pointer}.orders-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem}.orders-header h1{margin:0;color:var(--primary)}.order-stats{display:flex;gap:15px}.stat-badge{background:#fef3c7;color:#92400e;padding:8px 16px;border-radius:20px;font-size:.9rem}.stat-badge strong{font-size:1.2rem}.stat-badge.delivered{background:#d1fae5;color:#065f46}.filter-tabs{display:flex;gap:10px;margin-bottom:1.5rem;flex-wrap:wrap}.filter-tab{background:#fff;border:2px solid #e5e7eb;padding:10px 20px;border-radius:8px;cursor:pointer;font-weight:500;transition:all .2s;color:#64748b}.filter-tab:hover{border-color:var(--primary);background:#f0fdf4}.filter-tab.active{background:var(--primary);color:#fff;border-color:var(--primary)}.order-table-container{background:var(--white);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);overflow-x:auto}.order-table{width:100%;border-collapse:collapse}.order-table th,.order-table td{padding:15px 20px;text-align:left;border-bottom:1px solid #e2e8f0}.order-table th{background-color:#f8fafc;color:#64748b;font-weight:600}.order-table tbody tr{transition:background .2s}.order-table tbody tr:hover{background:#f9fafb}.status-badge{padding:4px 12px;border-radius:20px;font-size:.8rem;font-weight:500}.status-badge.pending{background-color:#fef9c3;color:#854d0e}.status-badge.delivered{background-color:#dcfce7;color:#166534}.status-badge.cancelled{background-color:#fee2e2;color:#991b1b}.btn-sm{padding:5px 10px;font-size:.8rem;border:1px solid #e2e8f0;border-radius:4px;color:#475569;cursor:pointer}.btn-sm:hover{background-color:#f1f5f9}.modal-overlay{position:fixed;inset:0;background-color:#00000080;display:flex;align-items:center;justify-content:center;z-index:1000;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.modal-content{background:#fff;width:90%;max-width:800px;max-height:90vh;overflow-y:auto;border-radius:12px;box-shadow:0 10px 25px #0000001a;position:relative;padding:2rem}.modal-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;border-bottom:1px solid #eee;padding-bottom:1rem}.modal-header h2{font-size:1.5rem;color:#1a472a;margin:0}.close-btn{background:none;border:none;cursor:pointer;color:#666;padding:.5rem;border-radius:50%;transition:background .2s}.close-btn:hover{background-color:#f0f0f0;color:#333}.modal-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem;margin-bottom:2rem}.info-group{background:#f8f9fa;padding:1.5rem;border-radius:8px;border:1px solid #e9ecef}.info-group h3{font-size:1.1rem;margin-bottom:1rem;color:#4b5563;display:flex;align-items:center;gap:.5rem}.info-row{margin-bottom:.8rem;font-size:.95rem;color:#333}.info-row strong{color:#6b7280;margin-right:.5rem}.payment-highlight{background:#fff8e1;padding:1rem;border-radius:6px;margin-top:1rem;border:1px solid #ffe0b2}.order-items-table{width:100%;margin-top:1rem;border-collapse:collapse}.order-items-table th{text-align:left;padding:.75rem;background:#f8f9fa;font-size:.9rem;color:#64748b}.order-items-table td{padding:1rem .75rem;border-bottom:1px solid #f0f0f0}.item-name-cell{display:flex;align-items:center;gap:1rem}.item-thumb{width:40px;height:40px;object-fit:cover;border-radius:4px}.order-actions{display:flex;gap:15px;margin-top:2rem;padding-top:2rem;border-top:1px solid #e5e7eb;justify-content:flex-end}.btn-success{background:#10b981;color:#fff;padding:10px 24px;border-radius:8px;border:none;font-weight:600;cursor:pointer;transition:background .2s}.btn-success:hover{background:#059669}.btn-danger{background:#ef4444;color:#fff;padding:10px 24px;border-radius:8px;border:none;font-weight:600;cursor:pointer;transition:background .2s}.btn-danger:hover{background:#dc2626}.status-info{margin-top:2rem;padding:1.5rem;border-radius:8px;text-align:center}.status-message{font-size:1.1rem;font-weight:600;margin:0}.status-message.delivered{color:#065f46;background:#d1fae5;padding:1rem;border-radius:8px}.status-message.cancelled{color:#991b1b;background:#fee2e2;padding:1rem;border-radius:8px}.badge{display:inline-block;padding:4px 10px;border-radius:12px;font-size:.85rem;font-weight:600}.badge.guest{background:#fef3c7;color:#92400e}.badge.registered{background:#d1fae5;color:#065f46}@media(max-width:768px){.modal-grid{grid-template-columns:1fr}.orders-header{flex-direction:column;align-items:flex-start;gap:15px}.filter-tabs{overflow-x:auto;white-space:nowrap}.order-actions{flex-direction:column}}.login-page{min-height:80vh;display:flex;align-items:center;justify-content:center;background-color:#f8f9fa;padding:2rem}.login-container{background:#fff;padding:2.5rem;border-radius:12px;box-shadow:0 10px 25px #0000000d;width:100%;max-width:450px}.login-container h1{text-align:center;color:#1a472a;margin-bottom:.5rem}.subtitle{text-align:center;color:#666;margin-bottom:2rem;font-size:.9rem;text-transform:uppercase;letter-spacing:1px}.form-group{margin-bottom:1.25rem}.form-group label{display:block;margin-bottom:.5rem;color:#333;font-weight:500}.form-group input{width:100%;padding:.75rem;border:1px solid #e2e8f0;border-radius:8px;font-size:1rem;transition:all .2s}.form-group input:focus{border-color:#1a472a;outline:none;box-shadow:0 0 0 3px #1a472a1a}.btn-primary{background-color:#1a472a;color:#fff;padding:.8rem;border:none;border-radius:8px;font-weight:600;cursor:pointer;transition:background .2s}.btn-primary:hover{background-color:#143620}.btn-primary:disabled{background-color:#9ca3af;cursor:not-allowed}.link-btn{background:none;border:none;color:#1a472a;font-weight:600;cursor:pointer;text-decoration:underline;padding:0}.error-message{background-color:#fee2e2;color:#991b1b;padding:.75rem;border-radius:6px;margin-bottom:1.5rem;text-align:center;font-size:.9rem}.google-login-btn{display:flex;align-items:center;justify-content:center;width:100%;background:#fff;border:1px solid #e2e8f0;padding:.8rem;border-radius:8px;cursor:pointer;transition:all .2s;gap:10px;margin-bottom:1.5rem;color:#374151;font-weight:500}.google-login-btn:hover{background-color:#f9fafb;border-color:#d1d5db}.google-login-btn img{width:20px;height:20px}.divider{display:flex;align-items:center;text-align:center;margin-bottom:1.5rem;color:#9ca3af}.divider:before,.divider:after{content:"";flex:1;border-bottom:1px solid #e2e8f0}.divider span{padding:0 10px;font-size:.8rem}
