@import url('inter-fonts.css');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cinzel+Decorative:wght@400;700;900&family=MedievalSharp&display=swap');
@import url('https://fonts.googleapis.com/css?family=Pirata+One|Bilbo+Swash+Caps&display=swap');
@import url('https://fonts.cdnfonts.com/css/morris-initialen');

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;text-size-adjust:100%;font-size:16px}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}
body{line-height:1}
ol,ul{list-style:none}
q::before,q::after,blockquote::before,blockquote::after{content:'';content:none}
table{border-collapse:collapse;border-spacing:0}
caption,th{text-align:left}
h1,h2,h3,h4,h5,h6{font-weight:normal;font-size:inherit}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block}
img,svg,video,canvas,audio,iframe{display:block;max-width:100%}
input,button,textarea,select{font:inherit;color:inherit;background:none;border:none;outline:none}
button{cursor:pointer}
a{color:inherit;text-decoration:none}
input::placeholder,textarea::placeholder{color:var(--text-secondary);opacity:.7}
fieldset{border:none}

:root{
--bg-primary:#080706;
--bg-secondary:#11100E;
--bg-panel:#171411;
--bg-stone:#211C17;
--bronze-dark:#3A2A1D;
--bronze:#76532F;
--gold:#B58A45;
--gold-bright:#D6B56A;
--crimson:#6F211B;
--crimson-dark:#3D110E;
--text-primary:#E8D7B0;
--text-secondary:#9C8B6E;
--border:#5B4428;
--font-heading:'Cinzel',serif;
--font-decorative:'Cinzel Decorative',serif;
--font-body:'Inter',sans-serif;
--shadow-sm:0 2px 8px rgba(0,0,0,.4);
--shadow-md:0 4px 16px rgba(0,0,0,.5);
--shadow-lg:0 8px 32px rgba(0,0,0,.6);
--shadow-gold:0 0 20px rgba(181,138,69,.15);
--shadow-crimson:0 0 20px rgba(111,33,27,.2);
--radius-sm:4px;
--radius-md:8px;
--radius-lg:12px;
--transition-fast:.2s ease;
--transition-med:.35s ease;
--transition-slow:.5s ease;
--max-width:1400px;
--header-height:80px;
--utility-height:36px;
}

body{font-family:var(--font-body);background-color:var(--bg-primary);color:var(--text-primary);line-height:1.6;min-height:100vh;overflow-x:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.container{width:100%;max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
::selection{background:var(--gold);color:var(--bg-primary)}
img{max-width:100%;height:auto;display:block}
a{color:var(--gold);transition:color var(--transition-fast)}
a:hover{color:var(--gold-bright)}
h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);color:var(--text-primary);line-height:1.2;letter-spacing:.02em}
h1{font-size:2.5rem;font-weight:700}
h2{font-size:2rem;font-weight:600}
h3{font-size:1.5rem;font-weight:600}
h4{font-size:1.25rem;font-weight:500}
h5{font-size:1.1rem;font-weight:500}
h6{font-size:1rem;font-weight:500}
p{margin-bottom:.75rem;color:var(--text-secondary)}
strong{color:var(--text-primary);font-weight:600}
hr{border:none;height:1px;background:linear-gradient(90deg,transparent,var(--border),transparent);margin:2rem 0}
input,textarea,select{background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-sm);padding:.65rem 1rem;color:var(--text-primary);font-size:.9rem;transition:border-color var(--transition-fast),box-shadow var(--transition-fast)}
input:focus,textarea:focus,select:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(181,138,69,.15)}
select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239C8B6E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .75rem center;padding-right:2.25rem}

::-webkit-scrollbar{width:8px}
::-webkit-scrollbar-track{background:var(--bg-secondary)}
::-webkit-scrollbar-thumb{background:var(--bronze-dark);border-radius:4px}
::-webkit-scrollbar-thumb:hover{background:var(--bronze)}
::-webkit-scrollbar-corner{background:var(--bg-secondary)}

.utility-bar{background:var(--bg-secondary);border-bottom:1px solid var(--border);height:var(--utility-height);display:flex;align-items:center;font-size:.75rem;color:var(--text-secondary);position:relative;z-index:1000}
.utility-bar .container{display:flex;justify-content:space-between;align-items:center;width:100%;max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
.utility-bar__left{display:flex;align-items:center;gap:1.5rem}
.utility-bar__right{display:flex;align-items:center;gap:1.25rem}
.utility-bar a{color:var(--text-secondary);transition:color var(--transition-fast);display:flex;align-items:center;gap:.35rem}
.utility-bar a:hover{color:var(--gold)}
.utility-bar__cart{position:relative}
.utility-bar__cart-count{position:absolute;top:-6px;right:-8px;background:var(--crimson);color:#fff;font-size:.6rem;width:16px;height:16px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700}
.utility-bar__btn{display:inline-flex;align-items:center;gap:.4rem;padding:.3rem .75rem;background:linear-gradient(135deg,rgba(118,83,47,.12),rgba(91,68,40,.2),rgba(118,83,47,.12));border:1px solid rgba(181,138,69,.2);border-radius:3px;font-family:'Cinzel',serif;font-size:.65rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(232,215,176,.6);text-decoration:none;cursor:pointer;transition:all .35s}
.utility-bar__btn:hover{border-color:rgba(181,138,69,.5);background:linear-gradient(135deg,rgba(181,138,69,.1),rgba(91,68,40,.3),rgba(181,138,69,.1));box-shadow:0 0 18px rgba(181,138,69,.1),inset 0 0 18px rgba(181,138,69,.04);color:#D6B56A;text-shadow:0 0 12px rgba(214,181,106,.3)}
.utility-bar__btn--active{border-color:rgba(181,138,69,.5);background:linear-gradient(135deg,rgba(181,138,69,.15),rgba(91,68,40,.35),rgba(181,138,69,.15));color:#D6B56A}

.main-header{display:none}
.logo{display:flex;align-items:center;gap:.75rem;flex-shrink:0}
.logo__icon{width:48px;height:48px;color:var(--gold)}
.logo__text{font-family:var(--font-decorative);font-size:1.35rem;color:var(--gold);font-weight:700;line-height:1;letter-spacing:.04em}
.logo__tagline{display:block;font-family:var(--font-body);font-size:.65rem;color:var(--text-secondary);letter-spacing:.15em;text-transform:uppercase;margin-top:2px}

.main-nav{display:flex;align-items:center;gap:0}
.main-nav__list{display:flex;align-items:center;gap:0}
.main-nav__item{position:relative}
.main-nav__link{font-family:var(--font-heading);font-size:.85rem;font-weight:500;color:var(--text-secondary);padding:1.75rem 1rem;display:flex;align-items:center;gap:.4rem;letter-spacing:.04em;text-transform:uppercase;transition:color var(--transition-fast);position:relative;white-space:nowrap}
.main-nav__link::after{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:0;height:2px;background:var(--gold);transition:width var(--transition-med)}
.main-nav__link:hover{color:var(--gold)}
.main-nav__link:hover::after{width:70%}
.main-nav__link--active{color:var(--gold)}
.main-nav__link--active::after{width:70%}
.main-nav__arrow{font-size:.6rem;transition:transform var(--transition-fast);margin-left:.15rem}
.main-nav__item:hover .main-nav__arrow{transform:rotate(180deg)}
.main-nav__dropdown{position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(8px);background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);min-width:220px;opacity:0;visibility:hidden;transition:all var(--transition-med);box-shadow:var(--shadow-lg);padding:.5rem 0;z-index:950}
.main-nav__item:hover .main-nav__dropdown{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.main-nav__dropdown-link{display:flex;align-items:center;gap:.6rem;padding:.6rem 1.25rem;font-size:.85rem;color:var(--text-secondary);transition:all var(--transition-fast)}
.main-nav__dropdown-link:hover{background:var(--bg-stone);color:var(--gold);padding-left:1.5rem}

.header-search{flex:1;max-width:400px;margin:0 2rem;position:relative}
.header-search__input{width:100%;padding:.65rem 1rem .65rem 2.75rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);color:var(--text-primary);font-size:.85rem;transition:all var(--transition-fast)}
.header-search__input:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(181,138,69,.15)}
.header-search__icon{position:absolute;left:.85rem;top:50%;transform:translateY(-50%);color:var(--text-secondary);font-size:.9rem;pointer-events:none}

.header-actions{display:flex;align-items:center;gap:1rem}
.header-actions__btn{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:50%;color:var(--text-secondary);transition:all var(--transition-fast);position:relative;font-size:1.1rem}
.header-actions__btn:hover{color:var(--gold);background:var(--bg-stone)}

/* ===== HERO SLIDER (CINEMATIC FULL LAYOUT) ===== */
.hero-slider{position:relative;width:100%;height:110vh;overflow:hidden;background:#080706;margin-top:calc(-1 * (var(--header-height) + var(--utility-height)))}
.hero-slide{position:absolute;inset:0;opacity:0;transition:opacity .8s ease;pointer-events:none}
.hero-slide--active{opacity:1;pointer-events:auto}
.hero-slide__image{position:absolute;inset:0;background-size:cover;background-position:center;background-repeat:no-repeat;background-color:#080706;filter:brightness(.45) saturate(.8)}
.hero-slide__video{position:absolute;inset:0;overflow:hidden}
.hero-slide__video iframe{position:absolute;top:50%;left:50%;min-width:100%;min-height:100%;width:100%;height:100%;transform:translate(-50%,-50%);border:none;pointer-events:none}
.hero-slide__overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,7,6,.4) 0%,rgba(8,7,6,.15) 30%,rgba(8,7,6,.2) 60%,rgba(8,7,6,.85) 100%);z-index:1}
.hero-slide__content{position:absolute;inset:0;z-index:2;display:flex;flex-direction:column;justify-content:center;width:100%;max-width:var(--max-width);margin:0 auto;padding:calc(var(--header-height) + var(--utility-height)) clamp(1.5rem, 5vw, 4rem) 0}
.hero-slider__arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:5;background:rgba(8,7,6,.5);border:1px solid rgba(181,138,69,.25);color:var(--gold);width:56px;height:56px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:1.2rem;transition:all .3s ease;backdrop-filter:blur(6px)}
.hero-slider__arrow:hover{background:rgba(181,138,69,.15);border-color:var(--gold);box-shadow:0 0 20px rgba(181,138,69,.1)}
.hero-slider__arrow--prev{left:24px}
.hero-slider__arrow--next{right:24px}
.hero-slider__dots{position:absolute;bottom:36px;left:50%;transform:translateX(-50%);z-index:5;display:flex;gap:10px}
.hero-slider__dot{width:14px;height:3px;border:none;background:rgba(255,255,255,.3);cursor:pointer;transition:all .3s ease;padding:0;border-radius:1px}
.hero-slider__dot--active{background:var(--gold);width:40px}
.hero{position:relative;width:100%;min-height:80vh;display:flex;align-items:center;overflow:hidden;background:var(--bg-secondary)}
.hero__bg{position:absolute;inset:0;background:url('../images/hero-bg.jpg') center/cover no-repeat;opacity:.35;filter:brightness(.5) saturate(.7)}
.hero__overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,7,6,.6) 0%,rgba(8,7,6,.4) 40%,rgba(8,7,6,.85) 100%)}
.hero__vignette{position:absolute;inset:0;background:radial-gradient(ellipse at center,transparent 40%,rgba(8,7,6,.7) 100%)}
.hero .container{position:relative;z-index:2;max-width:var(--max-width);margin:0 auto;padding:4rem 1.5rem;display:flex;align-items:center;width:100%}
.hero__content{max-width:700px}
.hero__subtitle{font-family:var(--font-heading);font-size:.9rem;color:var(--gold);text-transform:uppercase;letter-spacing:.3em;margin-bottom:1.25rem;display:flex;align-items:center;gap:.75rem}
.hero__subtitle::before{content:'';width:50px;height:1px;background:var(--gold)}
.hero__title{font-family:var(--font-decorative);font-size:clamp(2.5rem, 6vw, 4.5rem);font-weight:700;color:var(--text-primary);line-height:1.05;margin-bottom:1.5rem;text-shadow:0 2px 20px rgba(0,0,0,.5)}
.hero__title span{color:var(--gold);display:block}
.hero__desc{font-size:1.1rem;color:var(--text-secondary);line-height:1.7;margin-bottom:2.5rem;max-width:560px}
.hero__actions{display:flex;gap:1rem;flex-wrap:wrap}
.hero__actions .nav-btn{padding:.75rem 1.8rem;font-size:.9rem;letter-spacing:.18em}
.hero__actions .nav-btn__icon{font-size:.6rem}
.hero__actions .nav-btn__corner{width:11px;height:11px;border-width:1.5px}
.hero__actions .nav-btn:hover .nav-btn__corner{width:14px;height:14px}

.hero-info-strip{position:relative;z-index:3;background:var(--bg-panel);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.hero-info-strip .container{display:grid;grid-template-columns:repeat(6,1fr);max-width:var(--max-width);margin:0 auto}
.hero-info-strip__item{display:flex;flex-direction:column;align-items:center;gap:.5rem;padding:1.5rem .75rem;text-align:center;border-right:1px solid var(--border);transition:background var(--transition-fast)}
.hero-info-strip__item:last-child{border-right:none}
.hero-info-strip__item:hover{background:var(--bg-stone)}
.hero-info-strip__icon{font-size:1.5rem;color:var(--gold);margin-bottom:.25rem}
.hero-info-strip__text{font-family:var(--font-heading);font-size:.75rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.08em;line-height:1.4}

.section{padding:5rem 0}
.section--dark{background:var(--bg-secondary)}
.section__header{text-align:center;margin-bottom:3rem}
.section__eyebrow{font-family:var(--font-heading);font-size:.75rem;color:var(--gold);text-transform:uppercase;letter-spacing:.2em;margin-bottom:.75rem;display:flex;align-items:center;justify-content:center;gap:1rem}
.section__eyebrow::before,.section__eyebrow::after{content:'';width:30px;height:1px;background:var(--gold)}
.section__title{font-family:var(--font-decorative);font-size:2.25rem;color:var(--text-primary);margin-bottom:.75rem}
.section__desc{color:var(--text-secondary);font-size:1rem;max-width:550px;margin:0 auto;line-height:1.7}

.ornamental-divider{display:flex;align-items:center;justify-content:center;gap:1rem;margin:2rem 0}
.ornamental-divider__line{flex:1;height:1px;background:linear-gradient(90deg,transparent,var(--border),transparent);max-width:200px}
.ornamental-divider__icon{color:var(--gold);font-size:1rem}
.ornamental-divider--wide .ornamental-divider__line{max-width:400px}

.category-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.category-card{position:relative;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;transition:all var(--transition-med);cursor:pointer;aspect-ratio:4/3;min-height:180px}
.category-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-gold);border-color:var(--gold)}
.category-card__overlay{position:absolute;inset:0;background:linear-gradient(0deg,rgba(8,7,6,.85) 0%,rgba(8,7,6,.3) 50%,transparent 100%);z-index:1}
.category-card__body{position:absolute;bottom:0;left:0;right:0;padding:1.25rem;z-index:2}
.category-card__icon{font-size:1.75rem;color:var(--gold);margin-bottom:.5rem;display:block}
.category-card__name{font-family:var(--font-heading);font-size:1.05rem;color:var(--text-primary);font-weight:600;margin-bottom:.2rem}
.category-card__count{font-size:.8rem;color:var(--text-secondary)}
.category-card__bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:brightness(.6) saturate(.8);transition:transform var(--transition-slow);z-index:0}
.category-card:hover .category-card__bg{transform:scale(1.06)}

.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.product-card{position:relative;display:flex;flex-direction:column;overflow:hidden;border-radius:6px;border:1px solid #3a2818;background-color:#12100e;box-shadow:0 8px 24px rgba(0,0,0,.7);cursor:pointer;transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease;text-decoration:none;color:inherit}
.product-card:hover{transform:translateY(-4px);border-color:#c9a059;box-shadow:0 14px 36px rgba(0,0,0,.85),0 0 0 1px #c9a059,0 0 18px rgba(201,160,89,.25)}
.product-card__badges{position:absolute;top:.75rem;left:.75rem;display:flex;gap:.35rem;z-index:3}
.product-card__img{position:relative;aspect-ratio:1;overflow:hidden;background:var(--bg-stone)}
.product-card__img img{width:100%;height:100%;object-fit:cover;transition:transform var(--transition-slow)}
.product-card:hover .product-card__img img{transform:scale(1.05)}
.product-card__quick-actions{position:absolute;bottom:0;left:0;right:0;padding:.75rem;display:flex;gap:.5rem;justify-content:center;transform:translateY(100%);transition:transform var(--transition-med);z-index:2;background:linear-gradient(0deg,rgba(8,7,6,.9),transparent)}
.product-card:hover .product-card__quick-actions{transform:translateY(0)}
.product-card__quick-btn{width:36px;height:36px;display:flex;align-items:center;justify-content:center;background:var(--bg-panel);border:1px solid var(--border);border-radius:50%;color:var(--text-secondary);font-size:.85rem;transition:all var(--transition-fast)}
.product-card__quick-btn:hover{background:var(--gold);color:var(--bg-primary);border-color:var(--gold)}
.product-card__frame{position:absolute;inset:.5rem;border:1px solid rgba(181,138,69,.15);border-radius:var(--radius-sm);pointer-events:none;opacity:0;transition:opacity var(--transition-med);z-index:2}
.product-card:hover .product-card__frame{opacity:1}
.product-card__body{padding:1rem;display:flex;flex-direction:column;flex:1}
.product-card__category{font-size:.7rem;color:var(--gold);text-transform:uppercase;letter-spacing:.1em;margin-bottom:.35rem;font-weight:600}
.product-card__title{font-family:var(--font-heading);font-size:.95rem;color:var(--text-primary);font-weight:500;margin-bottom:.5rem;line-height:1.3;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-card__title a{color:inherit;transition:color var(--transition-fast)}
.product-card__title a:hover{color:var(--gold)}
.product-card__rating{display:flex;align-items:center;gap:.4rem;margin-bottom:.5rem}
.product-card__stars{display:flex;gap:1px;color:var(--gold);font-size:.75rem}
.product-card__rating-count{font-size:.7rem;color:var(--text-secondary)}
.product-card__footer{margin-top:auto;display:flex;align-items:center;justify-content:space-between;padding-top:.75rem;border-top:1px solid var(--border)}
.product-card__price{display:flex;align-items:baseline;gap:.5rem}
.product-card__price-current{font-family:var(--font-heading);font-size:1.15rem;color:var(--gold-bright);font-weight:700}
.product-card__price-original{font-size:.8rem;color:var(--text-secondary);text-decoration:line-through}
.product-card__add-btn{width:32px;height:32px;display:flex;align-items:center;justify-content:center;background:var(--bronze-dark);border-radius:50%;color:var(--text-primary);font-size:.8rem;transition:all var(--transition-fast);flex-shrink:0}
.product-card__add-btn:hover{background:var(--gold);color:var(--bg-primary)}
.product-card-placeholder{width:100%;aspect-ratio:1;display:flex;align-items:center;justify-content:center;background:var(--bg-stone);color:var(--gold);font-size:3rem}

.guild-section{position:relative;padding:5rem 0;overflow:hidden}
.guild-section__bg{position:absolute;inset:0;background:linear-gradient(135deg,var(--crimson-dark) 0%,var(--bg-primary) 50%,var(--bronze-dark) 100%);opacity:.6}
.guild-section__pattern{position:absolute;inset:0;opacity:.05;background-image:url('/assets/images/pattern.png');background-size:200px}
.guild-section .container{position:relative;z-index:2;display:flex;align-items:center;gap:4rem;max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
.guild-section__content{flex:1}
.guild-section__eyebrow{font-family:var(--font-heading);font-size:.75rem;color:var(--gold);text-transform:uppercase;letter-spacing:.2em;margin-bottom:1rem;display:flex;align-items:center;gap:.75rem}
.guild-section__eyebrow::before{content:'';width:30px;height:1px;background:var(--gold)}
.guild-section__title{font-family:var(--font-decorative);font-size:2.5rem;color:var(--text-primary);margin-bottom:1rem;line-height:1.15}
.guild-section__desc{color:var(--text-secondary);line-height:1.7;margin-bottom:2rem;font-size:1.05rem}
.guild-section__features{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:2rem}
.guild-feature{display:flex;align-items:flex-start;gap:.75rem;padding:1rem;background:rgba(0,0,0,.3);border:1px solid rgba(181,138,69,.1);border-radius:var(--radius-md)}
.guild-feature__icon{color:var(--gold);font-size:1.1rem;margin-top:.1rem;flex-shrink:0}
.guild-feature__text{font-size:.9rem;color:var(--text-secondary);line-height:1.5}
.guild-feature__text strong{color:var(--text-primary)}
.guild-section__visual{flex:0 0 400px;position:relative}
.guild-emblem{width:350px;height:350px;margin:0 auto;position:relative}
.guild-emblem__ring{position:absolute;inset:0;border:2px solid var(--gold);border-radius:50%;opacity:.3;animation:spin 30s linear infinite}
.guild-emblem__ring:nth-child(2){inset:15px;border-style:dashed;animation-direction:reverse;animation-duration:25s}
.guild-emblem__ring:nth-child(3){inset:30px;animation-duration:20s}
.guild-emblem__center{position:absolute;inset:60px;display:flex;align-items:center;justify-content:center;background:var(--bg-panel);border:2px solid var(--gold);border-radius:50%;box-shadow:var(--shadow-gold),inset 0 0 40px rgba(181,138,69,.1)}
.guild-emblem__icon{font-size:4rem;color:var(--gold)}

.stats-bar{background:var(--bg-stone);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:3rem 0}
.stats-bar .container{display:grid;grid-template-columns:repeat(5,1fr);gap:2rem;max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
.stat-item{text-align:center;position:relative}
.stat-item::after{content:'';position:absolute;right:0;top:50%;transform:translateY(-50%);width:1px;height:40px;background:var(--border)}
.stat-item:last-child::after{display:none}
.stat-item__number{font-family:var(--font-decorative);font-size:2.5rem;color:var(--gold);font-weight:700;margin-bottom:.25rem}
.stat-item__label{font-size:.85rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.08em}

.newsletter{padding:5rem 0;background:var(--bg-secondary)}
.newsletter__inner{max-width:650px;margin:0 auto;text-align:center}
.newsletter__title{font-family:var(--font-decorative);font-size:2rem;color:var(--text-primary);margin-bottom:.75rem}
.newsletter__desc{color:var(--text-secondary);margin-bottom:2rem;line-height:1.7}
.newsletter__form{display:flex;gap:.75rem;max-width:480px;margin:0 auto}
.newsletter__input{flex:1;padding:.85rem 1.25rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);color:var(--text-primary);font-size:.9rem}
.newsletter__input:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(181,138,69,.15)}
.newsletter__btn{flex-shrink:0}
.newsletter__note{font-size:.75rem;color:var(--text-secondary);margin-top:1rem}

.main-footer{background:var(--bg-secondary);border-top:1px solid var(--border);padding-top:4rem}
.footer__top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1.2fr;gap:2.5rem;max-width:var(--max-width);margin:0 auto;padding:0 1.5rem 3rem;border-bottom:1px solid var(--border)}
.footer__brand .logo{margin-bottom:1rem}
.footer__brand-desc{font-size:.9rem;color:var(--text-secondary);line-height:1.7;margin-bottom:1.25rem}
.footer__social{display:flex;gap:.5rem}
.footer__social-link{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:1px solid var(--border);border-radius:50%;color:var(--text-secondary);font-size:.9rem;transition:all var(--transition-fast)}
.footer__social-link:hover{background:var(--gold);color:var(--bg-primary);border-color:var(--gold)}
.footer__col-title{font-family:var(--font-heading);font-size:.85rem;color:var(--text-primary);text-transform:uppercase;letter-spacing:.08em;margin-bottom:1.25rem;font-weight:600}
.footer__links{display:flex;flex-direction:column;gap:.6rem}
.footer__link{font-size:.85rem;color:var(--text-secondary);transition:all var(--transition-fast);display:flex;align-items:center;gap:.4rem}
.footer__link:hover{color:var(--gold);padding-left:.25rem}
.footer__newsletter-input{display:flex;gap:.5rem}
.footer__newsletter-input input{flex:1;padding:.6rem .85rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-sm);color:var(--text-primary);font-size:.85rem}
.footer__newsletter-input input:focus{border-color:var(--gold)}
.footer__newsletter-input button{padding:.6rem 1rem;background:var(--gold);color:var(--bg-primary);font-size:.8rem;font-weight:600;border-radius:var(--radius-sm);transition:background var(--transition-fast)}
.footer__newsletter-input button:hover{background:var(--gold-bright)}
.footer__bottom{display:flex;justify-content:space-between;align-items:center;max-width:var(--max-width);margin:0 auto;padding:1.5rem}
.footer__copy{font-size:.8rem;color:var(--text-secondary)}
.footer__payments{display:flex;align-items:center;gap:.75rem}
.footer__payment-icon{height:24px;opacity:.5;filter:brightness(0) invert(.6);transition:opacity var(--transition-fast)}
.footer__payment-icon:hover{opacity:.8}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;font-family:var(--font-heading);font-size:.85rem;font-weight:600;padding:.75rem 1.75rem;border-radius:var(--radius-sm);text-transform:uppercase;letter-spacing:.06em;transition:all var(--transition-fast);cursor:pointer;border:2px solid transparent;white-space:nowrap;text-decoration:none}
.btn--primary{background:var(--gold);color:var(--bg-primary);border-color:var(--gold)}
.btn--primary:hover{background:var(--gold-bright);border-color:var(--gold-bright);color:var(--bg-primary);box-shadow:var(--shadow-gold);transform:translateY(-1px)}
.btn--secondary{background:var(--crimson);color:#fff;border-color:var(--crimson)}
.btn--secondary:hover{background:#8a2a23;border-color:#8a2a23;box-shadow:var(--shadow-crimson);transform:translateY(-1px)}
.btn--outline{background:transparent;color:var(--gold);border-color:var(--gold)}
.btn--outline:hover{background:var(--gold);color:var(--bg-primary);transform:translateY(-1px)}
.btn--ghost{background:transparent;color:var(--text-secondary);border-color:transparent}
.btn--ghost:hover{color:var(--gold);background:rgba(181,138,69,.08)}
.btn--sm{padding:.5rem 1.25rem;font-size:.75rem}
.btn--lg{padding:1rem 2.5rem;font-size:.95rem}
.btn--block{width:100%}
.btn:disabled{opacity:.5;cursor:not-allowed;transform:none!important;box-shadow:none!important}
.btn i{font-size:1em}

.alert{padding:1rem 1.25rem;border-radius:var(--radius-md);margin-bottom:1rem;display:flex;align-items:flex-start;gap:.75rem;border:1px solid;font-size:.9rem}
.alert__icon{font-size:1.1rem;margin-top:.05rem;flex-shrink:0}
.alert__text{flex:1;line-height:1.5}
.alert__close{background:none;border:none;color:inherit;opacity:.6;cursor:pointer;font-size:1rem;padding:.25rem;transition:opacity var(--transition-fast)}
.alert__close:hover{opacity:1}
.alert--success{background:rgba(34,139,34,.1);border-color:rgba(34,139,34,.3);color:#6fbf73}
.alert--error{background:rgba(111,33,27,.15);border-color:rgba(111,33,27,.4);color:#e0605a}
.alert--warning{background:rgba(181,138,69,.1);border-color:rgba(181,138,69,.3);color:var(--gold-bright)}
.alert--info{background:rgba(100,149,237,.1);border-color:rgba(100,149,237,.3);color:#7eb8e6}

.breadcrumbs{padding:1rem 0;border-bottom:1px solid var(--border);background:var(--bg-secondary)}
.breadcrumbs .container{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
.breadcrumbs__list{display:flex;align-items:center;gap:.5rem;font-size:.8rem;flex-wrap:wrap}
.breadcrumbs__item{display:flex;align-items:center;gap:.5rem;color:var(--text-secondary)}
.breadcrumbs__item a{color:var(--text-secondary);transition:color var(--transition-fast)}
.breadcrumbs__item a:hover{color:var(--gold)}
.breadcrumbs__item--active{color:var(--text-primary)}
.breadcrumbs__sep{color:var(--text-secondary);opacity:.5;font-size:.65rem}

.pagination{display:flex;align-items:center;justify-content:center;gap:.5rem;margin-top:3rem}
.pagination__btn{min-width:40px;height:40px;display:flex;align-items:center;justify-content:center;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-sm);color:var(--text-secondary);font-size:.85rem;font-family:var(--font-heading);transition:all var(--transition-fast)}
.pagination__btn:hover{border-color:var(--gold);color:var(--gold)}
.pagination__btn--active{background:var(--gold);color:var(--bg-primary);border-color:var(--gold)}
.pagination__btn--disabled{opacity:.4;cursor:not-allowed;pointer-events:none}
.pagination__ellipsis{color:var(--text-secondary);padding:0 .25rem}

.cart-page{padding:3rem 0}
.cart-page .container{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
.cart-page__title{font-family:var(--font-decorative);font-size:2rem;margin-bottom:2rem}
.cart-layout{display:grid;grid-template-columns:1fr min(380px, 35%);gap:2rem}
.cart-items{display:flex;flex-direction:column;gap:1rem}
.cart-item{display:grid;grid-template-columns:auto 1fr auto auto auto;gap:1.25rem;align-items:center;padding:1.25rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md)}
.cart-item__img{width:90px;height:90px;border-radius:var(--radius-sm);overflow:hidden;background:var(--bg-stone);border:1px solid var(--border)}
.cart-item__img img{width:100%;height:100%;object-fit:cover}
.cart-item__info{display:flex;flex-direction:column;gap:.25rem}
.cart-item__name{font-family:var(--font-heading);font-size:.95rem;color:var(--text-primary)}
.cart-item__category{font-size:.75rem;color:var(--text-secondary)}
.cart-item__qty{display:flex;align-items:center;border:1px solid var(--border);border-radius:var(--radius-sm);overflow:hidden}
.cart-item__qty-btn{width:32px;height:32px;display:flex;align-items:center;justify-content:center;background:var(--bg-stone);color:var(--text-secondary);font-size:.85rem;transition:background var(--transition-fast);cursor:pointer;border:none}
.cart-item__qty-btn:hover{background:var(--bronze-dark);color:var(--text-primary)}
.cart-item__qty-value{width:40px;text-align:center;font-size:.9rem;color:var(--text-primary);background:var(--bg-panel)}
.cart-item__price{font-family:var(--font-heading);font-size:1.05rem;color:var(--gold-bright);font-weight:600;white-space:nowrap}
.cart-item__remove{color:var(--text-secondary);font-size:.85rem;padding:.5rem;transition:color var(--transition-fast)}
.cart-item__remove:hover{color:var(--crimson)}
.cart-item__remove-form{margin:0;padding:0;background:none;border:none;display:flex;align-items:center}

.cart-summary{background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);padding:1.5rem;position:sticky;top:calc(var(--header-height) + var(--utility-height) + 1.5rem)}
.cart-summary__title{font-family:var(--font-heading);font-size:1.1rem;color:var(--text-primary);margin-bottom:1.25rem;padding-bottom:.75rem;border-bottom:1px solid var(--border)}
.cart-summary__row{display:flex;justify-content:space-between;align-items:center;padding:.5rem 0;font-size:.9rem;color:var(--text-secondary)}
.cart-summary__row--total{padding-top:.75rem;margin-top:.5rem;border-top:1px solid var(--border);font-size:1.1rem;color:var(--text-primary);font-weight:600}
.cart-summary__row--total .cart-summary__value{color:var(--gold-bright);font-family:var(--font-heading);font-size:1.25rem}
.cart-summary__value{color:var(--text-primary)}
.cart-summary__divider{height:1px;background:var(--border);margin:1rem 0}
.cart-summary__promo{display:flex;gap:.5rem;margin-bottom:1rem}
.cart-summary__promo input{flex:1;padding:.6rem .85rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-sm);color:var(--text-primary);font-size:.85rem}
.cart-summary__promo input:focus{border-color:var(--gold)}
.cart-summary__promo button{padding:.6rem 1rem;font-size:.75rem}
.cart-summary .btn{width:100%;margin-top:1rem}
.cart-empty{text-align:center;padding:4rem 2rem;color:var(--text-secondary)}
.cart-empty__icon{font-size:3rem;margin-bottom:1rem;color:var(--bronze-dark)}
.cart-empty__title{font-family:var(--font-heading);font-size:1.5rem;color:var(--text-primary);margin-bottom:.75rem}
.cart-empty__desc{margin-bottom:1.5rem}

.checkout-page{padding:3rem 0}
.checkout-page .container{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
.checkout-page__title{font-family:var(--font-decorative);font-size:2rem;margin-bottom:2rem}
.checkout-layout{display:grid;grid-template-columns:1fr min(400px, 35%);gap:2.5rem}
.checkout-section{margin-bottom:2rem}
.checkout-section__title{font-family:var(--font-heading);font-size:1.15rem;color:var(--text-primary);margin-bottom:1.25rem;display:flex;align-items:center;gap:.75rem}
.checkout-section__number{width:28px;height:28px;display:flex;align-items:center;justify-content:center;background:var(--gold);color:var(--bg-primary);border-radius:50%;font-size:.8rem;font-weight:700}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-grid--full{grid-template-columns:1fr}
.form-group{display:flex;flex-direction:column;gap:.4rem}
.form-group label{font-size:.85rem;color:var(--text-secondary);font-weight:500}
.form-group label .required{color:var(--crimson)}
.form-group input,.form-group textarea,.form-group select{width:100%}
.form-group--full{grid-column:1/-1}
.form-group__hint{font-size:.75rem;color:var(--text-secondary);margin-top:.2rem}
.payment-methods{display:flex;flex-direction:column;gap:.75rem}
.payment-method{display:flex;align-items:center;gap:1rem;padding:1rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);cursor:pointer;transition:all var(--transition-fast)}
.payment-method:hover{border-color:var(--gold)}
.payment-method--selected{border-color:var(--gold);background:rgba(181,138,69,.05)}
.payment-method__radio{width:18px;height:18px;border:2px solid var(--border);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:border-color var(--transition-fast)}
.payment-method--selected .payment-method__radio{border-color:var(--gold)}
.payment-method--selected .payment-method__radio::after{content:'';width:8px;height:8px;background:var(--gold);border-radius:50%}
.payment-method__label{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary)}
.payment-method__desc{font-size:.75rem;color:var(--text-secondary)}

.order-summary{background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);padding:1.5rem;position:sticky;top:calc(var(--header-height) + var(--utility-height) + 1.5rem)}
.order-summary__title{font-family:var(--font-heading);font-size:1.1rem;color:var(--text-primary);margin-bottom:1.25rem;padding-bottom:.75rem;border-bottom:1px solid var(--border)}
.order-summary__items{display:flex;flex-direction:column;gap:.75rem;margin-bottom:1.25rem;max-height:300px;overflow-y:auto;padding-right:.5rem}
.order-summary__item{display:flex;gap:.75rem;align-items:center;padding:.5rem;background:var(--bg-stone);border-radius:var(--radius-sm)}
.order-summary__item-img{width:50px;height:50px;border-radius:var(--radius-sm);overflow:hidden;background:var(--bg-primary);flex-shrink:0}
.order-summary__item-img img{width:100%;height:100%;object-fit:cover}
.order-summary__item-name{font-size:.85rem;color:var(--text-primary);margin-bottom:.15rem}
.order-summary__item-price{font-size:.8rem;color:var(--gold-bright)}
.order-summary__totals{display:flex;flex-direction:column;gap:.5rem;padding-top:1rem;border-top:1px solid var(--border)}
.order-summary__row{display:flex;justify-content:space-between;font-size:.9rem;color:var(--text-secondary)}
.order-summary__row--total{font-size:1.1rem;color:var(--text-primary);font-weight:600;padding-top:.75rem;border-top:1px solid var(--border);margin-top:.25rem}
.order-summary__total-value{color:var(--gold-bright);font-family:var(--font-heading);font-size:1.25rem}
.order-summary .btn{width:100%;margin-top:1.25rem}
.order-summary__secure{display:flex;align-items:center;justify-content:center;gap:.5rem;font-size:.75rem;color:var(--text-secondary);margin-top:1rem}

.product-page{padding:2rem 0 4rem}
.product-page .container{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
.product-layout{display:grid;grid-template-columns:1fr 1fr;gap:3rem;margin-bottom:4rem}
.product-viewer{position:relative;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;aspect-ratio:4/3}
.product-viewer__canvas{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--text-secondary)}
.product-viewer__placeholder{display:flex;flex-direction:column;align-items:center;gap:1rem;color:var(--text-secondary)}
.product-viewer__placeholder-icon{font-size:4rem;opacity:.3}
.product-viewer__controls{position:absolute;bottom:1rem;left:50%;transform:translateX(-50%);display:flex;gap:.5rem;background:rgba(8,7,6,.85);padding:.5rem;border-radius:var(--radius-md);border:1px solid var(--border)}
.product-viewer__ctrl-btn{width:32px;height:32px;display:flex;align-items:center;justify-content:center;color:var(--text-secondary);border-radius:var(--radius-sm);transition:all var(--transition-fast)}
.product-viewer__ctrl-btn:hover{background:var(--bg-stone);color:var(--gold)}
.product-viewer__ctrl-btn--active{color:var(--gold);background:var(--bg-stone)}
.product-viewer__badge{position:absolute;top:1rem;left:1rem;z-index:2}
.product-viewer__loading{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:var(--bg-panel);z-index:10}

.product-info{display:flex;flex-direction:column}
.product-info__category{font-size:.8rem;color:var(--gold);text-transform:uppercase;letter-spacing:.12em;font-weight:600;margin-bottom:.5rem}
.product-info__title{font-family:var(--font-decorative);font-size:1.75rem;color:var(--text-primary);margin-bottom:.75rem;line-height:1.25}
.product-info__rating{display:flex;align-items:center;gap:.75rem;margin-bottom:1rem}
.product-info__stars{display:flex;gap:2px;color:var(--gold);font-size:.9rem}
.product-info__rating-text{font-size:.85rem;color:var(--text-secondary)}
.product-info__price-block{display:flex;align-items:baseline;gap:1rem;margin-bottom:1.5rem;padding-bottom:1.5rem;border-bottom:1px solid var(--border)}
.product-info__price{font-family:var(--font-heading);font-size:2rem;color:var(--gold-bright);font-weight:700}
.product-info__price-original{font-size:1.1rem;color:var(--text-secondary);text-decoration:line-through}
.product-info__discount{font-size:.8rem;color:var(--crimson);background:rgba(111,33,27,.15);padding:.25rem .6rem;border-radius:var(--radius-sm);font-weight:600}
.product-info__desc{color:var(--text-secondary);line-height:1.7;margin-bottom:1.5rem;font-size:.95rem}
.product-info__actions{display:flex;gap:.75rem;margin-bottom:1.5rem}
.product-info__actions .btn{flex:1}
.product-info__meta{display:flex;flex-direction:column;gap:.6rem;padding:1rem;background:var(--bg-stone);border-radius:var(--radius-md);border:1px solid var(--border)}
.product-info__meta-item{display:flex;justify-content:space-between;font-size:.85rem}
.product-info__meta-label{color:var(--text-secondary)}
.product-info__meta-value{color:var(--text-primary);font-weight:500}

.product-tabs{margin-top:3rem}
.product-tabs__nav{display:flex;border-bottom:1px solid var(--border);gap:0;margin-bottom:2rem;overflow-x:auto}
.product-tabs__tab{padding:.85rem 1.5rem;font-family:var(--font-heading);font-size:.85rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.06em;border-bottom:2px solid transparent;transition:all var(--transition-fast);cursor:pointer;background:none;border-top:none;border-left:none;border-right:none;white-space:nowrap}
.product-tabs__tab:hover{color:var(--gold)}
.product-tabs__tab--active{color:var(--gold);border-bottom-color:var(--gold)}
.product-tabs__panel{display:none}
.product-tabs__panel--active{display:block}

.specs-table{width:100%;border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden}
.specs-table tr{border-bottom:1px solid var(--border)}
.specs-table tr:last-child{border-bottom:none}
.specs-table td{padding:.85rem 1.25rem;font-size:.9rem}
.specs-table td:first-child{background:var(--bg-stone);color:var(--text-secondary);font-weight:500;min-width:140px;width:30%}
.specs-table td:last-child{color:var(--text-primary)}

.review{padding:1.5rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);margin-bottom:1rem}
.review__header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:.75rem}
.review__author{display:flex;align-items:center;gap:.75rem}
.review__avatar{width:40px;height:40px;border-radius:50%;background:var(--bronze-dark);display:flex;align-items:center;justify-content:center;color:var(--gold);font-family:var(--font-heading);font-weight:600;font-size:.85rem}
.review__name{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary)}
.review__date{font-size:.75rem;color:var(--text-secondary)}
.review__stars{display:flex;gap:2px;color:var(--gold);font-size:.8rem}
.review__body{color:var(--text-secondary);line-height:1.7;font-size:.9rem}
.review-form{background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);padding:1.5rem;margin-top:1.5rem}
.review-form__title{font-family:var(--font-heading);font-size:1.1rem;color:var(--text-primary);margin-bottom:1.25rem}
.review-form__rating{display:flex;align-items:center;gap:.5rem;margin-bottom:1rem}
.review-form__rating-label{font-size:.85rem;color:var(--text-secondary);margin-right:.5rem}
.review-form__star{font-size:1.25rem;color:var(--border);cursor:pointer;transition:color var(--transition-fast)}
.review-form__star--active,.review-form__star:hover{color:var(--gold)}

