:root{--primary: #D4A574;--secondary: #D4A574;--dark: #2A1810;--light: #F9F7F4;--white: #FFFFFF;--text: #1a1a1a;--border: #E8E0D5;--transition: .3s ease}*{margin:0;padding:0;box-sizing:border-box}html{scroll-behavior:smooth}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;background:#c9c9c7;color:var(--text);line-height:1.6;font-size:16px}h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.3;margin-bottom:1rem}h1{font-size:2.5rem}h2{font-size:2rem}h3{font-size:1.5rem}h4{font-size:1.25rem}h5{font-size:1.125rem}h6{font-size:1rem}p{margin-bottom:1rem;line-height:1.7}a{color:var(--primary);text-decoration:none;transition:color var(--transition)}a:hover{color:var(--secondary)}.site-container{max-width:1400px;margin:0 auto}.section{padding:4rem 2rem}.section-narrow{padding:3rem 2rem}.row{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;margin-bottom:2rem}header{background:transparent;border-bottom:1px solid var(--border);padding:1.5rem 2rem;position:fixed;top:0;left:0;right:0;z-index:1000}.header-wrapper{max-width:1400px;margin:0 auto;display:flex;justify-content:space-between;align-items:center}.logo{font-size:1.5rem;font-weight:800;color:var(--text)}nav{display:flex;gap:2rem;list-style:none}nav a{font-weight:600;padding:.5rem 0;border-bottom:3px solid transparent;transition:all var(--transition)}nav a:hover{color:var(--primary);border-bottom-color:var(--primary)}.hero{background:linear-gradient(135deg,var(--primary) 0%,var(--secondary) 100%);color:var(--white);padding:6rem 2rem;text-align:center}.hero h1{color:var(--white);font-size:3rem}.hero p{color:#ffffffe6;font-size:1.25rem}.button,button{display:inline-block;padding:1rem 2rem;background:var(--primary);color:var(--white);border:none;border-radius:4px;font-weight:600;cursor:pointer;transition:all var(--transition);text-decoration:none;font-size:1rem}.button:hover,button:hover{background:var(--secondary);color:var(--dark);transform:translateY(-2px);box-shadow:0 4px 12px #00000026}.button-secondary{background:transparent;color:var(--primary);border:2px solid var(--primary)}.button-secondary:hover{background:var(--primary);color:var(--white)}.card{background:var(--white);border:1px solid var(--border);border-radius:4px;overflow:hidden;transition:all var(--transition)}.card:hover{box-shadow:0 8px 24px #0000001f;transform:translateY(-4px)}.card-image{width:100%;aspect-ratio:1;background:linear-gradient(135deg,#f0f0f0,#e0e0e0);display:flex;align-items:center;justify-content:center;color:#999;font-size:2.5rem;overflow:hidden}.card-image img{width:100%;height:100%;object-fit:cover}.card-body{padding:1.5rem}.card-title{font-size:1.25rem;margin-bottom:.5rem;color:var(--text)}.card-text{color:#666;font-size:.95rem;line-height:1.6}.card-price{font-size:1.5rem;font-weight:700;color:var(--primary);margin:1rem 0}input,textarea,select{width:100%;padding:.75rem;border:1px solid var(--border);border-radius:4px;font-size:1rem;font-family:inherit;transition:border-color var(--transition)}input:focus,textarea:focus,select:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px #8b6f471a}.form-group{margin-bottom:1.5rem}label{display:block;margin-bottom:.5rem;font-weight:600}footer{background:var(--dark);color:var(--light);padding:3rem 2rem;border-top:3px solid var(--primary)}.footer-content{max-width:1400px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;margin-bottom:2rem}.footer-section h4{color:var(--secondary);font-size:1rem;text-transform:uppercase;letter-spacing:.05em;margin-bottom:1rem}.footer-section ul{list-style:none}.footer-section li{margin-bottom:.75rem}.footer-section a{color:var(--light)}.footer-section a:hover{color:var(--secondary)}.footer-bottom{border-top:1px solid rgba(139,111,71,.2);padding-top:1.5rem;text-align:center;font-size:.9rem;color:#f9f7f4b3}.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem}.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem}.text-center{text-align:center}.text-primary{color:var(--primary)}.text-secondary{color:var(--secondary)}.text-muted{color:#999}.bg-primary{background:var(--primary);color:var(--white)}.bg-secondary{background:var(--secondary);color:var(--dark)}.bg-light{background:var(--light)}.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}.p-2{padding:1rem}.p-3{padding:1.5rem}.p-4{padding:2rem}.placeholder-text{background:linear-gradient(90deg,#f0f0f0 25%,#e0e0e0,#f0f0f0 75%);background-size:200% 100%;animation:shimmer 2s infinite;color:transparent;border-radius:4px}@keyframes shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}.placeholder-image{background:linear-gradient(135deg,#f0f0f0,#e0e0e0);display:flex;align-items:center;justify-content:center;color:#999;font-size:2rem;border-radius:4px}@media screen and (max-width:768px){h1{font-size:2rem}h2{font-size:1.5rem}h3{font-size:1.25rem}.section{padding:2rem 1rem}nav{display:none}.grid-2,.grid-3,.grid-4,.row{grid-template-columns:1fr}.hero{padding:3rem 1rem}.hero h1{font-size:2rem}header{padding:1rem}.button{display:block;width:100%;text-align:center}}.cart-wrapper{padding:2rem;background:var(--light);border-radius:4px;margin-top:2rem}.cart-item{display:grid;grid-template-columns:100px 1fr 150px;gap:1.5rem;padding:1.5rem;border-bottom:1px solid var(--border);align-items:center}.cart-item-image{width:100px;aspect-ratio:1;background:#e0e0e0;border-radius:4px}.cart-item-total{text-align:right;font-weight:600;color:var(--primary)}.cart-total{display:flex;justify-content:space-between;font-size:1.25rem;font-weight:700;margin-top:1.5rem;padding-top:1.5rem;border-top:2px solid var(--border)}.newsletter{background:linear-gradient(135deg,var(--primary) 0%,var(--secondary) 100%);color:var(--white);padding:3rem 2rem;text-align:center;border-radius:4px}.newsletter-form{display:flex;gap:.5rem;max-width:500px;margin:2rem auto 0}.cart-panel{position:fixed;top:0;right:-400px;width:400px;height:100vh;background:#fff;box-shadow:-2px 0 20px #0000001a;transition:right .3s ease;z-index:2000;display:flex;flex-direction:column}.cart-panel.active{right:0}.cart-panel-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:transparent;opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease;z-index:1999}.cart-panel.active~.cart-panel-overlay,.cart-panel.active .cart-panel-overlay{opacity:1;visibility:visible}.cart-panel-container{display:flex;flex-direction:column;height:100%;background:#fff}.cart-panel-header{display:flex;justify-content:space-between;align-items:center;padding:1.5rem;border-bottom:1px solid var(--border)}.cart-panel-header h2{margin:0;font-size:1.5rem;color:var(--dark)}.cart-panel-close{background:none;border:none;font-size:1.5rem;cursor:pointer;color:var(--dark);padding:0;width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:4px;transition:background .2s ease}.cart-panel-close:hover{background:var(--light)}.cart-panel-content{flex:1;overflow-y:auto;padding:1rem}.cart-empty-message{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;color:#999;text-align:center}.cart-panel-items{display:flex;flex-direction:column;gap:1rem}.cart-panel-item{display:flex;gap:1rem;padding:1rem;border:1px solid var(--border);border-radius:8px;background:var(--light)}.cart-item-image{font-size:2.5rem;display:flex;align-items:center;justify-content:center;width:80px;height:80px;background:#fff;border-radius:6px;flex-shrink:0}.cart-item-details{flex:1;display:flex;flex-direction:column;gap:.5rem}.cart-item-title{font-weight:600;color:var(--dark);font-size:.95rem}.cart-item-price{color:#666;font-size:.9rem}.cart-item-qty-controls{display:flex;align-items:center;gap:.5rem;margin:.5rem 0}.qty-btn{background:#fff;border:1px solid var(--border);width:28px;height:28px;border-radius:4px;cursor:pointer;font-weight:600;transition:background .2s ease}.qty-btn:hover{background:var(--light)}.qty-display{min-width:30px;text-align:center;font-weight:600}.remove-btn{background:none;border:none;color:#999;cursor:pointer;font-size:1rem;margin-left:auto;padding:0;transition:color .2s ease}.remove-btn:hover{color:#d32f2f}.cart-item-subtotal{font-size:.85rem;color:#666;font-weight:500}.cart-panel-footer{border-top:1px solid var(--border);padding:1.5rem;background:#fff}.cart-panel-total{font-size:1.2rem;margin-bottom:1rem;text-align:right;color:var(--dark)}.cart-checkout-btn{width:100%;padding:1rem;background:#000;color:#fff;border:none;border-radius:8px;font-weight:700;font-size:1rem;cursor:pointer;transition:background .3s ease}.cart-checkout-btn:hover{background:#333}.cart-checkout-btn:active{transform:scale(.98)}@media screen and (max-width:768px){.cart-panel{width:100%;right:-100%}}.newsletter-form input{flex:1;padding:.75rem;border:none;border-radius:4px;font-size:1rem}.newsletter-form button{padding:.75rem 2rem;background:var(--dark);color:var(--white);border:none;border-radius:4px;font-weight:600;cursor:pointer}.breadcrumb{display:flex;gap:.5rem;margin-bottom:2rem;font-size:.9rem}.breadcrumb a{color:var(--primary)}.breadcrumb a:hover{text-decoration:underline}.breadcrumb span{color:#999}.badge{display:inline-block;padding:.25rem .75rem;background:var(--primary);color:var(--white);font-size:.75rem;font-weight:700;border-radius:20px;text-transform:uppercase;letter-spacing:.05em}.badge-secondary{background:var(--secondary);color:var(--dark)}.search-form{display:flex;gap:.5rem}.search-input{flex:1;padding:.75rem;border:2px solid var(--border);border-radius:4px;font-size:1rem}.search-input:focus{outline:none;border-color:var(--primary)}.search-button{padding:.75rem 1.5rem;background:var(--primary);color:var(--white);border:none;border-radius:4px;cursor:pointer;font-weight:600}
/*# sourceMappingURL=/cdn/shop/t/2/assets/theme.css.map */
