@import"https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap";:root{--color-primary: #8b7355;--color-primary-dark: #6b5745;--color-secondary: #b8a696;--color-accent: #d4c4b0;--color-dark: #2c2c2c;--color-light: #f8f6f3;--color-white: #ffffff;--color-gray: #6b6b6b;--color-gray-light: #e5e5e5;--color-success: #5c7c5d;--color-error: #c85c5c;--font-serif: "Cormorant Garamond", serif;--font-sans: "Inter", sans-serif;--transition-smooth: all .3s cubic-bezier(.4, 0, .2, 1);--transition-spring: all .5s cubic-bezier(.34, 1.56, .64, 1);--shadow-sm: 0 2px 4px rgba(0, 0, 0, .05);--shadow-md: 0 4px 12px rgba(0, 0, 0, .08);--shadow-lg: 0 8px 24px rgba(0, 0, 0, .12);--max-width: 1400px}*{margin:0;padding:0;box-sizing:border-box}html{scroll-behavior:smooth}body{font-family:var(--font-sans);color:var(--color-dark);background-color:var(--color-white);line-height:1.6;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}h1,h2,h3,h4,h5,h6{font-family:var(--font-serif);font-weight:400;line-height:1.2}h1{font-size:clamp(2.5rem,5vw,4rem)}h2{font-size:clamp(2rem,4vw,3rem)}h3{font-size:clamp(1.5rem,3vw,2rem)}img{max-width:100%;height:auto;display:block}button{font-family:inherit;cursor:pointer;border:none;outline:none}a{text-decoration:none;color:inherit}ul{list-style:none}@keyframes fadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes slideInLeft{0%{opacity:0;transform:translate(-30px)}to{opacity:1;transform:translate(0)}}@keyframes slideInRight{0%{opacity:0;transform:translate(30px)}to{opacity:1;transform:translate(0)}}@keyframes scaleIn{0%{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}.fade-in{animation:fadeIn .6s ease-out forwards}.slide-in-left{animation:slideInLeft .6s ease-out forwards}.slide-in-right{animation:slideInRight .6s ease-out forwards}.scale-in{animation:scaleIn .4s ease-out forwards}.container{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}@media(min-width:768px){.container{padding:0 2rem}}@media(min-width:1024px){.container{padding:0 3rem}}.btn{font-family:var(--font-sans);font-weight:500;border-radius:2px;transition:var(--transition-smooth);cursor:pointer;border:none;outline:none;display:inline-flex;align-items:center;justify-content:center;gap:.5rem;text-transform:uppercase;letter-spacing:.5px;font-size:.875rem}.btn:disabled{opacity:.5;cursor:not-allowed}.btn--small{padding:.5rem 1rem;font-size:.75rem}.btn--medium{padding:.75rem 1.5rem;font-size:.875rem}.btn--large{padding:1rem 2rem;font-size:1rem}.btn--primary{background-color:var(--color-primary);color:var(--color-white)}.btn--primary:hover:not(:disabled){background-color:var(--color-primary-dark);transform:translateY(-2px);box-shadow:var(--shadow-md)}.btn--primary:active:not(:disabled){transform:translateY(0)}.btn--secondary{background-color:var(--color-secondary);color:var(--color-dark)}.btn--secondary:hover:not(:disabled){background-color:var(--color-primary);color:var(--color-white);transform:translateY(-2px);box-shadow:var(--shadow-md)}.btn--outline{background-color:transparent;color:var(--color-dark);border:1px solid var(--color-dark)}.btn--outline:hover:not(:disabled){background-color:var(--color-dark);color:var(--color-white);transform:translateY(-2px);box-shadow:var(--shadow-md)}.btn--ghost{background-color:transparent;color:var(--color-dark)}.btn--ghost:hover:not(:disabled){background-color:var(--color-light)}.cart-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#00000080;z-index:999;animation:fadeIn .3s ease-out}.cart{position:fixed;top:0;right:-100%;width:100%;max-width:450px;height:100vh;background-color:var(--color-white);z-index:1000;display:flex;flex-direction:column;transition:right .4s cubic-bezier(.4,0,.2,1);box-shadow:-4px 0 24px #00000026}.cart--open{right:0}.cart__header{display:flex;justify-content:space-between;align-items:center;padding:1.5rem;border-bottom:1px solid var(--color-gray-light)}.cart__header h2{font-family:var(--font-serif);font-size:1.5rem;font-weight:400;margin:0}.cart__close{background:none;border:none;cursor:pointer;padding:.5rem;display:flex;align-items:center;justify-content:center;transition:var(--transition-smooth);color:var(--color-dark)}.cart__close:hover{transform:rotate(90deg);color:var(--color-primary)}.cart__content{flex:1;overflow-y:auto;padding:1.5rem}.cart__empty{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;color:var(--color-gray);gap:1rem}.cart__empty svg{opacity:.3}.cart__empty p{font-size:1.125rem;font-family:var(--font-serif)}.cart__items{display:flex;flex-direction:column;gap:1.5rem}.cart__item{display:flex;gap:1rem;position:relative;animation:slideInRight .3s ease-out}.cart__item-image{width:100px;height:130px;flex-shrink:0;border-radius:4px;overflow:hidden;background:var(--color-light)}.cart__item-image img{width:100%;height:100%;object-fit:cover}.cart__item-details{flex:1;display:flex;flex-direction:column;gap:.5rem}.cart__item-details h3{font-family:var(--font-serif);font-size:1.125rem;font-weight:400;margin:0;color:var(--color-dark)}.cart__item-variant{font-size:.875rem;color:var(--color-gray);margin:0}.cart__item-price{font-size:1rem;font-weight:600;color:var(--color-dark);margin:0}.cart__item-quantity{display:flex;align-items:center;gap:.75rem;margin-top:.5rem}.cart__item-quantity button{width:28px;height:28px;border:1px solid var(--color-gray-light);background:var(--color-white);border-radius:2px;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:1rem;transition:var(--transition-smooth);color:var(--color-dark)}.cart__item-quantity button:hover{background:var(--color-dark);color:var(--color-white);border-color:var(--color-dark)}.cart__item-quantity span{min-width:30px;text-align:center;font-weight:500}.cart__item-remove{position:absolute;top:0;right:0;background:none;border:none;cursor:pointer;padding:.25rem;color:var(--color-gray);transition:var(--transition-smooth)}.cart__item-remove:hover{color:var(--color-error);transform:scale(1.1)}.cart__footer{padding:1.5rem;border-top:1px solid var(--color-gray-light);background:var(--color-light)}.cart__total{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;font-size:1.25rem}.cart__total-price{font-weight:700;font-size:1.5rem;color:var(--color-dark)}@media(max-width:480px){.cart{max-width:100%}.cart__item-image{width:80px;height:110px}.cart__item-details h3{font-size:1rem}}.header{background-color:var(--color-white);border-bottom:1px solid var(--color-gray-light);position:sticky;top:0;z-index:150;animation:slideInLeft .5s ease-out}.header__container{display:flex;justify-content:space-between;align-items:center;padding:1rem 1.5rem;max-width:var(--max-width);margin:0 auto;gap:2rem}.header__logo{text-align:left;flex-shrink:0}.header__logo h1{font-family:var(--font-serif);font-size:1.75rem;font-weight:400;margin:0;color:var(--color-dark);letter-spacing:1px}.header__logo p{font-family:var(--font-sans);font-size:.75rem;margin:0;color:var(--color-gray);font-style:italic}.header__nav{display:flex;gap:2rem;align-items:center;flex:1;justify-content:center}.header__nav--desktop{display:none}.header__nav--mobile{display:flex;flex-direction:column;gap:0;background-color:var(--color-white);border-top:1px solid var(--color-gray-light);overflow:hidden}.header__nav--mobile .header__nav-link{width:100%;text-align:left;padding:1rem 1.5rem;border-bottom:1px solid var(--color-gray-light)}.header__nav--mobile .header__nav-link:hover{background-color:var(--color-gray-lighter);transform:none}.header__hamburger{display:flex;background:none;border:none;cursor:pointer;padding:.5rem;color:var(--color-dark);transition:var(--transition-smooth);align-items:center;justify-content:center}.header__hamburger:hover{color:var(--color-primary)}.header__nav-link{background:none;border:none;cursor:pointer;color:var(--color-dark);font-size:1rem;font-weight:500;padding:.5rem 1rem;transition:var(--transition-smooth);font-family:var(--font-sans)}.header__nav-link:hover{color:var(--color-primary);transform:translateY(-2px)}.header__tracking-wrapper{position:relative}.header__tracking-dropdown{position:absolute;top:100%;left:0;background-color:var(--color-white);border:1px solid var(--color-gray-light);border-radius:8px;box-shadow:0 4px 12px #00000026;min-width:150px;z-index:1000;margin-top:.5rem}.header__tracking-dropdown button{display:block;width:100%;padding:.75rem 1rem;text-align:left;background:none;border:none;cursor:pointer;color:var(--color-dark);font-size:.95rem;font-weight:500;transition:var(--transition-smooth);font-family:var(--font-sans)}.header__tracking-dropdown button:first-child{border-radius:8px 8px 0 0}.header__tracking-dropdown button:last-child{border-radius:0 0 8px 8px}.header__tracking-dropdown button:hover{background-color:var(--color-gray-lighter);color:var(--color-primary)}.header__tracking-wrapper-mobile{width:100%}.header__tracking-dropdown-mobile{background-color:var(--color-gray-lighter);overflow:hidden}.header__tracking-dropdown-mobile button{display:block;width:100%;padding:.75rem 1.5rem .75rem 2.5rem;text-align:left;background:none;border:none;cursor:pointer;color:var(--color-dark);font-size:.95rem;transition:var(--transition-smooth);font-family:var(--font-sans);border-bottom:1px solid var(--color-gray-light)}.header__tracking-dropdown-mobile button:last-child{border-bottom:none}.header__tracking-dropdown-mobile button:hover{background-color:#0000000d;color:var(--color-primary)}.header__actions{display:flex;gap:1rem;align-items:center;flex-shrink:0}.header__icon-btn{background:none;border:none;cursor:pointer;padding:.5rem;display:flex;align-items:center;color:var(--color-dark);transition:var(--transition-smooth);position:relative}.header__icon-btn:hover{color:var(--color-primary);transform:translateY(-2px)}.header__cart-count{position:absolute;top:0;right:0;background-color:var(--color-primary);color:var(--color-white);border-radius:50%;width:18px;height:18px;display:flex;align-items:center;justify-content:center;font-size:.625rem;font-weight:700}.header__banner{background-color:var(--color-primary);color:var(--color-white);text-align:center;padding:.75rem 1rem;animation:fadeIn .8s ease-out}.header__banner p{margin:0;font-size:.875rem;font-family:var(--font-sans)}@media(min-width:769px){.header__container{padding:1.5rem 2rem}.header__logo h1{font-size:2rem}.header__logo p{font-size:.875rem}.header__nav--desktop{display:flex;gap:3rem}.header__hamburger{display:none}.header__banner p{font-size:1rem}}@media(max-width:768px){.header__container{padding:1rem;gap:1rem}.header__logo h1{font-size:1.5rem}.header__logo p{font-size:.65rem}.header__banner p{font-size:.75rem}}.hero{position:relative;height:70vh;min-height:500px;max-height:700px;overflow:hidden;animation:fadeIn .8s ease-out}.hero__image{position:absolute;top:0;left:0;width:100%;height:100%}.hero__image img{width:100%;height:100%;object-fit:cover;object-position:center;filter:brightness(.7)}.hero__image:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(to bottom,#0003,#00000080)}.hero__content{position:relative;z-index:10;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;padding:2rem;max-width:var(--max-width);margin:0 auto;color:var(--color-white);animation:slideInLeft 1s ease-out}.hero__title{font-family:var(--font-serif);font-size:clamp(2.5rem,6vw,5rem);font-weight:300;margin:0 0 1rem;line-height:1.1;color:var(--color-white);animation:fadeIn 1.2s ease-out}.hero__subtitle{font-family:var(--font-sans);font-size:clamp(1rem,2vw,1.25rem);line-height:1.6;margin:0 0 2rem;max-width:600px;animation:fadeIn 1.4s ease-out}.hero__discount{font-family:var(--font-serif);font-size:clamp(2.5rem,8vw,6rem);font-weight:700;margin:0 0 2rem;color:var(--color-white);text-shadow:2px 2px 8px rgba(0,0,0,.5);animation:scaleIn 1s ease-out}.hero__content .btn{animation:fadeIn 1.6s ease-out}@media(min-width:768px){.hero{height:80vh;max-height:800px}.hero__content{padding:3rem}}@media(max-width:767px){.hero{height:60vh;min-height:450px}.hero__content{align-items:center;text-align:center}.hero__subtitle{max-width:100%}}.category-stories{background:#fff;border-bottom:1px solid #f0f0f0;padding:1rem 0;position:sticky;top:80px;z-index:100;box-shadow:0 2px 8px #0000000d;width:100%;overflow:hidden}.category-stories__container{max-width:1200px;margin:0 auto;padding:0 1rem;width:100%}.category-stories__scroll{display:flex;gap:1.5rem;overflow-x:auto;overflow-y:hidden;padding:.5rem .25rem;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;scrollbar-width:none;-ms-overflow-style:none;scroll-snap-type:x proximity;touch-action:pan-x}.category-stories__scroll::-webkit-scrollbar{display:none}.category-stories__loading{text-align:center;padding:1rem;color:#999;font-size:.9rem}.category-story{display:flex;flex-direction:column;align-items:center;gap:.5rem;cursor:pointer;flex-shrink:0;transition:opacity .3s ease,transform .2s ease;scroll-snap-align:start;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;min-width:80px}.category-story:hover{opacity:.8}.category-story:active{transform:scale(.95)}.category-story__ring{width:80px;height:80px;border-radius:50%;padding:3px;background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);display:flex;align-items:center;justify-content:center;position:relative;transition:transform .3s ease}.category-story--active .category-story__ring{background:linear-gradient(45deg,#405de6,#5851db,#833ab4,#c13584,#e1306c,#fd1d1d);box-shadow:0 4px 12px #833ab466}.category-story__image{width:74px;height:74px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;overflow:hidden;border:3px solid #fff}.category-story__image img{width:100%;height:100%;object-fit:cover}.category-story__placeholder,.category-story__all-icon{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;font-weight:600;font-size:1.5rem;text-transform:uppercase}.category-story__all-icon{background:linear-gradient(135deg,#f093fb,#f5576c);font-size:.9rem}.category-story__name{font-size:.75rem;color:#262626;text-align:center;max-width:80px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:500}.category-story--active .category-story__name{color:#833ab4;font-weight:600}@media(max-width:1024px){.category-stories{top:70px}}@media(max-width:768px){.category-stories{top:60px;padding:.75rem 0}.category-stories__container{padding:0 .75rem}.category-stories__scroll{gap:1rem;padding:.5rem .25rem}.category-story{min-width:70px}.category-story__ring{width:70px;height:70px}.category-story__image{width:64px;height:64px}.category-story__name{font-size:.7rem;max-width:70px}}@media(max-width:480px){.category-stories{padding:.625rem 0;top:60px}.category-stories__container{padding:0 .5rem}.category-stories__scroll{gap:.875rem;padding:.375rem .125rem}.category-story{min-width:68px}.category-story__ring{width:68px;height:68px}.category-story__image{width:62px;height:62px}.category-story__placeholder,.category-story__all-icon{font-size:1.3rem}.category-story__all-icon{font-size:.85rem}.category-story__name{font-size:.7rem;max-width:68px}}@media(max-width:360px){.category-stories{padding:.5rem 0}.category-stories__container{padding:0 .375rem}.category-stories__scroll{gap:.75rem;padding:.25rem .125rem}.category-story{min-width:62px}.category-story__ring{width:62px;height:62px}.category-story__image{width:56px;height:56px;border:2px solid #fff}.category-story__placeholder,.category-story__all-icon{font-size:1.1rem}.category-story__all-icon{font-size:.75rem}.category-story__name{font-size:.65rem;max-width:62px}}.product-card{cursor:pointer;transition:var(--transition-smooth);border-radius:4px;overflow:hidden;background:var(--color-white)}.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}.product-card__image-wrapper{position:relative;aspect-ratio:3 / 4;overflow:hidden;background:var(--color-light)}.product-card__image{width:100%;height:100%;object-fit:cover;transition:var(--transition-smooth)}.product-card:hover .product-card__image{transform:scale(1.05)}.product-card__badge{position:absolute;top:1rem;left:1rem;background-color:var(--color-dark);color:var(--color-white);padding:.25rem .75rem;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.5px;z-index:1}.product-card__badge--sold-out{background-color:var(--color-gray)}.product-card__content{padding:1rem}.product-card__info{display:flex;justify-content:space-between;align-items:flex-start;gap:.75rem;margin-bottom:.5rem}.product-card__text{flex:1;min-width:0}.product-card__title{font-family:var(--font-serif);font-size:1.25rem;font-weight:400;margin-bottom:.5rem;color:var(--color-dark)}.product-card__price{display:flex;align-items:center;gap:.75rem;font-family:var(--font-sans)}.product-card__price--current{font-size:1.125rem;font-weight:600;color:var(--color-dark)}.product-card__price--original{font-size:1rem;color:var(--color-gray);text-decoration:line-through}.product-card__stock-warning{margin-top:.5rem;font-size:.875rem;color:#f39c12;font-weight:500}.product-card__insta-link{display:flex;align-items:center;justify-content:center;width:40px;height:40px;padding:0;background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);color:var(--color-white);border:none;border-radius:50%;cursor:pointer;transition:var(--transition-smooth);flex-shrink:0}.product-card__insta-link:hover{box-shadow:0 4px 12px #bc188866}@media(max-width:768px){.product-card__content{padding:.75rem}.product-card__title{font-size:1.125rem}.product-card__price--current{font-size:1rem}.product-card__price--original{font-size:.875rem}}.toast{position:fixed;top:2rem;left:50%;transform:translate(-50%);display:flex;align-items:center;gap:.75rem;padding:1rem 1.5rem;background:#fff;border-radius:8px;box-shadow:0 4px 12px #00000026;z-index:10000;min-width:320px;max-width:500px}.toast__icon{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;flex-shrink:0}.toast--success{border-left:4px solid #10b981}.toast--success .toast__icon{background:#d1fae5;color:#10b981}.toast--error{border-left:4px solid #ef4444}.toast--error .toast__icon{background:#fee2e2;color:#ef4444}.toast--warning{border-left:4px solid #f59e0b}.toast--warning .toast__icon{background:#fef3c7;color:#f59e0b}.toast--info{border-left:4px solid #3b82f6}.toast--info .toast__icon{background:#dbeafe;color:#3b82f6}.toast__message{flex:1;margin:0;color:#1f2937;font-size:.875rem;font-weight:500}.toast__close{background:none;border:none;color:#6b7280;cursor:pointer;padding:.25rem;border-radius:4px;display:flex;align-items:center;justify-content:center;transition:all .2s}.toast__close:hover{background:#f3f4f6;color:#1f2937}.product-detail-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#0009;z-index:1000;animation:fadeIn .3s ease-out}.product-detail{position:fixed;top:0;left:0;width:100%;height:100vh;background-color:var(--color-white);z-index:1001;overflow-y:auto;transform:translateY(100%);transition:transform .4s cubic-bezier(.4,0,.2,1)}.product-detail--open{transform:translateY(0)}.product-detail__close{position:fixed;top:1rem;right:1rem;background:var(--color-white);border:none;width:40px;height:40px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-md);z-index:10;transition:var(--transition-smooth);color:var(--color-dark)}.product-detail__close:hover{transform:rotate(90deg);background-color:var(--color-primary);color:var(--color-white)}.product-detail__content{display:grid;grid-template-columns:1fr;max-width:var(--max-width);margin:0 auto;min-height:100vh}.product-detail__image{position:relative;background:var(--color-light);min-height:60vh}.product-detail__image img{width:100%;height:100%;object-fit:cover}.product-detail__badge{position:absolute;top:2rem;left:2rem;background-color:var(--color-dark);color:var(--color-white);padding:.5rem 1rem;font-size:1rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;animation:scaleIn .5s ease-out}.product-detail__info{padding:2rem;animation:slideInRight .5s ease-out}.product-detail__title{font-family:var(--font-serif);font-size:clamp(2rem,4vw,3rem);font-weight:400;margin:0 0 1.5rem;color:var(--color-dark)}.product-detail__price{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem;padding-bottom:1.5rem;border-bottom:1px solid var(--color-gray-light)}.product-detail__price--current{font-size:2rem;font-weight:700;color:var(--color-dark)}.product-detail__price--original{font-size:1.5rem;color:var(--color-gray);text-decoration:line-through}.product-detail__description{font-family:var(--font-sans);font-size:1rem;line-height:1.8;color:var(--color-gray);margin:0 0 2rem}.product-detail__options{display:flex;flex-direction:column;gap:2rem}.product-detail__option-group label{display:block;font-weight:600;font-size:.875rem;text-transform:uppercase;letter-spacing:.5px;margin-bottom:1rem;color:var(--color-dark)}.product-detail__sizes,.product-detail__colors{display:flex;flex-wrap:wrap;gap:.75rem}.product-detail__size,.product-detail__color{padding:.75rem 1.5rem;border:2px solid var(--color-gray-light);background:var(--color-white);border-radius:2px;cursor:pointer;font-family:var(--font-sans);font-weight:500;transition:var(--transition-smooth);color:var(--color-dark);position:relative}.product-detail__size:hover,.product-detail__color:hover{border-color:var(--color-primary);transform:translateY(-2px)}.product-detail__size--active,.product-detail__color--active{background-color:var(--color-dark);color:var(--color-white);border-color:var(--color-dark)}.product-detail__size--disabled{opacity:.4;cursor:not-allowed;background-color:var(--color-light);color:var(--color-gray)}.product-detail__size--disabled:hover{border-color:var(--color-gray-light);transform:none}.product-detail__size-line{position:absolute;top:50%;left:0;width:100%;height:2px;background-color:var(--color-gray);transform:translateY(-50%) rotate(-45deg);pointer-events:none}.product-detail__success{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);background-color:var(--color-success);color:var(--color-white);padding:1.5rem 3rem;border-radius:4px;font-size:1.25rem;font-weight:600;box-shadow:var(--shadow-lg);z-index:10000;animation:scaleIn .3s ease-out}@media(min-width:768px){.product-detail__content{grid-template-columns:1fr 1fr}.product-detail__image{position:sticky;top:0;height:100vh;min-height:unset}.product-detail__info{padding:3rem}}@media(min-width:1024px){.product-detail__content{grid-template-columns:60% 40%}.product-detail__info{padding:4rem}}.otp-input-container{display:flex;gap:.75rem;justify-content:center;margin:1.5rem 0}.otp-input{width:3rem;height:3.5rem;text-align:center;font-size:1.5rem;font-weight:600;border:2px solid #e0e0e0;border-radius:8px;outline:none;transition:all .3s ease;background:#fff;color:#333}.otp-input:focus{border-color:var(--color-primary, #8b7355);box-shadow:0 0 0 3px #8b73551a}.otp-input:disabled{background-color:#f5f5f5;cursor:not-allowed;opacity:.6}@media(max-width:480px){.otp-input{width:2.5rem;height:3rem;font-size:1.25rem}.otp-input-container{gap:.5rem}}.auth-container{min-height:80vh;display:flex;align-items:center;justify-content:center;padding:2rem;background:linear-gradient(135deg,#f5f5f5,#e8e8e8)}.auth-card{background:#fff;padding:3rem;border-radius:16px;box-shadow:0 10px 40px #0000001a;width:100%;max-width:450px}.auth-card h2{font-size:2rem;margin-bottom:.5rem;color:#333;text-align:center}.auth-subtitle{text-align:center;color:#666;margin-bottom:2rem}.auth-error{background-color:#fee;color:#c33;padding:1rem;border-radius:8px;margin-bottom:1.5rem;text-align:center}.form-group{margin-bottom:1.5rem}.form-group label{display:block;margin-bottom:.5rem;color:#333;font-weight:500}.form-group input{width:100%;padding:.75rem 1rem;border:1px solid #ddd;border-radius:8px;font-size:1rem;transition:border-color .3s ease}.form-group input:focus{outline:none;border-color:#333}.auth-button{width:100%;padding:1rem;background-color:#333;color:#fff;border:none;border-radius:8px;font-size:1rem;font-weight:600;cursor:pointer;transition:background-color .3s ease;margin-top:.5rem}.auth-button:hover:not(:disabled){background-color:#111}.auth-button:disabled{background-color:#ccc;cursor:not-allowed}.auth-toggle{text-align:center;margin-top:1.5rem;color:#666}.toggle-btn{background:none;border:none;color:#333;font-weight:600;cursor:pointer;text-decoration:underline;padding:0}.toggle-btn:hover{color:#000}@media(max-width:768px){.auth-card{padding:2rem}}.profile-container{max-width:1200px;margin:0 auto;padding:2rem;min-height:80vh}.profile-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;padding-bottom:1rem;border-bottom:2px solid #eee}.profile-header h1{font-size:2rem;color:#333}.logout-btn{padding:.75rem 1.5rem;background-color:#333;color:#fff;border:none;border-radius:8px;cursor:pointer;font-weight:500;transition:background-color .3s ease}.logout-btn:hover{background-color:#111}.profile-content{display:grid;gap:2rem}.profile-info{background:#fff;padding:2rem;border-radius:12px;box-shadow:0 2px 8px #0000001a}.profile-info h2{margin-bottom:1.5rem;color:#333;font-size:1.5rem}.info-grid{display:grid;gap:1rem}.info-item{display:flex;padding:1rem;background:#f8f9fa;border-radius:8px}.info-item label{font-weight:600;color:#666;min-width:100px}.info-item span{color:#333}.orders-section{background:#fff;padding:2rem;border-radius:12px;box-shadow:0 2px 8px #0000001a}.orders-section h2{margin-bottom:1.5rem;color:#333;font-size:1.5rem}.loading-text,.error-text,.empty-text{text-align:center;padding:3rem;color:#666}.error-text{color:#c33}.orders-list{display:grid;gap:1.5rem}.order-card{border:1px solid #e0e0e0;border-radius:12px;padding:1.5rem;transition:box-shadow .3s ease}.order-card:hover{box-shadow:0 4px 12px #0000001a}.order-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:1rem;padding-bottom:1rem;border-bottom:1px solid #eee}.order-header h3{font-size:1.1rem;color:#333;margin-bottom:.25rem}.order-date{color:#666;font-size:.9rem}.order-status{text-align:right}.status-badge{display:inline-block;padding:.35rem .75rem;border-radius:20px;font-size:.85rem;font-weight:500;text-transform:uppercase;margin-bottom:.5rem}.status-delivered{background-color:#d4edda;color:#155724}.status-dispatched{background-color:#cce5ff;color:#004085}.status-pending{background-color:#fff3cd;color:#856404}.order-total{font-size:1.2rem;font-weight:600;color:#2ecc71}.order-items{display:grid;gap:1rem;margin-bottom:1rem}.order-item{display:flex;gap:1rem;align-items:center;padding:.75rem;background:#f8f9fa;border-radius:8px}.item-name{font-weight:500;color:#333;margin-bottom:.25rem}.item-quantity{color:#666;font-size:.9rem}.order-tracking{background:#f0f8ff;padding:1rem;border-radius:8px;margin-top:1rem}.order-tracking p{margin:.5rem 0;color:#333;font-size:.9rem}.order-tracking strong{color:#004085}@media(max-width:768px){.profile-container{padding:1rem}.profile-header{flex-direction:column;align-items:flex-start;gap:1rem}.profile-info,.orders-section{padding:1.5rem}.order-header{flex-direction:column;gap:1rem}.order-status{text-align:left}.info-item{flex-direction:column;gap:.5rem}}.checkout-container{max-width:1400px;margin:0 auto;padding:2rem;min-height:80vh}.checkout-container h1{font-size:2rem;margin-bottom:2rem;color:#333}.checkout-error{background-color:#fee;color:#c33;padding:1rem;border-radius:8px;margin-bottom:1.5rem;text-align:center}.checkout-grid{display:grid;grid-template-columns:1fr 400px;gap:2rem}.checkout-section{background:#fff;padding:2rem;border-radius:12px;box-shadow:0 2px 8px #0000001a}.section-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem}.section-header h2{font-size:1.5rem;color:#333}.add-address-btn{padding:.5rem 1rem;background-color:#333;color:#fff;border:none;border-radius:6px;cursor:pointer;font-size:.9rem;transition:background-color .3s ease}.add-address-btn:hover{background-color:#111}.address-form{background:#f8f9fa;padding:1.5rem;border-radius:8px;margin-bottom:1.5rem}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem}.address-form input{width:100%;padding:.75rem;border:1px solid #ddd;border-radius:6px;font-size:1rem}.address-form input:focus{outline:none;border-color:#333}.address-form>input{margin-bottom:1rem}.save-address-btn{width:100%;padding:.75rem;background-color:#2ecc71;color:#fff;border:none;border-radius:6px;cursor:pointer;font-weight:500;transition:background-color .3s ease}.save-address-btn:hover:not(:disabled){background-color:#27ae60}.save-address-btn:disabled{background-color:#ccc;cursor:not-allowed}.addresses-list{display:grid;gap:1rem}.address-card{display:flex;gap:1rem;padding:1rem;border:2px solid #e0e0e0;border-radius:8px;cursor:pointer;transition:all .3s ease}.address-card:hover{border-color:#333}.address-card input[type=radio]{margin-top:.25rem}.address-card input[type=radio]:checked+.address-details{color:#333}.address-details h3{margin-bottom:.5rem;color:#333}.address-details p{margin:.25rem 0;color:#666;font-size:.95rem}.order-summary{background:#fff;padding:2rem;border-radius:12px;box-shadow:0 2px 8px #0000001a;position:sticky;top:2rem}.order-summary h2{font-size:1.5rem;margin-bottom:1.5rem;color:#333}.summary-items{max-height:300px;overflow-y:auto;margin-bottom:1.5rem;padding-right:.5rem}.summary-item{display:flex;gap:1rem;align-items:center;padding:.75rem;background:#f8f9fa;border-radius:8px;margin-bottom:.75rem}.summary-item img{width:50px;height:50px;object-fit:cover;border-radius:6px}.item-info{flex:1}.item-name{font-weight:500;color:#333;margin-bottom:.25rem;font-size:.9rem}.item-qty{color:#666;font-size:.85rem}.item-price{font-weight:600;color:#333}.summary-breakdown{border-top:1px solid #e0e0e0;padding-top:1rem;margin-bottom:1.5rem}.breakdown-row{display:flex;justify-content:space-between;margin-bottom:.75rem;color:#666}.total-row{font-size:1.2rem;font-weight:600;color:#333;border-top:2px solid #e0e0e0;padding-top:1rem;margin-top:1rem}.place-order-btn{width:100%;padding:1rem;background-color:#333;color:#fff;border:none;border-radius:8px;font-size:1rem;font-weight:600;cursor:pointer;transition:background-color .3s ease}.place-order-btn:hover:not(:disabled){background-color:#111}.place-order-btn:disabled{background-color:#ccc;cursor:not-allowed}@media(max-width:1024px){.checkout-grid{grid-template-columns:1fr}.order-summary{position:static}}@media(max-width:768px){.checkout-container{padding:1rem}.checkout-section,.order-summary{padding:1.5rem}.form-row{grid-template-columns:1fr}.section-header{flex-direction:column;align-items:flex-start;gap:1rem}.add-address-btn{width:100%}}.order-success-container{min-height:80vh;display:flex;align-items:center;justify-content:center;padding:2rem;background:linear-gradient(135deg,#f5f7fa,#e8ecf1)}.success-content{max-width:800px;width:100%;background:#fff;border-radius:16px;padding:3rem;box-shadow:0 10px 40px #0000001a;text-align:center}.success-icon{margin:0 auto 2rem;animation:scaleIn .5s ease-out}@keyframes scaleIn{0%{transform:scale(0);opacity:0}50%{transform:scale(1.1)}to{transform:scale(1);opacity:1}}.success-content h1{font-size:2rem;color:#333;margin-bottom:1rem}.success-message{font-size:1.1rem;color:#666;margin-bottom:2rem;line-height:1.6}.order-details-card{background:#f8f9fa;border-radius:12px;padding:2rem;margin:2rem 0;text-align:left}.order-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:2px solid #e0e0e0}.order-header h2{font-size:1.5rem;color:#333;margin:0}.order-id{font-size:.9rem;color:#666;background:#fff;padding:.5rem 1rem;border-radius:6px;font-family:monospace}.order-info{margin-bottom:1.5rem}.info-row{display:flex;justify-content:space-between;padding:.75rem 0;border-bottom:1px solid #e0e0e0}.info-row:last-child{border-bottom:none}.info-row .label{color:#666;font-weight:500}.info-row .value{color:#333;font-weight:600}.status-badge{background:#4caf50;color:#fff;padding:.25rem 1rem;border-radius:20px;font-size:.9rem}.total-amount{color:#4caf50;font-size:1.2rem}.shipping-address{background:#fff;padding:1.5rem;border-radius:8px;margin-bottom:1.5rem}.shipping-address h3{font-size:1.2rem;color:#333;margin-bottom:1rem}.shipping-address p{margin:.5rem 0;color:#666;line-height:1.6}.order-items{background:#fff;padding:1.5rem;border-radius:8px}.order-items h3{font-size:1.2rem;color:#333;margin-bottom:1rem}.order-item{display:flex;gap:1rem;align-items:center;padding:1rem;background:#f8f9fa;border-radius:8px;margin-bottom:.75rem}.order-item:last-child{margin-bottom:0}.order-item img{width:60px;height:60px;object-fit:cover;border-radius:6px}.item-details{flex:1}.item-name{font-weight:600;color:#333;margin-bottom:.25rem}.item-size,.item-quantity{font-size:.9rem;color:#666;margin:.25rem 0}.item-price{font-weight:600;color:#333;white-space:nowrap}.action-buttons{display:flex;gap:1rem;justify-content:center;margin-top:2rem}.btn-primary,.btn-secondary{padding:1rem 2rem;border:none;border-radius:8px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .3s ease}.btn-primary{background:#333;color:#fff}.btn-primary:hover{background:#111;transform:translateY(-2px);box-shadow:0 4px 12px #0003}.btn-secondary{background:#fff;color:#333;border:2px solid #333}.btn-secondary:hover{background:#f8f9fa;transform:translateY(-2px);box-shadow:0 4px 12px #0000001a}.loading{text-align:center;padding:3rem;font-size:1.2rem;color:#666}@media(max-width:768px){.order-success-container{padding:1rem}.success-content{padding:2rem 1.5rem}.success-content h1{font-size:1.5rem}.success-message{font-size:1rem}.order-details-card{padding:1.5rem}.order-header{flex-direction:column;align-items:flex-start;gap:1rem}.order-id{font-size:.8rem;padding:.4rem .8rem}.action-buttons{flex-direction:column;width:100%}.btn-primary,.btn-secondary{width:100%}.order-item{flex-direction:column;text-align:center}.order-item img{width:80px;height:80px}}.app{min-height:100vh;display:flex;flex-direction:column}main{flex:1}.section{padding:4rem 0}.section__title{font-family:var(--font-serif);font-size:clamp(2rem,4vw,3rem);font-weight:400;text-align:center;margin:0 0 3rem;color:var(--color-dark);animation:fadeIn .8s ease-out}.section__header{display:flex;flex-direction:column;gap:2rem;margin-bottom:3rem;align-items:center}.section--mindful{background-color:var(--color-light);padding:5rem 0}.mindful{text-align:center;max-width:900px;margin:0 auto;padding:2rem}.mindful__title{font-family:var(--font-sans);font-size:1rem;font-weight:700;letter-spacing:2px;margin-bottom:2rem;color:var(--color-primary)}.mindful__text{font-family:var(--font-serif);font-size:clamp(1.25rem,2.5vw,1.75rem);line-height:1.6;color:var(--color-dark);margin:0}.categories-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem}.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:2rem}.filter-buttons{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center}.filter-btn{padding:.75rem 1.5rem;background-color:var(--color-white);border:2px solid var(--color-gray-light);border-radius:2px;font-family:var(--font-sans);font-size:.875rem;font-weight:600;text-transform:uppercase;letter-spacing:.5px;cursor:pointer;transition:var(--transition-smooth);color:var(--color-dark)}.filter-btn:hover{border-color:var(--color-primary);transform:translateY(-2px)}.filter-btn--active{background-color:var(--color-dark);color:var(--color-white);border-color:var(--color-dark)}.section--about{background-color:var(--color-light);padding:6rem 0}.about{display:grid;grid-template-columns:1fr;gap:3rem;align-items:center}.about__content{order:2}.about__image{order:1}.about__content h2{font-family:var(--font-serif);font-size:clamp(2rem,4vw,3rem);font-weight:400;margin:0 0 1.5rem;color:var(--color-dark)}.about__content p{font-family:var(--font-sans);font-size:1.125rem;line-height:1.8;color:var(--color-gray);margin:0 0 1.5rem}.about__image{width:300px;height:300px;margin:0 auto;border-radius:50%;overflow:hidden;box-shadow:0 10px 40px #00000026;position:relative;animation:float 6s ease-in-out infinite}.about__image:before{content:"";position:absolute;inset:-2px;background:linear-gradient(45deg,#333,#999,#333,#999);border-radius:50%;z-index:-1;animation:rotate 4s linear infinite;opacity:.6}.about__image img{width:100%;height:100%;object-fit:cover;display:block;border-radius:50%;transition:transform .3s ease}.about__image:hover img{transform:scale(1.05)}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-20px)}}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.footer{background-color:var(--color-dark);color:var(--color-white);padding:3rem 0 1.5rem;margin-top:4rem}.footer__content{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:2rem;margin-bottom:2rem}.footer__section h3{font-family:var(--font-serif);font-size:1.5rem;font-weight:400;margin:0 0 .5rem}.footer__section h4{font-family:var(--font-sans);font-size:1rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;margin:0 0 1rem}.footer__section p{font-size:.875rem;color:var(--color-secondary);margin:0;font-style:italic}.footer__section ul{list-style:none;padding:0;margin:0}.footer__section li{margin-bottom:.75rem}.footer__section a{color:var(--color-secondary);text-decoration:none;transition:var(--transition-smooth);font-size:.875rem}.footer__section a:hover{color:var(--color-white);text-decoration:underline}.footer__social{display:flex;flex-direction:column;gap:.5rem}.footer__social-link{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 0;transition:var(--transition-smooth)}.footer__social-link svg{width:24px;height:24px;flex-shrink:0}.footer__social-link:hover{color:var(--color-white);transform:translate(5px)}.footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:1.5rem;text-align:center}.footer__bottom p{margin:0;font-size:.875rem;color:var(--color-secondary)}@media(min-width:640px){.categories-grid,.products-grid{grid-template-columns:repeat(2,1fr)}}@media(min-width:768px){.section{padding:5rem 0}.section--mindful{padding:6rem 0}.categories-grid{grid-template-columns:repeat(4,1fr)}}@media(min-width:1024px){.section{padding:6rem 0}.products-grid{grid-template-columns:repeat(3,1fr)}.about{grid-template-columns:1fr 1fr;gap:4rem}.about__content{order:1}.about__image{order:2}}@media(min-width:1280px){.products-grid{grid-template-columns:repeat(4,1fr)}}@media(prefers-reduced-motion:no-preference){.fade-in:nth-child(1){animation-delay:.1s}.fade-in:nth-child(2){animation-delay:.2s}.fade-in:nth-child(3){animation-delay:.3s}.fade-in:nth-child(4){animation-delay:.4s}.fade-in:nth-child(5){animation-delay:.5s}.fade-in:nth-child(6){animation-delay:.6s}}@media(prefers-reduced-motion:reduce){*{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}