.account-page{padding:3rem 0}
.account-page .container{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
.account-layout{display:grid;grid-template-columns:260px 1fr;gap:2.5rem}
.account-sidebar{position:sticky;top:calc(var(--header-height) + var(--utility-height) + 1.5rem);align-self:start}
.account-sidebar__card{background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);padding:1.5rem;margin-bottom:1.25rem}
.account-sidebar__user{display:flex;align-items:center;gap:1rem;margin-bottom:1.25rem;padding-bottom:1rem;border-bottom:1px solid var(--border)}
.account-sidebar__avatar{width:56px;height:56px;border-radius:50%;background:var(--bronze-dark);display:flex;align-items:center;justify-content:center;color:var(--gold);font-family:var(--font-heading);font-weight:700;font-size:1.25rem;flex-shrink:0}
.account-sidebar__name{font-family:var(--font-heading);font-size:1rem;color:var(--text-primary)}
.account-sidebar__email{font-size:.8rem;color:var(--text-secondary);margin-top:.15rem}
.account-sidebar__nav{display:flex;flex-direction:column;gap:.25rem}
.account-sidebar__link{display:flex;align-items:center;gap:.6rem;padding:.6rem .85rem;border-radius:var(--radius-sm);font-size:.9rem;color:var(--text-secondary);transition:all var(--transition-fast)}
.account-sidebar__link:hover{color:var(--gold);background:rgba(181,138,69,.05)}
.account-sidebar__link--active{color:var(--gold);background:rgba(181,138,69,.08);font-weight:500}
.account-sidebar__link i{font-size:1rem;width:20px;text-align:center}

.account-content__title{font-family:var(--font-decorative);font-size:1.75rem;color:var(--text-primary);margin-bottom:2rem}
.account-card{background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);padding:1.5rem;margin-bottom:1.5rem}
.account-card__title{font-family:var(--font-heading);font-size:1.1rem;color:var(--text-primary);margin-bottom:1.25rem;padding-bottom:.75rem;border-bottom:1px solid var(--border);display:flex;align-items:center;justify-content:space-between}
.account-card__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.account-stat{display:flex;flex-direction:column;align-items:center;padding:1.25rem;background:var(--bg-stone);border-radius:var(--radius-md);border:1px solid var(--border);text-align:center}
.account-stat__number{font-family:var(--font-heading);font-size:1.5rem;color:var(--gold-bright);font-weight:700}
.account-stat__label{font-size:.8rem;color:var(--text-secondary);margin-top:.25rem}

.account-table{width:100%;border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden}
.account-table thead{background:var(--bg-stone)}
.account-table th{padding:.85rem 1rem;font-family:var(--font-heading);font-size:.8rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.06em;text-align:left;border-bottom:1px solid var(--border)}
.account-table td{padding:.85rem 1rem;font-size:.9rem;color:var(--text-primary);border-bottom:1px solid var(--border)}
.account-table tr:last-child td{border-bottom:none}
.account-table tr:hover td{background:rgba(181,138,69,.02)}
.order-status{display:inline-flex;align-items:center;gap:.35rem;padding:.25rem .65rem;border-radius:var(--radius-sm);font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.04em}
.order-status--completed{background:rgba(34,139,34,.1);color:#6fbf73}
.order-status--pending{background:rgba(181,138,69,.1);color:var(--gold-bright)}
.order-status--processing{background:rgba(100,149,237,.1);color:#7eb8e6}
.order-status--cancelled{background:rgba(111,33,27,.15);color:#e0605a}

/* Review form card */
.review-form-card{display:flex;flex-direction:column;gap:1rem;padding:1.25rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);margin-bottom:1rem}
.review-form-card:last-child{margin-bottom:0}
.review-form-card__product{display:flex;align-items:center;gap:.75rem}
.review-form-card__thumb{width:48px;height:48px;border-radius:var(--radius-sm);object-fit:cover;border:1px solid var(--border);flex-shrink:0}
.review-form-card__placeholder{display:flex;align-items:center;justify-content:center;background:var(--bg-panel);color:var(--gold);font-size:1.1rem}
.review-form-card__name{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary);text-decoration:none;display:block}
.review-form-card__name:hover{color:var(--gold)}
.review-form-card__meta{font-size:.75rem;color:var(--text-secondary);margin-top:.15rem}
.review-form-card__form{display:flex;flex-direction:column;gap:.5rem}
.review-form-card__stars{display:flex;gap:4px;font-size:1.1rem;color:var(--gold);cursor:pointer}
.review-form-card__stars .fa-star{transition:opacity .15s}
.review-form-card__stars .fa-star:hover{transform:scale(1.1)}
.review-form-card__input,.review-form-card__textarea{width:100%;padding:.55rem .75rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-sm);color:var(--text-primary);font-family:var(--font-body);font-size:.85rem;resize:vertical}
.review-form-card__input:focus,.review-form-card__textarea:focus{outline:none;border-color:rgba(181,138,69,.5)}
.review-form-card__input::placeholder,.review-form-card__textarea::placeholder{color:var(--text-secondary)}

/* Review item */
.review-item{padding:1.25rem;border-bottom:1px solid var(--border)}
.review-item:last-child{border-bottom:none}
.review-item__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:.5rem}
.review-item__product{display:flex;align-items:center;gap:.6rem}
.review-item__thumb{width:36px;height:36px;border-radius:var(--radius-sm);object-fit:cover;border:1px solid var(--border)}
.review-item__name{font-family:var(--font-heading);font-size:.85rem;color:var(--text-primary);text-decoration:none}
.review-item__name:hover{color:var(--gold)}
.review-item__date{font-size:.7rem;color:var(--text-secondary);margin-top:.1rem}
.review-item__stars{display:flex;gap:2px;color:var(--gold);font-size:.75rem}
.review-item__title{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary);margin-bottom:.25rem}
.review-item__body{font-size:.85rem;color:var(--text-secondary);line-height:1.5}

.account-orders__filters{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem;flex-wrap:wrap}
.account-orders__filter-btn{padding:.4rem .85rem;border:1px solid var(--border);border-radius:var(--radius-sm);font-size:.8rem;color:var(--text-secondary);cursor:pointer;transition:all var(--transition-fast);background:none}
.account-orders__filter-btn:hover{border-color:var(--gold);color:var(--gold)}
.account-orders__filter-btn--active{background:var(--gold);color:var(--bg-primary);border-color:var(--gold)}

.account-addresses{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem}
.account-address{padding:1.25rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);position:relative}
.account-address--default{border-color:var(--gold)}
.account-address__badge{position:absolute;top:.75rem;right:.75rem;font-size:.65rem;color:var(--gold);background:rgba(181,138,69,.1);padding:.2rem .5rem;border-radius:2px;text-transform:uppercase;letter-spacing:.08em;font-weight:600}
.account-address__name{font-family:var(--font-heading);font-size:.95rem;color:var(--text-primary);margin-bottom:.5rem}
.account-address__line{font-size:.85rem;color:var(--text-secondary);line-height:1.6}
.account-address__actions{display:flex;gap:.75rem;margin-top:1rem;padding-top:.75rem;border-top:1px solid var(--border)}
.account-address__actions button{font-size:.8rem;color:var(--text-secondary);transition:color var(--transition-fast);background:none;border:none;cursor:pointer;padding:0}
.account-address__actions button:hover{color:var(--gold)}

.account-settings{display:flex;flex-direction:column;gap:1.5rem}
.account-settings__section{background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);padding:1.5rem}
.account-settings__section-title{font-family:var(--font-heading);font-size:1rem;color:var(--text-primary);margin-bottom:1.25rem;padding-bottom:.75rem;border-bottom:1px solid var(--border)}
.account-settings__row{display:flex;align-items:center;gap:1.5rem;margin-bottom:1rem}
.account-settings__row:last-child{margin-bottom:0}
.account-settings__label{min-width:160px;font-size:.85rem;color:var(--text-secondary)}
.account-settings__value{flex:1;display:flex;align-items:center;gap:1rem}
.account-settings__value input,.account-settings__value select{flex:1;max-width:350px}

.toggle-switch{position:relative;width:44px;height:24px;cursor:pointer}
.toggle-switch input{position:absolute;opacity:0;width:0;height:0}
.toggle-switch__slider{position:absolute;inset:0;background:var(--bg-stone);border:1px solid var(--border);border-radius:12px;transition:all var(--transition-fast)}
.toggle-switch__slider::before{content:'';position:absolute;width:18px;height:18px;border-radius:50%;background:var(--text-secondary);left:2px;top:2px;transition:all var(--transition-fast)}
.toggle-switch input:checked + .toggle-switch__slider{background:rgba(181,138,69,.2);border-color:var(--gold)}
.toggle-switch input:checked + .toggle-switch__slider::before{transform:translateX(20px);background:var(--gold)}

.account-downloads{display:flex;flex-direction:column;gap:.75rem}
.account-download{display:flex;align-items:center;gap:1rem;padding:1rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);transition:all var(--transition-fast)}
.account-download:hover{border-color:rgba(181,138,69,.3)}
.account-download__icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center;background:var(--bg-panel);border-radius:var(--radius-sm);color:var(--gold);font-size:1.1rem;flex-shrink:0}
.account-download__info{flex:1}
.account-download__name{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary);margin-bottom:.15rem}
.account-download__meta{font-size:.75rem;color:var(--text-secondary)}
.account-download__btn{flex-shrink:0}

.badge{display:inline-flex;align-items:center;padding:.2rem .55rem;border-radius:2px;font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;line-height:1}
.badge--new{background:var(--gold);color:var(--bg-primary)}
.badge--sale{background:var(--crimson);color:#fff}
.badge--free{background:#2d6a2e;color:#fff}
.badge--hot{background:#b35c00;color:#fff}
.badge--lg{padding:.3rem .7rem;font-size:.75rem}

.stars{display:inline-flex;gap:2px;color:var(--gold)}
.stars--empty{color:var(--bronze-dark)}
.star{font-size:inherit}
.star--half{position:relative;display:inline-block}
.star--half::before{content:attr(data-empty);position:absolute;color:var(--bronze-dark)}
.star--filled{color:var(--gold)}
.star--empty{color:var(--bronze-dark)}

.modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,.75);backdrop-filter:blur(4px);z-index:2000;display:flex;align-items:center;justify-content:center;padding:1.5rem;opacity:0;visibility:hidden;transition:all var(--transition-med)}
.modal-overlay--active{opacity:1;visibility:visible}
.modal{background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-lg);width:100%;max-width:520px;max-height:90vh;overflow-y:auto;transform:translateY(20px) scale(.98);transition:transform var(--transition-med);box-shadow:var(--shadow-lg)}
.modal-overlay--active .modal{transform:translateY(0) scale(1)}
.modal__header{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;border-bottom:1px solid var(--border)}
.modal__title{font-family:var(--font-heading);font-size:1.1rem;color:var(--text-primary)}
.modal__close{width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:50%;color:var(--text-secondary);transition:all var(--transition-fast);font-size:1rem}
.modal__close:hover{background:var(--bg-stone);color:var(--text-primary)}
.modal__body{padding:1.5rem}
.modal__footer{padding:1rem 1.5rem;border-top:1px solid var(--border);display:flex;justify-content:flex-end;gap:.75rem}

.loading-spinner{display:inline-block;width:24px;height:24px;border:2px solid var(--border);border-top-color:var(--gold);border-radius:50%;animation:spin .7s linear infinite}
.loading-spinner--sm{width:16px;height:16px;border-width:2px}
.loading-spinner--lg{width:40px;height:40px;border-width:3px}
.loading-dots{display:inline-flex;gap:.25rem;align-items:center}
.loading-dots__dot{width:6px;height:6px;background:var(--gold);border-radius:50%;animation:pulse 1.4s ease-in-out infinite}
.loading-dots__dot:nth-child(2){animation-delay:.2s}
.loading-dots__dot:nth-child(3){animation-delay:.4s}
.skeleton{background:linear-gradient(90deg,var(--bg-stone) 25%,var(--bronze-dark) 50%,var(--bg-stone) 75%);background-size:200% 100%;animation:shimmer 1.5s ease-in-out infinite;border-radius:var(--radius-sm)}
.skeleton--text{height:14px;width:80%}
.skeleton--title{height:22px;width:60%}
.skeleton--img{aspect-ratio:1;width:100%}
.skeleton--btn{height:40px;width:120px}
.page-loader{position:fixed;inset:0;background:var(--bg-primary);display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:9999;gap:1.5rem}
.page-loader__emblem{font-size:3rem;color:var(--gold);animation:pulse 2s ease-in-out infinite}
.page-loader__text{font-family:var(--font-heading);font-size:.85rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.15em}

.back-to-top{position:fixed;bottom:2rem;right:2rem;width:44px;height:44px;display:flex;align-items:center;justify-content:center;background:var(--bg-panel);border:1px solid var(--border);border-radius:50%;color:var(--text-secondary);font-size:1rem;z-index:800;opacity:0;visibility:hidden;transform:translateY(10px);transition:all var(--transition-med);box-shadow:var(--shadow-md)}
.back-to-top--visible{opacity:1;visibility:visible;transform:translateY(0)}
.back-to-top:hover{color:var(--gold);border-color:var(--gold);box-shadow:var(--shadow-gold)}

.tooltip{position:relative}
.tooltip::after{content:attr(data-tooltip);position:absolute;bottom:calc(100% + 8px);left:50%;transform:translateX(-50%) translateY(4px);background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-sm);padding:.35rem .65rem;font-size:.75rem;color:var(--text-primary);white-space:nowrap;opacity:0;visibility:hidden;transition:all var(--transition-fast);pointer-events:none;z-index:100;box-shadow:var(--shadow-sm)}
.tooltip:hover::after{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}

.tab-content{position:relative}
.tab-pane{display:none}
.tab-pane--active{display:block}

.product-viewer__bg{position:absolute;inset:0;background:var(--bg-stone)}
.product-viewer__bg img{width:100%;height:100%;object-fit:contain;padding:2rem}

.wishlist-btn{position:absolute;top:.75rem;right:.75rem;z-index:3;width:36px;height:36px;display:flex;align-items:center;justify-content:center;background:rgba(8,7,6,.7);border:1px solid var(--border);border-radius:50%;color:var(--text-secondary);font-size:.9rem;transition:all var(--transition-fast)}
.wishlist-btn:hover{color:var(--crimson);border-color:var(--crimson);background:rgba(111,33,27,.2)}
.wishlist-btn--active{color:var(--crimson);border-color:var(--crimson);background:rgba(111,33,27,.2)}

.compare-btn{position:absolute;top:.75rem;right:calc(.75rem + 42px);z-index:3;width:36px;height:36px;display:flex;align-items:center;justify-content:center;background:rgba(8,7,6,.7);border:1px solid var(--border);border-radius:50%;color:var(--text-secondary);font-size:.9rem;transition:all var(--transition-fast)}
.compare-btn:hover{color:var(--gold);border-color:var(--gold);background:rgba(181,138,69,.15)}

.qty-selector{display:inline-flex;align-items:center;border:1px solid var(--border);border-radius:var(--radius-sm);overflow:hidden}
.qty-selector__btn{width:36px;height:36px;display:flex;align-items:center;justify-content:center;background:var(--bg-stone);color:var(--text-secondary);font-size:.9rem;transition:all var(--transition-fast)}
.qty-selector__btn:hover{background:var(--bronze-dark);color:var(--text-primary)}
.qty-selector__input{width:50px;text-align:center;font-size:.9rem;color:var(--text-primary);background:var(--bg-panel);border:none;border-left:1px solid var(--border);border-right:1px solid var(--border);padding:.5rem}
.qty-selector__input::-webkit-inner-spin-button,.qty-selector__input::-webkit-outer-spin-button{-webkit-appearance:none}

.filter-bar{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 1.25rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);margin-bottom:1.5rem;flex-wrap:wrap}
.filter-bar__left{display:flex;align-items:center;gap:1rem}
.filter-bar__count{font-size:.85rem;color:var(--text-secondary)}
.filter-bar__right{display:flex;align-items:center;gap:.75rem}
.filter-bar__sort{display:flex;align-items:center;gap:.5rem}
.filter-bar__sort label{font-size:.8rem;color:var(--text-secondary);white-space:nowrap}
.filter-bar__sort select{padding:.45rem 2rem .45rem .75rem;font-size:.85rem}
.filter-bar__view{display:flex;gap:.25rem}
.filter-bar__view-btn{width:32px;height:32px;display:flex;align-items:center;justify-content:center;border:1px solid var(--border);border-radius:var(--radius-sm);color:var(--text-secondary);font-size:.85rem;transition:all var(--transition-fast)}
.filter-bar__view-btn:hover{color:var(--gold)}
.filter-bar__view-btn--active{color:var(--gold);border-color:var(--gold);background:rgba(181,138,69,.08)}

.sidebar-filter{background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);padding:1.25rem;margin-bottom:1.25rem}
.sidebar-filter__title{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary);margin-bottom:1rem;padding-bottom:.65rem;border-bottom:1px solid var(--border);display:flex;align-items:center;justify-content:space-between;cursor:pointer}
.sidebar-filter__toggle{font-size:.7rem;color:var(--text-secondary);transition:transform var(--transition-fast)}
.sidebar-filter__toggle--open{transform:rotate(180deg)}
.sidebar-filter__options{display:flex;flex-direction:column;gap:.5rem}
.sidebar-filter__option{display:flex;align-items:center;gap:.6rem;font-size:.85rem;color:var(--text-secondary);cursor:pointer;transition:color var(--transition-fast)}
.sidebar-filter__option:hover{color:var(--gold)}
.sidebar-filter__checkbox{width:16px;height:16px;border:1px solid var(--border);border-radius:2px;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all var(--transition-fast)}
.sidebar-filter__option--selected .sidebar-filter__checkbox{background:var(--gold);border-color:var(--gold)}
.sidebar-filter__option--selected .sidebar-filter__checkbox::after{content:'';width:6px;height:3px;border-left:2px solid var(--bg-primary);border-bottom:2px solid var(--bg-primary);transform:rotate(-45deg) translateY(-1px)}
.sidebar-filter__option--selected{color:var(--text-primary)}
.sidebar-filter__range{display:flex;align-items:center;gap:.5rem;margin-top:.5rem}
.sidebar-filter__range input{flex:1;padding:.4rem .6rem;font-size:.8rem}
.sidebar-filter__range span{font-size:.75rem;color:var(--text-secondary)}

.product-grid--list{grid-template-columns:1fr}
.product-grid--list .product-card{flex-direction:row}
.product-grid--list .product-card__img{width:200px;aspect-ratio:1;flex-shrink:0}
.product-grid--list .product-card__body{padding:1.25rem}

.promo-banner{position:relative;padding:3rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;margin-bottom:2rem}
.promo-banner__bg{position:absolute;inset:0;background:linear-gradient(135deg,var(--bronze-dark),var(--crimson-dark));opacity:.4}
.promo-banner__content{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:2rem}
.promo-banner__text{max-width:500px}
.promo-banner__title{font-family:var(--font-decorative);font-size:1.75rem;color:var(--text-primary);margin-bottom:.5rem}
.promo-banner__desc{color:var(--text-secondary);margin-bottom:1rem}
.promo-banner__code{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;background:rgba(0,0,0,.3);border:1px dashed var(--gold);border-radius:var(--radius-sm);font-family:var(--font-heading);font-size:.9rem;color:var(--gold);letter-spacing:.1em;cursor:pointer;transition:all var(--transition-fast)}
.promo-banner__code:hover{background:rgba(181,138,69,.1)}
.promo-banner__code-icon{font-size:.8rem}

.page-header{padding:2rem 0;background:var(--bg-secondary);border-bottom:1px solid var(--border)}
.page-header .container{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
.page-header__title{font-family:var(--font-decorative);font-size:2rem;color:var(--text-primary);margin-bottom:.5rem}
.page-header__desc{font-size:.95rem;color:var(--text-secondary)}

.two-col-layout{display:grid;grid-template-columns:260px 1fr;gap:2.5rem}
.two-col-layout__sidebar{position:sticky;top:calc(var(--header-height) + var(--utility-height) + 1.5rem);align-self:start}

.product-card__format{display:flex;align-items:center;gap:.35rem;font-size:.7rem;color:var(--text-secondary);margin-bottom:.4rem}
.product-card__format-icon{color:var(--gold);font-size:.65rem}

.auth-page{min-height:80vh;display:flex;align-items:center;justify-content:center;padding:3rem 1.5rem;background:var(--bg-secondary)}
.auth-card{width:100%;max-width:440px;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);padding:2.5rem}
.auth-card__logo{text-align:center;margin-bottom:2rem}
.auth-card__title{font-family:var(--font-decorative);font-size:1.5rem;color:var(--text-primary);text-align:center;margin-bottom:.5rem}
.auth-card__subtitle{text-align:center;font-size:.9rem;color:var(--text-secondary);margin-bottom:2rem}
.auth-card__divider{display:flex;align-items:center;gap:1rem;margin:1.5rem 0}
.auth-card__divider::before,.auth-card__divider::after{content:'';flex:1;height:1px;background:var(--border)}
.auth-card__divider span{font-size:.8rem;color:var(--text-secondary)}
.auth-card__footer{text-align:center;margin-top:1.5rem;font-size:.85rem;color:var(--text-secondary)}
.auth-card__footer a{color:var(--gold)}
.auth-social{display:flex;flex-direction:column;gap:.75rem}
.auth-social__btn{display:flex;align-items:center;justify-content:center;gap:.6rem;width:100%;padding:.75rem;border:1px solid var(--border);border-radius:var(--radius-md);font-size:.85rem;color:var(--text-secondary);transition:all var(--transition-fast)}
.auth-social__btn:hover{border-color:var(--gold);color:var(--text-primary);background:rgba(181,138,69,.05)}

