.product-container{display:grid;grid-template-columns:30fr 40fr;gap:4rem;max-width:var(--page-width, 1200px);margin:0 auto;padding:0;margin-top:90px!important;margin-bottom:70px!important}.product-content__description h3,.product-content__description li{margin-bottom:10px;font-size:21px}.product-gallery{position:sticky;top:2rem;height:fit-content}.product-gallery__main{position:relative;border-radius:var(--border-radius, 8px);overflow:hidden;margin-bottom:1rem;background:var(--color-background, #ffffff);display:flex}.product-gallery__main-image{width:548px;height:auto;display:block;cursor:zoom-in;transition:transform .3s ease;border-radius:20px}.product-gallery__main-image:hover{transform:scale(1.02)}.product-gallery__thumbnails{display:grid;grid-template-columns:repeat(4,1fr);gap:.5rem}.product-gallery__thumbnail{position:relative;border-radius:var(--border-radius, 4px);overflow:hidden;cursor:pointer;border:2px solid transparent;transition:all .2s ease}.product-gallery__thumbnail:hover,.product-gallery__thumbnail--active{border-color:var(--color-foreground, #000000)}.product-gallery__thumbnail img{width:100%;height:auto;display:block}.product-content{display:flex;flex-direction:column;gap:1rem;padding-right:0}.product-content__header{display:flex;flex-direction:column;gap:1rem}.product-content__title{font-family:var(--font-h1--family, "Cormorant Garamond", serif);font-size:3.5rem;font-weight:700;line-height:1.1;margin:0;color:#576238}.product-content__price{font-size:20px;font-weight:500;color:var(--color-foreground, #000000);margin:0}.product-content__description{font-family:var(--font-primary--family, inherit);font-size:22px;line-height:26px;color:var(--color-foreground, #000000);margin:0}.product-content__meta{display:flex;flex-direction:column;gap:.5rem;font-size:.875rem;color:var(--color-foreground, #666666)}.product-form{display:flex;flex-direction:column;gap:1.5rem;padding:2rem 0}.product-form__variants{display:flex;flex-direction:column;gap:1rem}.product-form__variant-label{font-weight:500;margin-bottom:.5rem}.product-form__variant-select{padding:.75rem;border:1px solid var(--color-border, #e5e5e5);border-radius:var(--style-border-radius-inputs, 4px);background:var(--color-background, #ffffff);font-size:1rem}.product-form__quantity{display:flex;align-items:center;gap:1rem}.product-form__quantity-input{width:80px;padding:.75rem;border:1px solid var(--color-border, #e5e5e5);border-radius:var(--style-border-radius-inputs, 4px);text-align:center}.product-form__buttons{display:flex;flex-direction:column;gap:1rem}.product-form__add-to-cart{padding:14px 100px;background:#576238;color:var(--color-background, #ffffff);border:none;border-radius:50px;font-size:17px;font-weight:100;font-family:Questrial,sans-serif;cursor:pointer;transition:all .3s ease;text-transform:capitalize;letter-spacing:.5px;box-shadow:0 4px 15px #5762384d;margin:0 auto 0 0;display:block}.product-form__add-to-cart:hover{background:#45502a;transform:translateY(-2px);box-shadow:0 6px 20px #57623866}.product-form__add-to-cart:disabled{opacity:.5;cursor:not-allowed}.product-form__payment-button{margin-top:.5rem}.product-login-gate{padding:2rem 0}.product-login-gate__inner{display:flex;flex-direction:column;gap:1rem;padding:1.75rem 1.5rem;border:1px solid var(--color-border, #e5e5e5);border-radius:var(--border-radius, 8px);background:var(--color-accent, #f8f9fa);max-width:36rem}.product-login-gate__title{margin:0;font-size:1.25rem;font-weight:600;color:var(--color-foreground, #2b2b2b)}.product-login-gate__text{margin:0;font-size:1.3rem;line-height:1;color:var(--color-foreground, #666666)}.product-login-gate__button{display:inline-block;align-self:flex-start;padding:14px 2rem;background:#576238;color:var(--color-background, #ffffff);border:none;border-radius:50px;font-size:1rem;font-weight:500;font-family:Questrial,sans-serif;text-align:center;text-decoration:none;cursor:pointer;transition:all .3s ease;box-shadow:0 4px 15px #5762384d}.product-login-gate__button:hover{background:#45502a;color:var(--color-background, #ffffff);transform:translateY(-2px);box-shadow:0 6px 20px #57623866}.product-content__stock{display:flex;align-items:center;gap:.5rem;font-size:.875rem}.product-content__stock--in-stock{color:var(--color-success, #28a745)}.product-content__stock--low-stock{color:var(--color-warning, #ffc107)}.product-content__stock--out-of-stock{color:var(--color-error, #dc3545)}.price-item--regular{color:#576238;font-size:22px}@media screen and (max-width:749px){.product-container{grid-template-columns:1fr;gap:2rem}.product-gallery{position:static}.product-gallery__thumbnails{grid-template-columns:repeat(5,1fr)}.product-content__title{font-size:2rem}.product-content__price{font-size:1.25rem}.product-form__quantity{flex-direction:column;align-items:stretch}.product-form__quantity-input{width:100%}}@media screen and (max-width:480px){.product-gallery__thumbnails{grid-template-columns:repeat(4,1fr)}.product-gallery__main-image{width:100%;max-width:548px}.product-content__title{font-size:1.75rem}.product-form__buttons{gap:.75rem}.product-form__add-to-cart{padding:12px 60px;font-size:15px}}.product-gallery__zoom{position:fixed;top:0;left:0;width:100%;height:100%;background:#000000e6;display:flex;align-items:center;justify-content:center;z-index:1000;cursor:zoom-out;opacity:0;visibility:hidden;transition:all .3s ease}.product-gallery__zoom--active{opacity:1;visibility:visible}.product-gallery__zoom-image{max-width:90%;max-height:90%;object-fit:contain}.product-gallery__zoom-close{position:absolute;top:2rem;right:2rem;background:var(--color-background, #ffffff);border:none;border-radius:50%;width:3rem;height:3rem;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:1.5rem}.product-gallery__thumbnail img,.product-gallery__main-image{opacity:0;transition:opacity .3s ease}.product-gallery__thumbnail img.loaded,.product-gallery__main-image.loaded{opacity:1}.product-gallery__thumbnail img.error,.product-gallery__main-image.error{opacity:.5}.header-dark-on-product .header__menu a{color:#898989!important}.header-dark-on-product .header__menu a:hover,.header-dark-on-product .header__menu a:focus{color:#898989!important;font-weight:600}.header-dark-on-product .header__menu a.active{color:#898989!important}.header-dark-on-product .header__cta,.header-dark-on-product .header__cta--drawer{height:fit-content!important;padding-bottom:8px!important;background-color:#fff!important;color:#898989!important;border-color:#898989!important}.header-dark-on-product .header__cta:hover,.header-dark-on-product .header__cta:focus,.header-dark-on-product .header__cta--drawer:hover,.header-dark-on-product .header__cta--drawer:focus{background-color:#898989!important;color:#fff!important;border-color:#898989!important}.header-dark-on-product .header__cart-icon{color:#898989!important;text-decoration:none;padding:.5rem;transition:color .3s ease;position:relative}.header-dark-on-product .header__cart-icon:hover{color:#3f4729!important}.header-dark-on-product .header__cart-icon sup{position:absolute;top:0;right:0;background:#898989!important;color:#fff!important;font-size:.75rem;padding:.125rem .25rem;border-radius:50%;min-width:1rem;text-align:center}@media screen and (max-width:749px){.header-dark-on-product .header__cart-icon{padding:.375rem}}.header-dark-on-product .header__icons{display:flex;align-items:center}.price-with-discount{display:flex;align-items:center;gap:.75rem;flex-wrap:wrap}.price-item--sale{font-size:1.5rem;font-weight:600;color:#e74c3c}.price-item--compare-at{font-size:1.125rem;color:#6c757d;text-decoration:line-through}.price-item--discount-badge{background:linear-gradient(135deg,#e74c3c,#c0392b);color:#fff;padding:.25rem .5rem;border-radius:.375rem;font-size:.875rem;font-weight:600;text-transform:uppercase;letter-spacing:.5px;box-shadow:0 2px 4px #e74c3c4d}.price-savings{margin-top:.5rem}.price-savings-text{color:#27ae60;font-size:.875rem;font-weight:500;display:inline-flex;align-items:center;gap:.25rem}.price-savings-text:before{content:"\2713";background:#27ae60;color:#fff;width:1rem;height:1rem;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;font-size:.625rem;font-weight:600}@media screen and (max-width:749px){.price-with-discount{flex-direction:column;align-items:flex-start;gap:.5rem}.price-item--sale{font-size:1.25rem}.price-item--compare-at{font-size:1rem}.price-item--discount-badge{align-self:flex-start}}
/*# sourceMappingURL=/cdn/shop/t/3/assets/product.css.map */
