:root{--color-background: #fafaf8;--color-foreground: #3c3c3a;--color-border: #e8e8e6;--color-muted: #a8a8a6;--font-heading: "Playfair Display", serif;--font-body: "Jost", sans-serif}*{margin:0;padding:0;box-sizing:border-box}body{background-color:var(--color-background);color:var(--color-foreground);font-family:var(--font-body);font-size:14px;line-height:1.6;font-weight:300}h1,h2,h3{font-family:var(--font-heading);font-weight:400;line-height:1.1}h1{font-size:3.5rem;margin-bottom:2rem}h2{font-size:2.5rem;margin-bottom:1.5rem}h3{font-size:1.5rem;margin-bottom:1rem}a{color:var(--color-foreground);text-decoration:none;transition:color .3s ease}a:hover{color:var(--color-muted)}.container{width:100%;margin:0 auto;padding:0 1.5rem;max-width:1280px}.label-caps{font-size:.75rem;letter-spacing:.15em;text-transform:uppercase;color:var(--color-muted);font-weight:500}.hero{background:linear-gradient(135deg,#f5f3f0,#fafaf8);padding:8rem 1.5rem 6rem;text-align:center;min-height:70vh;display:flex;align-items:center;justify-content:center}.hero-title{font-size:4rem;font-style:italic;margin-bottom:2rem}.hero-subtitle{font-size:1.1rem;color:var(--color-muted);margin-bottom:2rem}.btn{display:inline-block;padding:.875rem 2rem;border:1px solid var(--color-border);background-color:transparent;color:var(--color-foreground);font-family:var(--font-body);font-size:.875rem;letter-spacing:.05em;text-transform:uppercase;cursor:pointer;transition:all .3s ease}.btn:hover{border-color:var(--color-foreground);background-color:var(--color-foreground);color:var(--color-background)}.btn-primary{background-color:var(--color-foreground);color:var(--color-background);border-color:var(--color-foreground)}.btn-primary:hover{background-color:transparent;color:var(--color-foreground)}.btn-large{width:100%;padding:1.25rem;font-size:1rem}.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:2rem;margin:4rem 0}@media(min-width:768px){.product-grid{grid-template-columns:repeat(2,1fr)}}.product-card{border:1px solid var(--color-border);transition:all .3s ease}.product-card:hover{box-shadow:0 4px 12px #00000014}.product-card-image{overflow:hidden;aspect-ratio:3/4}.product-card-image img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}.product-card:hover .product-card-image img{transform:scale(1.05)}.product-card-content{padding:1.5rem}.product-card-content h3{font-size:1.1rem;margin-bottom:1rem}.product-price{font-size:1rem;color:var(--color-foreground)}.navbar{border-bottom:1px solid var(--color-border);padding:1.5rem 0;position:sticky;top:0;background-color:var(--color-background);z-index:100}.navbar-container{display:flex;justify-content:space-between;align-items:center}.logo{font-family:var(--font-heading);font-size:1.25rem;font-style:italic;color:var(--color-foreground)}.navbar-menu{display:none;list-style:none;gap:2rem}@media(min-width:768px){.navbar-menu{display:flex}}.navbar-menu a{font-size:.875rem;letter-spacing:.05em;text-transform:uppercase}.navbar-cart{display:flex;align-items:center;gap:.5rem}.cart-link{display:flex;align-items:center;gap:.5rem;position:relative;font-size:.875rem;letter-spacing:.05em;text-transform:uppercase}.cart-badge{position:absolute;top:-8px;right:-8px;background-color:var(--color-foreground);color:var(--color-background);width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:600}.footer{border-top:1px solid var(--color-border);margin-top:4rem;padding:4rem 0}.footer-container{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:2rem;margin-bottom:2rem}.footer-brand{font-family:var(--font-heading);font-size:1.1rem;font-style:italic;color:var(--color-foreground);margin-bottom:1.5rem}.footer-title{font-size:.75rem;letter-spacing:.15em;text-transform:uppercase;color:var(--color-muted);margin-bottom:1.5rem;font-weight:500}.footer-links{list-style:none;display:flex;flex-direction:column;gap:1rem}.footer-links a{font-size:.875rem;color:#3c3c3a99}.footer-links a:hover{color:var(--color-foreground)}.footer-bottom{border-top:1px solid var(--color-border);padding-top:2rem}.copyright{font-size:.75rem;color:var(--color-muted);margin:0}.product-page{padding:4rem 0}.product-grid-layout{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}@media(max-width:768px){.product-grid-layout{grid-template-columns:1fr}}.product-images{aspect-ratio:3/4;overflow:hidden}.product-image{width:100%;height:100%;object-fit:cover}.product-title{font-size:2.5rem;margin-bottom:1.5rem}.product-form{display:flex;flex-direction:column;gap:1.5rem;margin-bottom:2rem}.cart-page{padding:4rem 0}.cart-table{width:100%;border-collapse:collapse;margin-bottom:2rem}.cart-table th,.cart-table td{padding:1.5rem;text-align:left;border-bottom:1px solid var(--color-border);font-size:.875rem}.cart-summary{padding:2rem;border:1px solid var(--color-border)}.cart-drawer{position:fixed;top:0;right:0;width:100%;height:100%;z-index:1000;display:flex}.cart-drawer-overlay{flex:1;background-color:#00000080;cursor:pointer}.cart-drawer-content{width:100%;max-width:400px;background-color:var(--color-background);display:flex;flex-direction:column;box-shadow:-4px 0 12px #0000001a}.cart-drawer-header{display:flex;justify-content:space-between;align-items:center;padding:2rem;border-bottom:1px solid var(--color-border)}.close-btn{background:none;border:none;font-size:1.5rem;cursor:pointer;color:var(--color-foreground)}.cart-drawer-items{flex:1;overflow-y:auto;padding:2rem}.cart-drawer-item{margin-bottom:2rem;padding-bottom:2rem;border-bottom:1px solid var(--color-border)}@media(max-width:768px){h1{font-size:2.5rem}h2{font-size:1.75rem}.hero{padding:4rem 1.5rem 3rem;min-height:50vh}.hero-title{font-size:2.5rem}.product-grid{grid-template-columns:1fr}.cart-drawer-content{max-width:100%}}.skip-to-content-link{position:absolute;top:-100%;left:0;padding:.75rem 1.5rem;background-color:var(--color-foreground);color:var(--color-background);font-size:.875rem;z-index:9999;transition:top .2s}.skip-to-content-link:focus{top:0}.cart-drawer{display:none}.cart-drawer.is-open{display:flex}.variant-selector{width:100%;padding:.875rem 2.5rem .875rem 1rem;border:1px solid var(--color-border);background-color:var(--color-background);color:var(--color-foreground);font-family:var(--font-body);font-size:.875rem;cursor:pointer;-webkit-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233c3c3a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center}.price-sale{color:#b5451b;font-weight:500}.price-compare{color:var(--color-muted);margin-left:.5rem;font-size:.9em}.btn-secondary{background-color:transparent;color:var(--color-foreground);border-color:var(--color-border)}.btn-secondary:hover{border-color:var(--color-foreground);background-color:var(--color-foreground);color:var(--color-background)}.cart-summary-actions{display:flex;gap:1rem;margin-top:1.5rem;flex-wrap:wrap}@media(min-width:768px){.product-grid{grid-template-columns:repeat(3,1fr)}}@media(min-width:1024px){.product-grid{grid-template-columns:repeat(4,1fr)}}.hero{position:relative;overflow:hidden}.hero-media{position:absolute;top:0;right:0;bottom:0;left:0;z-index:0}.hero-bg-image{width:100%;height:100%;object-fit:cover;object-position:center}.hero-overlay{position:absolute;top:0;right:0;bottom:0;left:0;background-color:#1a1a18;z-index:1}.hero-content{position:relative;z-index:2}.hero-content--over-image .label-caps,.hero-content--over-image .hero-title,.hero-content--over-image .hero-subtitle{color:#fff}.hero-content--over-image .btn-primary{background-color:#fff;color:#1a1a18;border-color:#fff}.hero-content--over-image .btn-primary:hover{background-color:transparent;color:#fff}.editorial{display:grid;grid-template-columns:1fr;min-height:560px}@media(min-width:768px){.editorial{grid-template-columns:1fr 1fr}.editorial--image-right{direction:rtl}.editorial--image-right>*{direction:ltr}}.editorial-media{overflow:hidden;aspect-ratio:4/5;background-color:var(--color-border)}@media(min-width:768px){.editorial-media{aspect-ratio:unset;min-height:560px}}.editorial-image{width:100%;height:100%;object-fit:cover;transition:transform .8s ease}.editorial:hover .editorial-image{transform:scale(1.03)}.editorial-image-placeholder{width:100%;height:100%;background-color:var(--color-border);display:flex;align-items:center;justify-content:center}.editorial-placeholder-svg{width:60%;height:60%;fill:var(--color-muted);opacity:.3}.editorial-content{display:flex;flex-direction:column;justify-content:center;padding:4rem 3rem;background-color:var(--color-background)}.editorial-heading{font-size:2.25rem;margin:1rem 0 1.5rem}.editorial-text{font-size:1rem;line-height:1.8;color:#3c3c3acc;margin-bottom:2rem}.product-card-image{position:relative}.product-card-image-hover{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity .5s ease}.product-card:hover .product-card-image-hover{opacity:1}.product-card-badge{position:absolute;top:1rem;left:1rem;background-color:var(--color-foreground);color:var(--color-background);font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;padding:.25rem .625rem;font-weight:500}.product-card-no-image{width:100%;height:100%;background-color:var(--color-border);display:flex;align-items:center;justify-content:center}.product-card-placeholder-svg{width:50%;height:50%;fill:var(--color-muted);opacity:.25}.product-card-price{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap}.collection-hero{position:relative;height:420px;overflow:hidden;margin-bottom:4rem}.collection-hero-image{width:100%;height:100%;object-fit:cover;object-position:center}.collection-hero-overlay{position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(to top,#1a1a18a6,#1a1a181a 60%);display:flex;align-items:flex-end;padding-bottom:3rem}.collection-hero-title{color:#fff;font-size:3rem;margin-bottom:.5rem}.collection-hero-desc{color:#fffc;font-size:1rem}.collection-header{padding:3rem 0 1rem}.collection-description{color:var(--color-muted);margin-top:1rem;max-width:60ch}.logo img{display:block;max-height:40px;width:auto}.cart-icon{display:block}@media(max-width:767px){.editorial-content{padding:3rem 1.5rem}.editorial-heading{font-size:1.75rem}.collection-hero{height:280px}.collection-hero-title{font-size:2rem}}
/*# sourceMappingURL=/cdn/shop/t/13/assets/theme.css.map */