.form-group textarea{min-height:120px;resize:vertical}
.form-group--inline{flex-direction:row;align-items:center;gap:1rem}
.form-group--inline label{min-width:140px}
.form-error{font-size:.75rem;color:#e0605a;margin-top:.35rem;display:none}
.form-group--error input,.form-group--error textarea,.form-group--error select{border-color:#e0605a}
.form-group--error .form-error{display:block}
.form-success{font-size:.75rem;color:#6fbf73;margin-top:.35rem}
.form-group--success input,.form-group--success textarea{border-color:#6fbf73}
.form-checkbox{display:flex;align-items:flex-start;gap:.6rem;cursor:pointer;font-size:.85rem;color:var(--text-secondary)}
.form-checkbox input[type="checkbox"]{width:16px;height:16px;accent-color:var(--gold);margin-top:.15rem;flex-shrink:0}
.form-radio{display:flex;align-items:center;gap:.6rem;cursor:pointer;font-size:.85rem;color:var(--text-secondary)}
.form-radio input[type="radio"]{width:16px;height:16px;accent-color:var(--gold);flex-shrink:0}
.form-separator{display:flex;align-items:center;gap:1rem;margin:1.5rem 0}
.form-separator::before,.form-separator::after{content:'';flex:1;height:1px;background:var(--border)}
.form-separator span{font-size:.8rem;color:var(--text-secondary);white-space:nowrap}
.form-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem}
.form-compact{display:flex;gap:.5rem}
.form-compact input{flex:1}

.link{color:var(--gold);font-size:.85rem;transition:color var(--transition-fast);cursor:pointer}
.link:hover{color:var(--gold-bright)}
.link--underline{text-decoration:underline;text-underline-offset:2px}
.link--block{display:block;padding:.4rem 0}
.link-group{display:flex;flex-direction:column;gap:.4rem}
.link-group .link{padding:.3rem 0}
.link-group .link:hover{padding-left:.25rem}

.tag{display:inline-flex;align-items:center;gap:.3rem;padding:.25rem .65rem;border-radius:var(--radius-sm);font-size:.75rem;font-weight:500;background:var(--bg-stone);color:var(--text-secondary);border:1px solid var(--border);transition:all var(--transition-fast)}
.tag:hover{border-color:var(--gold);color:var(--gold)}
.tag--gold{background:rgba(181,138,69,.1);border-color:rgba(181,138,69,.3);color:var(--gold)}
.tag--crimson{background:rgba(111,33,27,.1);border-color:rgba(111,33,27,.3);color:#e0605a}
.tag--remove{cursor:pointer;padding:.15rem .35rem;margin-left:.25rem}
.tag--remove:hover{color:#e0605a}

.avatar{border-radius:50%;overflow:hidden;flex-shrink:0;display:flex;align-items:center;justify-content:center;background:var(--bronze-dark)}
.avatar--sm{width:32px;height:32px;font-size:.7rem}
.avatar--md{width:40px;height:40px;font-size:.85rem}
.avatar--lg{width:56px;height:56px;font-size:1.1rem}
.avatar--xl{width:80px;height:80px;font-size:1.5rem}
.avatar--square{border-radius:var(--radius-md)}
.avatar img{width:100%;height:100%;object-fit:cover}
.avatar-placeholder{color:var(--gold);font-family:var(--font-heading);font-weight:600}

.breadcrumb-trail{display:flex;align-items:center;gap:.35rem;flex-wrap:wrap}
.breadcrumb-trail__segment{font-size:.8rem;color:var(--text-secondary)}
.breadcrumb-trail__segment a{color:var(--text-secondary)}
.breadcrumb-trail__segment a:hover{color:var(--gold)}
.breadcrumb-trail__segment--current{color:var(--text-primary)}
.breadcrumb-trail__separator{font-size:.6rem;color:var(--text-secondary);opacity:.5}

.feature-card{padding:1.5rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);text-align:center;transition:all var(--transition-med)}
.feature-card:hover{border-color:rgba(181,138,69,.3);box-shadow:var(--shadow-gold)}
.feature-card__icon{font-size:2rem;color:var(--gold);margin-bottom:1rem}
.feature-card__title{font-family:var(--font-heading);font-size:1rem;color:var(--text-primary);margin-bottom:.5rem}
.feature-card__desc{font-size:.85rem;color:var(--text-secondary);line-height:1.6}

.accordion{border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden}
.accordion__item{border-bottom:1px solid var(--border)}
.accordion__item:last-child{border-bottom:none}
.accordion__header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;cursor:pointer;transition:background var(--transition-fast);width:100%;background:none;border:none;text-align:left;color:var(--text-primary);font-family:var(--font-heading);font-size:.9rem}
.accordion__header:hover{background:var(--bg-stone)}
.accordion__icon{font-size:.7rem;color:var(--text-secondary);transition:transform var(--transition-fast)}
.accordion__icon--open{transform:rotate(180deg)}
.accordion__body{max-height:0;overflow:hidden;transition:max-height var(--transition-med)}
.accordion__body--open{max-height:500px}
.accordion__content{padding:0 1.25rem 1.25rem;color:var(--text-secondary);font-size:.9rem;line-height:1.7}

.dropzone{border:2px dashed var(--border);border-radius:var(--radius-md);padding:3rem 2rem;text-align:center;cursor:pointer;transition:all var(--transition-fast)}
.dropzone:hover,.dropzone--active{border-color:var(--gold);background:rgba(181,138,69,.03)}
.dropzone__icon{font-size:3rem;color:var(--bronze);margin-bottom:1rem}
.dropzone__title{font-family:var(--font-heading);font-size:1rem;color:var(--text-primary);margin-bottom:.5rem}
.dropzone__text{font-size:.85rem;color:var(--text-secondary);margin-bottom:.25rem}
.dropzone__hint{font-size:.75rem;color:var(--text-secondary);opacity:.7}

.price-range{display:flex;flex-direction:column;gap:.75rem}
.price-range__inputs{display:flex;align-items:center;gap:.75rem}
.price-range__separator{color:var(--text-secondary);font-size:.8rem}
.price-range__slider{position:relative;height:4px;background:var(--bg-stone);border-radius:2px}
.price-range__fill{position:absolute;height:100%;background:var(--gold);border-radius:2px}
.price-range__track{display:flex;justify-content:space-between;font-size:.75rem;color:var(--text-secondary);margin-top:.25rem}

.image-gallery{display:flex;flex-direction:column;gap:.75rem}
.image-gallery__thumbs{display:flex;gap:.5rem;overflow-x:auto;padding-bottom:.5rem}
.image-gallery__thumb{width:72px;height:72px;border-radius:var(--radius-sm);overflow:hidden;border:2px solid transparent;cursor:pointer;transition:border-color var(--transition-fast);flex-shrink:0;opacity:.6}
.image-gallery__thumb:hover{opacity:.85}
.image-gallery__thumb--active{border-color:var(--gold);opacity:1}
.image-gallery__thumb img{width:100%;height:100%;object-fit:cover}
.image-gallery__main{width:100%;aspect-ratio:4/3;border-radius:var(--radius-md);overflow:hidden;background:var(--bg-stone);position:relative}
.image-gallery__main img{width:100%;height:100%;object-fit:cover}
.image-gallery__nav{position:absolute;top:50%;transform:translateY(-50%);width:36px;height:36px;display:flex;align-items:center;justify-content:center;background:rgba(8,7,6,.7);border:1px solid var(--border);border-radius:50%;color:var(--text-primary);font-size:.85rem;cursor:pointer;transition:all var(--transition-fast)}
.image-gallery__nav:hover{background:var(--gold);color:var(--bg-primary);border-color:var(--gold)}
.image-gallery__nav--prev{left:.75rem}
.image-gallery__nav--next{right:.75rem}

.chat-widget{position:fixed;bottom:2rem;right:6rem;z-index:800}
.chat-widget__btn{width:56px;height:56px;display:flex;align-items:center;justify-content:center;background:var(--gold);color:var(--bg-primary);border-radius:50%;font-size:1.5rem;box-shadow:var(--shadow-lg);transition:all var(--transition-fast);border:none;cursor:pointer}
.chat-widget__btn:hover{background:var(--gold-bright);transform:scale(1.05)}
.chat-widget__badge{position:absolute;top:-2px;right:-2px;width:20px;height:20px;background:var(--crimson);color:#fff;border-radius:50%;font-size:.65rem;display:flex;align-items:center;justify-content:center;font-weight:700}

.breadcrumb-ornate{display:flex;align-items:center;gap:.5rem;padding:1rem 0;font-size:.8rem}
.breadcrumb-ornate__item{color:var(--text-secondary)}
.breadcrumb-ornate__item a{color:var(--text-secondary)}
.breadcrumb-ornate__item a:hover{color:var(--gold)}
.breadcrumb-ornate__item--active{color:var(--text-primary);font-weight:500}
.breadcrumb-ornate__ornament{color:var(--gold);font-size:.7rem;opacity:.5}

.pagination--boxed .pagination__btn{border-radius:var(--radius-sm)}
.pagination--pill .pagination__btn{border-radius:20px}
.pagination--minimal .pagination__btn{border:none;background:transparent}
.pagination--minimal .pagination__btn--active{color:var(--gold);font-weight:700}
.pagination__info{text-align:center;font-size:.8rem;color:var(--text-secondary);margin-top:.75rem}

.star-rating{display:inline-flex;gap:1px;font-size:.85rem}
.star-rating__star{color:var(--bronze-dark)}
.star-rating__star--filled{color:var(--gold)}
.star-rating__star--half{position:relative}
.star-rating__star--half::before{content:attr(data-icon);position:absolute;color:var(--gold);overflow:hidden;width:50%}
.star-rating--interactive .star-rating__star{cursor:pointer;transition:color var(--transition-fast)}
.star-rating--interactive .star-rating__star:hover{color:var(--gold-bright)}

.text-field{position:relative}
.text-field__label{position:absolute;top:50%;left:1rem;transform:translateY(-50%);font-size:.9rem;color:var(--text-secondary);pointer-events:none;transition:all var(--transition-fast);background:var(--bg-stone);padding:0 .25rem}
.text-field input:focus ~ .text-field__label,
.text-field input:not(:placeholder-shown) ~ .text-field__label{top:0;font-size:.7rem;color:var(--gold)}
.text-field__icon{position:absolute;left:.85rem;top:50%;transform:translateY(-50%);color:var(--text-secondary);font-size:.9rem;pointer-events:none}
.text-field__icon ~ input{padding-left:2.5rem}
.text-field__icon ~ .text-field__label{left:2.5rem}
.text-field__hint{font-size:.75rem;color:var(--text-secondary);margin-top:.3rem}
.text-field__error{font-size:.75rem;color:#e0605a;margin-top:.3rem;display:none}
.text-field--error .text-field__error{display:block}
.text-field--error input{border-color:#e0605a}
.text-field--success input{border-color:#6fbf73}

.skip-link{position:absolute;top:-100%;left:1rem;padding:.75rem 1.5rem;background:var(--gold);color:var(--bg-primary);font-family:var(--font-heading);font-weight:600;border-radius:var(--radius-sm);z-index:9999;transition:top var(--transition-fast)}
.skip-link:focus{top:1rem}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.sr-only-focusable:focus{position:static;width:auto;height:auto;padding:inherit;margin:inherit;overflow:visible;clip:auto;white-space:normal}

.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.line-clamp-2{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.line-clamp-3{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}

.divider{height:1px;background:var(--border);margin:1.5rem 0}
.divider--thick{height:2px}
.divider--ornate{background:none;height:auto;border:none;padding:1rem 0}
.divider--ornate::after{content:'\2666';display:block;text-align:center;color:var(--gold);font-size:.75rem;letter-spacing:.5em}

.card{background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;transition:all var(--transition-med)}
.card:hover{border-color:rgba(181,138,69,.3)}
.card__img{aspect-ratio:16/9;overflow:hidden;background:var(--bg-stone)}
.card__img img{width:100%;height:100%;object-fit:cover;transition:transform var(--transition-slow)}
.card:hover .card__img img{transform:scale(1.05)}
.card__body{padding:1.25rem}
.card__title{font-family:var(--font-heading);font-size:1rem;color:var(--text-primary);margin-bottom:.5rem}
.card__text{font-size:.85rem;color:var(--text-secondary);line-height:1.6;margin-bottom:1rem}
.card__footer{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;border-top:1px solid var(--border)}

.progress{height:4px;background:var(--bg-stone);border-radius:2px;overflow:hidden}
.progress--lg{height:8px}
.progress__fill{height:100%;background:linear-gradient(90deg,var(--bronze),var(--gold));border-radius:2px;transition:width var(--transition-med)}

.steps{display:flex;align-items:center;gap:0;margin-bottom:2rem}
.step{display:flex;align-items:center;gap:.6rem;position:relative}
.step__number{width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:50%;border:2px solid var(--border);color:var(--text-secondary);font-size:.8rem;font-family:var(--font-heading);font-weight:600;transition:all var(--transition-fast);flex-shrink:0}
.step__label{font-size:.85rem;color:var(--text-secondary);white-space:nowrap}
.step--active .step__number{border-color:var(--gold);color:var(--gold);background:rgba(181,138,69,.1)}
.step--active .step__label{color:var(--text-primary)}
.step--completed .step__number{border-color:var(--gold);color:var(--bg-primary);background:var(--gold)}
.step--completed .step__label{color:var(--text-primary)}
.step__connector{flex:1;height:1px;background:var(--border);margin:0 1rem;min-width:20px}
.step--completed + .step__connector,.step--completed ~ .step__connector{background:var(--gold)}

.loyalty-bar{display:flex;align-items:center;gap:1rem;padding:1rem 1.25rem;background:linear-gradient(135deg,var(--bronze-dark),var(--bg-panel));border:1px solid var(--border);border-radius:var(--radius-md);margin-bottom:1.5rem}
.loyalty-bar__icon{font-size:1.5rem;color:var(--gold);flex-shrink:0}
.loyalty-bar__info{flex:1}
.loyalty-bar__title{font-family:var(--font-heading);font-size:.85rem;color:var(--text-primary);margin-bottom:.35rem}
.loyalty-bar__text{font-size:.75rem;color:var(--text-secondary)}
.loyalty-bar__progress{width:120px}
.loyalty-bar__rank{font-family:var(--font-heading);font-size:.85rem;color:var(--gold);white-space:nowrap;font-weight:600}

.notification-dot{position:absolute;top:2px;right:2px;width:8px;height:8px;background:var(--crimson);border-radius:50%;border:2px solid var(--bg-panel)}
.notification-dot--gold{background:var(--gold)}

.product-card__hover-info{position:absolute;inset:0;background:rgba(8,7,6,.92);display:flex;flex-direction:column;align-items:center;justify-content:center;padding:1.5rem;opacity:0;transition:opacity var(--transition-med);z-index:4;text-align:center}
.product-card:hover .product-card__hover-info{opacity:1}
.product-card__hover-info .btn{width:80%;margin-bottom:.5rem}
.product-card__hover-links{display:flex;gap:1rem;margin-top:.75rem}
.product-card__hover-link{font-size:.8rem;color:var(--text-secondary);transition:color var(--transition-fast)}
.product-card__hover-link:hover{color:var(--gold)}

.coupon-card{display:flex;align-items:stretch;background:var(--bg-panel);border:1px dashed var(--gold);border-radius:var(--radius-md);overflow:hidden;transition:all var(--transition-fast)}
.coupon-card:hover{box-shadow:var(--shadow-gold)}
.coupon-card__discount{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:1.5rem 2rem;background:rgba(181,138,69,.08);border-right:1px dashed var(--gold)}
.coupon-card__discount-value{font-family:var(--font-decorative);font-size:2rem;color:var(--gold);font-weight:700;line-height:1}
.coupon-card__discount-label{font-size:.7rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.1em;margin-top:.25rem}
.coupon-card__info{flex:1;padding:1.25rem;display:flex;flex-direction:column;justify-content:center}
.coupon-card__title{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary);margin-bottom:.25rem}
.coupon-card__desc{font-size:.8rem;color:var(--text-secondary);margin-bottom:.5rem}
.coupon-card__code{font-family:monospace;font-size:.75rem;color:var(--gold);background:rgba(181,138,69,.1);padding:.2rem .5rem;border-radius:2px;letter-spacing:.1em;display:inline-block;width:fit-content}
.coupon-card__actions{display:flex;align-items:center;padding:1.25rem;border-left:1px solid var(--border)}
.coupon-card__copy{padding:.5rem 1rem;font-size:.75rem}

.reading-progress{position:fixed;top:0;left:0;width:0;height:3px;background:linear-gradient(90deg,var(--bronze),var(--gold));z-index:9999;transition:width .1s linear}

.hero__particles{position:absolute;inset:0;overflow:hidden;z-index:1}
.hero__particle{position:absolute;width:2px;height:2px;background:var(--gold);border-radius:50%;opacity:0;animation:float 6s ease-in-out infinite}
.hero__particle:nth-child(1){left:10%;top:20%;animation-delay:0s;animation-duration:7s}
.hero__particle:nth-child(2){left:25%;top:60%;animation-delay:1s;animation-duration:5s}
.hero__particle:nth-child(3){left:40%;top:35%;animation-delay:2s;animation-duration:8s}
.hero__particle:nth-child(4){left:55%;top:75%;animation-delay:0.5s;animation-duration:6s}
.hero__particle:nth-child(5){left:70%;top:15%;animation-delay:1.5s;animation-duration:7s}
.hero__particle:nth-child(6){left:85%;top:50%;animation-delay:3s;animation-duration:5.5s}
.hero__particle:nth-child(7){left:15%;top:80%;animation-delay:2.5s;animation-duration:6.5s}
.hero__particle:nth-child(8){left:60%;top:45%;animation-delay:0.8s;animation-duration:7.5s}
.hero__particle:nth-child(9){left:90%;top:30%;animation-delay:1.2s;animation-duration:6s}
.hero__particle:nth-child(10){left:35%;top:90%;animation-delay:2.2s;animation-duration:5s}

.product-viewer__toolbar{position:absolute;top:1rem;right:1rem;display:flex;gap:.35rem;z-index:3}
.product-viewer__tool-btn{width:36px;height:36px;display:flex;align-items:center;justify-content:center;background:rgba(8,7,6,.8);border:1px solid var(--border);border-radius:var(--radius-sm);color:var(--text-secondary);font-size:.85rem;transition:all var(--transition-fast);backdrop-filter:blur(4px)}
.product-viewer__tool-btn:hover{color:var(--gold);border-color:var(--gold)}
.product-viewer__tool-btn--active{color:var(--gold);background:rgba(181,138,69,.15);border-color:var(--gold)}

.product-viewer__info-overlay{position:absolute;top:1rem;left:1rem;display:flex;flex-direction:column;gap:.35rem;z-index:3}
.product-viewer__info-tag{padding:.25rem .6rem;background:rgba(8,7,6,.8);border:1px solid var(--border);border-radius:var(--radius-sm);font-size:.7rem;color:var(--text-secondary);backdrop-filter:blur(4px);display:flex;align-items:center;gap:.35rem}
.product-viewer__info-tag i{color:var(--gold);font-size:.6rem}

.product-info__wishlist-row{display:flex;align-items:center;gap:1rem;margin-bottom:1rem}
.product-info__wishlist-btn{display:flex;align-items:center;gap:.4rem;padding:.5rem 1rem;border:1px solid var(--border);border-radius:var(--radius-sm);font-size:.85rem;color:var(--text-secondary);transition:all var(--transition-fast);background:none;cursor:pointer}
.product-info__wishlist-btn:hover{border-color:var(--crimson);color:var(--crimson)}
.product-info__wishlist-btn--active{border-color:var(--crimson);color:var(--crimson);background:rgba(111,33,27,.1)}
.product-info__share-btn{display:flex;align-items:center;gap:.4rem;padding:.5rem 1rem;border:1px solid var(--border);border-radius:var(--radius-sm);font-size:.85rem;color:var(--text-secondary);transition:all var(--transition-fast);background:none;cursor:pointer}
.product-info__share-btn:hover{border-color:var(--gold);color:var(--gold)}
.product-info__report-link{font-size:.8rem;color:var(--text-secondary);transition:color var(--transition-fast)}
.product-info__report-link:hover{color:#e0605a}

.product-info__guarantee{display:flex;align-items:center;gap:.75rem;padding:1rem;background:rgba(34,139,34,.05);border:1px solid rgba(34,139,34,.15);border-radius:var(--radius-md);margin-top:1rem}
.product-info__guarantee-icon{color:#6fbf73;font-size:1.25rem;flex-shrink:0}
.product-info__guarantee-text{font-size:.85rem;color:var(--text-secondary);line-height:1.5}
.product-info__guarantee-text strong{color:#6fbf73}

.product-bundles{margin-top:2rem;padding:1.25rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md)}
.product-bundles__title{font-family:var(--font-heading);font-size:.95rem;color:var(--text-primary);margin-bottom:1rem;display:flex;align-items:center;gap:.5rem}
.product-bundles__title i{color:var(--gold)}
.product-bundles__list{display:flex;flex-direction:column;gap:.75rem}
.product-bundles__item{display:flex;align-items:center;gap:.75rem;padding:.6rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-sm);transition:all var(--transition-fast);cursor:pointer}
.product-bundles__item:hover{border-color:var(--gold)}
.product-bundles__item-check{width:18px;height:18px;border:2px solid var(--border);border-radius:3px;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all var(--transition-fast)}
.product-bundles__item--selected .product-bundles__item-check{background:var(--gold);border-color:var(--gold)}
.product-bundles__item--selected .product-bundles__item-check::after{content:'';width:5px;height:3px;border-left:2px solid var(--bg-primary);border-bottom:2px solid var(--bg-primary);transform:rotate(-45deg) translateY(-1px)}
.product-bundles__item-img{width:44px;height:44px;border-radius:var(--radius-sm);overflow:hidden;background:var(--bg-stone);flex-shrink:0}
.product-bundles__item-img img{width:100%;height:100%;object-fit:cover}
.product-bundles__item-info{flex:1;min-width:0}
.product-bundles__item-name{font-size:.85rem;color:var(--text-primary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.product-bundles__item-price{font-size:.8rem;color:var(--gold-bright);font-family:var(--font-heading)}
.product-bundles__item-discount{font-size:.7rem;color:#6fbf73;margin-left:.5rem}
.product-bundles__total{display:flex;justify-content:space-between;align-items:center;padding-top:1rem;margin-top:.75rem;border-top:1px solid var(--border)}
.product-bundles__total-label{font-size:.9rem;color:var(--text-secondary)}
.product-bundles__total-price{font-family:var(--font-heading);font-size:1.25rem;color:var(--gold-bright);font-weight:700}

.product-related{margin-top:3rem}
.product-related__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.5rem}
.product-related__title{font-family:var(--font-heading);font-size:1.25rem;color:var(--text-primary)}
.product-related__view-all{font-size:.85rem;color:var(--gold);display:flex;align-items:center;gap:.35rem}
.product-related__view-all:hover{color:var(--gold-bright)}

.gallery-modal{position:fixed;inset:0;background:rgba(0,0,0,.95);z-index:2500;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:all var(--transition-med)}
.gallery-modal--active{opacity:1;visibility:visible}
.gallery-modal__close{position:absolute;top:1.5rem;right:1.5rem;width:44px;height:44px;display:flex;align-items:center;justify-content:center;color:var(--text-secondary);font-size:1.5rem;border-radius:50%;transition:all var(--transition-fast);cursor:pointer;background:none;border:none}
.gallery-modal__close:hover{color:var(--text-primary);background:rgba(255,255,255,.1)}
.gallery-modal__image{max-width:90vw;max-height:85vh;object-fit:contain}
.gallery-modal__nav{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;display:flex;align-items:center;justify-content:center;color:var(--text-secondary);font-size:1.5rem;border-radius:50%;transition:all var(--transition-fast);cursor:pointer;background:none;border:none}
.gallery-modal__nav:hover{color:var(--text-primary);background:rgba(255,255,255,.1)}
.gallery-modal__nav--prev{left:1.5rem}
.gallery-modal__nav--next{right:1.5rem}
.gallery-modal__counter{position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);font-size:.85rem;color:var(--text-secondary)}

.search-page{padding:3rem 0}
.search-page .container{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
.search-page__title{font-family:var(--font-decorative);font-size:1.75rem;color:var(--text-primary);margin-bottom:.5rem}
.search-page__query{font-size:1rem;color:var(--text-secondary);margin-bottom:2rem}
.search-page__query strong{color:var(--gold)}
.search-page__bar{display:flex;gap:.75rem;margin-bottom:2rem}
.search-page__bar input{flex:1;padding:.85rem 1.25rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);color:var(--text-primary);font-size:1rem}
.search-page__bar input:focus{border-color:var(--gold)}
.search-page__results-count{font-size:.85rem;color:var(--text-secondary);margin-bottom:1.5rem}
.search-page__no-results{text-align:center;padding:4rem 2rem}
.search-page__no-results-icon{font-size:3rem;color:var(--bronze-dark);margin-bottom:1rem}
.search-page__no-results-title{font-family:var(--font-heading);font-size:1.5rem;color:var(--text-primary);margin-bottom:.5rem}
.search-page__suggestions{margin-top:2rem;text-align:center}
.search-page__suggestions-title{font-size:.9rem;color:var(--text-secondary);margin-bottom:.75rem}
.search-page__suggestions-list{display:flex;flex-wrap:wrap;justify-content:center;gap:.5rem}

.wishlist-page{padding:3rem 0}
.wishlist-page .container{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
.wishlist-page__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:2rem}
.wishlist-page__title{font-family:var(--font-decorative);font-size:2rem;color:var(--text-primary)}
.wishlist-page__count{font-size:.9rem;color:var(--text-secondary)}
.wishlist-page__actions{display:flex;gap:.75rem}

.order-detail{padding:3rem 0}
.order-detail .container{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
.order-detail__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:2rem;padding-bottom:1.5rem;border-bottom:1px solid var(--border)}
.order-detail__title{font-family:var(--font-decorative);font-size:1.75rem;color:var(--text-primary)}
.order-detail__id{font-size:.85rem;color:var(--text-secondary)}
.order-detail__status{display:flex;align-items:center;gap:.5rem}
.order-detail__layout{display:grid;grid-template-columns:1fr min(380px, 35%);gap:2rem}
.order-detail__section{margin-bottom:2rem}
.order-detail__section-title{font-family:var(--font-heading);font-size:1rem;color:var(--text-primary);margin-bottom:1rem;padding-bottom:.65rem;border-bottom:1px solid var(--border)}
.order-detail__section-title i{margin-right:.5rem;color:var(--gold);font-size:.9rem}
.order-detail__main{min-width:0}
.order-detail__sidebar{min-width:0}

/* --- Order Status Badge --- */
.order-status{display:inline-flex;align-items:center;gap:.4rem;padding:.35rem .75rem;border-radius:var(--radius-sm);font-family:var(--font-heading);font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;font-weight:600}
.status--completed{color:#6dbd6d;background:rgba(109,189,109,.1);border:1px solid rgba(109,189,109,.25)}
.status--pending{color:#d4a843;background:rgba(212,168,67,.1);border:1px solid rgba(212,168,67,.25)}
.status--processing{color:#6ba3d6;background:rgba(107,163,214,.1);border:1px solid rgba(107,163,214,.25)}
.status--cancelled{color:#d66b6b;background:rgba(214,107,107,.1);border:1px solid rgba(214,107,107,.25)}

/* --- Order Items --- */
.order-items{display:flex;flex-direction:column;gap:1px;background:var(--border);border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden}
.order-item{display:flex;align-items:center;gap:1.25rem;padding:1.25rem 1.5rem;background:var(--bg-panel);transition:background var(--transition-fast)}
.order-item:hover{background:var(--bg-stone)}
.order-item__image{width:72px;height:72px;border-radius:var(--radius-sm);overflow:hidden;flex-shrink:0;border:1px solid var(--border);background:var(--bg-stone)}
.order-item__image img{width:100%;height:100%;object-fit:cover}
.order-item__placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--text-muted);font-size:1.5rem}
.order-item__details{flex:1;min-width:0}
.order-item__name{font-family:var(--font-heading);font-size:.95rem;color:var(--gold);text-decoration:none;display:block;margin-bottom:.3rem;transition:color var(--transition-fast)}
.order-item__name:hover{color:var(--gold-bright)}
.order-item__meta{font-size:.8rem;color:var(--text-muted);display:flex;gap:.4rem}
.order-item__price{text-align:right;flex-shrink:0}
.order-item__unit{font-size:.75rem;color:var(--text-muted);margin-bottom:.2rem}
.order-item__total{font-family:var(--font-heading);font-size:1rem;color:var(--text-primary);font-weight:600}

/* --- Order Notes --- */
.order-notes{font-size:.9rem;color:var(--text-secondary);line-height:1.6;padding:1rem;background:var(--bg-stone);border-radius:var(--radius-sm);border:1px solid var(--border)}

/* --- Order Summary (sidebar) --- */
.order-summary{background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);padding:1.5rem}
.order-summary__title{font-family:var(--font-heading);font-size:.85rem;color:var(--gold);letter-spacing:.1em;text-transform:uppercase;margin-bottom:1.25rem;padding-bottom:.75rem;border-bottom:1px solid var(--border)}
.order-summary__rows{display:flex;flex-direction:column;gap:.75rem;margin-bottom:1.25rem}
.order-summary__row{display:flex;justify-content:space-between;font-size:.9rem;color:var(--text-secondary)}
.order-summary__row--discount{color:#d66b6b}
.order-summary__row--total{padding-top:.75rem;border-top:1px solid var(--border);font-family:var(--font-heading);font-size:1.1rem;color:var(--text-primary);font-weight:700}
.order-summary__info{display:flex;flex-direction:column;gap:.65rem;padding-top:1rem;border-top:1px solid var(--border);margin-bottom:1rem}
.order-summary__info-row{display:flex;justify-content:space-between;align-items:center;font-size:.85rem}
.order-summary__info-label{color:var(--text-muted);font-size:.75rem;text-transform:uppercase;letter-spacing:.05em}
.order-summary__info-value{color:var(--text-primary);font-weight:500;text-align:right;max-width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.order-summary__coupon{font-family:monospace;color:var(--gold);background:rgba(181,138,69,.08);padding:.15rem .5rem;border-radius:3px;font-size:.8rem;letter-spacing:.05em}
.order-summary__action{margin-top:.5rem}

/* --- Responsive --- */
@media(max-width:900px){.order-detail__layout{grid-template-columns:1fr}}
@media(max-width:600px){
.order-item{flex-wrap:wrap;gap:.75rem}
.order-item__price{text-align:left;width:100%;display:flex;justify-content:space-between;padding-top:.5rem;border-top:1px solid var(--border)}
.order-detail__header{flex-direction:column;align-items:flex-start;gap:1rem}
}

.footer__link-group{display:flex;flex-direction:column;gap:.5rem}
.footer__link-group .footer__link{display:flex;align-items:center;gap:.5rem;font-size:.85rem;color:var(--text-secondary);padding:.3rem 0;transition:all var(--transition-fast)}
.footer__link-group .footer__link:hover{color:var(--gold);transform:translateX(3px)}
.footer__link-group .footer__link::before{content:'';width:0;height:1px;background:var(--gold);transition:width var(--transition-fast)}
.footer__link-group .footer__link:hover::before{width:12px}

.footer__payment-methods{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.5rem}
.footer__payment-badge{padding:.3rem .6rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-sm);font-size:.7rem;color:var(--text-secondary)}

.footer__bottom-links{display:flex;gap:1.5rem;align-items:center}
.footer__bottom-link{font-size:.8rem;color:var(--text-secondary);transition:color var(--transition-fast)}
.footer__bottom-link:hover{color:var(--gold)}

.social-proof{display:flex;align-items:center;gap:.75rem;padding:1rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);margin-top:1rem}
.social-proof__avatars{display:flex}
.social-proof__avatar{width:28px;height:28px;border-radius:50%;background:var(--bronze-dark);border:2px solid var(--bg-panel);display:flex;align-items:center;justify-content:center;color:var(--gold);font-size:.55rem;font-family:var(--font-heading);font-weight:600;margin-left:-8px}
.social-proof__avatar:first-child{margin-left:0}
.social-proof__text{font-size:.8rem;color:var(--text-secondary);line-height:1.4}
.social-proof__text strong{color:var(--text-primary)}
.social-proof__count{font-family:var(--font-heading);color:var(--gold)}

.benefits-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin:2rem 0}
.benefit-card{display:flex;align-items:flex-start;gap:1rem;padding:1.25rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);transition:all var(--transition-med)}
.benefit-card:hover{border-color:rgba(181,138,69,.3)}
.benefit-card__icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center;background:rgba(181,138,69,.08);border-radius:var(--radius-md);color:var(--gold);font-size:1.25rem;flex-shrink:0}
.benefit-card__title{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary);margin-bottom:.3rem}
.benefit-card__desc{font-size:.8rem;color:var(--text-secondary);line-height:1.5}

.newsletter-popup{position:fixed;inset:0;background:rgba(0,0,0,.7);z-index:3000;display:flex;align-items:center;justify-content:center;padding:1.5rem;opacity:0;visibility:hidden;transition:all var(--transition-med)}
.newsletter-popup--active{opacity:1;visibility:visible}
.newsletter-popup__card{background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-lg);max-width:480px;width:100%;overflow:hidden;position:relative;transform:scale(.95);transition:transform var(--transition-med)}
.newsletter-popup--active .newsletter-popup__card{transform:scale(1)}
.newsletter-popup__close{position:absolute;top:1rem;right:1rem;width:32px;height:32px;display:flex;align-items:center;justify-content:center;color:var(--text-secondary);border-radius:50%;transition:all var(--transition-fast);cursor:pointer;background:none;border:none;z-index:2}
.newsletter-popup__close:hover{color:var(--text-primary);background:var(--bg-stone)}
.newsletter-popup__bg{height:120px;background:linear-gradient(135deg,var(--bronze-dark),var(--crimson-dark));position:relative}
.newsletter-popup__bg::after{content:'';position:absolute;inset:0;background:url('/assets/images/pattern.png');background-size:100px;opacity:.1}
.newsletter-popup__emblem{position:absolute;bottom:-28px;left:50%;transform:translateX(-50%);width:56px;height:56px;background:var(--bg-panel);border:2px solid var(--gold);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;color:var(--gold);box-shadow:var(--shadow-gold)}
.newsletter-popup__body{padding:2.5rem 2rem 2rem;text-align:center}
.newsletter-popup__title{font-family:var(--font-decorative);font-size:1.25rem;color:var(--text-primary);margin-bottom:.5rem}
.newsletter-popup__desc{font-size:.85rem;color:var(--text-secondary);margin-bottom:1.5rem;line-height:1.6}
.newsletter-popup__form{display:flex;flex-direction:column;gap:.75rem}
.newsletter-popup__input{width:100%;padding:.75rem 1rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);color:var(--text-primary);font-size:.9rem}
.newsletter-popup__input:focus{border-color:var(--gold)}
.newsletter-popup__submit{width:100%}
.newsletter-popup__terms{font-size:.7rem;color:var(--text-secondary);margin-top:.75rem;line-height:1.5}
.newsletter-popup__skip{display:block;text-align:center;font-size:.8rem;color:var(--text-secondary);margin-top:.75rem;transition:color var(--transition-fast);background:none;border:none;cursor:pointer;width:100%}
.newsletter-popup__skip:hover{color:var(--gold)}

.category-page{padding:3rem 0}
.category-page .container{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}
.category-page__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.category-page-card{position:relative;aspect-ratio:3/2;border-radius:var(--radius-md);overflow:hidden;border:1px solid var(--border);transition:all var(--transition-med)}
.category-page-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-gold);border-color:var(--gold)}
.category-page-card__bg{position:absolute;inset:0;background:var(--bg-stone)}
.category-page-card__bg img{width:100%;height:100%;object-fit:cover;transition:transform var(--transition-slow);filter:brightness(.5)}
.category-page-card:hover .category-page-card__bg img{transform:scale(1.08);filter:brightness(.65)}
.category-page-card__overlay{position:absolute;inset:0;background:linear-gradient(0deg,rgba(8,7,6,.85) 0%,transparent 70%);z-index:1}
.category-page-card__content{position:absolute;bottom:0;left:0;right:0;padding:1.5rem;z-index:2}
.category-page-card__icon{font-size:1.5rem;color:var(--gold);margin-bottom:.5rem}
.category-page-card__name{font-family:var(--font-heading);font-size:1.15rem;color:var(--text-primary);font-weight:600;margin-bottom:.3rem}
.category-page-card__count{font-size:.8rem;color:var(--text-secondary)}
.category-page-card__arrow{position:absolute;top:1rem;right:1rem;width:32px;height:32px;display:flex;align-items:center;justify-content:center;background:rgba(8,7,6,.5);border-radius:50%;color:var(--text-secondary);font-size:.75rem;z-index:2;transition:all var(--transition-fast);border:1px solid rgba(255,255,255,.1)}
.category-page-card:hover .category-page-card__arrow{background:var(--gold);color:var(--bg-primary);border-color:var(--gold)}

.author-card{display:flex;align-items:center;gap:1rem;padding:1.25rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);transition:all var(--transition-fast)}
.author-card:hover{border-color:rgba(181,138,69,.3)}
.author-card__avatar{width:56px;height:56px;border-radius:50%;overflow:hidden;background:var(--bronze-dark);flex-shrink:0;display:flex;align-items:center;justify-content:center;color:var(--gold);font-family:var(--font-heading);font-weight:700;font-size:1.1rem}
.author-card__avatar img{width:100%;height:100%;object-fit:cover}
.author-card__info{flex:1;min-width:0}
.author-card__name{font-family:var(--font-heading);font-size:.95rem;color:var(--text-primary)}
.author-card__specialty{font-size:.8rem;color:var(--text-secondary);margin-top:.1rem}
.author-card__stats{display:flex;gap:1rem;margin-top:.35rem}
.author-card__stat{font-size:.75rem;color:var(--text-secondary)}
.author-card__stat strong{color:var(--gold)}
.author-card__follow{flex-shrink:0}

.model-viewer-3d{position:relative;width:100%;aspect-ratio:4/3;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden}
.model-viewer-3d__canvas{width:100%;height:100%}
.model-viewer-3d__loading{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;background:var(--bg-panel);gap:1rem;z-index:5}
.model-viewer-3d__loading-icon{font-size:2rem;color:var(--gold);animation:spin 2s linear infinite}
.model-viewer-3d__loading-text{font-size:.85rem;color:var(--text-secondary)}
.model-viewer-3d__controls{position:absolute;bottom:1rem;left:50%;transform:translateX(-50%);display:flex;gap:.35rem;background:rgba(8,7,6,.85);padding:.5rem;border-radius:var(--radius-md);border:1px solid var(--border);backdrop-filter:blur(8px);z-index:3}
.model-viewer-3d__ctrl{width:32px;height:32px;display:flex;align-items:center;justify-content:center;color:var(--text-secondary);border-radius:var(--radius-sm);transition:all var(--transition-fast);background:none;border:none;cursor:pointer;font-size:.85rem}
.model-viewer-3d__ctrl:hover{color:var(--gold);background:var(--bg-stone)}
.model-viewer-3d__ctrl--active{color:var(--gold);background:var(--bg-stone)}
.model-viewer-3d__badge{position:absolute;top:1rem;left:1rem;z-index:3}
.model-viewer-3d__toolbar{position:absolute;top:1rem;right:1rem;display:flex;flex-direction:column;gap:.35rem;z-index:3}
.model-viewer-3d__tool{width:32px;height:32px;display:flex;align-items:center;justify-content:center;background:rgba(8,7,6,.8);border:1px solid var(--border);border-radius:var(--radius-sm);color:var(--text-secondary);font-size:.75rem;transition:all var(--transition-fast);backdrop-filter:blur(4px);cursor:pointer}
.model-viewer-3d__tool:hover{color:var(--gold);border-color:var(--gold)}
.model-viewer-3d__annotations{position:absolute;inset:0;z-index:2;pointer-events:none}
.model-viewer-3d__annotation{position:absolute;width:24px;height:24px;border-radius:50%;background:var(--gold);display:flex;align-items:center;justify-content:center;color:var(--bg-primary);font-size:.6rem;font-weight:700;cursor:pointer;pointer-events:all;transition:all var(--transition-fast);box-shadow:var(--shadow-gold)}
.model-viewer-3d__annotation:hover{transform:scale(1.2)}
.model-viewer-3d__annotation-tooltip{position:absolute;bottom:calc(100% + 8px);left:50%;transform:translateX(-50%);background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-sm);padding:.5rem .75rem;font-size:.75rem;color:var(--text-primary);white-space:nowrap;opacity:0;visibility:hidden;transition:all var(--transition-fast);pointer-events:none}
.model-viewer-3d__annotation:hover .model-viewer-3d__annotation-tooltip{opacity:1;visibility:visible}

