.cart-overlay{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:1100;background:#0009;width:100%;height:100%;animation:.3s fadeIn;position:fixed;top:0;left:0}.cart-drawer{background:var(--white);z-index:1101;flex-direction:column;width:100%;max-width:480px;height:100vh;animation:.3s slideIn;display:flex;position:fixed;top:0;right:0;box-shadow:-10px 0 30px #00000026}.cart-header{border-bottom:2px solid var(--gold);background:var(--white);justify-content:space-between;align-items:center;padding:24px;display:flex}.cart-title{font-size:1.8rem;font-family:var(--font-heading);color:var(--black);align-items:center;gap:12px;margin:0;display:flex}.cart-count{background:var(--bg-gray);color:var(--red);font-size:1rem;font-weight:500;font-family:var(--font-body);border-radius:30px;padding:4px 12px}.cart-close{background:var(--bg-gray);cursor:pointer;width:40px;height:40px;color:var(--black);border:none;border-radius:50%;justify-content:center;align-items:center;transition:all .3s;display:flex}.cart-close:hover{background:var(--red);color:var(--white);transform:rotate(90deg)}.cart-close svg{width:24px;height:24px}.cart-content{flex:1;padding:24px;overflow-y:auto}.cart-empty{text-align:center;height:100%;color:var(--black);flex-direction:column;justify-content:center;align-items:center;display:flex}.empty-cart-icon{width:120px;height:120px;color:var(--gold);opacity:.5;margin-bottom:24px}.empty-cart-text{font-size:1.5rem;font-weight:600;font-family:var(--font-heading);margin-bottom:8px}.empty-cart-subtext{color:#666;margin-bottom:24px}.empty-cart-btn{background:var(--red);color:var(--white);cursor:pointer;box-shadow:var(--shadow-red);border:none;border-radius:50px;padding:16px 40px;font-weight:600;transition:all .3s}.empty-cart-btn:hover{background:var(--red-dark);transform:translateY(-2px)}.cart-items{flex-direction:column;gap:16px;margin-bottom:24px;display:flex}.cart-item{background:var(--bg-gray);border-radius:16px;gap:16px;padding:16px;transition:all .3s;animation:.3s fadeIn;display:flex}.cart-item:hover{box-shadow:var(--shadow-sm);transform:translate(-4px)}.item-image{border:2px solid var(--gold);border-radius:12px;flex-shrink:0;width:100px;height:100px;overflow:hidden}.item-image img{object-fit:cover;width:100%;height:100%}.item-details{flex-direction:column;flex:1;justify-content:space-between;display:flex}.item-name{color:var(--black);margin-bottom:4px;font-size:1.1rem;font-weight:600}.item-price{color:var(--red);margin-bottom:12px;font-size:1.1rem;font-weight:700}.item-actions{justify-content:space-between;align-items:center;gap:12px;display:flex}.quantity-control{background:var(--white);border:1px solid var(--gold-light);border-radius:40px;align-items:center;gap:12px;padding:4px;display:flex}.quantity-btn{background:var(--white);width:32px;height:32px;color:var(--black);cursor:pointer;border:none;border-radius:50%;justify-content:center;align-items:center;font-size:1.2rem;font-weight:600;transition:all .2s;display:flex}.quantity-btn:hover{background:var(--gold);color:var(--black);transform:scale(1.1)}.quantity{text-align:center;min-width:24px;font-weight:600}.remove-item{width:36px;height:36px;color:var(--red);cursor:pointer;background:#d32f2f1a;border:none;border-radius:50%;justify-content:center;align-items:center;transition:all .3s;display:flex}.remove-item:hover{background:var(--red);color:var(--white);transform:rotate(180deg)}.remove-item svg{width:20px;height:20px}.cart-footer{border-top:2px solid var(--gold);background:var(--white);margin-top:auto;padding-top:24px}.cart-total{justify-content:space-between;align-items:center;margin-bottom:24px;padding:0 8px;font-size:1.4rem;font-weight:700;display:flex}.total-price{color:var(--red);font-size:1.6rem}.cart-buttons{gap:12px;display:flex}.checkout-btn{background:var(--red);color:var(--white);cursor:pointer;box-shadow:var(--shadow-red);border:none;border-radius:50px;flex:2;padding:18px;font-size:1.1rem;font-weight:700;transition:all .3s}.checkout-btn:hover{background:var(--red-dark);transform:translateY(-2px)}.clear-cart-btn{color:var(--black);border:2px solid var(--gold);cursor:pointer;background:0 0;border-radius:50px;flex:1;padding:18px;font-size:1.1rem;font-weight:600;transition:all .3s}.clear-cart-btn:hover{background:var(--gold);color:var(--black);transform:translateY(-2px)}.cart-loading{justify-content:center;align-items:center;height:100%;display:flex}.loading-spinner{border:3px solid var(--bg-gray);border-top:3px solid var(--red);border-radius:50%;width:50px;height:50px;animation:1s linear infinite spin}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideIn{0%{transform:translate(100%)}to{transform:translate(0)}}.cart-content::-webkit-scrollbar{width:6px}.cart-content::-webkit-scrollbar-track{background:var(--bg-gray)}.cart-content::-webkit-scrollbar-thumb{background:var(--gold);border-radius:3px}.cart-content::-webkit-scrollbar-thumb:hover{background:var(--gold-dark)}@media (max-width:480px){.cart-drawer{max-width:100%}.cart-title{font-size:1.5rem}.item-image{width:80px;height:80px}.cart-total{font-size:1.2rem}.total-price{font-size:1.4rem}.cart-buttons{flex-direction:column}.checkout-btn,.clear-cart-btn{width:100%}}.order-modal-overlay{-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);z-index:1200;background:#000c;width:100%;height:100%;animation:.3s fadeIn;position:fixed;top:0;left:0}.order-modal{z-index:1201;background:#2d2a24;border:1px solid #bc8c4c4d;border-radius:24px;width:90%;max-width:500px;animation:.3s modalSlideIn;position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);box-shadow:0 20px 40px #00000080}@keyframes modalSlideIn{0%{opacity:0;transform:translate(-50%,-50%)scale(.9)}to{opacity:1;transform:translate(-50%,-50%)scale(1)}}.order-modal-close{cursor:pointer;color:#fff;background:#ffffff1a;border:none;border-radius:50%;justify-content:center;align-items:center;width:36px;height:36px;transition:all .3s;display:flex;position:absolute;top:16px;right:16px}.order-modal-close:hover{background:#ff4d4d;transform:rotate(90deg)}.order-modal-close svg{width:20px;height:20px}.order-modal-content{text-align:center;padding:32px}.order-modal-icon{background:#bc8c4c1a;border:2px solid #bc8c4c;border-radius:50%;justify-content:center;align-items:center;width:80px;height:80px;margin:0 auto 20px;display:flex}.order-modal-icon svg{color:#bc8c4c;width:40px;height:40px}.order-modal-title{font-size:1.8rem;font-family:var(--font-heading);color:#fff;margin-bottom:20px}.order-modal-items{background:#ffffff0d;border-radius:16px;max-height:300px;margin-bottom:16px;padding:16px;overflow-y:auto}.order-modal-item{border-bottom:1px solid #bc8c4c33;justify-content:space-between;align-items:center;padding:12px 0;display:flex}.order-modal-item:last-child{border-bottom:none}.order-item-name{text-align:left;color:#fff;flex:2;font-size:.95rem}.order-item-price{color:#bc8c4c;font-weight:600}.order-modal-total{color:#fff;background:#bc8c4c1a;border-radius:12px;justify-content:space-between;align-items:center;margin-bottom:20px;padding:16px;font-size:1.2rem;font-weight:600;display:flex}.order-total-price{color:#bc8c4c;font-size:1.3rem}.order-modal-text{color:#b0b0b0;margin-bottom:24px;font-size:.9rem;line-height:1.5}.order-modal-buttons{gap:12px;display:flex}.order-call-btn{color:#1a1a1a;cursor:pointer;background:#bc8c4c;border:none;border-radius:50px;flex:2;justify-content:center;align-items:center;gap:8px;padding:14px 20px;font-size:1rem;font-weight:600;transition:all .3s;display:flex}.order-call-btn svg{width:20px;height:20px}.order-call-btn:hover{color:#fff;background:#ff4d4d;transform:translateY(-2px)}.order-cancel-btn{color:#fff;cursor:pointer;background:0 0;border:1px solid #bc8c4c4d;border-radius:50px;flex:1;padding:14px 20px;font-size:1rem;font-weight:600;transition:all .3s}.order-cancel-btn:hover{background:#bc8c4c1a;border-color:#bc8c4c}@media (max-width:480px){.order-modal-content{padding:24px}.order-modal-title{font-size:1.5rem}.order-modal-icon{width:60px;height:60px}.order-modal-icon svg{width:30px;height:30px}.order-modal-total{font-size:1rem}.order-total-price{font-size:1.1rem}.order-modal-buttons{flex-direction:column}.order-call-btn,.order-cancel-btn{width:100%}}.order-item-image{background:#1a1a1a;border-radius:8px;flex-shrink:0;width:50px;height:50px;margin-right:12px;overflow:hidden}.order-item-image img{object-fit:cover;width:100%;height:100%}.order-modal-item{border-bottom:1px solid #bc8c4c33;align-items:center;padding:12px 0;display:flex}.order-item-name{text-align:left;color:#fff;flex:2;margin-left:12px;font-size:.95rem}.order-item-quantity{color:#bc8c4c;margin:0 12px;font-weight:600}.order-item-price{color:#bc8c4c;text-align:right;min-width:80px;font-weight:600}@media (max-width:480px){.order-item-image{width:40px;height:40px}.order-item-name{margin-left:8px;font-size:.85rem}.order-item-quantity{margin:0 8px;font-size:.85rem}.order-item-price{min-width:70px;font-size:.85rem}}
.navbar{background:var(--white);z-index:1000;border-bottom:2px solid #0000;width:100%;transition:all .3s;position:fixed;top:0;left:0}.navbar-scrolled{border-bottom:2px solid var(--gold);box-shadow:var(--shadow-md)}.navbar-container{max-width:var(--container-width);height:var(--header-height);justify-content:space-between;align-items:center;margin:0 auto;padding:0 20px;display:flex}.navbar-logo{font-family:var(--font-heading);align-items:center;font-size:2rem;font-weight:700;text-decoration:none;display:flex}.logo-text{color:var(--red)}.logo-highlight{color:var(--gold);position:relative}.navbar-menu{gap:48px;margin:0;padding:0;list-style:none;display:flex}.menu-link{color:var(--black);letter-spacing:.3px;padding:8px 0;font-size:1rem;font-weight:600;text-decoration:none;transition:color .3s;position:relative}.menu-link:after{content:"";background:var(--gold);width:0;height:3px;transition:width .3s;position:absolute;bottom:0;left:50%;transform:translate(-50%)}.menu-link:hover{color:var(--red)}.menu-link:hover:after{width:100%}.navbar-right{align-items:center;gap:20px;display:flex}.navbar-phone{color:var(--black);background:var(--bg-gray);border-radius:50px;align-items:center;gap:8px;padding:10px 18px;font-weight:600;text-decoration:none;transition:all .3s;display:flex}.navbar-phone:hover{background:var(--gold);color:var(--black);transform:scale(1.05)}.phone-icon{color:currentColor;width:20px;height:20px}.phone-number{font-size:.95rem;font-weight:600}.navbar-cart{background:var(--red);cursor:pointer;width:46px;height:46px;color:var(--white);box-shadow:var(--shadow-red);border:none;border-radius:50%;justify-content:center;align-items:center;transition:all .3s;display:flex;position:relative}.navbar-cart:hover{background:var(--red-dark);transform:scale(1.1)rotate(5deg)}.cart-icon{stroke:currentColor;stroke-width:2px;width:22px;height:22px}.cart-badge{background:var(--gold);color:var(--black);border:2px solid var(--white);border-radius:11px;justify-content:center;align-items:center;min-width:22px;height:22px;padding:0 4px;font-size:.75rem;font-weight:700;animation:.3s badgePop;display:flex;position:absolute;top:-5px;right:-5px}@keyframes badgePop{0%{transform:scale(0)}50%{transform:scale(1.2)}to{transform:scale(1)}}.burger-menu{cursor:pointer;z-index:1001;width:40px;height:40px;color:var(--black);background:0 0;border:none;justify-content:center;align-items:center;padding:0;transition:all .3s;display:none}.burger-icon,.close-icon{width:24px;height:24px;transition:all .3s}.burger-menu.active{color:var(--red)}.burger-menu:hover{transform:scale(1.1)}.mobile-menu{background:var(--white);z-index:1002;width:100%;max-width:400px;height:100vh;transition:right .4s cubic-bezier(.65,0,.35,1);position:fixed;top:0;right:-100%;overflow-y:auto;box-shadow:-5px 0 30px #00000026}.mobile-menu.active{right:0}.mobile-close-btn{background:var(--bg-gray);cursor:pointer;width:44px;height:44px;color:var(--black);z-index:1003;border:none;border-radius:50%;justify-content:center;align-items:center;transition:all .3s;display:flex;position:absolute;top:20px;right:20px}.mobile-close-btn:hover{background:var(--red);color:var(--white);transform:rotate(90deg)}.mobile-close-icon{width:24px;height:24px}.mobile-menu-container{padding:calc(var(--header-height) + 20px)30px 30px;flex-direction:column;height:100%;display:flex;position:relative}.mobile-menu-list{margin:0;padding:0;list-style:none}.mobile-menu-item{opacity:0;transition:all .4s;transition-delay:calc(var(--item-index)*.1s);margin-bottom:25px;transform:translate(30px)}.mobile-menu.active .mobile-menu-item{opacity:1;transform:translate(0)}.mobile-menu-item:first-child{--item-index:1}.mobile-menu-item:nth-child(2){--item-index:2}.mobile-menu-item:nth-child(3){--item-index:3}.mobile-menu-item:nth-child(4){--item-index:4}.mobile-menu-link{color:var(--black);font-size:2rem;font-weight:700;font-family:var(--font-heading);padding:5px 0;text-decoration:none;transition:color .3s;display:block;position:relative}.mobile-menu-link:before{content:"";background:var(--gold);width:0;height:4px;transition:width .3s;position:absolute;bottom:0;left:0}.mobile-menu-link:hover{color:var(--red)}.mobile-menu-link:hover:before{width:100%}.mobile-menu-footer{border-top:2px solid var(--gold);margin-top:auto;padding-top:30px}.mobile-phone{color:var(--black);background:var(--bg-gray);border-radius:16px;align-items:center;gap:12px;margin-bottom:15px;padding:18px;font-size:1.3rem;font-weight:600;text-decoration:none;transition:all .3s;display:flex}.mobile-phone:hover{background:var(--gold);color:var(--black);transform:translate(5px)}.mobile-phone-icon{color:currentColor;width:28px;height:28px}.mobile-cart{background:var(--red);width:100%;color:var(--white);cursor:pointer;border:none;border-radius:16px;align-items:center;gap:12px;padding:18px;font-size:1.3rem;font-weight:600;transition:all .3s;display:flex;position:relative}.mobile-cart:hover{background:var(--red-dark);box-shadow:var(--shadow-red);transform:translateY(-2px)}.mobile-cart-icon{stroke:currentColor;stroke-width:2px;width:28px;height:28px}.mobile-cart-badge{background:var(--gold);color:var(--black);border-radius:20px;margin-left:auto;padding:4px 12px;font-size:.9rem;font-weight:700}.phone-icon,.cart-icon,.mobile-phone-icon,.mobile-cart-icon{stroke-width:2px;width:20px;height:20px}.mobile-phone-icon,.mobile-cart-icon{width:24px;height:24px}.menu-overlay{-webkit-backdrop-filter:blur(4px);z-index:1001;background:#00000080;width:100%;height:100%;animation:.3s fadeIn;position:fixed;top:0;left:0}@media (max-width:768px){.navbar-menu{display:none}.burger-menu{display:flex}.phone-number{display:none}.navbar-phone{background:0 0;padding:8px}.navbar-phone:hover{background:var(--gold)}}@media (min-width:769px){.mobile-menu,.menu-overlay{display:none}}@keyframes slideDown{0%{transform:translateY(-100%)}to{transform:translateY(0)}}.navbar{animation:.5s slideDown}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}
.footer{color:#fff;background:linear-gradient(#1a1a1a 0%,#2d2a24 100%);border-top:3px solid #bc8c4c;position:relative}.container{max-width:var(--container-width);margin:0 auto;padding:0 20px}.footer-main{padding:60px 0 40px}.footer-grid{grid-template-columns:2fr 1fr 1fr 1.5fr;gap:40px;display:grid}.footer-logo{font-family:var(--font-heading);margin-bottom:20px;font-size:2rem;font-weight:700}.footer-logo .logo-text{color:#fff}.footer-logo .logo-highlight{color:#bc8c4c}.footer-description{color:#ffffffb3;margin-bottom:25px;font-size:.95rem;line-height:1.8}.footer-social{flex-wrap:wrap;gap:12px;display:flex}.footer-social .social-link{color:#fff;-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);background:#ffffff0d;border:1px solid #ffffff1a;border-radius:50%;justify-content:center;align-items:center;width:44px;height:44px;font-size:1.2rem;transition:all .3s cubic-bezier(.2,.9,.3,1);display:flex;position:relative;overflow:hidden}.footer-social .social-link:before{content:"";background:#bc8c4c4d;border-radius:50%;width:0;height:0;transition:width .6s,height .6s;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.footer-social .social-link:hover{color:#1a1a1a;background:#bc8c4c;border-color:#0000;transform:translateY(-5px)scale(1.1);box-shadow:0 10px 25px #bc8c4c4d}.footer-social .social-link:hover:before{background:#fff3;width:100px;height:100px}.footer-social .social-link svg{z-index:2;width:20px;height:20px;position:relative}.footer-title{font-size:1.2rem;font-family:var(--font-heading);color:#bc8c4c;margin-bottom:20px;padding-bottom:10px;position:relative}.footer-title:after{content:"";background:#bc8c4c;border-radius:2px;width:40px;height:2px;position:absolute;bottom:0;left:0}.footer-links{margin:0;padding:0;list-style:none}.footer-links li{margin-bottom:12px}.footer-links a{color:#ffffffb3;padding-left:0;text-decoration:none;transition:all .3s;display:inline-block;position:relative}.footer-links a:before{content:"›";opacity:0;color:#bc8c4c;font-size:1.2rem;font-weight:700;transition:all .3s;position:absolute;left:-15px}.footer-links a:hover{color:#bc8c4c;padding-left:15px}.footer-links a:hover:before{opacity:1;left:0}.footer-contact{margin:0;padding:0;list-style:none}.footer-contact li{color:#ffffffb3;align-items:flex-start;gap:12px;margin-bottom:15px;font-size:.95rem;transition:all .3s;display:flex}.footer-contact li:hover{color:#fff;transform:translate(5px)}.footer-contact .contact-icon{color:#bc8c4c;width:18px;height:18px;margin-top:3px;transition:all .3s}.footer-contact li:hover .contact-icon{color:#bc8c4c;transform:scale(1.2)}.footer-contact a{color:#ffffffb3;text-decoration:none;transition:color .3s}.footer-contact a:hover{color:#bc8c4c}.footer-bottom{background:#0000004d;border-top:1px solid #bc8c4c26;padding:20px 0}.footer-bottom-content{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:15px;font-size:.9rem;display:flex}.copyright{color:#fff9}.footer-bottom-links{flex-wrap:wrap;gap:25px;display:flex}.footer-bottom-links a{color:#fff9;font-size:.9rem;text-decoration:none;transition:all .3s;position:relative}.footer-bottom-links a:after{content:"";background:#bc8c4c;width:0;height:1px;transition:width .3s;position:absolute;bottom:-2px;left:0}.footer-bottom-links a:hover{color:#bc8c4c}.footer-bottom-links a:hover:after{width:100%}.developer{color:#fff9}.developer a{color:#bc8c4c;font-weight:600;text-decoration:none;transition:all .3s;position:relative}.developer a:hover{color:#bc8c4c;text-decoration:none}.developer a:after{content:"";background:#bc8c4c;width:0;height:1px;transition:width .3s;position:absolute;bottom:-2px;left:0}.developer a:hover:after{width:100%}.back-to-top{cursor:pointer;color:#1a1a1a;z-index:99;opacity:0;visibility:hidden;pointer-events:none;background:#bc8c4c;border:2px solid #0000;border-radius:50%;justify-content:center;align-items:center;width:54px;height:54px;transition:all .4s cubic-bezier(.2,.9,.3,1);display:flex;position:fixed;bottom:30px;right:30px;box-shadow:0 4px 20px #bc8c4c4d}.back-to-top.visible{opacity:1;visibility:visible;pointer-events:auto}.back-to-top:hover{background:#bc8c4c;border-color:#fff;transform:translateY(-8px)scale(1.1);box-shadow:0 8px 30px #bc8c4c66}.back-to-top:active{transform:translateY(-4px)scale(.95)}.back-to-top svg{width:24px;height:24px;transition:transform .3s}.back-to-top:hover svg{transform:translateY(-3px)}@keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.footer-col{opacity:0;animation:.6s forwards fadeInUp}.footer-col:first-child{animation-delay:.1s}.footer-col:nth-child(2){animation-delay:.2s}.footer-col:nth-child(3){animation-delay:.3s}.footer-col:nth-child(4){animation-delay:.4s}@media (max-width:1024px){.footer-grid{grid-template-columns:repeat(2,1fr);gap:40px}.footer-col:first-child{grid-column:span 2}}@media (max-width:768px){.footer-main{padding:40px 0}.footer-grid{grid-template-columns:1fr;gap:30px}.footer-col:first-child{grid-column:auto}.footer-social{justify-content:center}.footer-social .social-link{width:48px;height:48px}.footer-title{text-align:center}.footer-title:after{left:50%;transform:translate(-50%)}.footer-links{text-align:center}.footer-links a,.footer-links a:hover{padding-left:0}.footer-links a:before{display:none}.footer-contact li{text-align:center;flex-wrap:wrap;justify-content:center}.footer-contact .contact-icon{margin-right:0}.footer-bottom-content{text-align:center;flex-direction:column;gap:15px}.footer-bottom-links{flex-direction:column;justify-content:center;gap:10px}.back-to-top{width:48px;height:48px;bottom:20px;right:20px}}@media (max-width:480px){.footer-main{padding:30px 0}.footer-logo{text-align:center;font-size:1.8rem}.footer-description{text-align:center;font-size:.9rem}.footer-social{gap:10px}.footer-social .social-link{width:44px;height:44px;font-size:1.1rem}.footer-title{font-size:1.1rem}.footer-links li{margin-bottom:10px}.footer-contact li{margin-bottom:12px;font-size:.9rem}.copyright,.footer-bottom-links a,.developer{font-size:.85rem}.back-to-top{width:44px;height:44px;bottom:15px;right:15px}.back-to-top svg{width:20px;height:20px}}@media (max-width:360px){.footer-logo{font-size:1.5rem}.footer-social .social-link{width:40px;height:40px}.footer-title{font-size:1rem}}@media (hover:none) and (pointer:coarse){.footer-social .social-link:hover{color:#fff;background:#ffffff0d;transform:none}.footer-links a:hover{color:#ffffffb3;padding-left:0}.footer-links a:hover:before{opacity:0}.footer-contact li:hover,.footer-contact li:hover .contact-icon{transform:none}.footer-bottom-links a:hover:after{width:0}.back-to-top:active{transform:scale(.9)}}@media (prefers-reduced-motion:reduce){.footer-col,.footer-social .social-link,.footer-links a,.footer-contact li,.back-to-top,.footer-bottom-links a:after,.developer a:after{transition:none;animation:none}.back-to-top:hover{transform:none}}
