:root{--red-primary: #c8102e;--red-dark: #a00d24;--red-light: #e8344e;--gold: #d4a843;--gold-light: #e8c96a;--cream: #fdf6ee;--cream-dark: #f5e6d0;--brown: #3e2723;--brown-light: #5d4037;--text-dark: #2c1810;--text-medium: #6b4f43;--text-light: #9b8578;--white: #ffffff;--shadow-sm: 0 1px 3px rgba(0,0,0,.08);--shadow-md: 0 4px 12px rgba(0,0,0,.1);--shadow-lg: 0 8px 30px rgba(0,0,0,.12);--radius: 12px;--radius-sm: 8px;--font-display: "Playfair Display", Georgia, serif;--font-body: "Inter", -apple-system, sans-serif}*{box-sizing:border-box;margin:0;padding:0}html,body,#root{min-height:100vh;background:var(--cream);color:var(--text-dark);font-family:var(--font-body);line-height:1.6}.header{position:sticky;top:0;z-index:100;background:var(--red-primary);color:var(--white);box-shadow:var(--shadow-md)}.header-inner{max-width:1200px;margin:0 auto;padding:0 1.5rem;display:flex;align-items:center;justify-content:space-between;height:64px}.logo{display:flex;align-items:center;gap:.5rem;font-family:var(--font-display);font-size:1.5rem;font-weight:700;color:var(--white);text-decoration:none}.logo-icon{width:36px;height:36px;background:var(--gold);border-radius:50%;display:grid;place-items:center;font-size:1.1rem}.nav-links{display:flex;gap:2rem;list-style:none}.nav-links a{color:#ffffffd9;text-decoration:none;font-size:.9rem;font-weight:500;transition:color .2s}.nav-links a:hover{color:var(--gold-light)}.header-actions{display:flex;align-items:center;gap:1rem}.cart-btn{position:relative;background:none;border:none;color:var(--white);cursor:pointer;padding:.5rem;border-radius:50%;transition:background .2s}.cart-btn:hover{background:#ffffff26}.cart-btn svg{width:24px;height:24px}.cart-badge{position:absolute;top:-2px;right:-2px;background:var(--gold);color:var(--brown);font-size:.65rem;font-weight:700;width:18px;height:18px;border-radius:50%;display:grid;place-items:center}.hero{background:linear-gradient(135deg,var(--red-primary) 0%,var(--red-dark) 100%);color:var(--white);padding:4rem 1.5rem;text-align:center;position:relative;overflow:hidden}.hero:before{content:"";position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:radial-gradient(circle at 30% 50%,rgba(212,168,67,.15) 0%,transparent 50%),radial-gradient(circle at 70% 50%,rgba(255,255,255,.05) 0%,transparent 50%);animation:shimmer 8s ease-in-out infinite}@keyframes shimmer{0%,to{transform:translate(-5%)}50%{transform:translate(5%)}}.hero-content{position:relative;max-width:700px;margin:0 auto}.hero h1{font-family:var(--font-display);font-size:3rem;font-weight:700;margin-bottom:1rem;line-height:1.15}.hero p{font-size:1.15rem;opacity:.9;margin-bottom:2rem;font-weight:300}.hero-btn{display:inline-flex;align-items:center;gap:.5rem;background:var(--gold);color:var(--brown);border:none;padding:.9rem 2rem;font-size:1rem;font-weight:600;border-radius:50px;cursor:pointer;transition:all .3s;font-family:var(--font-body)}.hero-btn:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:0 6px 20px #d4a84366}.categories-section{max-width:1200px;margin:0 auto;padding:3rem 1.5rem 1rem}.section-title{font-family:var(--font-display);font-size:2rem;font-weight:700;color:var(--brown);text-align:center;margin-bottom:.5rem}.section-subtitle{text-align:center;color:var(--text-medium);margin-bottom:2rem;font-size:1rem}.category-tabs{display:flex;justify-content:center;gap:.75rem;flex-wrap:wrap;margin-bottom:2rem}.category-tab{padding:.6rem 1.5rem;border:2px solid var(--cream-dark);background:var(--white);color:var(--text-medium);border-radius:50px;cursor:pointer;font-size:.9rem;font-weight:500;font-family:var(--font-body);transition:all .2s}.category-tab:hover{border-color:var(--red-primary);color:var(--red-primary)}.category-tab.active{background:var(--red-primary);border-color:var(--red-primary);color:var(--white)}.products-section{max-width:1200px;margin:0 auto;padding:0 1.5rem 3rem}.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1.5rem}.product-card{background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm);transition:all .3s;display:flex;flex-direction:column}.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}.product-image{width:100%;height:200px;object-fit:cover;background:var(--cream-dark);display:flex;align-items:center;justify-content:center;font-size:4rem;position:relative}.product-badge{position:absolute;top:.75rem;left:.75rem;background:var(--red-primary);color:var(--white);font-size:.7rem;font-weight:600;padding:.25rem .6rem;border-radius:50px;text-transform:uppercase;letter-spacing:.05em}.product-info{padding:1.25rem;flex:1;display:flex;flex-direction:column}.product-name{font-family:var(--font-display);font-size:1.15rem;font-weight:600;color:var(--brown);margin-bottom:.35rem}.product-desc{font-size:.85rem;color:var(--text-light);margin-bottom:1rem;flex:1;line-height:1.5}.product-footer{display:flex;align-items:center;justify-content:space-between}.product-price{font-size:1.25rem;font-weight:700;color:var(--red-primary)}.add-to-cart-btn{display:flex;align-items:center;gap:.4rem;background:var(--red-primary);color:var(--white);border:none;padding:.55rem 1rem;border-radius:var(--radius-sm);cursor:pointer;font-size:.85rem;font-weight:600;font-family:var(--font-body);transition:all .2s}.add-to-cart-btn:hover{background:var(--red-dark);transform:scale(1.05)}.add-to-cart-btn svg{width:16px;height:16px}.cart-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#00000080;z-index:200;opacity:0;visibility:hidden;transition:all .3s}.cart-overlay.open{opacity:1;visibility:visible}.cart-sidebar{position:fixed;top:0;right:0;width:400px;max-width:90vw;height:100vh;background:var(--white);z-index:201;transform:translate(100%);transition:transform .35s cubic-bezier(.4,0,.2,1);display:flex;flex-direction:column;box-shadow:-4px 0 20px #00000026}.cart-sidebar.open{transform:translate(0)}.cart-header{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;border-bottom:1px solid var(--cream-dark)}.cart-header h2{font-family:var(--font-display);font-size:1.4rem;color:var(--brown)}.close-cart-btn{background:none;border:none;cursor:pointer;color:var(--text-medium);padding:.4rem;border-radius:50%;transition:background .2s}.close-cart-btn:hover{background:var(--cream)}.close-cart-btn svg{width:24px;height:24px}.cart-items{flex:1;overflow-y:auto;padding:1rem 1.5rem}.cart-empty{text-align:center;padding:3rem 1rem;color:var(--text-light)}.cart-empty-icon{font-size:3rem;margin-bottom:1rem}.cart-item{display:flex;gap:1rem;padding:1rem 0;border-bottom:1px solid var(--cream-dark)}.cart-item-emoji{width:56px;height:56px;background:var(--cream);border-radius:var(--radius-sm);display:grid;place-items:center;font-size:1.8rem;flex-shrink:0}.cart-item-details{flex:1}.cart-item-name{font-weight:600;font-size:.95rem;color:var(--brown)}.cart-item-price{font-size:.85rem;color:var(--red-primary);font-weight:600}.cart-item-controls{display:flex;align-items:center;gap:.5rem;margin-top:.5rem}.qty-btn{width:28px;height:28px;border:1px solid var(--cream-dark);background:var(--white);border-radius:50%;cursor:pointer;font-size:1rem;display:grid;place-items:center;color:var(--text-dark);transition:all .2s}.qty-btn:hover{border-color:var(--red-primary);color:var(--red-primary)}.cart-item-qty{font-weight:600;font-size:.95rem;min-width:20px;text-align:center}.remove-item-btn{background:none;border:none;color:var(--text-light);cursor:pointer;padding:.3rem;margin-left:auto;transition:color .2s}.remove-item-btn:hover{color:var(--red-primary)}.remove-item-btn svg{width:18px;height:18px}.cart-footer{border-top:2px solid var(--cream-dark);padding:1.25rem 1.5rem}.cart-total-row{display:flex;justify-content:space-between;margin-bottom:1rem}.cart-total-label{font-weight:600;color:var(--brown);font-size:1.1rem}.cart-total-value{font-family:var(--font-display);font-weight:700;font-size:1.3rem;color:var(--red-primary)}.checkout-btn{width:100%;background:var(--red-primary);color:var(--white);border:none;padding:.9rem;font-size:1rem;font-weight:600;border-radius:var(--radius-sm);cursor:pointer;font-family:var(--font-body);transition:all .2s}.checkout-btn:hover{background:var(--red-dark)}.checkout-btn:disabled{background:#ccc;cursor:not-allowed}.features{background:var(--white);padding:4rem 1.5rem}.features-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem}.feature-card{text-align:center;padding:2rem 1.5rem}.feature-icon{width:64px;height:64px;background:linear-gradient(135deg,var(--red-primary),var(--red-light));border-radius:50%;display:grid;place-items:center;margin:0 auto 1.25rem;font-size:1.6rem}.feature-card h3{font-family:var(--font-display);font-size:1.15rem;color:var(--brown);margin-bottom:.5rem}.feature-card p{font-size:.9rem;color:var(--text-light);line-height:1.6}.footer{background:var(--brown);color:#fffc;padding:3rem 1.5rem 1.5rem}.footer-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:2rem}.footer-col h4{font-family:var(--font-display);color:var(--gold);margin-bottom:1rem;font-size:1.05rem}.footer-col ul{list-style:none}.footer-col li{margin-bottom:.5rem}.footer-col a{color:#ffffffa6;text-decoration:none;font-size:.9rem;transition:color .2s}.footer-col a:hover{color:var(--gold-light)}.footer-bottom{max-width:1200px;margin:2rem auto 0;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,.1);text-align:center;font-size:.85rem;color:#ffffff73}.toast{position:fixed;bottom:2rem;left:50%;transform:translate(-50%) translateY(100px);background:var(--brown);color:var(--white);padding:.75rem 1.5rem;border-radius:var(--radius-sm);font-size:.9rem;font-weight:500;z-index:300;opacity:0;transition:all .35s cubic-bezier(.4,0,.2,1);box-shadow:var(--shadow-lg);pointer-events:none}.toast.show{opacity:1;transform:translate(-50%) translateY(0)}.modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#00000080;z-index:300;display:grid;place-items:center;opacity:0;visibility:hidden;transition:all .3s}.modal-overlay.open{opacity:1;visibility:visible}.modal{background:var(--white);border-radius:var(--radius);padding:2.5rem;max-width:440px;width:90%;text-align:center;transform:scale(.9);transition:transform .3s}.modal-overlay.open .modal{transform:scale(1)}.modal-icon{font-size:3rem;margin-bottom:1rem}.modal h2{font-family:var(--font-display);color:var(--brown);margin-bottom:.75rem}.modal p{color:var(--text-medium);margin-bottom:1.5rem;font-size:.95rem}.modal-btn{background:var(--red-primary);color:var(--white);border:none;padding:.75rem 2rem;font-size:1rem;font-weight:600;border-radius:var(--radius-sm);cursor:pointer;font-family:var(--font-body);transition:background .2s}.modal-btn:hover{background:var(--red-dark)}@media(max-width:768px){.nav-links{display:none}.hero h1{font-size:2rem}.hero p{font-size:1rem}.products-grid{grid-template-columns:repeat(auto-fill,minmax(220px,1fr))}}