.download-card{display:flex;align-items:center;gap:1rem;padding:1rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);transition:all var(--transition-fast)}
.download-card:hover{border-color:var(--gold)}
.download-card__icon{width:48px;height:48px;display:flex;align-items:center;justify-content:center;background:var(--bg-panel);border-radius:var(--radius-md);color:var(--gold);font-size:1.25rem;flex-shrink:0}
.download-card__info{flex:1;min-width:0}
.download-card__name{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary);margin-bottom:.15rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.download-card__meta{font-size:.75rem;color:var(--text-secondary);display:flex;align-items:center;gap:.5rem}
.download-card__size{color:var(--text-secondary)}
.download-card__formats{display:flex;gap:.25rem}
.download-card__format{padding:.1rem .35rem;background:var(--bg-panel);border-radius:2px;font-size:.6rem;color:var(--text-secondary);text-transform:uppercase}
.download-card__btn{flex-shrink:0}

.review-summary{display:flex;gap:2rem;padding:1.5rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);margin-bottom:1.5rem}
.review-summary__average{text-align:center;flex-shrink:0;padding:0 1.5rem;border-right:1px solid var(--border)}
.review-summary__number{font-family:var(--font-decorative);font-size:3rem;color:var(--gold);font-weight:700;line-height:1}
.review-summary__out-of{font-size:.8rem;color:var(--text-secondary);margin-top:.25rem}
.review-summary__breakdown{flex:1;display:flex;flex-direction:column;gap:.35rem;justify-content:center}
.review-summary__row{display:flex;align-items:center;gap:.75rem;font-size:.8rem}
.review-summary__label{width:20px;color:var(--text-secondary);text-align:right}
.review-summary__bar{flex:1;height:6px;background:var(--bg-panel);border-radius:3px;overflow:hidden}
.review-summary__bar-fill{height:100%;background:var(--gold);border-radius:3px}
.review-summary__count{width:30px;color:var(--text-secondary);font-size:.75rem}
.review-summary__recommend{padding:1rem 1.5rem;border-left:1px solid var(--border);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center}
.review-summary__recommend-percent{font-family:var(--font-heading);font-size:1.75rem;color:var(--gold);font-weight:700}
.review-summary__recommend-text{font-size:.8rem;color:var(--text-secondary);margin-top:.25rem}

.review-filters{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem;flex-wrap:wrap}
.review-filters__sort{display:flex;align-items:center;gap:.5rem}
.review-filters__sort label{font-size:.8rem;color:var(--text-secondary)}
.review-filters__sort select{padding:.4rem 2rem .4rem .65rem;font-size:.8rem}
.review-filters__stars{display:flex;gap:.35rem}
.review-filters__star-btn{padding:.3rem .6rem;border:1px solid var(--border);border-radius:var(--radius-sm);font-size:.75rem;color:var(--text-secondary);background:none;cursor:pointer;transition:all var(--transition-fast);display:flex;align-items:center;gap:.25rem}
.review-filters__star-btn:hover{border-color:var(--gold);color:var(--gold)}
.review-filters__star-btn--active{background:var(--gold);color:var(--bg-primary);border-color:var(--gold)}
.review-filters__star-btn i{font-size:.65rem}

.review-card{padding:1.25rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);margin-bottom:1rem;transition:all var(--transition-fast)}
.review-card:hover{border-color:rgba(181,138,69,.2)}
.review-card__header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:.75rem}
.review-card__author{display:flex;align-items:center;gap:.75rem}
.review-card__avatar{width:40px;height:40px;border-radius:50%;background:var(--bronze-dark);display:flex;align-items:center;justify-content:center;color:var(--gold);font-family:var(--font-heading);font-weight:600;font-size:.85rem;flex-shrink:0}
.review-card__author-info{display:flex;flex-direction:column}
.review-card__name{font-family:var(--font-heading);font-size:.85rem;color:var(--text-primary)}
.review-card__verified{font-size:.7rem;color:#6fbf73;display:flex;align-items:center;gap:.25rem}
.review-card__date{font-size:.75rem;color:var(--text-secondary)}
.review-card__stars{display:flex;gap:2px;color:var(--gold);font-size:.8rem;margin-bottom:.5rem}
.review-card__title{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary);margin-bottom:.35rem}
.review-card__body{font-size:.9rem;color:var(--text-secondary);line-height:1.7;margin-bottom:.75rem}
.review-card__images{display:flex;gap:.5rem;margin-bottom:.75rem;flex-wrap:wrap}
.review-card__image{width:64px;height:64px;border-radius:var(--radius-sm);overflow:hidden;border:1px solid var(--border);cursor:pointer;transition:all var(--transition-fast)}
.review-card__image:hover{border-color:var(--gold)}
.review-card__image img{width:100%;height:100%;object-fit:cover}
.review-card__footer{display:flex;align-items:center;gap:1rem;padding-top:.75rem;border-top:1px solid var(--border)}
.review-card__helpful{font-size:.8rem;color:var(--text-secondary)}
.review-card__helpful-btn{display:flex;align-items:center;gap:.3rem;padding:.3rem .6rem;border:1px solid var(--border);border-radius:var(--radius-sm);font-size:.75rem;color:var(--text-secondary);background:none;cursor:pointer;transition:all var(--transition-fast)}
.review-card__helpful-btn:hover{border-color:var(--gold);color:var(--gold)}
.review-card__helpful-btn--active{border-color:var(--gold);color:var(--gold)}
.review-card__report{font-size:.75rem;color:var(--text-secondary);margin-left:auto;transition:color var(--transition-fast);background:none;border:none;cursor:pointer}
.review-card__report:hover{color:#e0605a}

.pagination-nav{display:flex;align-items:center;justify-content:space-between;padding:1.5rem;border-top:1px solid var(--border);margin-top:1.5rem}
.pagination-nav__info{font-size:.8rem;color:var(--text-secondary)}
.pagination-nav__links{display:flex;align-items:center;gap:.5rem}

.countdown{display:flex;gap:.75rem;align-items:center}
.countdown__block{display:flex;flex-direction:column;align-items:center;padding:.5rem .75rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-sm);min-width:56px}
.countdown__number{font-family:var(--font-heading);font-size:1.5rem;color:var(--gold);font-weight:700;line-height:1}
.countdown__label{font-size:.6rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.08em;margin-top:.25rem}
.countdown__separator{font-size:1.25rem;color:var(--text-secondary);margin-top:-.75rem}
.countdown--lg .countdown__block{min-width:72px;padding:.75rem 1rem}
.countdown--lg .countdown__number{font-size:2rem}

.tab-bar{display:flex;border-bottom:1px solid var(--border);margin-bottom:1.5rem;overflow-x:auto;gap:0}
.tab-bar::-webkit-scrollbar{display:none}
.tab-bar__item{padding:.75rem 1.25rem;font-family:var(--font-heading);font-size:.8rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.05em;border-bottom:2px solid transparent;transition:all var(--transition-fast);cursor:pointer;white-space:nowrap;background:none;border-top:none;border-left:none;border-right:none}
.tab-bar__item:hover{color:var(--gold)}
.tab-bar__item--active{color:var(--gold);border-bottom-color:var(--gold)}
.tab-bar__item-badge{margin-left:.35rem;padding:.1rem .4rem;background:var(--crimson);color:#fff;font-size:.6rem;border-radius:8px;font-family:var(--font-body);font-weight:600}

.sidebar{position:sticky;top:calc(var(--header-height) + var(--utility-height) + 1.5rem);align-self:start}
.sidebar__section{background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);margin-bottom:1.25rem;overflow:hidden}
.sidebar__section-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;border-bottom:1px solid var(--border);cursor:pointer;transition:background var(--transition-fast)}
.sidebar__section-header:hover{background:var(--bg-stone)}
.sidebar__section-title{font-family:var(--font-heading);font-size:.85rem;color:var(--text-primary);display:flex;align-items:center;gap:.5rem}
.sidebar__section-title i{color:var(--gold);font-size:.8rem}
.sidebar__section-toggle{font-size:.6rem;color:var(--text-secondary);transition:transform var(--transition-fast)}
.sidebar__section-toggle--open{transform:rotate(180deg)}
.sidebar__section-body{padding:1rem 1.25rem}
.sidebar__section-body--collapsed{display:none}

.sidebar__categories{display:flex;flex-direction:column;gap:.25rem}
.sidebar__category{display:flex;align-items:center;justify-content:space-between;padding:.5rem .75rem;border-radius:var(--radius-sm);transition:all var(--transition-fast);cursor:pointer}
.sidebar__category:hover{background:var(--bg-stone)}
.sidebar__category--active{background:rgba(181,138,69,.08)}
.sidebar__category-name{font-size:.85rem;color:var(--text-secondary);display:flex;align-items:center;gap:.5rem}
.sidebar__category--active .sidebar__category-name{color:var(--gold)}
.sidebar__category-count{font-size:.7rem;color:var(--text-secondary);background:var(--bg-stone);padding:.15rem .4rem;border-radius:8px;min-width:24px;text-align:center}
.sidebar__category--active .sidebar__category-count{background:rgba(181,138,69,.15);color:var(--gold)}

.sidebar__price-range{padding:.5rem 0}
.sidebar__price-inputs{display:flex;align-items:center;gap:.5rem;margin-bottom:1rem}
.sidebar__price-input{flex:1}
.sidebar__price-input input{width:100%;padding:.45rem .6rem;font-size:.8rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-sm);color:var(--text-primary);text-align:center}
.sidebar__price-input input:focus{border-color:var(--gold)}
.sidebar__price-separator{color:var(--text-secondary);font-size:.8rem}
.sidebar__price-track{position:relative;height:4px;background:var(--bg-stone);border-radius:2px;margin:0 .5rem}
.sidebar__price-fill{position:absolute;height:100%;background:var(--gold);border-radius:2px;left:20%;right:30%}

.sidebar__color-options{display:flex;flex-wrap:wrap;gap:.5rem}
.sidebar__color{width:28px;height:28px;border-radius:50%;border:2px solid transparent;cursor:pointer;transition:all var(--transition-fast);position:relative}
.sidebar__color:hover{transform:scale(1.1)}
.sidebar__color--active{border-color:var(--gold);box-shadow:0 0 0 2px var(--bg-panel),0 0 0 4px var(--gold)}
.sidebar__color--active::after{content:'\2713';position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:var(--bg-primary);font-size:.6rem;font-weight:700}

.sidebar__tags{display:flex;flex-wrap:wrap;gap:.4rem}
.sidebar__tag{padding:.3rem .6rem;border:1px solid var(--border);border-radius:var(--radius-sm);font-size:.75rem;color:var(--text-secondary);cursor:pointer;transition:all var(--transition-fast);background:none}
.sidebar__tag:hover{border-color:var(--gold);color:var(--gold)}
.sidebar__tag--active{background:var(--gold);color:var(--bg-primary);border-color:var(--gold)}

.sidebar__clear{display:flex;align-items:center;justify-content:center;gap:.35rem;width:100%;padding:.5rem;margin-top:.75rem;font-size:.8rem;color:var(--text-secondary);border:1px solid var(--border);border-radius:var(--radius-sm);transition:all var(--transition-fast);background:none;cursor:pointer}
.sidebar__clear:hover{border-color:var(--crimson);color:var(--crimson)}

.featured-product{position:relative;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;display:grid;grid-template-columns:1fr 1fr;transition:all var(--transition-med)}
.featured-product:hover{box-shadow:var(--shadow-gold);border-color:rgba(181,138,69,.4)}
.featured-product__img{position:relative;aspect-ratio:1;overflow:hidden;background:var(--bg-stone)}
.featured-product__img img{width:100%;height:100%;object-fit:cover;transition:transform var(--transition-slow)}
.featured-product:hover .featured-product__img img{transform:scale(1.05)}
.featured-product__badge{position:absolute;top:1rem;left:1rem;z-index:2}
.featured-product__body{padding:2rem;display:flex;flex-direction:column;justify-content:center}
.featured-product__eyebrow{font-size:.7rem;color:var(--gold);text-transform:uppercase;letter-spacing:.12em;font-weight:600;margin-bottom:.5rem}
.featured-product__title{font-family:var(--font-decorative);font-size:1.5rem;color:var(--text-primary);margin-bottom:.75rem;line-height:1.25}
.featured-product__desc{font-size:.9rem;color:var(--text-secondary);line-height:1.7;margin-bottom:1.5rem}
.featured-product__price{display:flex;align-items:baseline;gap:.75rem;margin-bottom:1.5rem}
.featured-product__price-current{font-family:var(--font-heading);font-size:1.75rem;color:var(--gold-bright);font-weight:700}
.featured-product__price-original{font-size:1rem;color:var(--text-secondary);text-decoration:line-through}
.featured-product__actions{display:flex;gap:.75rem}
.featured-product__rating{display:flex;align-items:center;gap:.5rem;margin-bottom:1rem}
.featured-product__stars{display:flex;gap:2px;color:var(--gold);font-size:.85rem}
.featured-product__rating-text{font-size:.8rem;color:var(--text-secondary)}

.showcase{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
.showcase__item{position:relative;border-radius:var(--radius-md);overflow:hidden;aspect-ratio:16/10;border:1px solid var(--border);transition:all var(--transition-med)}
.showcase__item:hover{box-shadow:var(--shadow-gold);border-color:var(--gold)}
.showcase__bg{position:absolute;inset:0;background:var(--bg-stone)}
.showcase__bg img{width:100%;height:100%;object-fit:cover;transition:transform var(--transition-slow);filter:brightness(.4)}
.showcase__item:hover .showcase__bg img{transform:scale(1.05);filter:brightness(.5)}
.showcase__overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(8,7,6,.7) 0%,rgba(8,7,6,.3) 100%);z-index:1}
.showcase__content{position:absolute;bottom:0;left:0;right:0;padding:1.5rem;z-index:2}
.showcase__tag{display:inline-block;font-size:.6rem;color:var(--gold);text-transform:uppercase;letter-spacing:.12em;font-weight:700;margin-bottom:.5rem;padding:.2rem .5rem;border:1px solid var(--gold);border-radius:2px}
.showcase__title{font-family:var(--font-heading);font-size:1.1rem;color:var(--text-primary);margin-bottom:.3rem}
.showcase__desc{font-size:.8rem;color:var(--text-secondary);margin-bottom:.75rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}

.hero__scroll-indicator{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);z-index:3;display:flex;flex-direction:column;align-items:center;gap:.5rem;color:var(--text-secondary);font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;animation:float 2s ease-in-out infinite}
.hero__scroll-mouse{width:20px;height:32px;border:2px solid var(--text-secondary);border-radius:10px;position:relative}
.hero__scroll-mouse::before{content:'';position:absolute;top:5px;left:50%;transform:translateX(-50%);width:2px;height:6px;background:var(--gold);border-radius:1px;animation:fadeInDown 1.5s ease-in-out infinite}

.search-overlay{position:fixed;inset:0;background:rgba(8,7,6,.95);z-index:2000;display:flex;align-items:flex-start;justify-content:center;padding-top:12vh;opacity:0;visibility:hidden;transition:all var(--transition-med);backdrop-filter:blur(12px)}
.search-overlay--active{opacity:1;visibility:visible}
.search-overlay__inner{width:100%;max-width:960px;padding:0 2rem}
.search-overlay__input-wrap{position:relative;margin-bottom:0}
.search-overlay__input{width:100%;padding:1.25rem 3.5rem 1.25rem 3.5rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-lg);color:var(--text-primary);font-size:1.15rem;transition:all var(--transition-fast)}
.search-overlay__input:focus{border-color:var(--gold);box-shadow:0 0 0 4px rgba(181,138,69,.15)}
.search-overlay__icon{position:absolute;left:1.25rem;top:50%;transform:translateY(-50%);color:var(--text-secondary);font-size:1.1rem;pointer-events:none}
.search-overlay__close{position:absolute;top:1rem;right:1rem;width:44px;height:44px;display:flex;align-items:center;justify-content:center;color:var(--text-secondary);border-radius:50%;transition:all var(--transition-fast);cursor:pointer;background:none;border:none;z-index:2}
.search-overlay__close:hover{color:var(--text-primary);background:var(--bg-stone)}
.search-overlay__suggestions{margin-bottom:1.5rem}
.search-overlay__suggestions-title{font-size:.75rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.1em;margin-bottom:.75rem}
.search-overlay__suggestions-list{display:flex;flex-wrap:wrap;gap:.5rem}
.search-overlay__suggestion{padding:.4rem .75rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-sm);font-size:.8rem;color:var(--text-secondary);cursor:pointer;transition:all var(--transition-fast)}
.search-overlay__suggestion:hover{border-color:var(--gold);color:var(--gold)}
.search-overlay__recent{margin-top:1.5rem}
.search-overlay__recent-title{font-size:.75rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.1em;margin-bottom:.75rem;display:flex;align-items:center;justify-content:space-between}
.search-overlay__recent-clear{font-size:.7rem;color:var(--text-secondary);cursor:pointer;transition:color var(--transition-fast)}
.search-overlay__recent-clear:hover{color:var(--crimson)}

.search-overlay__results{display:none;margin-top:1rem;max-height:60vh;overflow-y:auto;border-top:1px solid var(--border);padding-top:1rem;animation:searchResultsIn .25s ease}
.search-overlay__results.active{display:block}
.search-overlay__results::-webkit-scrollbar{width:6px}
.search-overlay__results::-webkit-scrollbar-track{background:var(--bg-dark)}
.search-overlay__results::-webkit-scrollbar-thumb{background:var(--gold-dark);border-radius:3px}
.search-overlay__results::-webkit-scrollbar-thumb:hover{background:var(--gold)}

.search-results__list{display:flex;flex-direction:column;gap:0}
.search-result{display:flex;align-items:center;gap:1.25rem;padding:1rem 1.25rem;border-radius:var(--radius-md);text-decoration:none;transition:all .2s ease;border:1px solid transparent;position:relative}
.search-result:hover{background:rgba(181,138,69,.06);border-color:rgba(181,138,69,.15)}
.search-result::after{content:'';position:absolute;bottom:0;left:1.25rem;right:1.25rem;height:1px;background:linear-gradient(90deg,transparent,var(--border),transparent)}

.search-result__img{width:110px;height:110px;border-radius:var(--radius-md);overflow:hidden;background:var(--bg-stone);flex-shrink:0;border:1px solid var(--border)}
.search-result__img img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}
.search-result:hover .search-result__img img{transform:scale(1.08)}

.search-result__info{flex:1;min-width:0}
.search-result__name{font-family:var(--font-heading);font-size:1.2rem;font-weight:700;color:var(--text-primary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:1.3}
.search-result:hover .search-result__name{color:var(--gold)}
.search-result__category{font-size:.8rem;color:var(--text-secondary);margin-top:4px;text-transform:uppercase;letter-spacing:.06em}

.search-result__prices{display:flex;align-items:center;gap:.7rem;flex-shrink:0}
.search-result__price{font-family:var(--font-heading);font-size:1.15rem;font-weight:700;white-space:nowrap}
.search-result__price--free{color:#4a8a4a;text-transform:uppercase;font-size:.8rem;letter-spacing:.08em;padding:.2rem .7rem;background:rgba(74,138,74,.12);border-radius:var(--radius-sm);border:1px solid rgba(74,138,74,.25)}
.search-result__price--original{color:var(--text-secondary);text-decoration:line-through;font-size:.85rem;font-weight:400}
.search-result__price--sale{color:#d4a44a;font-size:1.2rem}
.search-result__badge{font-size:.75rem;font-weight:700;color:#fff;background:linear-gradient(135deg,#8b2020,#a83232);padding:.18rem .55rem;border-radius:var(--radius-sm);letter-spacing:.02em}

.search-results__empty{text-align:center;padding:3rem 1rem;color:var(--text-secondary)}
.search-results__empty i{font-size:2rem;color:var(--gold-dark);margin-bottom:.75rem;display:block;opacity:.5}
.search-results__empty p{font-size:.9rem;margin:0}

.search-results__viewall{display:flex;align-items:center;justify-content:center;gap:.5rem;margin-top:1rem;padding:.85rem 1.25rem;border:1px solid var(--border);border-radius:var(--radius-md);color:var(--gold);font-family:var(--font-heading);font-size:.85rem;text-decoration:none;transition:all .2s ease;text-transform:uppercase;letter-spacing:.06em}
.search-results__viewall:hover{background:rgba(181,138,69,.08);border-color:var(--gold-dark)}

.product-quickview{position:fixed;inset:0;background:rgba(0,0,0,.7);z-index:2500;display:flex;align-items:center;justify-content:center;padding:2rem;opacity:0;visibility:hidden;transition:all var(--transition-med)}
.product-quickview--active{opacity:1;visibility:visible}
.product-quickview__card{background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-lg);max-width:900px;width:100%;max-height:90vh;overflow-y:auto;display:grid;grid-template-columns:1fr 1fr;transform:translateY(20px);transition:transform var(--transition-med)}
.product-quickview--active .product-quickview__card{transform:translateY(0)}
.product-quickview__close{position:absolute;top:1rem;right:1rem;width:36px;height:36px;display:flex;align-items:center;justify-content:center;color:var(--text-secondary);border-radius:50%;transition:all var(--transition-fast);cursor:pointer;background:none;border:none;z-index:2}
.product-quickview__close:hover{color:var(--text-primary);background:var(--bg-stone)}
.product-quickview__gallery{position:relative;background:var(--bg-stone)}
.product-quickview__gallery img{width:100%;height:100%;object-fit:cover}
.product-quickview__details{padding:2rem;display:flex;flex-direction:column}
.product-quickview__category{font-size:.75rem;color:var(--gold);text-transform:uppercase;letter-spacing:.1em;margin-bottom:.5rem}
.product-quickview__title{font-family:var(--font-decorative);font-size:1.35rem;color:var(--text-primary);margin-bottom:.75rem;line-height:1.25}
.product-quickview__rating{display:flex;align-items:center;gap:.5rem;margin-bottom:1rem}
.product-quickview__price{display:flex;align-items:baseline;gap:.75rem;margin-bottom:1rem;padding-bottom:1rem;border-bottom:1px solid var(--border)}
.product-quickview__price-current{font-family:var(--font-heading);font-size:1.5rem;color:var(--gold-bright);font-weight:700}
.product-quickview__price-original{font-size:.9rem;color:var(--text-secondary);text-decoration:line-through}
.product-quickview__desc{font-size:.85rem;color:var(--text-secondary);line-height:1.7;margin-bottom:1.5rem;flex:1}
.product-quickview__actions{display:flex;gap:.75rem}
.product-quickview__actions .btn{flex:1}

.page-breadcrumb{padding:.75rem 0;border-bottom:1px solid var(--border)}
.page-breadcrumb .container{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem;display:flex;align-items:center;gap:.5rem;font-size:.8rem}
.page-breadcrumb__item{color:var(--text-secondary)}
.page-breadcrumb__item a{color:var(--text-secondary);transition:color var(--transition-fast)}
.page-breadcrumb__item a:hover{color:var(--gold)}
.page-breadcrumb__item--active{color:var(--text-primary);font-weight:500}
.page-breadcrumb__sep{color:var(--text-secondary);opacity:.4;font-size:.6rem}

.feature-ribbon{position:relative;padding:4rem 0;background:var(--bg-secondary);overflow:hidden}
.feature-ribbon::before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,var(--bg-primary),transparent 10%,transparent 90%,var(--bg-primary));z-index:1}
.feature-ribbon__inner{position:relative;z-index:2;display:flex;gap:3rem;animation:scroll 30s linear infinite}
.feature-ribbon__item{flex-shrink:0;display:flex;align-items:center;gap:1rem;padding:1rem 2rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md)}
.feature-ribbon__icon{font-size:1.5rem;color:var(--gold)}
.feature-ribbon__text{font-family:var(--font-heading);font-size:.85rem;color:var(--text-secondary);white-space:nowrap}

@keyframes scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

.product-compare{position:fixed;bottom:0;left:0;right:0;background:var(--bg-panel);border-top:1px solid var(--border);padding:1rem 1.5rem;z-index:800;transform:translateY(100%);transition:transform var(--transition-med);box-shadow:0 -4px 20px rgba(0,0,0,.4)}
.product-compare--visible{transform:translateY(0)}
.product-compare .container{max-width:var(--max-width);margin:0 auto;display:flex;align-items:center;justify-content:space-between}
.product-compare__items{display:flex;gap:1rem;overflow-x:auto;flex:1;padding-right:1rem}
.product-compare__item{display:flex;align-items:center;gap:.75rem;padding:.5rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-sm);min-width:200px;flex-shrink:0}
.product-compare__item-img{width:40px;height:40px;border-radius:var(--radius-sm);overflow:hidden;background:var(--bg-primary);flex-shrink:0}
.product-compare__item-img img{width:100%;height:100%;object-fit:cover}
.product-compare__item-name{font-size:.8rem;color:var(--text-primary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.product-compare__item-remove{color:var(--text-secondary);font-size:.75rem;cursor:pointer;transition:color var(--transition-fast);flex-shrink:0;background:none;border:none;padding:.25rem}
.product-compare__item-remove:hover{color:var(--crimson)}
.product-compare__actions{display:flex;gap:.75rem;flex-shrink:0}

.back-link{display:inline-flex;align-items:center;gap:.35rem;font-size:.85rem;color:var(--text-secondary);transition:color var(--transition-fast);margin-bottom:1.5rem}
.back-link:hover{color:var(--gold)}
.back-link i{transition:transform var(--transition-fast)}
.back-link:hover i{transform:translateX(-3px)}

.page-meta{margin-bottom:2rem}
.page-meta__title{font-family:var(--font-decorative);font-size:2rem;color:var(--text-primary);margin-bottom:.5rem}
.page-meta__desc{font-size:.95rem;color:var(--text-secondary);max-width:600px;line-height:1.7}
.page-meta__actions{display:flex;gap:.75rem;margin-top:1rem}

.result-count{font-size:.85rem;color:var(--text-secondary);margin-bottom:1.5rem}
.result-count strong{color:var(--text-primary);font-weight:600}

.filter-chips{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.5rem}
.filter-chip{display:flex;align-items:center;gap:.35rem;padding:.35rem .75rem;background:rgba(181,138,69,.08);border:1px solid rgba(181,138,69,.2);border-radius:20px;font-size:.75rem;color:var(--gold)}
.filter-chip__remove{cursor:pointer;opacity:.6;transition:opacity var(--transition-fast);margin-left:.15rem}
.filter-chip__remove:hover{opacity:1}
.filter-chips__clear{font-size:.75rem;color:var(--text-secondary);background:none;border:none;cursor:pointer;transition:color var(--transition-fast)}
.filter-chips__clear:hover{color:var(--crimson)}

.content-section{padding:3rem 0}
.content-section .container{max-width:900px;margin:0 auto;padding:0 1.5rem}
.content-section__title{font-family:var(--font-decorative);font-size:1.75rem;color:var(--text-primary);margin-bottom:1.5rem}
.content-section__body{font-size:.95rem;color:var(--text-secondary);line-height:1.8}
.content-section__body h3{font-size:1.25rem;color:var(--text-primary);margin:2rem 0 1rem}
.content-section__body p{margin-bottom:1rem}
.content-section__body ul,.content-section__body ol{margin-bottom:1rem;padding-left:1.5rem}
.content-section__body li{margin-bottom:.5rem;color:var(--text-secondary)}
.content-section__body a{color:var(--gold);text-decoration:underline;text-underline-offset:2px}
.content-section__body a:hover{color:var(--gold-bright)}
.content-section__body blockquote{padding:1.25rem 1.5rem;background:var(--bg-stone);border-left:3px solid var(--gold);border-radius:0 var(--radius-sm) var(--radius-sm) 0;margin:1.5rem 0;font-style:italic}
.content-section__body code{background:var(--bg-stone);padding:.15rem .4rem;border-radius:3px;font-size:.85em;color:var(--gold-bright)}
.content-section__body pre{background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);padding:1.25rem;overflow-x:auto;margin:1.5rem 0}
.content-section__body pre code{background:none;padding:0;color:var(--text-primary)}
.content-section__body img{border-radius:var(--radius-md);margin:1.5rem 0;width:100%}

.faq-item{border-bottom:1px solid var(--border)}
.faq-item__question{display:flex;align-items:center;justify-content:space-between;width:100%;padding:1.25rem 0;font-family:var(--font-heading);font-size:.95rem;color:var(--text-primary);cursor:pointer;text-align:left;background:none;border:none;transition:color var(--transition-fast)}
.faq-item__question:hover{color:var(--gold)}
.faq-item__icon{color:var(--text-secondary);font-size:.75rem;transition:transform var(--transition-fast);flex-shrink:0;margin-left:1rem}
.faq-item--open .faq-item__icon{transform:rotate(180deg);color:var(--gold)}
.faq-item__answer{max-height:0;overflow:hidden;transition:max-height var(--transition-med)}
.faq-item--open .faq-item__answer{max-height:500px}
.faq-item__answer-inner{padding:0 0 1.25rem;font-size:.9rem;color:var(--text-secondary);line-height:1.7}

.footer__widget{background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);padding:1.25rem;margin-bottom:1.25rem}
.footer__widget-title{font-family:var(--font-heading);font-size:.85rem;color:var(--text-primary);margin-bottom:1rem;display:flex;align-items:center;gap:.5rem}
.footer__widget-title i{color:var(--gold);font-size:.75rem}

.trust-badge{display:flex;align-items:center;gap:.75rem;padding:1rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);text-align:center;flex-direction:column;transition:all var(--transition-fast)}
.trust-badge:hover{border-color:rgba(181,138,69,.3)}
.trust-badge__icon{font-size:1.75rem;color:var(--gold)}
.trust-badge__title{font-family:var(--font-heading);font-size:.85rem;color:var(--text-primary)}
.trust-badge__desc{font-size:.75rem;color:var(--text-secondary);line-height:1.4}

.trust-badges{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}

.product-viewer__skin-selector{position:absolute;bottom:1rem;left:1rem;display:flex;gap:.35rem;z-index:3}
.product-viewer__skin{width:28px;height:28px;border-radius:50%;border:2px solid var(--border);cursor:pointer;transition:all var(--transition-fast)}
.product-viewer__skin:hover{transform:scale(1.1)}
.product-viewer__skin--active{border-color:var(--gold);box-shadow:0 0 0 2px var(--bg-panel)}

.quantity-breaks{margin:1rem 0;padding:1rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md)}
.quantity-breaks__title{font-family:var(--font-heading);font-size:.85rem;color:var(--text-primary);margin-bottom:.75rem;display:flex;align-items:center;gap:.5rem}
.quantity-breaks__title i{color:var(--gold);font-size:.75rem}
.quantity-breaks__list{display:flex;flex-direction:column;gap:.35rem}
.quantity-breaks__item{display:flex;align-items:center;justify-content:space-between;padding:.5rem .75rem;border-radius:var(--radius-sm);font-size:.85rem;transition:background var(--transition-fast)}
.quantity-breaks__item:hover{background:var(--bg-panel)}
.quantity-breaks__item--active{background:rgba(181,138,69,.08);border:1px solid rgba(181,138,69,.2)}
.quantity-breaks__qty{color:var(--text-secondary)}
.quantity-breaks__discount{color:#6fbf73;font-weight:600}
.quantity-breaks__price{color:var(--gold-bright);font-family:var(--font-heading)}

.product-viewer__fullwidth{position:fixed;inset:0;background:var(--bg-primary);z-index:2000;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:all var(--transition-med)}
.product-viewer__fullwidth--active{opacity:1;visibility:visible}
.product-viewer__fullwidth-close{position:absolute;top:1.5rem;right:1.5rem;width:44px;height:44px;display:flex;align-items:center;justify-content:center;color:var(--text-secondary);border-radius:50%;transition:all var(--transition-fast);cursor:pointer;background:none;border:none;z-index:2}
.product-viewer__fullwidth-close:hover{color:var(--text-primary);background:var(--bg-stone)}

.mobile-bottom-bar{display:none;position:fixed;bottom:0;left:0;right:0;background:var(--bg-panel);border-top:1px solid var(--border);padding:.65rem 1rem;z-index:800}
.mobile-bottom-bar__inner{display:flex;align-items:center;justify-content:space-around}
.mobile-bottom-bar__item{display:flex;flex-direction:column;align-items:center;gap:.2rem;color:var(--text-secondary);font-size:.65rem;text-decoration:none}
.mobile-bottom-bar__item:hover{color:var(--gold)}
.mobile-bottom-bar__icon{font-size:1.1rem}
.mobile-bottom-bar__item--active{color:var(--gold)}

@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.5}}
@keyframes shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes fadeInUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeInDown{from{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeInLeft{from{opacity:0;transform:translateX(-20px)}to{opacity:1;transform:translateX(0)}}
@keyframes fadeInRight{from{opacity:0;transform:translateX(20px)}to{opacity:1;transform:translateX(0)}}
@keyframes slideInUp{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}
@keyframes slideInDown{from{transform:translateY(-100%);opacity:0}to{transform:translateY(0);opacity:1}}
@keyframes searchResultsIn{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}
@keyframes scaleIn{from{transform:scale(.9);opacity:0}to{transform:scale(1);opacity:1}}
@keyframes goldGlow{0%,100%{box-shadow:0 0 10px rgba(181,138,69,.2)}50%{box-shadow:0 0 25px rgba(181,138,69,.4)}}
@keyframes candleFlicker{0%,100%{opacity:1;text-shadow:0 0 10px rgba(181,138,69,.5)}25%{opacity:.85;text-shadow:0 0 8px rgba(181,138,69,.4)}50%{opacity:.95;text-shadow:0 0 12px rgba(181,138,69,.6)}75%{opacity:.88;text-shadow:0 0 6px rgba(181,138,69,.35)}}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}
@keyframes borderGlow{0%,100%{border-color:rgba(181,138,69,.2)}50%{border-color:rgba(181,138,69,.5)}}
@keyframes textShimmer{0%{background-position:-200% center}100%{background-position:200% center}}
@keyframes countUp{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
@keyframes flickerIn{0%{opacity:0}10%{opacity:.8}20%{opacity:.2}30%{opacity:.9}40%{opacity:.4}50%{opacity:1}60%{opacity:.7}70%{opacity:1}80%{opacity:.85}100%{opacity:1}}
@keyframes reveal{from{clip-path:inset(0 100% 0 0)}to{clip-path:inset(0 0 0 0)}}
@keyframes glowPulse{0%,100%{filter:drop-shadow(0 0 3px rgba(181,138,69,.3))}50%{filter:drop-shadow(0 0 10px rgba(181,138,69,.6))}}

.animate-fade-in{animation:fadeIn .5s ease forwards}
.animate-fade-in-up{animation:fadeInUp .5s ease forwards}
.animate-fade-in-down{animation:fadeInDown .5s ease forwards}
.animate-fade-in-left{animation:fadeInLeft .5s ease forwards}
.animate-fade-in-right{animation:fadeInRight .5s ease forwards}
.animate-scale-in{animation:scaleIn .4s ease forwards}
.animate-gold-glow{animation:goldGlow 2s ease-in-out infinite}
.animate-candle{animation:candleFlicker 3s ease-in-out infinite}
.animate-float{animation:float 3s ease-in-out infinite}
.animate-flicker{animation:flickerIn .8s ease forwards}
.animate-reveal{animation:reveal .6s ease forwards}
.animate-glow-pulse{animation:glowPulse 2s ease-in-out infinite}

.hover-lift{transition:transform var(--transition-med),box-shadow var(--transition-med)}
.hover-lift:hover{transform:translateY(-4px);box-shadow:var(--shadow-gold)}
.hover-glow{transition:box-shadow var(--transition-med)}
.hover-glow:hover{box-shadow:var(--shadow-gold)}
.hover-border-glow{transition:border-color var(--transition-fast),box-shadow var(--transition-fast)}
.hover-border-glow:hover{border-color:var(--gold);box-shadow:var(--shadow-gold)}
.hover-scale{transition:transform var(--transition-fast)}
.hover-scale:hover{transform:scale(1.03)}
.hover-color-gold{transition:color var(--transition-fast)}
.hover-color-gold:hover{color:var(--gold)}
.hover-bg-stone{transition:background var(--transition-fast)}
.hover-bg-stone:hover{background:var(--bg-stone)}

.text-gold-gradient{background:linear-gradient(135deg,var(--gold),var(--gold-bright));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.text-shimmer{background:linear-gradient(90deg,var(--text-primary) 0%,var(--gold-bright) 50%,var(--text-primary) 100%);background-size:200% auto;-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;animation:textShimmer 3s linear infinite}
.text-candle{animation:candleFlicker 3s ease-in-out infinite}

.page-transition{animation:fadeInUp .4s ease}
.page-slide{animation:fadeIn .35s ease}

.toast-container{position:fixed;top:calc(var(--header-height) + var(--utility-height) + 1rem);right:1.5rem;z-index:3000;display:flex;flex-direction:column;gap:.75rem}
.toast{display:flex;align-items:flex-start;gap:.75rem;padding:1rem 1.25rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);box-shadow:var(--shadow-lg);min-width:280px;max-width:420px;animation:slideInDown .35s ease;transition:all var(--transition-med)}
.toast--success{border-left:3px solid #6fbf73}
.toast--error{border-left:3px solid #e0605a}
.toast--warning{border-left:3px solid var(--gold)}
.toast--info{border-left:3px solid #7eb8e6}
.toast__icon{font-size:1.1rem;margin-top:.1rem;flex-shrink:0}
.toast__content{flex:1}
.toast__title{font-family:var(--font-heading);font-size:.85rem;color:var(--text-primary);margin-bottom:.15rem}
.toast__message{font-size:.8rem;color:var(--text-secondary);line-height:1.5}
.toast__close{background:none;border:none;color:var(--text-secondary);font-size:.9rem;padding:.25rem;cursor:pointer;opacity:.6;transition:opacity var(--transition-fast);flex-shrink:0}
.toast__close:hover{opacity:1}
.toast--exit{opacity:0;transform:translateX(20px)}

.table-responsive{width:100%;overflow-x:auto}
.table-responsive::-webkit-scrollbar{height:6px}
.table-responsive::-webkit-scrollbar-thumb{background:var(--bronze-dark);border-radius:3px}

.image-zoom{position:relative;overflow:hidden;cursor:zoom-in}
.image-zoom img{transition:transform var(--transition-slow)}
.image-zoom:hover img{transform:scale(1.5)}
.image-zoom--lg:hover img{transform:scale(2)}

.file-upload{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2rem;border:2px dashed var(--border);border-radius:var(--radius-md);cursor:pointer;transition:all var(--transition-fast);text-align:center}
.file-upload:hover{border-color:var(--gold);background:rgba(181,138,69,.03)}
.file-upload__icon{font-size:2rem;color:var(--bronze);margin-bottom:.75rem}
.file-upload__text{font-size:.9rem;color:var(--text-secondary);margin-bottom:.25rem}
.file-upload__hint{font-size:.75rem;color:var(--text-secondary);opacity:.7}
.file-upload input[type="file"]{position:absolute;inset:0;opacity:0;cursor:pointer}

.empty-state{text-align:center;padding:4rem 2rem}
.empty-state__icon{font-size:4rem;color:var(--bronze-dark);margin-bottom:1.5rem}
.empty-state__title{font-family:var(--font-heading);font-size:1.5rem;color:var(--text-primary);margin-bottom:.75rem}
.empty-state__desc{color:var(--text-secondary);margin-bottom:2rem;max-width:400px;margin-left:auto;margin-right:auto;line-height:1.7}

.counter{display:inline-flex;align-items:center;gap:.5rem}
.counter__btn{width:32px;height:32px;display:flex;align-items:center;justify-content:center;border:1px solid var(--border);border-radius:var(--radius-sm);color:var(--text-secondary);font-size:.9rem;transition:all var(--transition-fast)}
.counter__btn:hover{border-color:var(--gold);color:var(--gold)}
.counter__value{min-width:40px;text-align:center;font-family:var(--font-heading);font-size:1rem;color:var(--text-primary)}

.mobile-menu-toggle{display:none;width:40px;height:40px;align-items:center;justify-content:center;color:var(--text-primary);font-size:1.25rem;border-radius:var(--radius-sm)}
.mobile-menu-toggle:hover{background:var(--bg-stone)}
.mobile-menu{display:none}

@media(max-width:1200px){
.product-grid,.category-grid{grid-template-columns:repeat(3,1fr)}
.footer__top{grid-template-columns:repeat(3,1fr)}
.footer__top .footer__brand{grid-column:1/-1}
.guild-section .container{flex-direction:column;text-align:center}
.guild-section__content{align-items:center;display:flex;flex-direction:column}
.guild-section__eyebrow{justify-content:center}
.guild-section__features{text-align:left}
.guild-section__visual{flex:none;width:100%}
.guild-emblem{width:280px;height:280px}
}

@media(max-width:992px){
.product-layout{grid-template-columns:1fr;gap:2rem}
.checkout-layout{grid-template-columns:1fr}
.cart-layout{grid-template-columns:1fr}
.account-layout{grid-template-columns:1fr}
.two-col-layout{grid-template-columns:1fr}
.account-sidebar{position:static}
.two-col-layout__sidebar{position:static}
.header-search{max-width:250px;margin:0 1rem}
.hero-info-strip .container{grid-template-columns:repeat(3,1fr)}
.hero-info-strip__item:nth-child(3){border-right:none}
.hero-info-strip__item:nth-child(4),.hero-info-strip__item:nth-child(5),.hero-info-strip__item:nth-child(6){display:none}
.stats-bar .container{grid-template-columns:repeat(2,1fr)}
.stat-item:nth-child(2)::after{display:none}
.footer__top{grid-template-columns:repeat(2,1fr)}
.product-grid--list .product-card{flex-direction:column}
.product-grid--list .product-card__img{width:100%}
.product-tabs__nav{overflow-x:auto;-webkit-overflow-scrolling:touch}
.product-tabs__nav::-webkit-scrollbar{display:none}
.filter-bar{flex-direction:column;align-items:stretch}
.filter-bar__left,.filter-bar__right{justify-content:space-between}
}

@media(max-width:768px){
.frame-side{display:none}
.mobile-bottom-bar{display:block}
body{padding-bottom:60px}
.hero-slider{height:80vh}
.hero-slide--active{height:80vh}
.hero-slide__content{padding:0 1rem}
.hero-slide__video iframe{width:100%;height:80vh}
.hero-slider__arrow{width:40px;height:40px;font-size:1rem}
.hero-slider__arrow--prev{left:10px}
.hero-slider__arrow--next{right:10px}
.hero-slider__dots{bottom:20px}
.hero__desc{font-size:.9rem}
.hero__actions{flex-direction:column}
.hero__actions .nav-btn{width:100%}
.utility-bar__left span:not(:first-child){display:none}
.menu-bar-epic__inner{height:64px}
.menu-bar-epic__inner{padding:0 16px}
.mobile-menu-toggle{display:flex}
.main-nav{display:none;position:fixed;top:calc(64px + var(--utility-height));left:0;right:0;bottom:0;background:var(--bg-panel);z-index:800;flex-direction:column;padding:1rem;overflow-y:auto;border-top:1px solid var(--border)}
.main-nav--open{display:flex}
.main-nav__list{flex-direction:column;width:100%}
.main-nav__item{width:100%}
.main-nav__link{padding:1rem;border-bottom:1px solid var(--border);width:100%}
.main-nav__link::after{display:none}
.main-nav__dropdown{position:static;transform:none;opacity:1;visibility:visible;box-shadow:none;border:none;border-radius:0;background:var(--bg-stone);min-width:0;padding:.5rem 0 .5rem 1.5rem;display:none}
.main-nav__item:hover .main-nav__dropdown,.main-nav__dropdown--open{display:block}
.header-search{display:none}
.header-actions{gap:.5rem}
.hero{min-height:60vh}
.hero__desc{font-size:.95rem}
.hero-info-strip .container{grid-template-columns:repeat(2,1fr)}
.hero-info-strip__item:nth-child(3),.hero-info-strip__item:nth-child(4),.hero-info-strip__item:nth-child(5),.hero-info-strip__item:nth-child(6){display:none}
.hero-info-strip__item:nth-child(2){border-right:none}
.banners-grid{grid-template-columns:repeat(2,1fr);gap:12px}
.product-grid,.category-grid{grid-template-columns:repeat(2,1fr)}
.showcase{grid-template-columns:1fr}
.benefits-grid{grid-template-columns:1fr}
.trust-badges{grid-template-columns:repeat(2,1fr)}
.category-page__grid{grid-template-columns:repeat(2,1fr)}
.featured-product{grid-template-columns:1fr}
.product-quickview__card{grid-template-columns:1fr}
.product-compare{display:none}
.new-models-grid{grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:16px}
.premium-card{width:100%}
.section{padding:3rem 0}
.section__title{font-size:1.75rem}
.stats-bar .container{grid-template-columns:repeat(2,1fr);gap:1.5rem}
.stat-item{padding:0 .5rem}
.stat-item__number{font-size:1.75rem}
.newsletter__form{flex-direction:column}
.footer__top{grid-template-columns:1fr}
.footer__bottom{flex-direction:column;gap:1rem;text-align:center}
.cart-layout{grid-template-columns:1fr}
.checkout-layout{grid-template-columns:1fr}
.order-detail__layout{grid-template-columns:1fr}
.cart-item{grid-template-columns:auto 1fr auto auto;gap:1rem}
.cart-item__qty{grid-column:3}
.cart-item__price{grid-column:4}
.cart-item__remove-form{grid-column:5}
.promo-banner__content{flex-direction:column;text-align:center}
.promo-banner__code{margin:0 auto}
.product-info__actions{flex-direction:column}
.product-info__actions .btn{width:100%}
.auth-card{padding:1.75rem}
.account-card__grid{grid-template-columns:repeat(2,1fr)}
.toast-container{left:1rem;right:1rem}
.toast{min-width:auto;max-width:100%}
.filter-bar__view{display:none}
.category-page__header-content{padding:2rem}
}

@media(min-width:769px){
.frame-side ~ .main-content .section,
.frame-side ~ * .main-content .section{padding-left:calc(32px + 1rem);padding-right:calc(32px + 1rem)}
.main-content{padding:0 32px}
}

@media(max-width:480px){
h1{font-size:1.75rem}
h2{font-size:1.5rem}
h3{font-size:1.25rem}
.hero{min-height:50vh}
.hero__subtitle{font-size:.75rem;letter-spacing:.15em}
.hero__actions{flex-direction:column}
.hero__actions .nav-btn{width:100%}
.hero-info-strip__item{padding:1rem .5rem}
.hero-info-strip__icon{font-size:1.25rem}
.hero-info-strip__text{font-size:.65rem}
.banners-grid{grid-template-columns:repeat(2,1fr);gap:8px}
.banner-card{min-height:120px}
.banner-card__title{font-size:.9rem}
.product-grid,.category-grid{grid-template-columns:1fr}
.category-card{aspect-ratio:16/9}
.section{padding:2.5rem 0}
.section__title{font-size:1.5rem}
.section__eyebrow{font-size:.65rem}
.cart-item{grid-template-columns:1fr;text-align:center;gap:.75rem}
.cart-item__img{width:100%;height:120px;margin:0 auto}
.cart-item__qty{justify-content:center;grid-column:1}
.cart-item__price{justify-content:center;grid-column:1}
.cart-item__remove-form{justify-content:center;grid-column:1}
.cart-summary{position:static}
.new-models-grid{grid-template-columns:1fr;gap:12px}
.premium-card__specs{grid-template-columns:repeat(2,1fr);gap:8px}
.premium-card__spec:nth-child(2)::after{display:none}
.stats-bar .container{grid-template-columns:1fr 1fr}
.stat-item::after{display:none}
.stat-item__number{font-size:1.5rem}
.stat-item__label{font-size:.7rem}
.category-page__grid{grid-template-columns:1fr}
.trust-badges{grid-template-columns:1fr}
.mobile-bottom-bar__item{font-size:.6rem}
.mobile-bottom-bar__icon{font-size:1rem}
.account-addresses{grid-template-columns:1fr}
.form-grid{grid-template-columns:1fr}
.gallery{grid-template-columns:1fr 1fr}
.gallery__item--tall{grid-row:span 1}
.coming-soon__countdown{flex-wrap:wrap}
.coming-soon__countdown-block{min-width:60px;padding:.75rem 1rem}
.coming-soon__countdown-number{font-size:1.5rem}
.coming-soon__form{flex-direction:column}
.auth-card{padding:1.25rem}
.auth-card__title{font-size:1.25rem}
.account-card__grid{grid-template-columns:1fr}
.page-header__title{font-size:1.5rem}
.btn--lg{padding:.75rem 1.75rem;font-size:.85rem}
.filter-bar__sort select{font-size:.8rem}
}

@media(max-width:360px){
.product-card__footer{flex-direction:column;align-items:flex-start;gap:.5rem}
.product-card__add-btn{align-self:flex-end}
.cart-item__info{text-align:center}
}

.product-sidebar-widget{background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);padding:1.25rem;margin-bottom:1.25rem}
.product-sidebar-widget__title{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary);margin-bottom:1rem;padding-bottom:.65rem;border-bottom:1px solid var(--border)}
.product-sidebar-widget__list{display:flex;flex-direction:column;gap:.75rem}
.product-sidebar-widget__item{display:flex;align-items:center;gap:.75rem;padding:.5rem;border-radius:var(--radius-sm);transition:background var(--transition-fast);cursor:pointer}
.product-sidebar-widget__item:hover{background:var(--bg-stone)}
.product-sidebar-widget__item-img{width:48px;height:48px;border-radius:var(--radius-sm);overflow:hidden;background:var(--bg-stone);flex-shrink:0}
.product-sidebar-widget__item-img img{width:100%;height:100%;object-fit:cover}
.product-sidebar-widget__item-name{font-size:.85rem;color:var(--text-primary);margin-bottom:.15rem}
.product-sidebar-widget__item-price{font-size:.8rem;color:var(--gold-bright);font-family:var(--font-heading)}
.product-sidebar-widget__item-rating{display:flex;gap:1px;color:var(--gold);font-size:.6rem;margin-top:.15rem}

.product-sidebar-banner{position:relative;border-radius:var(--radius-md);overflow:hidden;padding:2rem;text-align:center;margin-bottom:1.25rem}
.product-sidebar-banner__bg{position:absolute;inset:0;background:linear-gradient(135deg,var(--bronze-dark),var(--crimson-dark));opacity:.6}
.product-sidebar-banner::before{content:'';position:absolute;inset:0;border:1px solid var(--border);border-radius:var(--radius-md);z-index:1}
.product-sidebar-banner__content{position:relative;z-index:2}
.product-sidebar-banner__icon{font-size:2rem;color:var(--gold);margin-bottom:.75rem}
.product-sidebar-banner__title{font-family:var(--font-heading);font-size:1rem;color:var(--text-primary);margin-bottom:.5rem}
.product-sidebar-banner__desc{font-size:.8rem;color:var(--text-secondary);margin-bottom:1rem;line-height:1.5}

.review-card__helpful-count{font-size:.75rem;color:var(--text-secondary)}
.review-card__helpful-yes{display:inline-flex;align-items:center;gap:.25rem}
.review-card__helpful-no{display:inline-flex;align-items:center;gap:.25rem;margin-left:.75rem}

.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:.75rem}
.gallery__item{aspect-ratio:1;border-radius:var(--radius-md);overflow:hidden;cursor:pointer;position:relative}
.gallery__item img{width:100%;height:100%;object-fit:cover;transition:transform var(--transition-slow)}
.gallery__item:hover img{transform:scale(1.1)}
.gallery__item::after{content:'';position:absolute;inset:0;background:rgba(8,7,6,0);transition:background var(--transition-fast)}
.gallery__item:hover::after{background:rgba(8,7,6,.3)}
.gallery__item--wide{grid-column:span 2}
.gallery__item--tall{grid-row:span 2}

.testimonial{text-align:center;padding:2rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md)}
.testimonial__stars{display:flex;gap:2px;color:var(--gold);font-size:.85rem;justify-content:center;margin-bottom:1rem}
.testimonial__quote{font-size:1rem;color:var(--text-secondary);line-height:1.7;font-style:italic;margin-bottom:1.5rem;position:relative;padding:0 1rem}
.testimonial__quote::before{content:'\201C';font-size:3rem;color:var(--gold);opacity:.3;position:absolute;top:-.5rem;left:0;font-family:Georgia,serif}
.testimonial__author{display:flex;align-items:center;justify-content:center;gap:.75rem}
.testimonial__avatar{width:44px;height:44px;border-radius:50%;background:var(--bronze-dark);display:flex;align-items:center;justify-content:center;color:var(--gold);font-family:var(--font-heading);font-weight:600;font-size:.85rem}
.testimonial__author-name{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary)}
.testimonial__author-title{font-size:.75rem;color:var(--text-secondary)}

.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}

.page-error{min-height:60vh;display:flex;align-items:center;justify-content:center;padding:3rem 1.5rem;text-align:center}
.page-error__code{font-family:var(--font-decorative);font-size:6rem;color:var(--gold);opacity:.3;line-height:1;margin-bottom:1rem}
.page-error__title{font-family:var(--font-decorative);font-size:2rem;color:var(--text-primary);margin-bottom:.75rem}
.page-error__desc{font-size:1rem;color:var(--text-secondary);margin-bottom:2rem;max-width:400px;margin-left:auto;margin-right:auto;line-height:1.7}
.page-error__actions{display:flex;gap:1rem;justify-content:center}

.coming-soon{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:3rem 1.5rem;text-align:center;background:var(--bg-secondary)}
.coming-soon__content{max-width:500px}
.coming-soon__emblem{font-size:4rem;color:var(--gold);margin-bottom:2rem;animation:float 3s ease-in-out infinite}
.coming-soon__title{font-family:var(--font-decorative);font-size:2.5rem;color:var(--text-primary);margin-bottom:1rem}
.coming-soon__desc{font-size:1rem;color:var(--text-secondary);line-height:1.7;margin-bottom:2rem}
.coming-soon__countdown{display:flex;justify-content:center;gap:1rem;margin-bottom:2.5rem}
.coming-soon__countdown-block{display:flex;flex-direction:column;align-items:center;padding:1rem 1.5rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);min-width:80px}
.coming-soon__countdown-number{font-family:var(--font-decorative);font-size:2rem;color:var(--gold);font-weight:700;line-height:1}
.coming-soon__countdown-label{font-size:.7rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.08em;margin-top:.35rem}
.coming-soon__form{display:flex;gap:.75rem;max-width:420px;margin:0 auto}
.coming-soon__form input{flex:1;padding:.85rem 1.25rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);color:var(--text-primary);font-size:.9rem}
.coming-soon__form input:focus{border-color:var(--gold)}
.coming-soon__form .btn{flex-shrink:0}

.notification-preferences{display:flex;flex-direction:column;gap:1rem}
.notification-preference{display:flex;align-items:center;justify-content:space-between;padding:1rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md)}
.notification-preference__info{display:flex;flex-direction:column;gap:.15rem}
.notification-preference__title{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary)}
.notification-preference__desc{font-size:.8rem;color:var(--text-secondary)}

.compare-table{width:100%;border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden}
.compare-table th{padding:1rem;background:var(--bg-stone);font-family:var(--font-heading);font-size:.8rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.06em;text-align:left;border-bottom:1px solid var(--border);position:sticky;top:0}
.compare-table td{padding:.85rem 1rem;font-size:.85rem;color:var(--text-primary);border-bottom:1px solid var(--border);text-align:center;vertical-align:middle}
.compare-table td:first-child{text-align:left;color:var(--text-secondary);background:var(--bg-stone);font-weight:500}
.compare-table tr:last-child td{border-bottom:none}
.compare-table__check{color:#6fbf73}
.compare-table__cross{color:#e0605a}
.compare-table__product{text-align:center;padding:1.5rem 1rem}
.compare-table__product-img{width:80px;height:80px;border-radius:var(--radius-md);overflow:hidden;background:var(--bg-stone);margin:0 auto .75rem}
.compare-table__product-img img{width:100%;height:100%;object-fit:cover}
.compare-table__product-name{font-family:var(--font-heading);font-size:.85rem;color:var(--text-primary);margin-bottom:.25rem}
.compare-table__product-price{font-family:var(--font-heading);font-size:1rem;color:var(--gold-bright)}
.compare-table__product-remove{font-size:.75rem;color:var(--text-secondary);background:none;border:none;cursor:pointer;margin-top:.5rem;transition:color var(--transition-fast)}
.compare-table__product-remove:hover{color:var(--crimson)}

.notification-badge{display:inline-flex;align-items:center;justify-content:center;min-width:18px;height:18px;padding:0 5px;background:var(--crimson);color:#fff;font-size:.6rem;font-weight:700;border-radius:9px}
.notification-badge--gold{background:var(--gold)}
.notification-badge--sm{min-width:14px;height:14px;font-size:.5rem;padding:0 3px}
.notification-badge--lg{min-width:22px;height:22px;font-size:.7rem;padding:0 6px}

.user-badge{display:inline-flex;align-items:center;gap:.3rem;padding:.2rem .5rem;border-radius:var(--radius-sm);font-size:.65rem;font-weight:600;text-transform:uppercase;letter-spacing:.06em}
.user-badge--admin{background:rgba(111,33,27,.15);color:#e0605a;border:1px solid rgba(111,33,27,.3)}
.user-badge--moderator{background:rgba(100,149,237,.1);color:#7eb8e6;border:1px solid rgba(100,149,237,.3)}
.user-badge--verified{background:rgba(34,139,34,.1);color:#6fbf73;border:1px solid rgba(34,139,34,.3)}
.user-badge--premium{background:rgba(181,138,69,.1);color:var(--gold);border:1px solid rgba(181,138,69,.3)}
.user-badge--creator{background:rgba(181,138,69,.1);color:var(--gold-bright);border:1px solid rgba(214,181,106,.3)}

.sidebar-mobile-overlay{position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:1000;opacity:0;visibility:hidden;transition:all var(--transition-med)}
.sidebar-mobile-overlay--active{opacity:1;visibility:visible}
.sidebar-mobile{position:fixed;top:0;left:0;bottom:0;width:300px;background:var(--bg-panel);border-right:1px solid var(--border);z-index:1001;transform:translateX(-100%);transition:transform var(--transition-med);overflow-y:auto}
.sidebar-mobile--open{transform:translateX(0)}
.sidebar-mobile__header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;border-bottom:1px solid var(--border)}
.sidebar-mobile__title{font-family:var(--font-heading);font-size:1rem;color:var(--text-primary)}
.sidebar-mobile__close{width:32px;height:32px;display:flex;align-items:center;justify-content:center;color:var(--text-secondary);border-radius:50%;transition:all var(--transition-fast);cursor:pointer;background:none;border:none}
.sidebar-mobile__close:hover{color:var(--text-primary);background:var(--bg-stone)}
.sidebar-mobile__body{padding:1rem 1.25rem}
.sidebar-mobile__footer{padding:1rem 1.25rem;border-top:1px solid var(--border);display:flex;gap:.75rem}

.table-product{display:flex;align-items:center;gap:.75rem}
.table-product__img{width:48px;height:48px;border-radius:var(--radius-sm);overflow:hidden;background:var(--bg-stone);flex-shrink:0}
.table-product__img img{width:100%;height:100%;object-fit:cover}
.table-product__name{font-family:var(--font-heading);font-size:.85rem;color:var(--text-primary)}
.table-product__sku{font-size:.7rem;color:var(--text-secondary)}

.pricing-toggle{display:flex;align-items:center;justify-content:center;gap:1rem;margin-bottom:2rem}
.pricing-toggle__label{font-size:.9rem;color:var(--text-secondary)}
.pricing-toggle__label--active{color:var(--text-primary);font-weight:600}
.pricing-toggle__switch{width:48px;height:26px;background:var(--bg-stone);border:1px solid var(--border);border-radius:13px;position:relative;cursor:pointer;transition:all var(--transition-fast)}
.pricing-toggle__switch--active{background:rgba(181,138,69,.2);border-color:var(--gold)}
.pricing-toggle__switch::before{content:'';position:absolute;width:20px;height:20px;background:var(--text-secondary);border-radius:50%;left:2px;top:2px;transition:all var(--transition-fast)}
.pricing-toggle__switch--active::before{transform:translateX(22px);background:var(--gold)}
.pricing-toggle__badge{font-size:.7rem;color:var(--gold);background:rgba(181,138,69,.1);padding:.2rem .5rem;border-radius:var(--radius-sm);font-weight:600}

@media(max-width:992px){
.blog-preview{grid-template-columns:repeat(2,1fr)}
.testimonials-grid{grid-template-columns:1fr}
.gallery{grid-template-columns:repeat(3,1fr)}
}

@media(max-width:768px){
.blog-preview{grid-template-columns:1fr}
.gallery{grid-template-columns:repeat(2,1fr)}
.gallery__item--wide{grid-column:span 1}
.compare-table{font-size:.8rem}
.compare-table th,.compare-table td{padding:.65rem .75rem}
.mobile-bottom-bar{display:block}
body{padding-bottom:60px}
.showcase{grid-template-columns:1fr}
.benefits-grid{grid-template-columns:1fr}
.trust-badges{grid-template-columns:repeat(2,1fr)}
.category-page__grid{grid-template-columns:repeat(2,1fr)}
.featured-product{grid-template-columns:1fr}
.product-quickview__card{grid-template-columns:1fr}
.product-compare{display:none}
}

@media print{
.utility-bar,.main-header,.main-footer,.mf-footer,.back-to-top,.hero-info-strip,.banners-strip,.newsletter,.stats-bar,.guild-section{display:none!important}
body{background:#fff;color:#000}
.hero{min-height:auto;padding:2rem 0}
.product-card,.category-card{break-inside:avoid}
}

.product-image-360{position:relative;aspect-ratio:1;background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;cursor:grab}
.product-image-360:active{cursor:grabbing}
.product-image-360__hint{position:absolute;bottom:1rem;left:50%;transform:translateX(-50%);display:flex;align-items:center;gap:.5rem;padding:.5rem 1rem;background:rgba(8,7,6,.8);border-radius:var(--radius-md);font-size:.75rem;color:var(--text-secondary);backdrop-filter:blur(4px);z-index:2;pointer-events:none}
.product-image-360__hint i{color:var(--gold);font-size:.85rem}
.product-image-360__spinner{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;z-index:1}
.product-image-360__frame{width:100%;height:100%;object-fit:contain}

.product-model-info{padding:1.5rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);margin-top:1rem}
.product-model-info__title{font-family:var(--font-heading);font-size:1rem;color:var(--text-primary);margin-bottom:1rem;display:flex;align-items:center;gap:.5rem}
.product-model-info__title i{color:var(--gold)}
.product-model-info__grid{display:grid;grid-template-columns:1fr 1fr;gap:.5rem}
.product-model-info__item{display:flex;justify-content:space-between;padding:.5rem;font-size:.85rem}
.product-model-info__label{color:var(--text-secondary)}
.product-model-info__value{color:var(--text-primary);font-weight:500;text-align:right}
.product-model-info__tags{display:flex;flex-wrap:wrap;gap:.35rem;margin-top:1rem;padding-top:1rem;border-top:1px solid var(--border)}
.product-model-info__tag{padding:.2rem .5rem;background:var(--bg-panel);border:1px solid var(--border);border-radius:2px;font-size:.7rem;color:var(--text-secondary)}

.product-license{margin-top:1rem}
.product-license__title{font-family:var(--font-heading);font-size:1rem;color:var(--text-primary);margin-bottom:1rem}
.product-license__options{display:flex;flex-direction:column;gap:.5rem}
.product-license__option{display:flex;align-items:center;gap:1rem;padding:1rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);cursor:pointer;transition:all var(--transition-fast)}
.product-license__option:hover{border-color:rgba(181,138,69,.3)}
.product-license__option--selected{border-color:var(--gold);background:rgba(181,138,69,.05)}
.product-license__radio{width:18px;height:18px;border:2px solid var(--border);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all var(--transition-fast)}
.product-license__option--selected .product-license__radio{border-color:var(--gold)}
.product-license__option--selected .product-license__radio::after{content:'';width:8px;height:8px;background:var(--gold);border-radius:50%}
.product-license__info{flex:1}
.product-license__name{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary);margin-bottom:.15rem}
.product-license__desc{font-size:.75rem;color:var(--text-secondary);line-height:1.5}
.product-license__price{font-family:var(--font-heading);font-size:1rem;color:var(--gold-bright);font-weight:600;flex-shrink:0}
.product-license__badge{font-size:.6rem;padding:.15rem .4rem;border-radius:2px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;margin-left:.5rem}
.product-license__badge--popular{background:rgba(181,138,69,.15);color:var(--gold)}
.product-license__badge--best{background:rgba(34,139,34,.15);color:#6fbf73}

.product-compatibility{margin-top:1rem;padding:1rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md)}
.product-compatibility__title{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary);margin-bottom:.75rem;display:flex;align-items:center;gap:.5rem}
.product-compatibility__title i{color:var(--gold);font-size:.8rem}
.product-compatibility__list{display:flex;flex-direction:column;gap:.4rem}
.product-compatibility__item{display:flex;align-items:center;gap:.5rem;font-size:.8rem;color:var(--text-secondary)}
.product-compatibility__item i{font-size:.65rem}
.product-compatibility__item--yes i{color:#6fbf73}
.product-compatibility__item--no i{color:#e0605a}
.product-compatibility__item--partial i{color:var(--gold)}

.product-changelog{margin-top:1rem}
.product-changelog__title{font-family:var(--font-heading);font-size:1rem;color:var(--text-primary);margin-bottom:1rem}
.product-changelog__list{display:flex;flex-direction:column;gap:1rem}
.product-changelog__item{padding:1rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);border-left:3px solid var(--gold)}
.product-changelog__version{font-family:var(--font-heading);font-size:.85rem;color:var(--gold);margin-bottom:.25rem}
.product-changelog__date{font-size:.7rem;color:var(--text-secondary);margin-bottom:.5rem}
.product-changelog__changes{font-size:.8rem;color:var(--text-secondary);line-height:1.6}
.product-changelog__changes li{margin-bottom:.25rem}
.product-changelog__changes li::marker{color:var(--gold)}

@media(max-width:992px){
.product-license__options{flex-direction:column}
.product-model-info__grid{grid-template-columns:1fr}
}

.product-print{padding:3rem 0}
.product-print .container{max-width:800px;margin:0 auto;padding:0 1.5rem}
.product-print__header{text-align:center;margin-bottom:2rem;padding-bottom:2rem;border-bottom:2px solid var(--border)}
.product-print__logo{margin-bottom:1rem}
.product-print__title{font-family:var(--font-decorative);font-size:1.5rem;color:var(--text-primary);margin-bottom:.5rem}
.product-print__date{font-size:.85rem;color:var(--text-secondary)}
.product-print__section{margin-bottom:2rem}
.product-print__section-title{font-family:var(--font-heading);font-size:1.1rem;color:var(--text-primary);margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--border)}
.product-print__row{display:flex;gap:1rem;margin-bottom:.5rem;font-size:.9rem}
.product-print__label{width:160px;color:var(--text-secondary);flex-shrink:0}
.product-print__value{color:var(--text-primary)}
.product-print__footer{margin-top:3rem;padding-top:1.5rem;border-top:2px solid var(--border);text-align:center;font-size:.8rem;color:var(--text-secondary)}

.product-digital-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.35rem .75rem;background:rgba(100,149,237,.1);border:1px solid rgba(100,149,237,.2);border-radius:var(--radius-sm);font-size:.7rem;color:#7eb8e6;font-weight:600}
.product-digital-badge i{font-size:.65rem}
.product-digital-badge--physical{background:rgba(181,138,69,.1);border-color:rgba(181,138,69,.2);color:var(--gold)}
.product-digital-badge--both{background:rgba(34,139,34,.1);border-color:rgba(34,139,34,.2);color:#6fbf73}

.product-stock{display:flex;align-items:center;gap:.4rem;font-size:.8rem}
.product-stock--in{color:#6fbf73}
.product-stock--low{color:var(--gold)}
.product-stock--out{color:#e0605a}
.product-stock__dot{width:6px;height:6px;border-radius:50%;background:currentColor}

.product-social-share{display:flex;align-items:center;gap:.75rem;padding:1rem 0;border-top:1px solid var(--border);margin-top:1rem}
.product-social-share__label{font-size:.85rem;color:var(--text-secondary)}
.product-social-share__links{display:flex;gap:.5rem}
.product-social-share__link{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:1px solid var(--border);border-radius:50%;color:var(--text-secondary);font-size:.85rem;transition:all var(--transition-fast)}
.product-social-share__link:hover{border-color:var(--gold);color:var(--gold)}
.product-social-share__link--facebook:hover{border-color:#1877f2;color:#1877f2}
.product-social-share__link--twitter:hover{border-color:#1da1f2;color:#1da1f2}
.product-social-share__link--pinterest:hover{border-color:#e60023;color:#e60023}

.product-instructor{display:flex;align-items:center;gap:1rem;padding:1.25rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);margin-top:1rem}
.product-instructor__avatar{width:56px;height:56px;border-radius:50%;background:var(--bronze-dark);display:flex;align-items:center;justify-content:center;color:var(--gold);font-family:var(--font-heading);font-weight:700;font-size:1.1rem;flex-shrink:0}
.product-instructor__avatar img{width:100%;height:100%;object-fit:cover;border-radius:50%}
.product-instructor__info{flex:1}
.product-instructor__label{font-size:.7rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.08em;margin-bottom:.2rem}
.product-instructor__name{font-family:var(--font-heading);font-size:1rem;color:var(--text-primary)}
.product-instructor__stats{font-size:.75rem;color:var(--text-secondary);margin-top:.15rem}
.product-instructor__link{flex-shrink:0;font-size:.8rem;color:var(--gold)}
.product-instructor__link:hover{color:var(--gold-bright)}

.product-demo-banner{position:relative;padding:2.5rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden;margin-top:1rem;text-align:center}
.product-demo-banner__bg{position:absolute;inset:0;background:linear-gradient(135deg,rgba(181,138,69,.05) 0%,rgba(111,33,27,.05) 100%)}
.product-demo-banner::before{content:'';position:absolute;inset:0;border:1px dashed var(--border);border-radius:var(--radius-md);margin:4px}
.product-demo-banner__content{position:relative;z-index:2}
.product-demo-banner__icon{font-size:2rem;color:var(--gold);margin-bottom:.75rem}
.product-demo-banner__title{font-family:var(--font-heading);font-size:1.1rem;color:var(--text-primary);margin-bottom:.5rem}
.product-demo-banner__desc{font-size:.85rem;color:var(--text-secondary);margin-bottom:1rem;max-width:400px;margin-left:auto;margin-right:auto;line-height:1.6}
.product-demo-banner__actions{display:flex;gap:.75rem;justify-content:center}

.product-warn{padding:1rem;background:rgba(181,138,69,.05);border:1px solid rgba(181,138,69,.2);border-radius:var(--radius-md);display:flex;align-items:flex-start;gap:.75rem;margin-top:1rem}
.product-warn__icon{font-size:1.1rem;color:var(--gold);flex-shrink:0;margin-top:.1rem}
.product-warn__text{font-size:.85rem;color:var(--text-secondary);line-height:1.6}
.product-warn__text strong{color:var(--gold)}
.product-warn--error{background:rgba(111,33,27,.08);border-color:rgba(111,33,27,.25)}
.product-warn--error .product-warn__icon{color:#e0605a}
.product-warn--error .product-warn__text strong{color:#e0605a}
.product-warn--success{background:rgba(34,139,34,.05);border-color:rgba(34,139,34,.2)}
.product-warn--success .product-warn__icon{color:#6fbf73}
.product-warn--success .product-warn__text strong{color:#6fbf73}

@media(max-width:768px){
.product-demo-banner{padding:1.5rem}
.product-demo-banner__actions{flex-direction:column;align-items:center}
.product-instructor{flex-direction:column;text-align:center}
.product-social-share{flex-direction:column;align-items:flex-start}
.product-license__option{flex-direction:column;text-align:center;gap:.5rem}
.product-license__price{margin-left:0}
}

.product-sidebar-sticky{position:sticky;top:calc(var(--header-height) + var(--utility-height) + 1.5rem);align-self:start}

.product-navigate{display:flex;justify-content:space-between;padding:2rem 0;border-top:1px solid var(--border);margin-top:2rem}
.product-navigate__link{display:flex;align-items:center;gap:.5rem;font-size:.85rem;color:var(--text-secondary);transition:color var(--transition-fast);background:none;border:none;cursor:pointer}
.product-navigate__link:hover{color:var(--gold)}
.product-navigate__link--prev i{transition:transform var(--transition-fast)}
.product-navigate__link--prev:hover i{transform:translateX(-3px)}
.product-navigate__link--next i{transition:transform var(--transition-fast)}
.product-navigate__link--next:hover i{transform:translateX(3px)}
.product-navigate__label{font-size:.7rem;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.08em;margin-bottom:.15rem}
.product-navigate__name{font-family:var(--font-heading);color:var(--text-primary)}

.product-back-in-stock{margin-top:1rem;padding:1rem;background:var(--bg-stone);border:1px solid var(--border);border-radius:var(--radius-md);display:flex;align-items:center;gap:1rem}
.product-back-in-stock__icon{font-size:1.5rem;color:var(--gold);flex-shrink:0}
.product-back-in-stock__info{flex:1}
.product-back-in-stock__title{font-family:var(--font-heading);font-size:.9rem;color:var(--text-primary);margin-bottom:.15rem}
.product-back-in-stock__desc{font-size:.8rem;color:var(--text-secondary)}

@media(max-width:992px){
.product-navigate{flex-direction:column;gap:1rem}
}

@media(max-width:768px){
.product-back-in-stock{flex-direction:column;text-align:center}
}

/* ============================================================
   SIDE PILLAR FRAME — left & right vertical borders
   Width: 32px (compact but visible)
   Material: dark iron with gold bevel + engraved lines
   ============================================================ */
.frame-side{position:fixed;top:0;width:32px;height:100vh;z-index:40;pointer-events:none}
.frame-side--left{left:0}
.frame-side--right{right:0}
.frame-pillar{position:absolute;inset:0;background:linear-gradient(90deg,transparent 38%,rgba(201,160,89,.12) 48%,rgba(201,160,89,.12) 52%,transparent 62%),linear-gradient(90deg,#0a0806 0%,#1a1410 8%,#2a2018 25%,#3a2818 50%,#2a2018 75%,#1a1410 92%,#0a0806 100%);background-size:auto,auto;background-repeat:no-repeat,no-repeat;background-position:center,center;background-blend-mode:normal,normal;box-shadow:0 0 24px rgba(0,0,0,.95),inset 0 0 0 1px #000,inset 2px 0 0 #2a2018,inset 3px 0 0 #4a2c1e,inset 4px 0 0 #6b4a2e,inset 5px 0 0 #c9a059,inset 6px 0 0 #8b6342,inset 7px 0 0 #4a2c1e,inset 10px 0 0 #1a1410,inset -1px 0 0 #000,inset -2px 0 0 #2a2018,inset -3px 0 0 #4a2c1e,inset -4px 0 0 #6b4a2e,inset -5px 0 0 #c9a059,inset -6px 0 0 #8b6342,inset -7px 0 0 #4a2c1e,inset -10px 0 0 #1a1410}
.frame-engravings{position:absolute;top:0;bottom:0;left:50%;width:20px;transform:translateX(-50%);background:repeating-linear-gradient(180deg,transparent 0,transparent 50px,rgba(201,160,89,.25) 50px,rgba(201,160,89,.25) 51px,transparent 51px,transparent 100px),repeating-linear-gradient(180deg,transparent 0,transparent 25px,rgba(107,74,46,.3) 25px,rgba(107,74,46,.3) 26px,transparent 26px,transparent 50px);pointer-events:none;opacity:.7}
.frame-ornament{position:absolute;left:50%;top:15%;transform:translateX(-50%);width:28px;height:36px;display:flex;align-items:center;justify-content:center;font-size:16px;color:rgba(201,160,89,.5);filter:drop-shadow(0 1px 3px rgba(0,0,0,.85)) drop-shadow(0 0 2px rgba(201,160,89,.2));pointer-events:none;opacity:.9}
.frame-ornament--mid{top:45%;color:rgba(139,0,0,.5)}
.frame-ornament--bottom{top:auto;bottom:12px;color:rgba(107,74,46,.5);width:26px;height:26px;font-size:14px;filter:drop-shadow(0 1px 4px rgba(0,0,0,.9)) drop-shadow(0 0 3px rgba(92,17,17,.3))}
.frame-side:hover .frame-ornament{color:rgba(201,160,89,.7);text-shadow:0 0 12px rgba(201,160,89,.4)}

/* ============================================================
   FRAMED BOX — multi-layer metal border for content panels
   ============================================================ */
.medieval-frame{position:relative;border:1px solid #2a2018;border-radius:4px;background-color:#0a0908;box-shadow:inset 0 0 0 1px #050403,inset 0 0 0 2px #4a2c1e,inset 0 0 0 3px #1a1410,inset 0 0 0 4px #6b4a2e,inset 0 0 0 5px #c9a059,inset 0 0 0 6px #4a2c1e,inset 0 0 0 8px #0d0b09,inset 0 0 30px rgba(0,0,0,.8),inset 0 0 70px rgba(58,40,24,.08),0 0 0 1px #000,0 14px 40px rgba(0,0,0,.85);background-image:radial-gradient(ellipse 70% 50% at 20% 20%,rgba(107,74,46,.3),transparent 60%),radial-gradient(ellipse 60% 40% at 80% 80%,rgba(74,44,30,.25),transparent 60%),url("/textures/metal-texture.svg"),linear-gradient(135deg,#1a1410 0%,#12100e 50%,#0d0b09 100%);background-size:auto,auto,200px 200px,auto;background-blend-mode:normal,normal,multiply,normal}
.medieval-frame>.container{max-width:100%;padding:0}
.medieval-frame>*{position:relative;z-index:10}
.medieval-frame::before,.medieval-frame::after{content:"";position:absolute;width:28px;height:28px;pointer-events:none;z-index:3;background:url("/textures/ornament-corner.svg") center/contain no-repeat;filter:drop-shadow(0 2px 3px rgba(0,0,0,.7))}
.medieval-frame::before{top:-4px;left:-4px}
.medieval-frame::after{bottom:-4px;right:-4px;transform:rotate(180deg)}
.medieval-frame .section{padding:2rem 0}
.medieval-frame .section__header{margin-bottom:1.5rem}
.medieval-frame .product-grid,.medieval-frame .category-grid{padding:0 .75rem}
.medieval-frame .product-card,.medieval-frame .category-card{border-radius:2px}
.parchment-texture{position:relative}
.parchment-texture::after{content:"";position:absolute;inset:0;pointer-events:none;z-index:1;background-image:radial-gradient(circle at 25% 30%,rgba(107,74,46,.04) 0,transparent 40%),radial-gradient(circle at 75% 70%,rgba(74,14,14,.04) 0,transparent 40%);opacity:.7}
@media(max-width:768px){.medieval-frame{padding:1.5rem 1rem;max-width:100%}.medieval-frame .product-grid,.medieval-frame .category-grid{margin:0 -.5rem}}
@media(max-width:480px){.medieval-frame{padding:1.2rem .75rem}.medieval-frame .product-grid,.medieval-frame .category-grid{margin:0}}
.ornate-heading{display:flex;align-items:center;justify-content:center;gap:1.5rem;text-align:center;margin-bottom:2rem}
.ornate-heading::before{content:"";height:1px;flex:1;max-width:240px;background:linear-gradient(90deg,transparent 0%,#4a2c1e 20%,#6b4a2e 50%,#4a2c1e 80%,transparent 100%)}
.ornate-heading::after{content:"";height:1px;flex:1;max-width:240px;background:linear-gradient(90deg,transparent 0%,#4a2c1e 20%,#6b4a2e 50%,#4a2c1e 80%,transparent 100%)}
.ornate-heading .diamond{width:8px;height:8px;background:#6b4a2e;transform:rotate(45deg);box-shadow:0 0 8px rgba(107,74,46,.5),inset 0 0 2px #1a1410;flex-shrink:0}
.ornate-heading .heading-text{font-family:'Cinzel',serif;font-size:1.25rem;font-weight:700;text-transform:uppercase;letter-spacing:.25em;color:#c5a059;display:flex;align-items:center;gap:.5rem;white-space:nowrap;flex-shrink:0}
@media(min-width:768px){.ornate-heading .heading-text{font-size:1.5rem}}
.ornate-heading .heading-text .flame-icon{width:16px;height:16px;color:#c9a227;flex-shrink:0}
@media(max-width:768px){.ornate-heading .heading-text{font-size:1rem;letter-spacing:.15em}.ornate-heading::before,.ornate-heading::after{max-width:80px}}

/* ============================================================
   FEATURED MODELS SECTION — trending now + product cards
   ============================================================ */
.featured-section{padding:12px 16px}
.featured-content{position:relative;z-index:10;max-width:1400px;margin:0 auto;padding:48px 24px}
.featured-header{display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:32px}
.featured-label{display:flex;align-items:center;gap:8px;margin-bottom:8px;color:#c9a227}
.featured-label .flame-icon{width:16px;height:16px}
.featured-label-text{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.125em}
.featured-title{font-family:'Cinzel',serif;font-size:30px;font-weight:700;color:#fff;line-height:1.2}
@media(min-width:768px){.featured-title{font-size:36px}}
.featured-title .gold-gradient-text{background:linear-gradient(135deg,#f0d896 0%,#c5a059 50%,#8a7042 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.category-filters{display:flex;flex-wrap:wrap;align-items:center;gap:8px}
.category-pill{border:1px solid #3a3025;border-radius:2px;padding:6px 16px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:#9a8b7a;background:transparent;cursor:pointer;transition:border-color .2s,color .2s,background-color .2s}
.category-pill:hover{border-color:rgba(201,162,39,.6);color:#c9a227}
.category-pill.active{border-color:#c9a227;background-color:rgba(201,162,39,.15);color:#c9a227}

/* PRODUCT GRID — responsive 2->3->4 columns */
.product-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
@media(min-width:640px){.product-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1024px){.product-grid{grid-template-columns:repeat(4,1fr)}}

/* Card image area */
.card-image-area{position:relative;aspect-ratio:1/1;overflow:hidden;background-color:#0a0908}
.card-image-area .product-img{width:100%;height:100%;object-fit:cover;filter:saturate(.85) contrast(1.1) brightness(.95) sepia(.12);transition:transform .7s ease;position:relative;z-index:1}
.product-card:hover .card-image-area .product-img{transform:scale(1.1)}
.card-image-area .img-fade{position:absolute;inset:0;pointer-events:none;opacity:.9;background:linear-gradient(to top,#080605 0%,transparent 30%,rgba(26,20,16,.3) 100%)}
.card-image-area .img-vignette{position:absolute;inset:0;pointer-events:none;background:radial-gradient(ellipse at center,transparent 50%,rgba(8,4,4,.55) 100%)}

/* Badges */
.card-badges{position:absolute;top:8px;left:8px;display:flex;flex-direction:column;gap:4px}
.card-badge{border-radius:2px;padding:2px 8px;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.05em}
.card-badge.hot{background:#a52a2a;color:#fff}
.card-badge.new{background:#c5a059;color:#08080a}
.card-badge.sale{background:#5a1a1a;color:#ffd9a0}
.card-badge.free{background:#2a5a3a;color:#a0e0b0}
.card-badge.discount{background:#8b1a1a;color:#fff}

/* Wishlist button */
.card-wishlist{position:absolute;top:8px;right:8px;width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:50%;border:1px solid #3a3025;background:rgba(8,8,10,.7);color:#8a8074;cursor:pointer;backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);transition:border-color .25s ease,color .25s ease}
.card-wishlist:hover{border-color:#c5a059;color:#c5a059}
.card-wishlist.active{border-color:#a52a2a;background:rgba(165,42,42,.8);color:#fff}
.card-wishlist svg{width:16px;height:16px}

/* Quick add overlay */
.card-quick-add{position:absolute;bottom:8px;left:8px;right:8px;opacity:0;transform:translateY(8px);pointer-events:none;transition:opacity .3s ease,transform .3s ease}
.product-card:hover .card-quick-add{opacity:1;transform:translateY(0);pointer-events:auto}
.card-quick-add .quick-add-btn{display:flex;width:100%;align-items:center;justify-content:center;gap:8px;padding:8px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;background:linear-gradient(180deg,#a83232 0%,#7a1a1a 100%);color:#fff5e6;border:1px solid #c5402a;box-shadow:0 4px 14px rgba(139,26,26,.35),inset 0 1px 0 rgba(255,255,255,.08);cursor:pointer;transition:all .25s ease}
.card-quick-add .quick-add-btn:hover{background:linear-gradient(180deg,#c5402a 0%,#8b1a1a 100%);box-shadow:0 6px 20px rgba(197,64,42,.5),inset 0 1px 0 rgba(255,255,255,.12);transform:translateY(-1px)}

/* Card body */
.card-body{display:flex;flex-direction:column;flex:1;padding:12px}
.card-category{font-size:10px;text-transform:uppercase;letter-spacing:.09em;color:#6a6054;margin-bottom:4px}
.card-title{font-size:15px;font-weight:600;color:#e8e2d4;margin-bottom:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transition:color .2s ease}
.product-card:hover .card-title{color:#c5a059}
.card-rating{display:flex;align-items:center;gap:6px;font-size:11px;color:#8a8074;margin-bottom:12px}
.card-rating .stars{display:flex;align-items:center;gap:2px;color:#c5a059}
.card-rating .stars svg{width:12px;height:12px}
.card-rating .separator{color:#3a3025}
.card-footer{margin-top:auto;display:flex;align-items:flex-end;justify-content:space-between}
.card-price-wrap{display:flex;align-items:baseline;gap:8px}
.card-price{font-family:'Cinzel',serif;font-size:20px;font-weight:700;color:#c5a059}
.card-price-old{font-size:12px;color:#5a5248;text-decoration:line-through}
.card-cart-btn{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:2px;border:1px solid #3a3025;color:#c5a059;background:transparent;cursor:pointer;transition:border-color .2s ease,background-color .2s ease}
.card-cart-btn:hover{border-color:#c5a059;background:rgba(201,160,89,.1)}
.card-cart-btn svg{width:16px;height:16px}

/* Format tags */
.card-formats{display:flex;flex-wrap:wrap;gap:4px;margin-top:10px}
.format-tag{display:inline-flex;align-items:center;gap:2px;padding:2px 6px;border:1px solid #2a2620;background:#1a1815;border-radius:2px;font-size:9px;font-weight:500;color:#8a8074}
.format-tag .check-icon{width:10px;height:10px;color:#c5a059}
.format-tag-more{padding:2px 6px;border:1px solid #2a2620;background:#1a1815;border-radius:2px;font-size:9px;color:#6a6054}

/* Buttons */
.btn-crimson{background:linear-gradient(180deg,#a83232 0%,#7a1a1a 100%);color:#fff5e6;border:1px solid #c5402a;box-shadow:0 4px 14px rgba(139,26,26,.35),inset 0 1px 0 rgba(255,255,255,.08);padding:12px 28px;border-radius:4px;font-family:'Cinzel',serif;font-weight:700;font-size:13px;text-transform:uppercase;letter-spacing:.1em;cursor:pointer;transition:all .25s ease;display:inline-flex;align-items:center;justify-content:center;gap:8px}
.btn-crimson:hover{background:linear-gradient(180deg,#c5402a 0%,#8b1a1a 100%);box-shadow:0 6px 20px rgba(197,64,42,.5),inset 0 1px 0 rgba(255,255,255,.12);transform:translateY(-1px)}
.btn-gold-outline{background:transparent;color:#c9a059;border:1px solid #c9a059;padding:12px 28px;border-radius:4px;font-family:'Cinzel',serif;font-weight:700;font-size:13px;text-transform:uppercase;letter-spacing:.1em;cursor:pointer;transition:all .25s ease;display:inline-flex;align-items:center;justify-content:center;gap:8px}
.btn-gold-outline:hover{background:rgba(201,160,89,.1);box-shadow:0 0 0 1px #c9a059,0 0 18px rgba(201,160,89,.25)}

/* ============================================================
   MEDIEVAL MENU BAR — rusted iron frame with blood + warriors
   ============================================================ */
.menu-bar-epic{position:sticky;top:0;z-index:900;border:1px solid #2a2018;border-radius:4px;box-shadow:inset 0 0 0 1px #050403,inset 0 0 0 2px #4a2c1e,inset 0 0 0 3px #1a1410,inset 0 0 0 4px #6b4a2e,inset 0 0 0 5px #c9a059,inset 0 0 0 6px #4a2c1e,inset 0 0 0 8px #0d0b09,inset 0 0 30px rgba(0,0,0,.85),0 0 0 1px #000,0 10px 30px rgba(0,0,0,.85);background-color:#0d0a08;background-image:radial-gradient(ellipse 25% 60% at 8% 50%,rgba(107,58,40,.4),transparent 70%),radial-gradient(ellipse 25% 60% at 92% 50%,rgba(122,69,48,.35),transparent 70%),linear-gradient(180deg,#1a1410 0%,#0d0a08 50%,#1a1410 100%);padding:0}
.menu-bar-epic__inner{display:flex;align-items:center;justify-content:space-between;max-width:var(--max-width);margin:0 auto;padding:0 60px;height:var(--header-height);position:relative;z-index:2}
.menu-warrior{position:absolute;top:0;width:80px;height:100%;pointer-events:none;z-index:1;opacity:.6}
.menu-warrior-left{left:4px;background:linear-gradient(135deg,rgba(107,74,46,.2),transparent 60%);clip-path:polygon(0 0,100% 0,60% 100%,0 100%)}
.menu-warrior-right{right:4px;background:linear-gradient(225deg,rgba(107,74,46,.2),transparent 60%);clip-path:polygon(40% 0,100% 0,100% 100%,0 100%)}
.menu-bar-epic .logo-lockup{display:inline-flex;align-items:center;gap:.6rem;text-decoration:none}
.crest-shield{position:relative;width:42px;height:52px;display:flex;align-items:center;justify-content:center;box-shadow:0 0 10px rgba(0,0,0,.7)}
.crest-shield::after{display:none}
.site-logo-img{width:300px;height:80px;object-fit:contain;display:block}
.logo-text{display:flex;flex-direction:column;line-height:1}
.logo-line-1{font-family:'Pirata One',sans-serif;font-size:2.8rem;color:#c9a059;letter-spacing:.08em;text-shadow:0 0 12px rgba(201,160,89,.5),0 2px 0 #2a2018}
.menu-bar-epic .main-nav__list{display:flex;align-items:center;gap:.5rem}
.menu-bar-epic .main-nav__item{list-style:none}
.menu-bar-epic .main-nav__link{display:none}
.header-actions{display:flex;align-items:center;gap:.75rem}
.header-actions__btn{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:1px solid #3a3025;border-radius:2px;color:#c9a059;background:transparent;cursor:pointer;transition:all .25s;font-size:.85rem;position:relative}
.header-actions__btn:hover{border-color:#c9a059;background:rgba(201,160,89,.1);box-shadow:0 0 12px rgba(201,160,89,.2)}
.utility-bar__cart-count{position:absolute;top:-4px;right:-4px;background:#8b0000;color:#fff;font-size:.5rem;width:14px;height:14px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700}

/* ============================================================
   MEDIEVAL NAV BUTTON — panel CTA style for menu bar links
   ============================================================ */
.nav-btn{display:inline-flex;align-items:center;justify-content:center;position:relative;padding:.5rem 1rem;background:linear-gradient(135deg,rgba(118,83,47,.12),rgba(91,68,40,.2),rgba(118,83,47,.12));border:1px solid rgba(181,138,69,.2);border-radius:3px;text-decoration:none;cursor:pointer;transition:all .35s;overflow:hidden;font-family:'Cinzel',serif;font-size:.65rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:rgba(232,215,176,.6)}
.nav-btn::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,transparent,rgba(181,138,69,.08),transparent);opacity:0;transition:opacity .35s}
.nav-btn:hover::before{opacity:1}
.nav-btn:hover{border-color:rgba(181,138,69,.5);background:linear-gradient(135deg,rgba(181,138,69,.1),rgba(91,68,40,.3),rgba(181,138,69,.1));box-shadow:0 0 18px rgba(181,138,69,.1),inset 0 0 18px rgba(181,138,69,.04);color:#D6B56A;text-shadow:0 0 12px rgba(214,181,106,.3)}
.nav-btn--active{border-color:rgba(181,138,69,.45);background:linear-gradient(135deg,rgba(181,138,69,.12),rgba(91,68,40,.28),rgba(181,138,69,.12));color:#D6B56A;text-shadow:0 0 10px rgba(214,181,106,.25)}
.nav-btn__frame{position:absolute;inset:0;pointer-events:none}
.nav-btn__corner{position:absolute;width:8px;height:8px;border:1.5px solid rgba(181,138,69,.25);transition:all .35s}
.nav-btn__corner--tl{top:2px;left:2px;border-right:none;border-bottom:none;border-radius:2px 0 0 0}
.nav-btn__corner--tr{top:2px;right:2px;border-left:none;border-bottom:none;border-radius:0 2px 0 0}
.nav-btn__corner--bl{bottom:2px;left:2px;border-right:none;border-top:none;border-radius:0 0 0 2px}
.nav-btn__corner--br{bottom:2px;right:2px;border-left:none;border-top:none;border-radius:0 0 2px 0}
.nav-btn:hover .nav-btn__corner{border-color:rgba(181,138,69,.55);width:11px;height:11px}
.nav-btn__icon{font-size:.55rem;color:rgba(181,138,69,.3);transition:all .35s;margin-right:.4rem}
.nav-btn:hover .nav-btn__icon{color:#B58A45;text-shadow:0 0 8px rgba(181,138,69,.35);transform:scale(1.15)}
.nav-btn__text{position:relative;z-index:2}


/* ============================================================
   PRODUCT CARD — shared child element styles
   ============================================================ */
.product-card__img{position:relative;aspect-ratio:1/1;overflow:hidden;background-color:#0a0908}
.product-card__img img{width:100%;height:100%;object-fit:cover;filter:saturate(.85) contrast(1.1) brightness(.95) sepia(.12);transition:transform .7s ease;position:relative;z-index:1}
.product-card:hover .product-card__img img{transform:scale(1.1)}
.product-card__img::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,#080605 0%,transparent 30%,rgba(26,20,16,.3) 100%);pointer-events:none}
.product-card__quick-actions{position:absolute;bottom:8px;left:8px;right:8px;display:flex;gap:6px;opacity:0;transform:translateY(8px);transition:all .3s ease;z-index:2}
.product-card:hover .product-card__quick-actions{opacity:1;transform:translateY(0)}
.badge{position:absolute;top:8px;left:8px;padding:2px 8px;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;border-radius:2px;z-index:2}
.badge--new{background:#c5a059;color:#08080a}
.badge--hot{background:#a52a2a;color:#fff}
.badge--sale{background:#5a1a1a;color:#ffd9a0}
.badge--free{background:#2a5a3a;color:#a0e0b0}
.product-card__body{padding:12px;display:flex;flex-direction:column;flex:1}
.product-card__category{font-size:10px;text-transform:uppercase;letter-spacing:.09em;color:#6a6054;margin-bottom:4px}
.product-card__title{font-size:15px;font-weight:600;color:#e8e2d4;font-family:'Cinzel',serif;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-bottom:8px;transition:color .2s}
.product-card:hover .product-card__title{color:#c9a059}
.product-card__title a{color:inherit;transition:color .2s}
.product-card:hover .product-card__title a{color:#c9a059}
.product-card__rating{display:flex;align-items:center;gap:6px;font-size:11px;color:#8a8074;margin-bottom:12px}
.product-card__stars{color:#c9a059;display:flex;gap:1px}
.product-card__footer{margin-top:auto;display:flex;align-items:flex-end;justify-content:space-between}
.product-card__price{font-family:'Cinzel',serif;font-size:20px;font-weight:700;color:#c9a059}
.product-card__price-current{font-family:'Cinzel',serif;font-size:20px;font-weight:700;color:#c9a059}
.product-card__price-original{font-size:12px;color:#5a5248;text-decoration:line-through;margin-left:8px}
.product-card__add-btn,.cart-btn{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:2px;border:1px solid #3a3025;color:#c9a059;cursor:pointer;background:transparent;transition:all .2s;font-size:.75rem}
.product-card__add-btn:hover,.cart-btn:hover{border-color:#c9a059;background:rgba(201,160,89,.1)}

/* ============================================================
   MEDIEVAL BUTTONS — crimson primary + gold outline secondary
   ============================================================ */
.btn--primary{background:linear-gradient(180deg,#a83232 0%,#7a1a1a 100%);color:#fff5e6;border:1px solid #c5402a;box-shadow:0 4px 14px rgba(139,26,26,.35),inset 0 1px 0 rgba(255,255,255,.08);padding:12px 28px;border-radius:4px;font-family:'Cinzel',serif;font-weight:700;font-size:13px;text-transform:uppercase;letter-spacing:.1em;cursor:pointer;transition:all .25s ease;display:inline-flex;align-items:center;justify-content:center;gap:8px}
.btn--primary:hover{background:linear-gradient(180deg,#c5402a 0%,#8b1a1a 100%);box-shadow:0 6px 20px rgba(197,64,42,.5),inset 0 1px 0 rgba(255,255,255,.12);transform:translateY(-1px)}
.btn--outline{background:transparent;color:#c9a059;border:1px solid #c9a059;padding:12px 28px;border-radius:4px;font-family:'Cinzel',serif;font-weight:700;font-size:13px;text-transform:uppercase;letter-spacing:.1em;cursor:pointer;transition:all .25s ease;display:inline-flex;align-items:center;justify-content:center;gap:8px}
.btn--outline:hover{background:rgba(201,160,89,.1);box-shadow:0 0 0 1px #c9a059,0 0 18px rgba(201,160,89,.25)}
.btn--sm{padding:6px 14px;font-size:10px}
.btn--lg{padding:14px 32px;font-size:14px}


/* MEDIEVAL FANTASY FOOTER */
.mf-footer{position:relative;width:100%;min-height:700px;overflow:hidden;background:#050403}
.mf-footer__bg{position:absolute;inset:0;z-index:0}
.mf-footer__overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(5,4,3,.1) 0%,rgba(5,4,3,.2) 30%,rgba(5,4,3,.4) 60%,rgba(5,4,3,.7) 100%);z-index:1}
.mf-footer__vignette{position:absolute;inset:0;background:radial-gradient(ellipse at center,transparent 40%,rgba(0,0,0,.35) 100%);z-index:2;pointer-events:none}
.mf-footer__frame{position:absolute;inset:12px;z-index:3;pointer-events:none}
.mf-footer__edge{position:absolute}
.mf-footer__edge--top{top:0;left:30px;right:30px;height:1px;background:linear-gradient(90deg,transparent,rgba(118,83,47,.35),rgba(181,138,69,.2),rgba(118,83,47,.35),transparent)}
.mf-footer__edge--bottom{bottom:0;left:30px;right:30px;height:1px;background:linear-gradient(90deg,transparent,rgba(118,83,47,.35),rgba(181,138,69,.2),rgba(118,83,47,.35),transparent)}
.mf-footer__edge--left{top:30px;bottom:30px;left:0;width:1px;background:linear-gradient(180deg,transparent,rgba(118,83,47,.35),rgba(181,138,69,.2),rgba(118,83,47,.35),transparent)}
.mf-footer__edge--right{top:30px;bottom:30px;right:0;width:1px;background:linear-gradient(180deg,transparent,rgba(118,83,47,.35),rgba(181,138,69,.2),rgba(118,83,47,.35),transparent)}
.mf-footer__corner{position:absolute;width:40px;height:40px;display:flex;align-items:center;justify-content:center;z-index:4}
.mf-footer__corner::before{content:'';position:absolute;width:22px;height:22px;border:1.5px solid rgba(181,138,69,.4);transform:rotate(45deg);background:rgba(5,4,3,.6);box-shadow:0 0 12px rgba(181,138,69,.15)}
.mf-gargoyle{position:relative;z-index:2;font-size:14px;color:rgba(181,138,69,.5);text-shadow:0 0 8px rgba(181,138,69,.3)}
.mf-footer__corner--tl{top:0;left:0}
.mf-footer__corner--tr{top:0;right:0}
.mf-footer__corner--bl{bottom:0;left:0}
.mf-footer__corner--br{bottom:0;right:0}
.mf-footer__content{position:relative;z-index:5;display:grid;grid-template-columns:1fr 1.6fr;gap:3rem;max-width:1300px;margin:0 auto;padding:80px 40px 40px;min-height:700px;align-items:start}
 .mf-collage{position:relative;padding-top:40px}
.mf-collage__grid{position:relative;width:100%;height:420px}
.mf-collage__item{position:absolute;display:flex;align-items:center;justify-content:center;font-size:1.8rem;opacity:.18;transition:opacity .5s,transform .5s;filter:grayscale(.3)}
.mf-collage__item:hover{opacity:.5;transform:scale(1.15);filter:grayscale(0)}
.mf-collage__item--sword1{top:5%;left:10%;color:#9C8B6E;transform:rotate(-25deg);font-size:2.2rem}
.mf-collage__item--shield{top:2%;left:55%;color:#B58A45;transform:rotate(12deg);font-size:2.6rem}
.mf-collage__item--dragon{top:18%;left:30%;color:#6F211B;transform:rotate(-8deg);font-size:3rem;opacity:.25}
.mf-collage__item--skull{top:12%;left:75%;color:#9C8B6E;transform:rotate(20deg);font-size:1.5rem}
.mf-collage__item--crown{top:32%;left:5%;color:#D6B56A;transform:rotate(-15deg);font-size:1.6rem}
.mf-collage__item--wand{top:28%;left:65%;color:#B58A45;transform:rotate(35deg);font-size:1.4rem}
.mf-collage__item--hat{top:42%;left:20%;color:#76532F;transform:rotate(-5deg);font-size:2rem}
.mf-collage__item--ring{top:38%;left:80%;color:#D6B56A;transform:rotate(18deg);font-size:1.3rem}
.mf-collage__item--scroll{top:52%;left:45%;color:#9C8B6E;transform:rotate(-22deg);font-size:1.5rem}
.mf-collage__item--chest{top:55%;left:8%;color:#76532F;transform:rotate(8deg);font-size:1.7rem}
.mf-collage__item--lantern{top:48%;left:72%;color:#D6B56A;transform:rotate(-12deg);font-size:1.6rem;text-shadow:0 0 20px rgba(214,181,106,.3)}
.mf-collage__item--book{top:65%;left:28%;color:#5B4428;transform:rotate(15deg);font-size:1.4rem}
.mf-collage__item--axe{top:62%;left:58%;color:#9C8B6E;transform:rotate(-30deg);font-size:1.9rem}
.mf-collage__item--helmet{top:75%;left:12%;color:#76532F;transform:rotate(10deg);font-size:1.5rem}
.mf-collage__item--goblet{top:72%;left:78%;color:#B58A45;transform:rotate(-8deg);font-size:1.6rem}
.mf-collage__item--bolt{top:82%;left:42%;color:#D6B56A;transform:rotate(25deg);font-size:1.2rem;opacity:.3;text-shadow:0 0 15px rgba(214,181,106,.4)}
.mf-collage__item--cross{top:88%;left:65%;color:#6F211B;transform:rotate(-18deg);font-size:1.3rem}
.mf-collage__item--tomb{top:85%;left:5%;color:#5B4428;transform:rotate(5deg);font-size:1.4rem}
.mf-collage__title{position:absolute;bottom:20px;left:0;right:0;text-align:center;z-index:10;display:flex;justify-content:center}
.mf-title-box{position:relative;background:rgba(8,7,6,.8);border:1px solid rgba(181,138,69,.35);border-radius:4px;padding:.8rem 1.8rem;text-align:center;overflow:hidden;max-width:280px;transition:all .5s}
.mf-title-box::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 50% 0%,rgba(181,138,69,.1),transparent 70%);pointer-events:none}
.mf-title-box:hover{border-color:rgba(181,138,69,.6);box-shadow:0 0 40px rgba(181,138,69,.15),inset 0 0 30px rgba(181,138,69,.05)}
.mf-title-box__glow{position:absolute;inset:0;background:radial-gradient(ellipse at 50% 50%,rgba(181,138,69,.06),transparent 60%);pointer-events:none}
.mf-title-box__frame{position:absolute;inset:0;pointer-events:none}
.mf-title-box__corner{position:absolute;width:8px;height:8px;border:1px solid rgba(181,138,69,.35);transition:all .5s}
.mf-title-box__corner--tl{top:4px;left:4px;border-right:none;border-bottom:none}
.mf-title-box__corner--tr{top:4px;right:4px;border-left:none;border-bottom:none}
.mf-title-box__corner--bl{bottom:4px;left:4px;border-right:none;border-top:none}
.mf-title-box__corner--br{bottom:4px;right:4px;border-left:none;border-top:none}
.mf-title-box:hover .mf-title-box__corner{border-color:rgba(181,138,69,.7)}
.mf-title-box__icon{font-size:1rem;color:rgba(181,138,69,.4);margin-bottom:.2rem;transition:all .5s;text-shadow:0 0 10px rgba(181,138,69,.2)}
.mf-title-box:hover .mf-title-box__icon{color:#B58A45;text-shadow:0 0 20px rgba(181,138,69,.5)}
.mf-title-box__sub{display:block;font-family:var(--font-heading);font-size:.55rem;letter-spacing:.3em;color:rgba(181,138,69,.55);margin-bottom:2px;transition:color .4s}
.mf-title-box:hover .mf-title-box__sub{color:rgba(181,138,69,.8)}
.mf-title-box__main{font-family:var(--font-decorative);font-size:1.6rem;font-weight:900;color:#B58A45;text-shadow:0 0 20px rgba(181,138,69,.4),0 0 40px rgba(181,138,69,.2),0 1px 3px rgba(0,0,0,.8);line-height:1.1;letter-spacing:.05em;animation:mfGlow 4s ease-in-out infinite alternate;margin:0}
.mf-title-box__tag{display:block;font-family:var(--font-heading);font-size:.65rem;letter-spacing:.5em;color:rgba(214,181,106,.65);margin-top:2px;transition:color .4s}
.mf-title-box:hover .mf-title-box__tag{color:rgba(214,181,106,.9)}
.mf-title-box__border{height:1px;background:linear-gradient(90deg,transparent,rgba(181,138,69,.4),transparent);margin-top:.5rem}
@keyframes mfGlow{0%{text-shadow:0 0 30px rgba(181,138,69,.4),0 0 60px rgba(181,138,69,.2),0 0 100px rgba(111,33,27,.3),0 2px 4px rgba(0,0,0,.8)}100%{text-shadow:0 0 40px rgba(181,138,69,.5),0 0 80px rgba(181,138,69,.3),0 0 120px rgba(111,33,27,.4),0 2px 4px rgba(0,0,0,.8)}}

/* ============================================================
   BANNER CARDS — medieval panel with cover background
   ============================================================ */
.banners-strip{position:relative;z-index:3;background:var(--bg-panel);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:1.25rem 0}
.banners-strip .container{max-width:var(--max-width);margin:0 auto;padding:0 60px}
.banners-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.banner-card{position:relative;display:flex;align-items:center;justify-content:center;min-height:160px;border-radius:4px;border:1px solid rgba(181,138,69,.35);background-color:rgba(8,7,6,.85);background-size:cover;background-position:center;overflow:hidden;cursor:pointer;text-decoration:none;transition:all .5s}
.banner-card::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,7,6,.3) 0%,rgba(8,7,6,.75) 100%);pointer-events:none;z-index:1;transition:opacity .5s}
.banner-card:hover::before{opacity:.6}
.banner-card:hover{border-color:rgba(181,138,69,.6);box-shadow:0 0 40px rgba(181,138,69,.15),inset 0 0 30px rgba(181,138,69,.05);transform:translateY(-2px)}
.banner-card__glow{position:absolute;inset:0;background:radial-gradient(ellipse at 50% 50%,rgba(181,138,69,.06),transparent 60%);pointer-events:none;z-index:2}
.banner-card__frame{position:absolute;inset:0;pointer-events:none;z-index:3}
.banner-card__corner{position:absolute;width:8px;height:8px;border:1px solid rgba(181,138,69,.35);transition:all .5s}
.banner-card__corner--tl{top:4px;left:4px;border-right:none;border-bottom:none}
.banner-card__corner--tr{top:4px;right:4px;border-left:none;border-bottom:none}
.banner-card__corner--bl{bottom:4px;left:4px;border-right:none;border-top:none}
.banner-card__corner--br{bottom:4px;right:4px;border-left:none;border-top:none}
.banner-card:hover .banner-card__corner{border-color:rgba(181,138,69,.7)}
.banner-card__overlay{position:absolute;inset:0;background:radial-gradient(ellipse at 50% 0%,rgba(181,138,69,.08),transparent 70%);pointer-events:none;z-index:2}
.banner-card__title{position:relative;z-index:4;font-family:var(--font-decorative);font-size:1.3rem;font-weight:900;color:#B58A45;text-shadow:0 0 20px rgba(181,138,69,.4),0 0 40px rgba(181,138,69,.2),0 1px 3px rgba(0,0,0,.9);text-align:center;text-transform:uppercase;letter-spacing:.08em;line-height:1.2;transition:all .5s;padding:0 .5rem}
.banner-card:hover .banner-card__title{color:#D6B56A;text-shadow:0 0 30px rgba(181,138,69,.6),0 0 60px rgba(181,138,69,.3),0 1px 3px rgba(0,0,0,.9)}
.banner-card__border{position:absolute;bottom:0;left:10%;right:10%;height:1px;background:linear-gradient(90deg,transparent,rgba(181,138,69,.4),transparent);z-index:4}

/* ============================================================
   PREMIUM PRODUCT CARD — 570x360 marketplace card
   ============================================================ */
.new-models-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px}
.premium-card{position:relative;display:flex;flex-direction:column;width:100%;border-radius:6px;border:1px solid rgba(58,40,24,.6);background:#12100e;overflow:hidden;text-decoration:none;color:inherit;transition:all .4s ease;box-shadow:0 4px 20px rgba(0,0,0,.5)}
.premium-card:hover{border-color:rgba(201,160,89,.5);box-shadow:0 8px 40px rgba(0,0,0,.7),0 0 0 1px rgba(201,160,89,.3);transform:translateY(-3px)}
.premium-card__glow{position:absolute;inset:0;background:radial-gradient(ellipse at 50% 50%,rgba(181,138,69,.06),transparent 60%);pointer-events:none;z-index:2}
.premium-card__frame{position:absolute;inset:0;pointer-events:none;z-index:3}
.premium-card__corner{position:absolute;width:8px;height:8px;border:1px solid rgba(181,138,69,.35);transition:all .5s}
.premium-card__corner--tl{top:4px;left:4px;border-right:none;border-bottom:none}
.premium-card__corner--tr{top:4px;right:4px;border-left:none;border-bottom:none}
.premium-card__corner--bl{bottom:4px;left:4px;border-right:none;border-top:none}
.premium-card__corner--br{bottom:4px;right:4px;border-left:none;border-top:none}
.premium-card:hover .premium-card__corner{border-color:rgba(181,138,69,.7)}
.premium-card__border{position:absolute;bottom:0;left:10%;right:10%;height:1px;background:linear-gradient(90deg,transparent,rgba(181,138,69,.4),transparent);z-index:4}
.premium-card__image{position:relative;width:100%;aspect-ratio:16/9;overflow:hidden;background:#0a0908}
.premium-card__image img{width:100%;height:100%;object-fit:cover;filter:saturate(.85) contrast(1.1) brightness(.95);transition:transform .6s ease}
.premium-card:hover .premium-card__image img{transform:scale(1.05)}
.premium-card__placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:3rem;color:rgba(181,138,69,.3)}
.premium-card__image-overlay{position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(8,6,5,.8) 100%);pointer-events:none}
.premium-card__badge{position:absolute;padding:4px 10px;border-radius:3px;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.05em}
.premium-card__badge--category{top:14px;left:14px;background:rgba(8,7,6,.75);color:#c9a059;border:1px solid rgba(201,160,89,.3);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px)}
.premium-card__badge--format{bottom:14px;right:14px;background:rgba(8,7,6,.75);color:#a0a0a0;border:1px solid rgba(160,160,160,.2);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px)}
.premium-card__wishlist{position:absolute;top:14px;right:14px;width:34px;height:34px;display:flex;align-items:center;justify-content:center;border-radius:50%;border:1px solid rgba(255,255,255,.15);background:rgba(8,8,10,.6);color:#8a8074;cursor:pointer;backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);transition:all .25s ease}
.premium-card__wishlist svg{width:16px;height:16px}
.premium-card__wishlist:hover{border-color:#a83232;background:rgba(168,50,50,.7);color:#fff}
.premium-card__body{display:flex;flex-direction:column;flex:1;padding:16px;gap:8px}
.premium-card__top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
.premium-card__title{font-family:'Cinzel',serif;font-size:1.1rem;font-weight:700;color:#e8e2d4;margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;flex:1;transition:color .2s}
.premium-card:hover .premium-card__title{color:#c9a059}
.premium-card__price{font-family:'Cinzel',serif;font-size:1.2rem;font-weight:700;color:#c9a059;white-space:nowrap}
.premium-card__price--free{color:#4caf50}
.premium-card__price-old{font-size:.8rem;color:#5a5248;text-decoration:line-through;margin-right:4px}
.premium-card__subtitle{font-size:.8rem;color:#8a8074;margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.premium-card__rating{display:flex;align-items:center;gap:6px;font-size:.75rem;color:#8a8074}
.premium-card__stars{display:flex;gap:2px;color:#c9a059}
.premium-card__stars i{font-size:.7rem}
.premium-card__rating-num{color:#c9a059;font-weight:600}
.premium-card__rating-count{color:#6a6054}
.premium-card__sales{margin-left:auto;color:#6a6054}
.premium-card__tags{display:flex;gap:6px;flex-wrap:nowrap;overflow:hidden}
.premium-card__tag{padding:3px 8px;border:1px solid rgba(58,40,24,.5);border-radius:3px;font-size:9px;font-weight:600;color:#8a8074;text-transform:uppercase;letter-spacing:.04em;white-space:nowrap}
.premium-card__specs{display:grid;grid-template-columns:repeat(4,1fr);margin-top:auto;padding-top:10px;border-top:1px solid rgba(58,40,24,.4)}
.premium-card__spec{display:flex;flex-direction:column;align-items:center;gap:2px;text-align:center;position:relative}
.premium-card__spec:not(:last-child)::after{content:'';position:absolute;right:0;top:0;bottom:0;width:1px;background:rgba(58,40,24,.4)}
.premium-card__spec i{font-size:.7rem;color:rgba(201,160,89,.5)}
.premium-card__spec-label{font-size:9px;color:#6a6054;text-transform:uppercase;letter-spacing:.05em}
.premium-card__spec-value{font-size:10px;font-weight:600;color:#b58a45}
.mf-collage__embers{position:absolute;inset:0;pointer-events:none;overflow:hidden}
.mf-ember{position:absolute;width:3px;height:3px;background:#D6B56A;border-radius:50%;opacity:0;animation:mfEmber 6s ease-in infinite}
.mf-ember--1{left:20%;bottom:10%;animation-delay:0s}
.mf-ember--2{left:40%;bottom:15%;animation-delay:1.2s}
.mf-ember--3{left:60%;bottom:8%;animation-delay:2.4s}
.mf-ember--4{left:80%;bottom:12%;animation-delay:3.6s}
.mf-ember--5{left:30%;bottom:20%;animation-delay:.8s}
.mf-ember--6{left:50%;bottom:5%;animation-delay:2s}
.mf-ember--7{left:70%;bottom:18%;animation-delay:3.2s}
.mf-ember--8{left:15%;bottom:25%;animation-delay:4.5s}
@keyframes mfEmber{0%{opacity:0;transform:translateY(0) scale(1)}20%{opacity:.8}100%{opacity:0;transform:translateY(-120px) scale(0)}}
.mf-footer__menus{padding-top:20px}
.mf-menus__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-bottom:2rem}
.mf-panel{background:rgba(8,7,6,.7);border:1px solid rgba(91,68,40,.3);border-radius:4px;position:relative;overflow:hidden;transition:border-color .5s,box-shadow .5s}
.mf-panel::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(118,83,47,.08) 0%,transparent 50%);pointer-events:none}
.mf-panel:hover{border-color:rgba(181,138,69,.5);box-shadow:0 0 30px rgba(181,138,69,.08),inset 0 0 30px rgba(181,138,69,.03)}
.mf-panel__header{display:flex;align-items:center;justify-content:center;gap:.6rem;padding:1.1rem 1.25rem .6rem;position:relative}
.mf-panel__ornament{font-size:.8rem;color:rgba(181,138,69,.25);transition:all .5s;text-shadow:0 0 6px rgba(181,138,69,.1)}
.mf-panel:hover .mf-panel__ornament{color:rgba(181,138,69,.6);text-shadow:0 0 15px rgba(181,138,69,.4);transform:scale(1.15)}
.mf-panel__title{font-family:var(--font-decorative);font-size:.95rem;letter-spacing:.15em;color:#B58A45;text-align:center;text-shadow:0 0 20px rgba(181,138,69,.3);transition:text-shadow .4s}
.mf-panel:hover .mf-panel__title{text-shadow:0 0 30px rgba(181,138,69,.5),0 0 60px rgba(181,138,69,.2)}
.mf-panel__border{height:1px;background:linear-gradient(90deg,transparent,rgba(118,83,47,.5),rgba(181,138,69,.3),rgba(118,83,47,.5),transparent);margin:0 1rem;position:relative}
.mf-panel__border::after{content:'';position:absolute;left:50%;top:-2px;width:6px;height:6px;background:#B58A45;transform:translateX(-50%) rotate(45deg);border:1px solid rgba(181,138,69,.5);box-shadow:0 0 8px rgba(181,138,69,.3)}
.mf-panel__list{list-style:none;padding:.75rem .5rem;display:flex;flex-direction:column;gap:2px}
.mf-panel__link{display:flex;align-items:center;gap:.75rem;padding:.6rem .75rem;border-radius:3px;transition:all .35s ease;position:relative;overflow:hidden;text-decoration:none;border:1px solid transparent}
.mf-panel__link::before{content:'';position:absolute;left:0;top:0;bottom:0;width:0;background:linear-gradient(90deg,rgba(181,138,69,.1),transparent);transition:width .35s ease}
.mf-panel__link:hover::before{width:100%}
.mf-panel__link:hover{background:rgba(181,138,69,.07);border-color:rgba(181,138,69,.15)}
.mf-panel__link-icon{width:30px;height:30px;display:flex;align-items:center;justify-content:center;background:rgba(118,83,47,.12);border:1px solid rgba(91,68,40,.2);border-radius:3px;font-size:.7rem;color:rgba(181,138,69,.5);transition:all .35s;flex-shrink:0;position:relative}
.mf-panel__link:hover .mf-panel__link-icon{background:rgba(181,138,69,.15);border-color:rgba(181,138,69,.5);color:#D6B56A;box-shadow:0 0 12px rgba(181,138,69,.2);transform:scale(1.1)}
.mf-panel__link-text{flex:1;font-family:var(--font-decorative);font-size:.8rem;letter-spacing:.06em;color:#C4A265;transition:all .35s;text-shadow:0 1px 2px rgba(0,0,0,.4)}
.mf-panel__link:hover .mf-panel__link-text{color:#E8D09C;text-shadow:0 0 12px rgba(232,208,156,.35),0 1px 2px rgba(0,0,0,.4)}
.mf-panel__link-sword{font-size:.55rem;color:rgba(181,138,69,.0);transition:all .4s;transform:rotate(90deg) scale(0);opacity:0}
.mf-panel__link:hover .mf-panel__link-sword{color:rgba(181,138,69,.6);transform:rotate(0deg) scale(1);opacity:1;text-shadow:0 0 8px rgba(181,138,69,.4)}
@keyframes mfSwordSlash{0%{transform:rotate(-30deg) scale(0);opacity:0}50%{transform:rotate(5deg) scale(1.2);opacity:1}100%{transform:rotate(0deg) scale(1);opacity:.6}}
.mf-panel__link:hover .mf-panel__link-sword{animation:mfSwordSlash .4s ease forwards}
.mf-panel__cta{display:flex;align-items:center;justify-content:center;margin:1rem .75rem .5rem;padding:.7rem 1.25rem;background:linear-gradient(135deg,rgba(118,83,47,.15),rgba(91,68,40,.25),rgba(118,83,47,.15));border:1px solid rgba(181,138,69,.25);border-radius:3px;text-decoration:none;position:relative;overflow:hidden;transition:all .4s;cursor:pointer}
.mf-panel__cta::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,transparent,rgba(181,138,69,.08),transparent);opacity:0;transition:opacity .4s}
.mf-panel__cta:hover::before{opacity:1}
.mf-panel__cta:hover{border-color:rgba(181,138,69,.55);background:linear-gradient(135deg,rgba(181,138,69,.12),rgba(91,68,40,.35),rgba(181,138,69,.12));box-shadow:0 0 20px rgba(181,138,69,.12),inset 0 0 20px rgba(181,138,69,.05)}
.mf-panel__cta-frame{position:absolute;inset:0;pointer-events:none}
.mf-panel__cta-corner{position:absolute;width:10px;height:10px;border:1.5px solid rgba(181,138,69,.3);transition:all .4s}
.mf-panel__cta-corner--tl{top:3px;left:3px;border-right:none;border-bottom:none;border-radius:2px 0 0 0}
.mf-panel__cta-corner--tr{top:3px;right:3px;border-left:none;border-bottom:none;border-radius:0 2px 0 0}
.mf-panel__cta-corner--bl{bottom:3px;left:3px;border-right:none;border-top:none;border-radius:0 0 0 2px}
.mf-panel__cta-corner--br{bottom:3px;right:3px;border-left:none;border-top:none;border-radius:0 0 2px 0}
.mf-panel__cta:hover .mf-panel__cta-corner{border-color:rgba(181,138,69,.6);width:14px;height:14px}
.mf-panel__cta-sword{font-size:.65rem;color:rgba(181,138,69,.35);transition:all .4s}
.mf-panel__cta-sword--left{margin-right:.5rem}
.mf-panel__cta-sword--right{margin-left:.5rem}
.mf-panel__cta:hover .mf-panel__cta-sword{color:#B58A45;text-shadow:0 0 10px rgba(181,138,69,.4);transform:scale(1.2)}
.mf-panel__cta-text{font-family:var(--font-decorative);font-size:.7rem;letter-spacing:.2em;color:rgba(232,215,176,.65);transition:all .4s}
.mf-panel__cta:hover .mf-panel__cta-text{color:#D6B56A;text-shadow:0 0 15px rgba(214,181,106,.4)}
@keyframes mfCtaShine{0%{left:-100%}100%{left:100%}}
.mf-panel__cta:hover::after{content:'';position:absolute;top:0;left:-100%;width:50%;height:100%;background:linear-gradient(90deg,transparent,rgba(181,138,69,.12),transparent);animation:mfCtaShine .6s ease}
.mf-guild-banner{position:relative;border:1px solid rgba(91,68,40,.3);border-radius:4px;overflow:hidden;background:rgba(8,7,6,.5)}
.mf-guild-banner__glow{position:absolute;inset:0;background:radial-gradient(ellipse at 50% 0%,rgba(181,138,69,.08),transparent 70%);pointer-events:none}
.mf-guild-banner::before{content:'';position:absolute;top:0;left:10%;right:10%;height:1px;background:linear-gradient(90deg,transparent,rgba(181,138,69,.4),transparent)}
.mf-guild-banner::after{content:'';position:absolute;bottom:0;left:10%;right:10%;height:1px;background:linear-gradient(90deg,transparent,rgba(118,83,47,.3),transparent)}
.mf-guild-banner__content{position:relative;display:flex;align-items:center;gap:1.5rem;padding:1.5rem 2rem}
.mf-guild-banner__icon{width:56px;height:56px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,rgba(118,83,47,.3),rgba(33,28,23,.8));border:1.5px solid rgba(181,138,69,.3);border-radius:50%;font-size:1.4rem;color:#B58A45;flex-shrink:0;box-shadow:0 0 20px rgba(181,138,69,.15);position:relative}
.mf-guild-banner__icon::before{content:'';position:absolute;inset:-3px;border-radius:50%;border:1px solid rgba(181,138,69,.1)}
.mf-guild-banner__text{flex:1}
.mf-guild-banner__title{font-family:var(--font-decorative);font-size:1.1rem;color:#B58A45;margin-bottom:.3rem;text-shadow:0 0 20px rgba(181,138,69,.3)}
.mf-guild-banner__desc{font-size:.8rem;color:rgba(232,215,176,.45);line-height:1.5}
.mf-guild-banner__form{display:flex;gap:.5rem;flex-shrink:0}
.mf-guild-banner__input{width:220px;padding:.7rem 1rem;background:rgba(8,7,6,.6);border:1px solid rgba(91,68,40,.4);border-radius:3px;color:#E8D7B0;font-size:.8rem;transition:border-color .3s;font-family:var(--font-body)}
.mf-guild-banner__input:focus{border-color:#B58A45;outline:none;box-shadow:0 0 12px rgba(181,138,69,.1)}
.mf-guild-banner__input::placeholder{color:rgba(156,139,110,.5)}
.mf-guild-banner__btn{display:flex;align-items:center;gap:.5rem;padding:.7rem 1.5rem;background:linear-gradient(135deg,#5B3A1E,#76532F,#B58A45);border:1px solid rgba(181,138,69,.4);color:#080706;font-family:var(--font-heading);font-size:.7rem;font-weight:700;letter-spacing:.12em;border-radius:3px;cursor:pointer;transition:all .3s;position:relative;overflow:hidden;text-transform:uppercase}
.mf-guild-banner__btn::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.15),transparent);transition:left .5s}
.mf-guild-banner__btn:hover::before{left:100%}
.mf-guild-banner__btn:hover{background:linear-gradient(135deg,#76532F,#B58A45,#D6B56A);border-color:#B58A45;box-shadow:0 0 20px rgba(181,138,69,.3),inset 0 0 15px rgba(181,138,69,.1);transform:translateY(-1px)}
.mf-footer__contact{position:relative;z-index:5;display:flex;justify-content:center;max-width:1300px;margin:0 auto;padding:0 40px 2rem}
.mf-footer__contact-box{position:absolute;left:80px;top:220px;z-index:10;max-width:300px;width:100%;text-align:center;padding:1.5rem 2rem;background:rgba(8,7,6,.7);border:1px solid rgba(91,68,40,.3);border-radius:4px}
.mf-contact-box__glow{position:absolute;inset:0;background:radial-gradient(ellipse at 50% 0%,rgba(181,138,69,.08),transparent 70%);pointer-events:none;border-radius:4px}
.mf-contact-box__frame{position:absolute;inset:0;pointer-events:none}
.mf-contact-box__corner{position:absolute;width:16px;height:16px;border:1.5px solid rgba(181,138,69,.3);transition:all .5s}
.mf-contact-box__corner--tl{top:-1px;left:-1px;border-right:none;border-bottom:none;border-radius:4px 0 0 0}
.mf-contact-box__corner--tr{top:-1px;right:-1px;border-left:none;border-bottom:none;border-radius:0 4px 0 0}
.mf-contact-box__corner--bl{bottom:-1px;left:-1px;border-right:none;border-top:none;border-radius:0 0 0 4px}
.mf-contact-box__corner--br{bottom:-1px;right:-1px;border-left:none;border-top:none;border-radius:0 0 4px 0}
.mf-contact-box:hover .mf-contact-box__corner{border-color:rgba(181,138,69,.6);width:20px;height:20px}
.mf-contact-box__icon{font-size:1.2rem;color:rgba(181,138,69,.4);margin-bottom:.6rem;transition:all .5s;text-shadow:0 0 10px rgba(181,138,69,.1)}
.mf-contact-box:hover .mf-contact-box__icon{color:#B58A45;text-shadow:0 0 20px rgba(181,138,69,.4)}
.mf-contact-box__email{display:block;font-family:var(--font-decorative);font-size:1rem;letter-spacing:.08em;color:#B58A45;text-decoration:none;margin-bottom:.8rem;transition:all .4s;text-shadow:0 0 15px rgba(181,138,69,.2)}
.mf-contact-box__email:hover{color:#D6B56A;text-shadow:0 0 25px rgba(181,138,69,.5)}
.mf-contact-box__border{height:1px;background:linear-gradient(90deg,transparent,rgba(118,83,47,.5),rgba(181,138,69,.3),rgba(118,83,47,.5),transparent);margin:0 1rem .8rem;position:relative}
.mf-contact-box__border::after{content:'';position:absolute;left:50%;top:-2px;width:6px;height:6px;background:#B58A45;transform:translateX(-50%) rotate(45deg);border:1px solid rgba(181,138,69,.5);box-shadow:0 0 8px rgba(181,138,69,.3)}
.mf-contact-box__address{font-size:.8rem;color:rgba(156,139,110,.6);letter-spacing:.04em;display:flex;align-items:center;justify-content:center;gap:.5rem}
.mf-contact-box__address i{color:rgba(181,138,69,.35);font-size:.75rem}

/* Payment Logos */
.mf-footer__payments{position:absolute;left:80px;top:430px;z-index:10;display:flex;flex-direction:column;align-items:flex-start;gap:1rem}
.mf-payments__list{display:flex;align-items:center;gap:1.2rem;flex-wrap:wrap}
.mf-footer__payment-logo{width:80px;height:80px;object-fit:contain;opacity:.6;filter:grayscale(.3);transition:all .3s}
.mf-footer__payment-logo:hover{opacity:1;filter:none;transform:scale(1.1)}

/* Payment Gateways Title Box */
.mf-payments__title-box{position:relative;background:rgba(8,7,6,.8);border:1px solid rgba(181,138,69,.35);border-radius:4px;padding:.5rem 1.4rem;text-align:center;overflow:hidden;max-width:320px;transition:all .5s}
.mf-payments__title-box::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 50% 0%,rgba(181,138,69,.1),transparent 70%);pointer-events:none}
.mf-payments__title-box:hover{border-color:rgba(181,138,69,.6);box-shadow:0 0 40px rgba(181,138,69,.15),inset 0 0 30px rgba(181,138,69,.05)}
.mf-payments__title-glow{position:absolute;inset:0;background:radial-gradient(ellipse at 50% 50%,rgba(181,138,69,.06),transparent 60%);pointer-events:none}
.mf-payments__title-frame{position:absolute;inset:0;pointer-events:none}
.mf-payments__title-corner{position:absolute;width:6px;height:6px;border:1px solid rgba(181,138,69,.35);transition:all .5s}
.mf-payments__title-corner--tl{top:3px;left:3px;border-right:none;border-bottom:none}
.mf-payments__title-corner--tr{top:3px;right:3px;border-left:none;border-bottom:none}
.mf-payments__title-corner--bl{bottom:3px;left:3px;border-right:none;border-top:none}
.mf-payments__title-corner--br{bottom:3px;right:3px;border-left:none;border-top:none}
.mf-payments__title-box:hover .mf-payments__title-corner{border-color:rgba(181,138,69,.7)}
.mf-payments__title-sub{display:block;font-family:var(--font-heading);font-size:.45rem;letter-spacing:.3em;color:rgba(181,138,69,.55);margin-bottom:1px;transition:color .4s}
.mf-payments__title-box:hover .mf-payments__title-sub{color:rgba(181,138,69,.8)}
.mf-payments__title-main{font-family:var(--font-decorative);font-size:1.1rem;font-weight:900;color:#B58A45;text-shadow:0 0 20px rgba(181,138,69,.4),0 0 40px rgba(181,138,69,.2),0 1px 3px rgba(0,0,0,.8);line-height:1.1;letter-spacing:.05em;margin:0}
.mf-payments__title-border{height:1px;background:linear-gradient(90deg,transparent,rgba(181,138,69,.4),transparent);margin-top:.35rem}

.mf-footer__bottom{position:relative;z-index:5;display:flex;align-items:center;justify-content:space-between;max-width:1300px;margin:0 auto;padding:1.5rem 40px;border-top:1px solid rgba(91,68,40,.2)}
.mf-bottom__left{display:flex;flex-direction:column;align-items:flex-start}
.mf-bottom__copy{font-family:'Cinzel',serif;font-size:.8rem;font-weight:600;color:rgba(214,181,106,.6);letter-spacing:.1em;text-transform:uppercase}
.mf-menus__flex{display:flex;align-items:flex-start;gap:2.5rem}
.mf-footer__logo-link{position:absolute;left:80px;top:80px;text-decoration:none;transition:opacity .3s;z-index:10}
.mf-footer__logo-link:hover{opacity:.8}
.mf-footer__logo{width:320px;height:auto;max-height:320px;object-fit:contain;display:block}
.mf-bottom__right{display:flex;gap:1.5rem}
.mf-bottom__link{font-family:'Cinzel',serif;font-size:.8rem;font-weight:600;color:rgba(214,181,106,.6);letter-spacing:.1em;text-transform:uppercase;transition:all .35s;position:relative;padding-bottom:2px}
.mf-bottom__link::after{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:0;height:1px;background:#D6B56A;transition:width .3s}
.mf-bottom__link:hover{color:#D6B56A;text-shadow:0 0 12px rgba(214,181,106,.3)}
.mf-bottom__link:hover::after{width:100%}
.mf-bottom__social{display:flex;gap:.6rem}
.mf-social-seal{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:radial-gradient(circle at 35% 35%,rgba(118,83,47,.4),rgba(33,28,23,.8));border:1.5px solid rgba(91,68,40,.5);transition:all .3s;cursor:pointer;position:relative}
.mf-social-seal::before{content:'';position:absolute;inset:2px;border-radius:50%;border:1px solid rgba(181,138,69,.15)}
.mf-social-seal:hover{border-color:#B58A45;background:radial-gradient(circle at 35% 35%,rgba(181,138,69,.3),rgba(61,17,14,.6));box-shadow:0 0 15px rgba(181,138,69,.2);transform:scale(1.1)}
.mf-seal__icon{font-size:.85rem;color:var(--brand-color, rgba(232,215,176,.6));transition:color .3s;position:relative;z-index:1}
.mf-social-seal:hover .mf-seal__icon{color:#B58A45}
@media(max-width:1024px){
.mf-footer__content{grid-template-columns:1fr;gap:2rem;padding:60px 24px 30px}
.mf-collage__grid{height:300px}
.mf-title-box__main{font-size:1.4rem}
.mf-title-box{max-width:240px;padding:.6rem 1.2rem}
.mf-menus__grid{grid-template-columns:repeat(2,1fr)}
.mf-footer__logo-link{position:relative;left:auto;top:auto;text-align:center;padding:1rem 0}
.mf-guild-banner__content{flex-wrap:wrap;justify-content:center;text-align:center}
.mf-guild-banner__icon{margin-bottom:.5rem}
.mf-guild-banner__form{width:100%;justify-content:center}
.mf-footer__contact{padding:0 24px 2rem}
.mf-footer__contact-box{position:relative;left:auto;top:auto;max-width:380px;margin:0 auto}
.mf-footer__payment-logo{width:64px;height:64px}
}
@media(max-width:768px){
.mf-footer{min-height:auto}
.mf-collage__grid{height:220px}
.mf-title-box__main{font-size:1.2rem}
.mf-title-box{max-width:200px;padding:.5rem 1rem}
.mf-menus__grid{grid-template-columns:1fr}
.mf-guild-banner__content{flex-direction:column;text-align:center;padding:1.25rem}
.mf-guild-banner__form{flex-direction:column}
.mf-guild-banner__input{width:100%}
.mf-footer__bottom{flex-direction:column;gap:1rem;text-align:center;padding:1.5rem 24px}
.mf-bottom__right{flex-wrap:wrap;justify-content:center}
.mf-footer__contact-box{max-width:100%;padding:1.5rem 1.25rem}
.mf-contact-box__email{font-size:.9rem}
.mf-footer__logo{width:200px;max-height:200px}
.mf-payments__title-main{font-size:.85rem}
}

/* Blog Section */
.blog-section{padding:3rem 0 4rem}
.blog-section .section__header{text-align:center;margin-bottom:2rem}
.blog-section .section__desc{font-size:.9rem;max-width:500px;margin:0 auto .75rem}
.blog-section .section__cta{font-family:'Cinzel',serif;font-size:.8rem;color:var(--gold);letter-spacing:1px;text-decoration:none;transition:all .3s;display:inline-flex;align-items:center;gap:.5rem;margin-top:.75rem}
.blog-section .section__cta:hover{color:var(--gold-light);gap:.75rem}

.blog-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}

.blog-home-card{display:block;text-decoration:none;color:inherit;border-radius:4px;overflow:hidden;border:1px solid rgba(181,138,69,.1);background:var(--bg-panel);transition:all .35s}
.blog-home-card:hover{transform:translateY(-3px);border-color:rgba(181,138,69,.3);box-shadow:0 8px 24px rgba(0,0,0,.4),0 0 12px rgba(181,138,69,.06)}

.blog-home-card__image{position:relative;width:100%;aspect-ratio:16/9;overflow:hidden;background:var(--bg-stone)}
.blog-home-card__image img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.blog-home-card:hover .blog-home-card__image img{transform:scale(1.05)}
.blog-home-card__image-overlay{position:absolute;inset:0;background:linear-gradient(0deg,rgba(8,7,6,.6) 0%,transparent 50%);pointer-events:none}
.blog-home-card__placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;color:rgba(181,138,69,.15);background:var(--bg-stone)}
.blog-home-card__date{position:absolute;bottom:6px;left:8px;font-size:.6rem;color:rgba(232,215,176,.85);letter-spacing:.3px;display:flex;align-items:center;gap:4px;background:rgba(8,7,6,.75);padding:3px 6px;border-radius:2px;backdrop-filter:blur(4px);border:1px solid rgba(181,138,69,.12)}
.blog-home-card__date i{font-size:.55rem;color:var(--gold-dim)}

.blog-home-card__body{padding:.75rem .85rem .85rem}

.blog-home-card__title{font-family:'Cinzel',serif;font-size:.78rem;font-weight:600;color:var(--text-primary);margin-bottom:.3rem;line-height:1.3;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;transition:color .3s}
.blog-home-card:hover .blog-home-card__title{color:var(--gold)}

.blog-home-card__excerpt{font-size:.68rem;color:var(--text-secondary);line-height:1.45;margin-bottom:.5rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}

.blog-home-card__link{font-family:'Cinzel',serif;font-size:.6rem;color:var(--gold);letter-spacing:.7px;text-transform:uppercase;display:inline-flex;align-items:center;gap:4px;transition:all .3s}
.blog-home-card__link i{font-size:.5rem;transition:transform .3s}
.blog-home-card:hover .blog-home-card__link{color:var(--gold-light);gap:6px}
.blog-home-card:hover .blog-home-card__link i{transform:translateX(2px)}

/* Blog Page (listing) */
.blog-page-card{display:block;text-decoration:none;color:inherit;border:1px solid rgba(181,138,69,.12);border-radius:6px;overflow:hidden;background:var(--bg-panel);transition:all .4s}
.blog-page-card:hover{transform:translateY(-4px);border-color:rgba(181,138,69,.35);box-shadow:0 12px 40px rgba(0,0,0,.5),0 0 20px rgba(181,138,69,.08)}
.blog-page-card__img{aspect-ratio:16/9;overflow:hidden;background:var(--bg-stone)}
.blog-page-card__img img{width:100%;height:100%;object-fit:cover;transition:transform .6s}
.blog-page-card:hover .blog-page-card__img img{transform:scale(1.05)}
.blog-page-card__body{padding:1.25rem}
.blog-page-card__date{font-size:.7rem;color:var(--gold-dim);letter-spacing:.5px;display:flex;align-items:center;gap:5px;margin-bottom:.5rem}
.blog-page-card__title{font-family:'Cinzel',serif;font-size:1rem;color:var(--text-primary);margin-bottom:.5rem;line-height:1.3}
.blog-page-card:hover .blog-page-card__title{color:var(--gold)}
.blog-page-card__excerpt{font-size:.85rem;color:var(--text-secondary);line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.blog-page-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}

/* Blog Single Post — Editorial Layout */
.blog-detail{background:var(--bg-main)}

/* Hero */
.blog-detail__hero{position:relative;width:100%;min-height:320px;background-color:var(--bg-stone);background-size:cover;background-position:center;display:flex;align-items:flex-end}
.blog-detail__hero-overlay{position:absolute;inset:0;background:linear-gradient(0deg,rgba(8,7,6,.93) 0%,rgba(8,7,6,.5) 45%,rgba(8,7,6,.2) 75%,rgba(8,7,6,.1) 100%)}
.blog-detail__hero-inner{position:relative;z-index:1;width:100%;max-width:960px;margin:0 auto;padding:2.5rem 2rem 2rem}
.blog-detail__date{font-size:.78rem;color:rgba(181,138,69,.85);letter-spacing:.8px;display:inline-flex;align-items:center;gap:6px;background:rgba(8,7,6,.55);padding:5px 14px;border-radius:3px;border:1px solid rgba(181,138,69,.15);margin-bottom:1rem;backdrop-filter:blur(4px)}
.blog-detail__date i{font-size:.7rem}
.blog-detail__title{font-family:'Cinzel Decorative',cursive;font-size:2.6rem;font-weight:700;color:#f0e6d2;line-height:1.2;text-shadow:0 2px 20px rgba(0,0,0,.5);margin:0}

/* Content Box — Full Width */
.blog-detail__body{width:100%}
.blog-detail__video{max-width:960px;margin:0 auto 2rem;padding:0 2rem}
.blog-detail__video iframe{width:100%;aspect-ratio:16/9;border:none;border-radius:4px;border:1px solid rgba(181,138,69,.12)}

.blog-detail__content{width:100%;padding:3rem 2rem;font-size:.95rem;line-height:1.85;color:var(--text-primary);background:var(--bg-panel);border-top:1px solid rgba(181,138,69,.08);border-bottom:1px solid rgba(181,138,69,.08)}
.blog-detail__content>*{max-width:960px;margin-left:auto;margin-right:auto}
.blog-detail__content>img{max-width:960px;display:block;margin:1.25rem auto;border-radius:4px;border:1px solid rgba(181,138,69,.1)}
.blog-detail__content h1{font-family:'Cinzel',serif;font-size:1.8rem;color:var(--gold);margin:2rem 0 1rem;padding-bottom:.5rem;border-bottom:1px solid rgba(181,138,69,.1)}
.blog-detail__content h2{font-family:'Cinzel',serif;font-size:1.4rem;color:var(--gold);margin:1.75rem 0 .75rem;padding-bottom:.4rem;border-bottom:1px solid rgba(181,138,69,.08)}
.blog-detail__content h3{font-family:'Cinzel',serif;font-size:1.15rem;color:var(--gold-light);margin:1.25rem 0 .5rem}
.blog-detail__content h4{font-family:'Cinzel',serif;font-size:1rem;color:var(--gold-light);margin:1rem 0 .4rem}
.blog-detail__content p{margin-bottom:1rem}
.blog-detail__content img{max-width:100%;height:auto;border-radius:4px;margin:1.25rem 0;border:1px solid rgba(181,138,69,.1);display:block}
.blog-detail__content iframe{max-width:100%;border-radius:4px;margin:1rem 0}
.blog-detail__content a{color:var(--gold);text-decoration:underline;text-underline-offset:2px}
.blog-detail__content a:hover{color:var(--gold-light)}
.blog-detail__content ul,.blog-detail__content ol{margin:1rem 0;padding-left:1.5rem}
.blog-detail__content li{margin-bottom:.4rem}
.blog-detail__content blockquote{border-left:3px solid var(--gold-dim);padding:12px 18px;margin:1.25rem 0;background:rgba(181,138,69,.03);color:var(--text-secondary);font-style:italic;border-radius:0 3px 3px 0}
.blog-detail__content pre{background:var(--bg-stone);border:1px solid rgba(181,138,69,.1);border-radius:4px;padding:1rem 1.25rem;margin:1rem 0;overflow-x:auto;font-family:'Fira Code',monospace;font-size:.82rem;line-height:1.6}
.blog-detail__content code{background:var(--bg-stone);padding:2px 6px;border-radius:3px;font-size:.85em;color:var(--gold-light);border:1px solid rgba(181,138,69,.08)}
.blog-detail__content pre code{background:none;padding:0;border:none;color:inherit}
.blog-detail__content strong{color:var(--text-primary);font-weight:700}
.blog-detail__content em{color:var(--text-secondary)}
.blog-detail__content hr{border:none;border-top:1px solid rgba(181,138,69,.1);margin:2rem 0}
.blog-detail__content table{width:100%;border-collapse:collapse;margin:1rem 0}
.blog-detail__content th,.blog-detail__content td{padding:8px 12px;border:1px solid rgba(181,138,69,.1);text-align:left;font-size:.85rem}
.blog-detail__content th{background:rgba(181,138,69,.05);font-family:'Cinzel',serif;color:var(--gold);font-weight:600}

/* Footer */
.blog-detail__footer{padding-top:2rem;border-top:1px solid rgba(181,138,69,.08);margin-top:1.5rem}

/* Responsive */
@media(max-width:900px){
    .blog-detail__hero{min-height:280px}
    .blog-detail__hero-inner{padding:2rem 1.5rem 1.75rem}
    .blog-detail__title{font-size:2rem}
    .blog-detail__body{padding:0}
    .blog-detail__content{padding:2.5rem 2rem}
}
@media(max-width:600px){
    .blog-detail__hero{min-height:220px}
    .blog-detail__hero-inner{padding:1.5rem 1.25rem 1.25rem}
    .blog-detail__title{font-size:1.4rem}
    .blog-detail__video{padding:0 1rem}
    .blog-detail__content{padding:2rem 1.25rem;font-size:.9rem}
    .blog-detail__content h1{font-size:1.4rem}
    .blog-detail__content h2{font-size:1.15rem}
    .blog-detail__content h3{font-size:1rem}
}
@media(max-width:400px){
    .blog-detail__hero{min-height:180px}
    .blog-detail__hero-inner{padding:1.25rem 1rem 1rem}
    .blog-detail__title{font-size:1.15rem}
    .blog-detail__content{padding:1.5rem 1rem;font-size:.85rem}
}

@media(max-width:1100px){.blog-grid{grid-template-columns:repeat(2,1fr)}.blog-page-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.blog-grid{grid-template-columns:1fr}.blog-page-grid{grid-template-columns:1fr}}

/* Custom Page */
.custom-page{background:var(--bg-main)}
.custom-page__header{width:100%;background:var(--bg-panel);border-bottom:1px solid rgba(181,138,69,.08);padding:3rem 2rem 2.5rem;text-align:center}
.custom-page__title{font-family:'Cinzel Decorative',cursive;font-size:2.4rem;font-weight:700;color:var(--text-primary);margin:0;line-height:1.2}
.custom-page__body{width:100%;max-width:960px;margin:0 auto;padding:2.5rem 2rem 3rem}
.custom-page__video{margin-bottom:2rem}
.custom-page__video iframe{width:100%;aspect-ratio:16/9;border:none;border-radius:4px;border:1px solid rgba(181,138,69,.12)}
.custom-page__content{font-size:.95rem;line-height:1.85;color:var(--text-primary)}
.custom-page__content>*{max-width:960px}
.custom-page__content h1{font-family:'Cinzel',serif;font-size:1.8rem;color:var(--gold);margin:2rem 0 1rem;padding-bottom:.5rem;border-bottom:1px solid rgba(181,138,69,.1)}
.custom-page__content h2{font-family:'Cinzel',serif;font-size:1.4rem;color:var(--gold);margin:1.75rem 0 .75rem;padding-bottom:.4rem;border-bottom:1px solid rgba(181,138,69,.08)}
.custom-page__content h3{font-family:'Cinzel',serif;font-size:1.15rem;color:var(--gold-light);margin:1.25rem 0 .5rem}
.custom-page__content p{margin-bottom:1rem}
.custom-page__content img{max-width:100%;height:auto;border-radius:4px;margin:1.25rem 0;border:1px solid rgba(181,138,69,.1);display:block}
.custom-page__content iframe{max-width:100%;border-radius:4px;margin:1rem 0}
.custom-page__content a{color:var(--gold);text-decoration:underline;text-underline-offset:2px}
.custom-page__content a:hover{color:var(--gold-light)}
.custom-page__content ul,.custom-page__content ol{margin:1rem 0;padding-left:1.5rem}
.custom-page__content li{margin-bottom:.4rem}
.custom-page__content blockquote{border-left:3px solid var(--gold-dim);padding:12px 18px;margin:1.25rem 0;background:rgba(181,138,69,.03);color:var(--text-secondary);font-style:italic;border-radius:0 3px 3px 0}
.custom-page__content pre{background:var(--bg-stone);border:1px solid rgba(181,138,69,.1);border-radius:4px;padding:1rem 1.25rem;margin:1rem 0;overflow-x:auto;font-family:'Fira Code',monospace;font-size:.82rem;line-height:1.6}
.custom-page__content code{background:var(--bg-stone);padding:2px 6px;border-radius:3px;font-size:.85em;color:var(--gold-light);border:1px solid rgba(181,138,69,.08)}
.custom-page__content pre code{background:none;padding:0;border:none;color:inherit}
.custom-page__content strong{color:var(--text-primary);font-weight:700}
.custom-page__content em{color:var(--text-secondary)}
.custom-page__content hr{border:none;border-top:1px solid rgba(181,138,69,.1);margin:2rem 0}
.custom-page__content table{width:100%;border-collapse:collapse;margin:1rem 0}
.custom-page__content th,.custom-page__content td{padding:8px 12px;border:1px solid rgba(181,138,69,.1);text-align:left;font-size:.85rem}
.custom-page__content th{background:rgba(181,138,69,.05);font-family:'Cinzel',serif;color:var(--gold);font-weight:600}
@media(max-width:768px){.custom-page__header{padding:2rem 1.5rem}.custom-page__title{font-size:1.8rem}.custom-page__body{padding:2rem 1.5rem 2.5rem}}
@media(max-width:600px){.custom-page__header{padding:1.5rem 1rem}.custom-page__title{font-size:1.4rem}.custom-page__body{padding:1.5rem 1rem 2rem}.custom-page__content{font-size:.9rem}.custom-page__content h1{font-size:1.4rem}.custom-page__content h2{font-size:1.15rem}.custom-page__content h3{font-size:1rem}}
@media(max-width:400px){.custom-page__title{font-size:1.2rem}.custom-page__content{font-size:.85rem}}


