/* Siteo publication */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #1d2327;
    background: #fff;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.section-block { margin-bottom: 24px; }
.siteo-section-anchor { display: block; height: 0; visibility: hidden; }

/* Animations sections */
@keyframes siteoFadeIn {
    from { opacity: 0; transform: translate3d(0, 12px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes siteoSlideIn {
    from { opacity: 0; transform: translate3d(30px, 0, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes siteoBounce {
    0% { opacity: 0; transform: translate3d(0, 20px, 0) scale(.97); }
    55% { opacity: 1; transform: translate3d(0, -6px, 0) scale(1.01); }
    100% { transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes siteoParallaxFloat {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -5px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .section-block { animation: none !important; transform: none !important; will-change: auto !important; }
    .section-block > * { animation: none !important; transform: none !important; will-change: auto !important; }
}

/* Effets visuels (effects system) */
@keyframes siteoZoomIn { from { opacity:0; transform:scale(.88); } to { opacity:1; transform:scale(1); } }
@keyframes siteoBlurIn { from { opacity:0; filter:blur(10px); } to { opacity:1; filter:blur(0); } }
@keyframes siteoRotateIn { from { opacity:0; transform:rotate(-8deg) scale(.92); } to { opacity:1; transform:rotate(0) scale(1); } }
@keyframes siteoFlipIn { from { opacity:0; transform:perspective(800px) rotateY(-35deg); } to { opacity:1; transform:perspective(800px) rotateY(0); } }
@keyframes siteoTypewriterBlink { 50% { border-color: transparent; } }
@keyframes siteoFadeUp { from { opacity:0; transform:translate3d(0,50px,0); } to { opacity:1; transform:translate3d(0,0,0); } }
@keyframes siteoFadeDown { from { opacity:0; transform:translate3d(0,-50px,0); } to { opacity:1; transform:translate3d(0,0,0); } }
@keyframes siteoFadeLeft { from { opacity:0; transform:translate3d(-50px,0,0); } to { opacity:1; transform:translate3d(0,0,0); } }
@keyframes siteoFadeRight { from { opacity:0; transform:translate3d(50px,0,0); } to { opacity:1; transform:translate3d(0,0,0); } }
@keyframes siteoScaleUp { from { opacity:0; transform:scale(.82); } to { opacity:1; transform:scale(1); } }
@keyframes siteoScrollReveal { from { opacity:0; transform:translate3d(0,60px,0); } to { opacity:1; transform:translate3d(0,0,0); } }
@keyframes siteoStackSnap { 0% { opacity:0; transform:translate3d(0,80px,0) scale(.96); } 70% { opacity:1; transform:translate3d(0,-4px,0) scale(1.01); } 100% { opacity:1; transform:translate3d(0,0,0) scale(1); } }

.siteo-fx-fade { animation: siteoFadeIn .6s cubic-bezier(.16,1,.3,1) both; }
.siteo-fx-slide { animation: siteoSlideIn .6s cubic-bezier(.16,1,.3,1) both; }
.siteo-fx-bounce { animation: siteoBounce .7s ease-out both; }
.siteo-fx-parallax { animation: siteoParallaxFloat 3.6s ease-in-out infinite; }
.siteo-fx-zoom-in { animation: siteoZoomIn .6s cubic-bezier(.16,1,.3,1) both; }
.siteo-fx-blur-in { animation: siteoBlurIn .55s ease-out both; }
.siteo-fx-rotate-in { animation: siteoRotateIn .6s ease-out both; }
.siteo-fx-flip-in { animation: siteoFlipIn .65s ease-out both; }
.siteo-fx-fade-up { animation: siteoFadeUp .7s cubic-bezier(.16,1,.3,1) both; }
.siteo-fx-fade-down { animation: siteoFadeDown .7s cubic-bezier(.16,1,.3,1) both; }
.siteo-fx-fade-left { animation: siteoFadeLeft .65s cubic-bezier(.16,1,.3,1) both; }
.siteo-fx-fade-right { animation: siteoFadeRight .65s cubic-bezier(.16,1,.3,1) both; }
.siteo-fx-scale-up { animation: siteoScaleUp .65s cubic-bezier(.16,1,.3,1) both; }
.siteo-fx-scroll-reveal { animation: siteoScrollReveal .8s cubic-bezier(.16,1,.3,1) both; }
.siteo-fx-stack-snap { animation: siteoStackSnap .7s cubic-bezier(.16,1,.3,1) both; }

/* Scroll-triggered: hidden by default, revealed by IntersectionObserver */
.siteo-scroll-fx { opacity:0; animation:none; will-change:transform,opacity; }
.siteo-scroll-fx.siteo-fx-visible { animation-play-state:running; }
.siteo-scroll-fx.siteo-fx-visible.siteo-fx-fade { animation: siteoFadeIn var(--siteo-fx-duration,.6s) cubic-bezier(.16,1,.3,1) both; }
.siteo-scroll-fx.siteo-fx-visible.siteo-fx-slide { animation: siteoSlideIn var(--siteo-fx-duration,.6s) cubic-bezier(.16,1,.3,1) both; }
.siteo-scroll-fx.siteo-fx-visible.siteo-fx-bounce { animation: siteoBounce var(--siteo-fx-duration,.7s) ease-out both; }
.siteo-scroll-fx.siteo-fx-visible.siteo-fx-zoom-in { animation: siteoZoomIn var(--siteo-fx-duration,.6s) cubic-bezier(.16,1,.3,1) both; }
.siteo-scroll-fx.siteo-fx-visible.siteo-fx-blur-in { animation: siteoBlurIn var(--siteo-fx-duration,.55s) ease-out both; }
.siteo-scroll-fx.siteo-fx-visible.siteo-fx-rotate-in { animation: siteoRotateIn var(--siteo-fx-duration,.6s) ease-out both; }
.siteo-scroll-fx.siteo-fx-visible.siteo-fx-flip-in { animation: siteoFlipIn var(--siteo-fx-duration,.65s) ease-out both; }
.siteo-scroll-fx.siteo-fx-visible.siteo-fx-fade-up { animation: siteoFadeUp var(--siteo-fx-duration,.7s) cubic-bezier(.16,1,.3,1) both; }
.siteo-scroll-fx.siteo-fx-visible.siteo-fx-fade-down { animation: siteoFadeDown var(--siteo-fx-duration,.7s) cubic-bezier(.16,1,.3,1) both; }
.siteo-scroll-fx.siteo-fx-visible.siteo-fx-fade-left { animation: siteoFadeLeft var(--siteo-fx-duration,.65s) cubic-bezier(.16,1,.3,1) both; }
.siteo-scroll-fx.siteo-fx-visible.siteo-fx-fade-right { animation: siteoFadeRight var(--siteo-fx-duration,.65s) cubic-bezier(.16,1,.3,1) both; }
.siteo-scroll-fx.siteo-fx-visible.siteo-fx-scale-up { animation: siteoScaleUp var(--siteo-fx-duration,.65s) cubic-bezier(.16,1,.3,1) both; }
.siteo-scroll-fx.siteo-fx-visible.siteo-fx-scroll-reveal { animation: siteoScrollReveal var(--siteo-fx-duration,.8s) cubic-bezier(.16,1,.3,1) both; }
.siteo-scroll-fx.siteo-fx-visible.siteo-fx-stack-snap { animation: siteoStackSnap var(--siteo-fx-duration,.7s) cubic-bezier(.16,1,.3,1) both; }

.siteo-fx-text-shadow { text-shadow: 0 2px 4px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08), 0 8px 28px rgba(0,0,0,.06); }
@keyframes siteoTextGlowPulse { 0%,100% { text-shadow: 0 0 12px rgba(99,102,241,.55), 0 0 4px rgba(99,102,241,.3); } 50% { text-shadow: 0 0 20px rgba(99,102,241,.8), 0 0 8px rgba(99,102,241,.5), 0 0 40px rgba(99,102,241,.3); } }
.siteo-fx-text-glow { animation: siteoTextGlowPulse 2s ease-in-out infinite; }
@keyframes siteoTextGradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.siteo-fx-text-gradient h1,.siteo-fx-text-gradient h2,.siteo-fx-text-gradient h3,.siteo-fx-text-gradient h4,.siteo-fx-text-gradient h5,.siteo-fx-text-gradient h6,.siteo-fx-text-gradient p,.siteo-fx-text-gradient li,.siteo-fx-text-gradient a:not(.btn),.siteo-fx-text-gradient span:not(.fas):not(.far):not(.fab):not(.fa) { background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b, #6366f1); background-size: 300% 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: siteoTextGradientShift 4s ease infinite; }
.siteo-fx-text-outline h1,.siteo-fx-text-outline h2,.siteo-fx-text-outline h3,.siteo-fx-text-outline h4,.siteo-fx-text-outline h5,.siteo-fx-text-outline h6,.siteo-fx-text-outline p,.siteo-fx-text-outline li { -webkit-text-stroke: 1.5px currentColor; color: transparent; }
.siteo-fx-text-lift { text-shadow: 0 1px 0 #ccc, 0 2px 0 #c3c3c3, 0 3px 0 #b5b5b5, 0 4px 0 #aaa, 0 5px 6px rgba(0,0,0,.18); }
.siteo-fx-text-3d { text-shadow: 1px 1px 0 #d4d4d4, 2px 2px 0 #c8c8c8, 3px 3px 0 #bcbcbc, 4px 4px 0 #b0b0b0, 5px 5px 0 #a4a4a4, 6px 6px 8px rgba(0,0,0,.2); }
@keyframes siteoTextNeonPulse { 0%,100% { text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa, 0 0 82px #0fa; } 50% { text-shadow: 0 0 4px #fff, 0 0 7px #fff, 0 0 14px #fff, 0 0 28px #0fa, 0 0 55px #0fa; } }
.siteo-fx-text-neon { animation: siteoTextNeonPulse 1.5s ease-in-out infinite; }
@keyframes siteoTextHighlight { from { background-size: 0% 40%; } to { background-size: 100% 40%; } }
.siteo-fx-text-highlight { background-image: linear-gradient(120deg, rgba(99,102,241,.25) 0%, rgba(236,72,153,.25) 100%); background-repeat: no-repeat; background-position: 0 85%; background-size: 100% 40%; animation: siteoTextHighlight .8s cubic-bezier(.16,1,.3,1) both; }
.siteo-fx-text-emboss { text-shadow: 0 -1px 0 rgba(0,0,0,.3), 0 1px 0 rgba(255,255,255,.5); }

@keyframes siteoTextFadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
[class*="siteo-fx-text-fade"] h1,[class*="siteo-fx-text-fade"] h2,[class*="siteo-fx-text-fade"] h3,[class*="siteo-fx-text-fade"] h4,[class*="siteo-fx-text-fade"] h5,[class*="siteo-fx-text-fade"] h6,[class*="siteo-fx-text-fade"] p,[class*="siteo-fx-text-fade"] li,[class*="siteo-fx-text-fade"] blockquote,.siteo-fx-text-blur h1,.siteo-fx-text-blur h2,.siteo-fx-text-blur h3,.siteo-fx-text-blur h4,.siteo-fx-text-blur h5,.siteo-fx-text-blur h6,.siteo-fx-text-blur p,.siteo-fx-text-blur li,.siteo-fx-text-blur blockquote { opacity:0; }
.siteo-fx-text-active.siteo-fx-text-fade-up h1,.siteo-fx-text-active.siteo-fx-text-fade-up h2,.siteo-fx-text-active.siteo-fx-text-fade-up h3,.siteo-fx-text-active.siteo-fx-text-fade-up h4,.siteo-fx-text-active.siteo-fx-text-fade-up h5,.siteo-fx-text-active.siteo-fx-text-fade-up h6,.siteo-fx-text-active.siteo-fx-text-fade-up p,.siteo-fx-text-active.siteo-fx-text-fade-up li,.siteo-fx-text-active.siteo-fx-text-fade-up blockquote { animation: siteoTextFadeUp .55s cubic-bezier(.16,1,.3,1) both; }
@keyframes siteoTextFadeInDown { from { opacity:0; transform:translateY(-25px); } to { opacity:1; transform:translateY(0); } }
.siteo-fx-text-active.siteo-fx-text-fade-in-down h1,.siteo-fx-text-active.siteo-fx-text-fade-in-down h2,.siteo-fx-text-active.siteo-fx-text-fade-in-down h3,.siteo-fx-text-active.siteo-fx-text-fade-in-down h4,.siteo-fx-text-active.siteo-fx-text-fade-in-down h5,.siteo-fx-text-active.siteo-fx-text-fade-in-down h6,.siteo-fx-text-active.siteo-fx-text-fade-in-down p,.siteo-fx-text-active.siteo-fx-text-fade-in-down li,.siteo-fx-text-active.siteo-fx-text-fade-in-down blockquote { animation: siteoTextFadeInDown .55s cubic-bezier(.16,1,.3,1) both; }
@keyframes siteoTextFadeInLeft { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
.siteo-fx-text-active.siteo-fx-text-fade-in-left h1,.siteo-fx-text-active.siteo-fx-text-fade-in-left h2,.siteo-fx-text-active.siteo-fx-text-fade-in-left h3,.siteo-fx-text-active.siteo-fx-text-fade-in-left h4,.siteo-fx-text-active.siteo-fx-text-fade-in-left h5,.siteo-fx-text-active.siteo-fx-text-fade-in-left h6,.siteo-fx-text-active.siteo-fx-text-fade-in-left p,.siteo-fx-text-active.siteo-fx-text-fade-in-left li,.siteo-fx-text-active.siteo-fx-text-fade-in-left blockquote { animation: siteoTextFadeInLeft .6s cubic-bezier(.16,1,.3,1) both; }
@keyframes siteoTextFadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
.siteo-fx-text-active.siteo-fx-text-fade-in-right h1,.siteo-fx-text-active.siteo-fx-text-fade-in-right h2,.siteo-fx-text-active.siteo-fx-text-fade-in-right h3,.siteo-fx-text-active.siteo-fx-text-fade-in-right h4,.siteo-fx-text-active.siteo-fx-text-fade-in-right h5,.siteo-fx-text-active.siteo-fx-text-fade-in-right h6,.siteo-fx-text-active.siteo-fx-text-fade-in-right p,.siteo-fx-text-active.siteo-fx-text-fade-in-right li,.siteo-fx-text-active.siteo-fx-text-fade-in-right blockquote { animation: siteoTextFadeInRight .6s cubic-bezier(.16,1,.3,1) both; }
@keyframes siteoTextFadeIn { from { opacity:0; } to { opacity:1; } }
.siteo-fx-text-active.siteo-fx-text-fade-in h1,.siteo-fx-text-active.siteo-fx-text-fade-in h2,.siteo-fx-text-active.siteo-fx-text-fade-in h3,.siteo-fx-text-active.siteo-fx-text-fade-in h4,.siteo-fx-text-active.siteo-fx-text-fade-in h5,.siteo-fx-text-active.siteo-fx-text-fade-in h6,.siteo-fx-text-active.siteo-fx-text-fade-in p,.siteo-fx-text-active.siteo-fx-text-fade-in li,.siteo-fx-text-active.siteo-fx-text-fade-in blockquote { animation: siteoTextFadeIn .6s ease-out both; }
@keyframes siteoTextRevealBlur { from { filter: blur(8px); opacity: 0; } to { filter: blur(0); opacity: 1; } }
.siteo-fx-text-active.siteo-fx-text-blur h1,.siteo-fx-text-active.siteo-fx-text-blur h2,.siteo-fx-text-active.siteo-fx-text-blur h3,.siteo-fx-text-active.siteo-fx-text-blur h4,.siteo-fx-text-active.siteo-fx-text-blur h5,.siteo-fx-text-active.siteo-fx-text-blur h6,.siteo-fx-text-active.siteo-fx-text-blur p,.siteo-fx-text-active.siteo-fx-text-blur li,.siteo-fx-text-active.siteo-fx-text-blur blockquote { animation: siteoTextRevealBlur .6s cubic-bezier(.16,1,.3,1) both; }
.siteo-fx-text-typewriter { border-right: 2px solid; animation: siteoTypewriterBlink .75s step-end infinite; display: inline-block; overflow: hidden; white-space: nowrap; }
@keyframes siteoTextGlitch { 0% { transform: translate(0); text-shadow: 2px 0 #ff00c1, -2px 0 #00fff9; } 20% { transform: translate(-2px, 2px); } 40% { transform: translate(-2px, -2px); text-shadow: -2px 0 #ff00c1, 2px 0 #00fff9; } 60% { transform: translate(2px, 2px); } 80% { transform: translate(2px, -2px); text-shadow: 2px 0 #ff00c1, -2px 0 #00fff9; } 100% { transform: translate(0); } }
.siteo-fx-text-glitch { animation: siteoTextGlitch .35s cubic-bezier(.25,.46,.45,.94) infinite; display: inline-block; }
@keyframes siteoTextShimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.siteo-fx-text-shimmer h1,.siteo-fx-text-shimmer h2,.siteo-fx-text-shimmer h3,.siteo-fx-text-shimmer h4,.siteo-fx-text-shimmer h5,.siteo-fx-text-shimmer h6,.siteo-fx-text-shimmer p,.siteo-fx-text-shimmer li,.siteo-fx-text-shimmer span:not(.fas):not(.far):not(.fab):not(.fa) { background: linear-gradient(90deg, currentColor 33%, rgba(99,102,241,.6) 50%, currentColor 66%); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: siteoTextShimmer 3s linear infinite; }
@keyframes siteoTextWave { 0%,100% { transform: translateY(0) rotate(0); } 25% { transform: translateY(-5px) rotate(-1deg); } 75% { transform: translateY(5px) rotate(1deg); } }
.siteo-fx-text-wave { display: inline-block; animation: siteoTextWave 2s ease-in-out infinite; }
@keyframes siteoTextLinesIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.siteo-fx-text-lines h1,.siteo-fx-text-lines h2,.siteo-fx-text-lines h3,.siteo-fx-text-lines h4,.siteo-fx-text-lines h5,.siteo-fx-text-lines h6,.siteo-fx-text-lines p,.siteo-fx-text-lines li,.siteo-fx-text-lines blockquote { opacity:0; }
.siteo-fx-text-active.siteo-fx-text-lines h1,.siteo-fx-text-active.siteo-fx-text-lines h2,.siteo-fx-text-active.siteo-fx-text-lines h3,.siteo-fx-text-active.siteo-fx-text-lines h4,.siteo-fx-text-active.siteo-fx-text-lines h5,.siteo-fx-text-active.siteo-fx-text-lines h6,.siteo-fx-text-active.siteo-fx-text-lines p,.siteo-fx-text-active.siteo-fx-text-lines li,.siteo-fx-text-active.siteo-fx-text-lines blockquote { animation: siteoTextLinesIn .5s cubic-bezier(.16,1,.3,1) both; }

.siteo-fx-img-shadow img { box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.siteo-fx-img-glow img { box-shadow: 0 0 20px rgba(99,102,241,.4); }
.siteo-fx-img-grayscale img { filter: grayscale(1); transition: filter .3s; }
.siteo-fx-img-grayscale img:hover { filter: grayscale(0); }
.siteo-fx-img-sepia img { filter: sepia(.7); transition: filter .3s; }
.siteo-fx-img-sepia img:hover { filter: sepia(0); }
.siteo-fx-img-blur img { filter: blur(2px); transition: filter .3s; }
.siteo-fx-img-blur img:hover { filter: blur(0); }
.siteo-fx-img-zoom-hover img { transition: transform .35s ease; }
.siteo-fx-img-zoom-hover img:hover { transform: scale(1.08); }
.siteo-fx-img-tilt img { transform: perspective(600px) rotateY(4deg); transition: transform .35s; }
.siteo-fx-img-tilt img:hover { transform: perspective(600px) rotateY(0); }
.siteo-fx-img-rounded img { border-radius: 50%; }

/* Navigation publication */
.nav-link:hover { opacity: .85; }

.siteo-mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(15, 23, 42, .18);
    background: #ffffff;
    color: #0f172a;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.siteo-header-logo-wrap {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.siteo-header-logo-wrap img {
    max-width: min(34vw, 220px);
    height: auto;
}

.siteo-header-tools {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
}

.siteo-header-search-input {
    width: min(100%, 420px);
    min-width: 120px;
}

.siteo-header-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.siteo-header-account-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.siteo-mobile-search-wrap,
.siteo-mobile-auth-wrap {
    display: none;
}

.siteo-customer-space-page {
    position: fixed;
    inset: 0;
    z-index: 2147483090;
    background: #f1f5f9;
    display: none;
    flex-direction: column;
    overflow: hidden;
}
.siteo-customer-space-page.active {
    display: flex;
}
.siteo-customer-space-page-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 24px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}
.siteo-customer-space-page-topbar h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}
.siteo-customer-space-page-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #334155;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s;
}
.siteo-customer-space-page-back:hover {
    background: #f1f5f9;
}
.siteo-customer-space-page-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}
@media (max-width: 640px) {
    .siteo-customer-space-page-topbar {
        padding: 10px 14px;
    }
    .siteo-customer-space-page-body {
        padding: 14px;
    }
}

.siteo-auth-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .5);
    z-index: 2147483100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.siteo-auth-modal-backdrop.active {
    display: flex;
}

.siteo-auth-modal {
    width: min(460px, 96vw);
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .22);
    padding: 14px;
}

.siteo-auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.siteo-auth-tabs button {
    flex: 1;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
    padding: 9px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.siteo-auth-tabs button.active {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

.siteo-auth-form {
    display: none;
    gap: 10px;
}

.siteo-auth-form.active {
    display: grid;
}

.siteo-auth-form input {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
}

.siteo-auth-form button[type="submit"] {
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.siteo-dynamic-form-status {
    margin-top: 8px;
    font-size: 12px;
    color: #334155;
}

@media (max-width: 900px) {
    .siteo-mobile-nav-toggle { display: inline-flex; }
    .siteo-header-logo-wrap {
        max-width: 55vw;
        flex-shrink: 1;
    }
    .siteo-header-logo-wrap img {
        max-width: 100% !important;
        max-height: 40px !important;
        width: auto !important;
        object-fit: contain !important;
    }
    .siteo-header-logo-wrap span {
        font-size: clamp(16px, 4vw, 24px) !important;
    }
    [data-siteo-nav-host] {
        flex-wrap: wrap !important;
        padding: 10px 14px !important;
    }
    [data-siteo-nav-host] > .siteo-header-tools {
        display: none !important;
    }
    .siteo-header-links-wrap {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 4px !important;
        padding: 8px 0 !important;
    }
    .siteo-header-links-wrap.siteo-collapsed-mobile {
        display: none !important;
    }
    .siteo-header-links-wrap .nav-link {
        width: 100%;
        display: flex !important;
        justify-content: space-between;
        padding: 10px 12px !important;
        border-radius: 6px;
    }
    .siteo-header-links-wrap .nav-link:hover {
        background: rgba(0,0,0,.05);
    }
    .siteo-header-links-wrap .siteo-mobile-search-wrap {
        display: flex !important;
        width: 100%;
        gap: 6px;
        padding: 8px 4px;
    }
    .siteo-header-links-wrap .siteo-mobile-search-wrap input {
        flex: 1;
        min-width: 0;
        padding: 8px 12px;
        border: 1px solid #cbd5e1;
        border-radius: 6px;
        font-size: 14px;
    }
    .siteo-header-links-wrap .siteo-mobile-search-wrap button {
        padding: 8px 12px;
        border: none;
        border-radius: 6px;
        background: #0f172a;
        color: #fff;
        cursor: pointer;
    }
    .siteo-header-links-wrap .siteo-mobile-auth-wrap {
        display: flex !important;
        padding: 8px 4px;
    }
    .siteo-header-links-wrap .siteo-mobile-auth-wrap a {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
        border-radius: 6px;
        background: #0f172a;
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
    }
    .siteo-header-dd-menu {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 0 16px !important;
        margin: 0 !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        background: transparent !important;
        border-radius: 0 !important;
        z-index: auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
    .siteo-header-dd {
        position: static !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .siteo-header-dd > .siteo-header-dd-trigger {
        width: 100% !important;
        padding: 10px 12px !important;
        border-radius: 6px;
    }
    .siteo-header-dd-menu a,
    .siteo-header-dd-menu div {
        max-width: 100% !important;
    }
}

/* Header behavior: static (default) — ensure dropdown stays above next sections */
.siteo-header-static {
    position: relative;
    z-index: 1000;
}

/* Header behavior: sticky */
.siteo-header-sticky {
    position: sticky;
    top: 0;
    z-index: 10000;
}

/* Header behavior: fixed */
.siteo-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    margin: 0 !important;
}
.siteo-header-fixed [data-siteo-nav-host] {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Header behavior: transparent → solid */
.siteo-header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    margin: 0 !important;
}
.siteo-header-transparent [data-siteo-nav-host] {
    background: transparent !important;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.siteo-header-transparent.siteo-nav-scrolled [data-siteo-nav-host] {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Spacer for fixed/transparent headers */
.siteo-header-spacer {
    display: block;
    width: 100%;
    pointer-events: none;
}

/* Footer publication */
footer a:hover { opacity: .9; }

.tpl-resto-hero{position:relative;min-height:520px;display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;overflow:hidden;border-radius:12px}
      .tpl-resto-hero .hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:brightness(0.45)}
      .tpl-resto-hero .hero-inner{position:relative;z-index:2;max-width:700px;padding:40px 24px}
      .tpl-resto-hero .hero-badge{display:inline-block;font-size:13px;letter-spacing:3px;text-transform:uppercase;border:1px solid rgba(255,255,255,0.5);padding:6px 18px;border-radius:30px;margin-bottom:24px;font-weight:500}
      .tpl-resto-hero h1{font-size:52px;font-weight:800;line-height:1.1;margin:0 0 16px;font-family:Georgia,serif}
      .tpl-resto-hero .hero-sub{font-size:18px;opacity:0.92;margin-bottom:32px;line-height:1.5}
      .tpl-resto-hero .hero-cta{display:inline-block;background:#c8a96e;color:#1a1a1a;padding:14px 36px;border-radius:8px;font-weight:700;text-decoration:none;font-size:15px;transition:background 0.3s}
      .tpl-resto-hero .hero-cta:hover{background:#b8964e}

.tpl-resto-menu{background:#faf8f5;border-radius:12px;padding:48px 24px;max-width:900px;margin:0 auto}
      .tpl-resto-menu .menu-header{text-align:center;margin-bottom:36px}
      .tpl-resto-menu .menu-header h2{font-size:32px;font-weight:800;color:#2c2c2c;font-family:Georgia,serif;margin:0 0 8px}
      .tpl-resto-menu .menu-header p{color:#888;font-size:15px}
      .tpl-resto-menu .menu-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(380px,1fr));gap:16px}
      .tpl-resto-menu .dish{display:flex;justify-content:space-between;align-items:flex-start;padding:16px 0;border-bottom:1px dashed #ddd}
      .tpl-resto-menu .dish-info h4{margin:0 0 4px;font-size:16px;color:#2c2c2c;font-weight:700}
      .tpl-resto-menu .dish-info p{margin:0;font-size:13px;color:#888}
      .tpl-resto-menu .dish-price{font-size:18px;font-weight:800;color:#c8a96e;white-space:nowrap;margin-left:16px}
      @media(max-width:640px){.tpl-resto-menu .menu-grid{grid-template-columns:1fr}}

.tpl-resto-menu{background:#faf8f5;border-radius:12px;padding:48px 24px;max-width:900px;margin:0 auto}
      .tpl-resto-menu .menu-header{text-align:center;margin-bottom:36px}
      .tpl-resto-menu .menu-header h2{font-size:32px;font-weight:800;color:#2c2c2c;font-family:Georgia,serif;margin:0 0 8px}
      .tpl-resto-menu .menu-header p{color:#888;font-size:15px}
      .tpl-resto-menu .menu-category{margin-bottom:28px}
      .tpl-resto-menu .menu-category-title{font-size:20px;font-weight:700;color:#c8a96e;font-family:Georgia,serif;margin:0 0 12px;padding-bottom:8px;border-bottom:2px solid #c8a96e30}
      .tpl-resto-menu .menu-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(380px,1fr));gap:16px}
      .tpl-resto-menu .dish{display:flex;justify-content:space-between;align-items:flex-start;padding:16px 0;border-bottom:1px dashed #ddd}
      .tpl-resto-menu .dish-img{width:60px;height:60px;border-radius:8px;object-fit:cover;margin-right:12px;flex-shrink:0}
      .tpl-resto-menu .dish-info h4{margin:0 0 4px;font-size:16px;color:#2c2c2c;font-weight:700}
      .tpl-resto-menu .dish-info p{margin:0;font-size:13px;color:#888}
      .tpl-resto-menu .dish-price{font-size:18px;font-weight:800;color:#c8a96e;white-space:nowrap;margin-left:16px}
      @media(max-width:640px){.tpl-resto-menu .menu-grid{grid-template-columns:1fr}}

.tpl-resto-gallery{padding:64px 24px;background:#fff;border-radius:12px}
      .tpl-resto-gallery .rg-header{text-align:center;margin:0 auto 40px;max-width:640px}
      .tpl-resto-gallery .rg-header h2{font-size:32px;font-weight:800;margin:0 0 10px;font-family:Georgia,serif;color:#2c2c2c}
      .tpl-resto-gallery .rg-header p{font-size:15px;color:#777;margin:0}
      .tpl-resto-gallery .gal-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:16px;max-width:1200px;margin:0 auto}
      .tpl-resto-gallery .gal-item{position:relative;border-radius:12px;overflow:hidden;aspect-ratio:4/3;cursor:pointer}
      .tpl-resto-gallery .gal-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.5s ease}
      .tpl-resto-gallery .gal-item:hover img{transform:scale(1.06)}
      .tpl-resto-gallery .gal-item .gal-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,0.55) 0%,transparent 55%);display:flex;align-items:flex-end;padding:20px;transition:background 0.4s}
      .tpl-resto-gallery .gal-item:hover .gal-overlay{background:linear-gradient(to top,rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.1) 100%)}
      .tpl-resto-gallery .gal-overlay span{color:#fff;font-size:16px;font-weight:600;letter-spacing:0.3px;text-shadow:0 1px 4px rgba(0,0,0,0.3)}
      @media(max-width:640px){.tpl-resto-gallery .gal-grid{grid-template-columns:1fr 1fr;gap:10px}.tpl-resto-gallery .rg-header h2{font-size:26px}.tpl-resto-gallery{padding:40px 16px}}
      @media(max-width:400px){.tpl-resto-gallery .gal-grid{grid-template-columns:1fr}}

.tpl-resto-gallery { margin: 100 0 32px !important; gap: 50px !important; }
.tpl-resto-gallery .section-title,
.tpl-resto-gallery .hero-title,
.tpl-resto-gallery .cta-title,
.tpl-resto-gallery .gallery-title,
.tpl-resto-gallery .faq-title,
.tpl-resto-gallery .team-title,
.tpl-resto-gallery .blog-title,
.tpl-resto-gallery .stats-title,
.tpl-resto-gallery .services-title,
.tpl-resto-gallery .testimonials-title,
.tpl-resto-gallery .arrivals-title,
.tpl-resto-gallery .featured-title,
.tpl-resto-gallery .promo-title,
.tpl-resto-gallery .cart-title,
.tpl-resto-gallery .title,
.tpl-resto-gallery .heading,
.tpl-resto-gallery h1,
.tpl-resto-gallery h2,
.tpl-resto-gallery h3 { font-size: 49px !important; }

.tpl-resto-reviews{background:#faf8f5;border-radius:12px;padding:48px 24px}
      .tpl-resto-reviews h2{text-align:center;font-size:28px;font-weight:800;margin:0 0 32px;font-family:Georgia,serif;color:#2c2c2c}
      .tpl-resto-reviews .reviews-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px;max-width:1000px;margin:0 auto}
      .tpl-resto-reviews .review-card{background:#fff;border-radius:12px;padding:24px;box-shadow:0 2px 12px rgba(0,0,0,0.06)}
      .tpl-resto-reviews .review-stars{color:#c8a96e;font-size:14px;margin-bottom:12px}
      .tpl-resto-reviews .review-text{font-size:14px;color:#555;line-height:1.6;margin-bottom:12px;font-style:italic}
      .tpl-resto-reviews .review-author{font-weight:700;font-size:14px;color:#2c2c2c}

.tpl-resto-reviews { padding: 34px !important; }

.tpl-resto-reservation{background:var(--resa-bg,#1a1a1a);color:#fff;border-radius:12px;padding:48px 24px}
      .tpl-resto-reservation .resa-header{text-align:center;margin-bottom:36px}
      .tpl-resto-reservation h2{font-size:28px;font-weight:800;margin:0 0 8px;font-family:Georgia,serif}
      .tpl-resto-reservation .sub{opacity:0.7;margin-bottom:0;font-size:15px}
      .tpl-resto-reservation .resa-layout{display:grid;grid-template-columns:1fr 1fr;gap:32px;max-width:900px;margin:0 auto}
      .tpl-resto-reservation .resa-form{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:16px;padding:28px}
      .tpl-resto-reservation .resa-form h3{font-size:18px;font-weight:700;margin:0 0 20px;color:var(--resa-accent,#c8a96e)}
      .tpl-resto-reservation .resa-field{margin-bottom:16px}
      .tpl-resto-reservation .resa-field label{display:block;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:0.05em;margin-bottom:6px;opacity:0.8}
      .tpl-resto-reservation .resa-field input,.tpl-resto-reservation .resa-field select{width:100%;padding:12px 14px;border:1px solid rgba(255,255,255,0.15);border-radius:10px;background:rgba(255,255,255,0.08);color:#fff;font-size:14px;font-family:inherit}
      .tpl-resto-reservation .resa-field input::placeholder{color:rgba(255,255,255,0.4)}
      .tpl-resto-reservation .resa-field select option{background:#1a1a1a;color:#fff}
      .tpl-resto-reservation .resa-btn{width:100%;padding:14px;background:var(--resa-accent,#c8a96e);color:#1a1a1a;border:none;border-radius:10px;font-size:15px;font-weight:700;cursor:pointer;margin-top:8px;transition:transform 0.2s}
      .tpl-resto-reservation .resa-btn:hover{transform:translateY(-2px)}
      .tpl-resto-reservation .resa-info{display:grid;gap:20px;align-content:start}
      .tpl-resto-reservation .info-item{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:12px;padding:22px}
      .tpl-resto-reservation .info-item i{font-size:22px;color:var(--resa-accent,#c8a96e);margin-bottom:10px;display:block}
      .tpl-resto-reservation .info-item h4{margin:0 0 6px;font-size:14px;font-weight:700}
      .tpl-resto-reservation .info-item p{margin:0;font-size:13px;line-height:1.6;opacity:0.8}
      @media(max-width:768px){.tpl-resto-reservation .resa-layout{grid-template-columns:1fr}}

.tpl-resto-reservation{background:var(--resa-bg,#1a1a1a);color:#fff;border-radius:12px;padding:48px 24px}
      .tpl-resto-reservation .resa-header{text-align:center;margin-bottom:36px}
      .tpl-resto-reservation h2{font-size:28px;font-weight:800;margin:0 0 8px;font-family:Georgia,serif}
      .tpl-resto-reservation .sub{opacity:0.7;margin-bottom:0;font-size:15px}
      .tpl-resto-reservation .resa-layout{display:grid;grid-template-columns:1fr 1fr;gap:32px;max-width:900px;margin:0 auto}
      .tpl-resto-reservation .resa-form{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:16px;padding:28px}
      .tpl-resto-reservation .resa-form h3{font-size:18px;font-weight:700;margin:0 0 20px;color:var(--resa-accent,#c8a96e)}
      .tpl-resto-reservation .resa-field{margin-bottom:16px}
      .tpl-resto-reservation .resa-field label{display:block;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:0.05em;margin-bottom:6px;opacity:0.8}
      .tpl-resto-reservation .resa-field input,.tpl-resto-reservation .resa-field select{width:100%;padding:12px 14px;border:1px solid rgba(255,255,255,0.15);border-radius:10px;background:rgba(255,255,255,0.08);color:#fff;font-size:14px;font-family:inherit}
      .tpl-resto-reservation .resa-field input::placeholder{color:rgba(255,255,255,0.4)}
      .tpl-resto-reservation .resa-field select option{background:#1a1a1a;color:#fff}
      .tpl-resto-reservation .resa-deposit-banner{background:rgba(200,169,110,0.15);border:1px solid rgba(200,169,110,0.3);border-radius:10px;padding:14px 18px;margin-bottom:16px;display:flex;align-items:center;gap:10px}
      .tpl-resto-reservation .resa-deposit-banner i{font-size:18px;color:var(--resa-accent,#c8a96e)}
      .tpl-resto-reservation .resa-deposit-banner .deposit-text{font-size:13px;line-height:1.5}
      .tpl-resto-reservation .resa-deposit-banner .deposit-amount{font-weight:700;font-size:16px;color:var(--resa-accent,#c8a96e)}
      .tpl-resto-reservation .resa-btn{width:100%;padding:14px;background:var(--resa-accent,#c8a96e);color:#1a1a1a;border:none;border-radius:10px;font-size:15px;font-weight:700;cursor:pointer;margin-top:8px;transition:transform 0.2s}
      .tpl-resto-reservation .resa-btn:hover{transform:translateY(-2px)}
      .tpl-resto-reservation .resa-info{display:grid;gap:20px;align-content:start}
      .tpl-resto-reservation .info-item{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:12px;padding:22px}
      .tpl-resto-reservation .info-item i{font-size:22px;color:var(--resa-accent,#c8a96e);margin-bottom:10px;display:block}
      .tpl-resto-reservation .info-item h4{margin:0 0 6px;font-size:14px;font-weight:700}
      .tpl-resto-reservation .info-item p{margin:0;font-size:13px;line-height:1.6;opacity:0.8}
      @media(max-width:768px){.tpl-resto-reservation .resa-layout{grid-template-columns:1fr}}

.tpl-contact-portfolio{padding:100px 40px;background:#fafafa;font-family:'Inter',system-ui,sans-serif;position:relative}
      .tpl-contact-portfolio .cp-inner{max-width:680px;margin:0 auto;text-align:center}
      .tpl-contact-portfolio .cp-avail{display:inline-flex;align-items:center;gap:8px;font-size:13px;color:#16a34a;font-weight:600;margin-bottom:24px;letter-spacing:0.3px}
      .tpl-contact-portfolio .cp-dot{width:8px;height:8px;background:#16a34a;border-radius:50%;animation:cp-pulse 2s ease-in-out infinite}
      @keyframes cp-pulse{0%,100%{opacity:1}50%{opacity:0.4}}
      .tpl-contact-portfolio h2{font-size:42px;font-weight:800;color:#111;margin:0 0 16px;letter-spacing:-1px}
      .tpl-contact-portfolio .cp-sub{color:#666;font-size:17px;line-height:1.7;margin:0 auto 48px;max-width:520px}
      .tpl-contact-portfolio form{text-align:left}
      .tpl-contact-portfolio .cp-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
      .tpl-contact-portfolio .cp-field{margin-bottom:16px}
      .tpl-contact-portfolio input,.tpl-contact-portfolio textarea{width:100%;padding:14px 18px;border:none;border-bottom:2px solid #e5e5e5;border-radius:0;background:transparent;font:inherit;font-size:15px;transition:border-color 0.2s;box-sizing:border-box}
      .tpl-contact-portfolio input:focus,.tpl-contact-portfolio textarea:focus{outline:none;border-bottom-color:#111}
      .tpl-contact-portfolio .cp-btn{display:block;width:100%;background:#111;color:#fff;border:none;padding:16px;font-weight:700;font-size:15px;cursor:pointer;transition:all 0.3s;letter-spacing:0.5px;margin-top:8px}
      .tpl-contact-portfolio .cp-btn:hover{background:#333}
      .tpl-contact-portfolio .cp-email{display:block;margin-top:32px;color:#999;font-size:14px}
      .tpl-contact-portfolio .cp-email a{color:#111;text-decoration:none;font-weight:600}
      @media(max-width:768px){
        .tpl-contact-portfolio{padding:60px 20px}
        .tpl-contact-portfolio h2{font-size:30px}
        .tpl-contact-portfolio .cp-row{grid-template-columns:1fr}
      }

.tpl-contact-full{padding:80px 40px;background:#f7fafc}
      .tpl-contact-full .cf-inner{max-width:1100px;margin:0 auto}
      .tpl-contact-full .cf-header{text-align:center;margin-bottom:48px}
      .tpl-contact-full .cf-header h2{font-size:36px;font-weight:900;color:#1a202c;margin:0 0 12px}
      .tpl-contact-full .cf-header p{color:#718096;font-size:16px;max-width:500px;margin:0 auto}
      .tpl-contact-full .cf-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px}
      .tpl-contact-full .cf-form{background:#fff;border-radius:16px;padding:32px;box-shadow:0 4px 16px rgba(0,0,0,0.06)}
      .tpl-contact-full .cf-form .cf-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
      .tpl-contact-full .cf-form input,.tpl-contact-full .cf-form textarea,.tpl-contact-full .cf-form select{width:100%;padding:12px 16px;border:1px solid #e2e8f0;border-radius:10px;font:inherit;font-size:14px;transition:border-color 0.2s;box-sizing:border-box}
      .tpl-contact-full .cf-form input:focus,.tpl-contact-full .cf-form textarea:focus{outline:none;border-color:#5a67d8}
      .tpl-contact-full .cf-form label{display:block;font-size:13px;font-weight:600;color:#4a5568;margin-bottom:6px}
      .tpl-contact-full .cf-form .cf-field{margin-bottom:16px}
      .tpl-contact-full .cf-form button{width:100%;background:#5a67d8;color:#fff;border:none;padding:14px;border-radius:10px;font-weight:700;font-size:15px;cursor:pointer;transition:all 0.2s}
      .tpl-contact-full .cf-form button:hover{background:#4c51bf;box-shadow:0 4px 12px rgba(90,103,216,0.3)}
      .tpl-contact-full .cf-info{display:flex;flex-direction:column;gap:20px}
      .tpl-contact-full .cf-card{background:#fff;border-radius:12px;padding:24px;display:flex;gap:16px;align-items:flex-start;box-shadow:0 2px 8px rgba(0,0,0,0.04)}
      .tpl-contact-full .cf-card-icon{font-size:24px;width:48px;height:48px;background:#eef2ff;border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
      .tpl-contact-full .cf-card h4{margin:0 0 4px;color:#1a202c;font-size:15px}
      .tpl-contact-full .cf-card p{margin:0;color:#718096;font-size:14px;word-break:break-word}
      .tpl-contact-full .cf-map{border-radius:12px;overflow:hidden;height:200px;background:#e2e8f0;display:flex;align-items:center;justify-content:center;color:#a0aec0;font-size:14px}
      @media(max-width:768px){
        .tpl-contact-full{padding:48px 20px}
        .tpl-contact-full .cf-header h2{font-size:28px}
        .tpl-contact-full .cf-grid{grid-template-columns:1fr;gap:24px}
        .tpl-contact-full .cf-form{padding:24px}
        .tpl-contact-full .cf-form .cf-row{grid-template-columns:1fr}
        .tpl-contact-full .cf-card{padding:16px}
      }

.tpl-ecom-prestige-catalog{background:#fff;padding:80px 40px;font-family:'Helvetica Neue',sans-serif}
      .tpl-ecom-prestige-catalog .epc-inner{max-width:1200px;margin:0 auto}
      .tpl-ecom-prestige-catalog .epc-header{text-align:center;margin-bottom:56px}
      .tpl-ecom-prestige-catalog .epc-header h2{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.8rem,3vw,2.6rem);font-weight:400;font-style:italic;color:#1a1a1a;margin:0 0 12px}
      .tpl-ecom-prestige-catalog .epc-header p{color:#999;font-size:14px;letter-spacing:0.05em}
      .tpl-ecom-prestige-catalog .epc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}
      .tpl-ecom-prestige-catalog .epc-card{position:relative;cursor:pointer;transition:transform 0.3s}
      .tpl-ecom-prestige-catalog .epc-card:hover{transform:translateY(-4px)}
      .tpl-ecom-prestige-catalog .epc-card .epc-img{aspect-ratio:3/4;overflow:hidden;background:#f5f0eb;border-radius:2px}
      .tpl-ecom-prestige-catalog .epc-card .epc-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s}
      .tpl-ecom-prestige-catalog .epc-card:hover .epc-img img{transform:scale(1.05)}
      .tpl-ecom-prestige-catalog .epc-tag{position:absolute;top:12px;left:12px;background:#1a1a1a;color:#fff;font-size:10px;letter-spacing:0.15em;text-transform:uppercase;padding:6px 12px}
      .tpl-ecom-prestige-catalog .epc-info{padding:16px 0}
      .tpl-ecom-prestige-catalog .epc-info h4{margin:0 0 4px;font-size:15px;font-weight:400;color:#1a1a1a}
      .tpl-ecom-prestige-catalog .epc-info .epc-price{color:#8b7355;font-size:14px;font-weight:600}
      @media(max-width:900px){.tpl-ecom-prestige-catalog .epc-grid{grid-template-columns:repeat(2,1fr);gap:20px}}
      @media(max-width:480px){.tpl-ecom-prestige-catalog .epc-grid{grid-template-columns:1fr}}

.tpl-ecom-prestige-catalog{background:#fff;padding:80px 40px;font-family:'Helvetica Neue',sans-serif}
      .tpl-ecom-prestige-catalog .epc-inner{max-width:1200px;margin:0 auto}
      .tpl-ecom-prestige-catalog .epc-header{text-align:center;margin-bottom:56px}
      .tpl-ecom-prestige-catalog .epc-header h2{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.8rem,3vw,2.6rem);font-weight:400;font-style:italic;color:#1a1a1a;margin:0 0 12px}
      .tpl-ecom-prestige-catalog .epc-header p{color:#999;font-size:14px;letter-spacing:0.05em}
      .tpl-ecom-prestige-catalog .epc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}
      .tpl-ecom-prestige-catalog .epc-card{position:relative;cursor:pointer;transition:transform 0.3s}
      .tpl-ecom-prestige-catalog .epc-card:hover{transform:translateY(-4px)}
      .tpl-ecom-prestige-catalog .epc-card .epc-img{aspect-ratio:3/4;overflow:hidden;background:#f5f0eb;border-radius:2px}
      .tpl-ecom-prestige-catalog .epc-card .epc-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s}
      .tpl-ecom-prestige-catalog .epc-card:hover .epc-img img{transform:scale(1.05)}
      .tpl-ecom-prestige-catalog .epc-tag{position:absolute;top:12px;left:12px;background:#1a1a1a;color:#fff;font-size:10px;letter-spacing:0.15em;text-transform:uppercase;padding:6px 12px}
      .tpl-ecom-prestige-catalog .epc-info{padding:16px 0}
      .tpl-ecom-prestige-catalog .epc-info h4{margin:0 0 4px;font-size:15px;font-weight:400;color:#1a1a1a}
      .tpl-ecom-prestige-catalog .epc-info .epc-price{color:#8b7355;font-size:14px;font-weight:600}
      @media(max-width:900px){.tpl-ecom-prestige-catalog .epc-grid{grid-template-columns:repeat(2,1fr);gap:20px}}
      @media(max-width:480px){.tpl-ecom-prestige-catalog .epc-grid{grid-template-columns:1fr}}
      .tpl-ecom-prestige-catalog .epc-cart-btn{display:block;width:100%;border:none;background:#1a1a1a;color:#fff;padding:10px;font-size:11px;letter-spacing:0.15em;text-transform:uppercase;font-weight:600;cursor:pointer;margin-top:8px;transition:all 0.3s}
      .tpl-ecom-prestige-catalog .epc-cart-btn:hover{background:#8b7355}

.tpl-ecom-prestige-showcase{background:linear-gradient(135deg,#1a1a1a 0%,#2d2520 100%);padding:80px 40px;color:#fff;font-family:'Helvetica Neue',sans-serif}
      .tpl-ecom-prestige-showcase .eps-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
      .tpl-ecom-prestige-showcase .eps-media{text-align:center}
      .tpl-ecom-prestige-showcase .eps-media img{max-width:380px;width:100%;border-radius:4px;box-shadow:0 24px 64px rgba(0,0,0,0.4)}
      .tpl-ecom-prestige-showcase .eps-badge{font-size:11px;letter-spacing:0.25em;text-transform:uppercase;color:#c9a96e;margin-bottom:16px;display:block}
      .tpl-ecom-prestige-showcase h2{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(2rem,3.5vw,3rem);font-weight:400;font-style:italic;margin:0 0 20px;line-height:1.15}
      .tpl-ecom-prestige-showcase .eps-desc{color:#aaa;line-height:1.8;margin:0 0 24px;font-size:15px}
      .tpl-ecom-prestige-showcase .eps-details{list-style:none;padding:0;margin:0 0 32px}
      .tpl-ecom-prestige-showcase .eps-details li{padding:8px 0;color:#ccc;font-size:14px;border-bottom:1px solid rgba(255,255,255,0.08);display:flex;align-items:center;gap:10px}
      .tpl-ecom-prestige-showcase .eps-details li::before{content:'✦';color:#c9a96e;font-size:10px}
      .tpl-ecom-prestige-showcase .eps-price{font-size:28px;font-weight:300;color:#c9a96e;margin-bottom:24px;display:block;font-family:'Cormorant Garamond',serif}
      .tpl-ecom-prestige-showcase .eps-cta{display:inline-block;text-decoration:none;background:#c9a96e;color:#1a1a1a;padding:16px 48px;font-size:12px;letter-spacing:0.2em;text-transform:uppercase;font-weight:700;transition:all 0.3s}
      .tpl-ecom-prestige-showcase .eps-cta:hover{background:#dfc08a}
      @media(max-width:768px){
        .tpl-ecom-prestige-showcase .eps-inner{grid-template-columns:1fr;text-align:center}
        .tpl-ecom-prestige-showcase .eps-details li{justify-content:center}
        .tpl-ecom-prestige-showcase{padding:48px 24px}
      }

.tpl-ecom-prestige-showcase{background:linear-gradient(135deg,#1a1a1a 0%,#2d2520 100%);padding:80px 40px;color:#fff;font-family:'Helvetica Neue',sans-serif}
      .tpl-ecom-prestige-showcase .eps-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
      .tpl-ecom-prestige-showcase .eps-media{text-align:center}
      .tpl-ecom-prestige-showcase .eps-media img{max-width:380px;width:100%;border-radius:4px;box-shadow:0 24px 64px rgba(0,0,0,0.4)}
      .tpl-ecom-prestige-showcase .eps-badge{font-size:11px;letter-spacing:0.25em;text-transform:uppercase;color:#c9a96e;margin-bottom:16px;display:block}
      .tpl-ecom-prestige-showcase h2{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(2rem,3.5vw,3rem);font-weight:400;font-style:italic;margin:0 0 20px;line-height:1.15}
      .tpl-ecom-prestige-showcase .eps-desc{color:#aaa;line-height:1.8;margin:0 0 24px;font-size:15px}
      .tpl-ecom-prestige-showcase .eps-details{list-style:none;padding:0;margin:0 0 32px}
      .tpl-ecom-prestige-showcase .eps-details li{padding:8px 0;color:#ccc;font-size:14px;border-bottom:1px solid rgba(255,255,255,0.08);display:flex;align-items:center;gap:10px}
      .tpl-ecom-prestige-showcase .eps-details li::before{content:'✦';color:#c9a96e;font-size:10px}
      .tpl-ecom-prestige-showcase .eps-price{font-size:28px;font-weight:300;color:#c9a96e;margin-bottom:24px;display:block;font-family:'Cormorant Garamond',serif}
      .tpl-ecom-prestige-showcase .eps-cta{display:inline-block;text-decoration:none;background:#c9a96e;color:#1a1a1a;padding:16px 48px;font-size:12px;letter-spacing:0.2em;text-transform:uppercase;font-weight:700;transition:all 0.3s}
      .tpl-ecom-prestige-showcase .eps-cta:hover{background:#dfc08a}
      .tpl-ecom-prestige-showcase button.eps-cta{border:none;font-family:inherit;cursor:pointer}
      @media(max-width:768px){
        .tpl-ecom-prestige-showcase .eps-inner{grid-template-columns:1fr;text-align:center}
        .tpl-ecom-prestige-showcase .eps-details li{justify-content:center}
        .tpl-ecom-prestige-showcase{padding:48px 24px}
      }

.tpl-ecom-prestige-hero{background:#faf8f5;padding:0;overflow:hidden;font-family:'Cormorant Garamond',Georgia,serif}
      .tpl-ecom-prestige-hero .eph-inner{display:grid;grid-template-columns:1fr 1fr;min-height:600px}
      .tpl-ecom-prestige-hero .eph-content{display:flex;flex-direction:column;justify-content:center;padding:80px 64px}
      .tpl-ecom-prestige-hero .eph-badge{display:inline-block;font-size:11px;letter-spacing:0.25em;text-transform:uppercase;color:#8b7355;font-family:'Helvetica Neue',sans-serif;margin-bottom:20px}
      .tpl-ecom-prestige-hero h2{font-size:clamp(2.2rem,4vw,3.4rem);line-height:1.1;color:#1a1a1a;margin:0 0 20px;font-weight:400;font-style:italic}
      .tpl-ecom-prestige-hero p{font-size:16px;line-height:1.8;color:#666;font-family:'Helvetica Neue',sans-serif;margin:0 0 32px;max-width:420px}
      .tpl-ecom-prestige-hero .eph-cta{display:inline-block;text-decoration:none;color:#fff;background:#1a1a1a;padding:16px 48px;font-size:12px;letter-spacing:0.2em;text-transform:uppercase;font-family:'Helvetica Neue',sans-serif;transition:all 0.3s}
      .tpl-ecom-prestige-hero .eph-cta:hover{background:#8b7355}
      .tpl-ecom-prestige-hero .eph-media{position:relative;overflow:hidden}
      .tpl-ecom-prestige-hero .eph-media img{width:100%;height:100%;object-fit:cover}
      @media(max-width:768px){
        .tpl-ecom-prestige-hero .eph-inner{grid-template-columns:1fr}
        .tpl-ecom-prestige-hero .eph-content{padding:48px 24px}
        .tpl-ecom-prestige-hero .eph-media{height:400px}
      }

.tpl-ecom-prestige-editorial{background:#fff;padding:100px 40px;font-family:'Helvetica Neue',sans-serif}
      .tpl-ecom-prestige-editorial .epe-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
      .tpl-ecom-prestige-editorial .epe-line{width:48px;height:1px;background:#c9a96e;margin-bottom:24px}
      .tpl-ecom-prestige-editorial h2{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;font-style:italic;color:#1a1a1a;margin:0 0 24px;line-height:1.2}
      .tpl-ecom-prestige-editorial .epe-text{color:#666;line-height:1.9;font-size:15px;margin:0 0 16px}
      .tpl-ecom-prestige-editorial .epe-sig{color:#8b7355;font-family:'Cormorant Garamond',serif;font-size:18px;font-style:italic;margin-bottom:32px}
      .tpl-ecom-prestige-editorial .epe-cta{display:inline-block;text-decoration:none;color:#1a1a1a;border:1px solid #1a1a1a;padding:14px 40px;font-size:11px;letter-spacing:0.2em;text-transform:uppercase;transition:all 0.3s}
      .tpl-ecom-prestige-editorial .epe-cta:hover{background:#1a1a1a;color:#fff}
      .tpl-ecom-prestige-editorial .epe-media img{width:100%;aspect-ratio:4/5;object-fit:cover}
      @media(max-width:768px){
        .tpl-ecom-prestige-editorial .epe-inner{grid-template-columns:1fr;gap:40px}
        .tpl-ecom-prestige-editorial{padding:48px 24px}
      }

.tpl-ecom-prestige-collections{background:#faf8f5;padding:80px 40px;font-family:'Helvetica Neue',sans-serif}
      .tpl-ecom-prestige-collections .epcol-inner{max-width:1200px;margin:0 auto}
      .tpl-ecom-prestige-collections .epcol-title{text-align:center;font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.8rem,3vw,2.6rem);font-weight:400;font-style:italic;color:#1a1a1a;margin:0 0 48px}
      .tpl-ecom-prestige-collections .epcol-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
      .tpl-ecom-prestige-collections .epcol-card{position:relative;overflow:hidden;aspect-ratio:3/4;cursor:pointer}
      .tpl-ecom-prestige-collections .epcol-card img{width:100%;height:100%;object-fit:cover;transition:transform 0.8s}
      .tpl-ecom-prestige-collections .epcol-card:hover img{transform:scale(1.08)}
      .tpl-ecom-prestige-collections .epcol-card .epcol-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,0.6) 0%,transparent 50%);display:flex;flex-direction:column;justify-content:flex-end;padding:32px}
      .tpl-ecom-prestige-collections .epcol-card h3{color:#fff;font-family:'Cormorant Garamond',serif;font-size:24px;font-weight:400;font-style:italic;margin:0 0 4px}
      .tpl-ecom-prestige-collections .epcol-card span{color:rgba(255,255,255,0.7);font-size:12px;letter-spacing:0.1em;text-transform:uppercase}
      @media(max-width:768px){.tpl-ecom-prestige-collections .epcol-grid{grid-template-columns:1fr;max-width:480px;margin:0 auto}}

.tpl-ecom-prestige-testimonials{background:#faf8f5;padding:80px 40px;font-family:'Helvetica Neue',sans-serif}
      .tpl-ecom-prestige-testimonials .ept-inner{max-width:1100px;margin:0 auto}
      .tpl-ecom-prestige-testimonials .ept-title{text-align:center;font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.8rem,3vw,2.4rem);font-weight:400;font-style:italic;color:#1a1a1a;margin:0 0 48px}
      .tpl-ecom-prestige-testimonials .ept-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
      .tpl-ecom-prestige-testimonials .ept-card{background:#fff;padding:40px 32px;text-align:center;border:1px solid #ede8e1}
      .tpl-ecom-prestige-testimonials .ept-stars{color:#c9a96e;font-size:14px;margin-bottom:20px;letter-spacing:3px}
      .tpl-ecom-prestige-testimonials .ept-quote{color:#555;line-height:1.8;font-size:15px;font-style:italic;margin:0 0 24px}
      .tpl-ecom-prestige-testimonials .ept-name{font-size:13px;font-weight:600;color:#1a1a1a;letter-spacing:0.05em;text-transform:uppercase}
      .tpl-ecom-prestige-testimonials .ept-verified{font-size:11px;color:#8b7355;margin-top:4px}
      @media(max-width:768px){.tpl-ecom-prestige-testimonials .ept-grid{grid-template-columns:1fr}}

.tpl-prestige-services{background:#fff;padding:100px 40px;font-family:'Helvetica Neue',sans-serif}
      .tpl-prestige-services .ps-inner{max-width:1200px;margin:0 auto}
      .tpl-prestige-services .ps-header{text-align:center;margin-bottom:64px}
      .tpl-prestige-services .ps-header h2{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.8rem,3vw,2.6rem);font-weight:400;font-style:italic;color:#1a1a1a;margin:0 0 12px}
      .tpl-prestige-services .ps-header p{color:#8b7355;font-size:14px;letter-spacing:0.05em}
      .tpl-prestige-services .ps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px}
      .tpl-prestige-services .ps-card{text-align:center;padding:48px 32px;border:1px solid #ede8e1;transition:all 0.4s}
      .tpl-prestige-services .ps-card:hover{border-color:#c9a96e;transform:translateY(-6px);box-shadow:0 20px 60px rgba(0,0,0,0.06)}
      .tpl-prestige-services .ps-icon{font-size:32px;margin-bottom:24px;display:block}
      .tpl-prestige-services .ps-card h3{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:400;font-style:italic;color:#1a1a1a;margin:0 0 16px}
      .tpl-prestige-services .ps-card p{color:#666;font-size:14px;line-height:1.8;margin:0}
      .tpl-prestige-services .ps-line{width:40px;height:1px;background:#c9a96e;margin:0 auto 20px}
      @media(max-width:768px){.tpl-prestige-services .ps-grid{grid-template-columns:1fr;max-width:480px;margin:0 auto}}

.tpl-prestige-hero{background:#1a1a1a;padding:0;overflow:hidden;font-family:'Cormorant Garamond',Georgia,serif;position:relative;min-height:90vh;display:flex;align-items:center}
      .tpl-prestige-hero .ph-bg{position:absolute;inset:0}
      .tpl-prestige-hero .ph-bg img{width:100%;height:100%;object-fit:cover;opacity:0.4}
      .tpl-prestige-hero .ph-inner{position:relative;z-index:1;max-width:900px;margin:0 auto;text-align:center;padding:80px 40px}
      .tpl-prestige-hero .ph-badge{display:inline-block;font-size:11px;letter-spacing:0.3em;text-transform:uppercase;color:#c9a96e;font-family:'Helvetica Neue',sans-serif;margin-bottom:24px;border:1px solid rgba(201,169,110,0.4);padding:8px 24px}
      .tpl-prestige-hero h2{font-size:clamp(2.4rem,5vw,4rem);line-height:1.1;color:#fff;margin:0 0 24px;font-weight:400;font-style:italic}
      .tpl-prestige-hero p{font-size:17px;line-height:1.9;color:rgba(255,255,255,0.7);font-family:'Helvetica Neue',sans-serif;margin:0 auto 40px;max-width:600px}
      .tpl-prestige-hero .ph-cta{display:inline-block;text-decoration:none;color:#1a1a1a;background:#c9a96e;padding:16px 56px;font-size:12px;letter-spacing:0.2em;text-transform:uppercase;font-family:'Helvetica Neue',sans-serif;transition:all 0.3s}
      .tpl-prestige-hero .ph-cta:hover{background:#fff;color:#1a1a1a}
      .tpl-prestige-hero .ph-line{width:60px;height:1px;background:#c9a96e;margin:0 auto 32px}
      @media(max-width:768px){.tpl-prestige-hero .ph-inner{padding:60px 24px}.tpl-prestige-hero{min-height:70vh}}

.tpl-prestige-portfolio{background:#faf8f5;padding:100px 40px;font-family:'Helvetica Neue',sans-serif}
      .tpl-prestige-portfolio .pp-inner{max-width:1200px;margin:0 auto}
      .tpl-prestige-portfolio .pp-title{text-align:center;font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.8rem,3vw,2.6rem);font-weight:400;font-style:italic;color:#1a1a1a;margin:0 0 56px}
      .tpl-prestige-portfolio .pp-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
      .tpl-prestige-portfolio .pp-item{position:relative;overflow:hidden;aspect-ratio:4/3;cursor:pointer}
      .tpl-prestige-portfolio .pp-item img{width:100%;height:100%;object-fit:cover;transition:transform 0.8s ease}
      .tpl-prestige-portfolio .pp-item:hover img{transform:scale(1.06)}
      .tpl-prestige-portfolio .pp-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(26,26,26,0.85) 0%,transparent 60%);opacity:0;transition:opacity 0.5s;display:flex;flex-direction:column;justify-content:flex-end;padding:32px}
      .tpl-prestige-portfolio .pp-item:hover .pp-overlay{opacity:1}
      .tpl-prestige-portfolio .pp-overlay h3{color:#fff;font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:400;font-style:italic;margin:0 0 6px}
      .tpl-prestige-portfolio .pp-overlay span{color:#c9a96e;font-size:11px;letter-spacing:0.15em;text-transform:uppercase}
      .tpl-prestige-portfolio .pp-item:nth-child(1){grid-column:span 2;aspect-ratio:2/1}
      @media(max-width:768px){.tpl-prestige-portfolio .pp-grid{grid-template-columns:1fr}.tpl-prestige-portfolio .pp-item:nth-child(1){grid-column:span 1;aspect-ratio:4/3}}

.tpl-prestige-stats{background:#1a1a1a;padding:80px 40px;font-family:'Helvetica Neue',sans-serif}
      .tpl-prestige-stats .pst-inner{max-width:1000px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:48px;text-align:center}
      .tpl-prestige-stats .pst-item .pst-value{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(2rem,4vw,3.2rem);font-weight:300;font-style:italic;color:#c9a96e;margin:0 0 8px;display:block}
      .tpl-prestige-stats .pst-item .pst-label{font-size:12px;letter-spacing:0.15em;text-transform:uppercase;color:rgba(255,255,255,0.6)}
      .tpl-prestige-stats .pst-line{width:30px;height:1px;background:rgba(201,169,110,0.4);margin:16px auto}
      @media(max-width:768px){.tpl-prestige-stats .pst-inner{grid-template-columns:repeat(2,1fr);gap:32px}}

.tpl-prestige-about{background:#fff;padding:100px 40px;font-family:'Helvetica Neue',sans-serif}
      .tpl-prestige-about .pa-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
      .tpl-prestige-about .pa-img{overflow:hidden}
      .tpl-prestige-about .pa-img img{width:100%;height:auto;display:block;filter:grayscale(20%)}
      .tpl-prestige-about .pa-content h2{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.8rem,3vw,2.6rem);font-weight:400;font-style:italic;color:#1a1a1a;margin:0 0 12px}
      .tpl-prestige-about .pa-line{width:50px;height:1px;background:#c9a96e;margin:0 0 24px}
      .tpl-prestige-about .pa-content p{color:#555;font-size:15px;line-height:2;margin:0 0 24px}
      .tpl-prestige-about .pa-sig{color:#8b7355;font-family:'Cormorant Garamond',serif;font-size:18px;font-style:italic}
      .tpl-prestige-about .pa-cta{display:inline-block;text-decoration:none;color:#fff;background:#1a1a1a;padding:14px 44px;font-size:12px;letter-spacing:0.15em;text-transform:uppercase;transition:all 0.3s;margin-top:24px;border:1px solid #1a1a1a}
      .tpl-prestige-about .pa-cta:hover{background:transparent;color:#1a1a1a}
      .tpl-prestige-about .pa-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px;border-top:1px solid #ede8e1;padding-top:32px}
      .tpl-prestige-about .pa-stat-val{font-family:'Cormorant Garamond',serif;font-size:28px;color:#c9a96e;font-style:italic;display:block}
      .tpl-prestige-about .pa-stat-lbl{font-size:11px;letter-spacing:0.1em;text-transform:uppercase;color:#999}
      @media(max-width:768px){.tpl-prestige-about .pa-inner{grid-template-columns:1fr;gap:40px}}

.tpl-prestige-team{background:#fff;padding:100px 40px;font-family:'Helvetica Neue',sans-serif}
      .tpl-prestige-team .pt-inner{max-width:1100px;margin:0 auto}
      .tpl-prestige-team .pt-title{text-align:center;font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.8rem,3vw,2.6rem);font-weight:400;font-style:italic;color:#1a1a1a;margin:0 0 56px}
      .tpl-prestige-team .pt-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}
      .tpl-prestige-team .pt-card{text-align:center}
      .tpl-prestige-team .pt-photo{width:100%;aspect-ratio:3/4;overflow:hidden;margin-bottom:20px}
      .tpl-prestige-team .pt-photo img{width:100%;height:100%;object-fit:cover;filter:grayscale(30%);transition:filter 0.5s}
      .tpl-prestige-team .pt-card:hover .pt-photo img{filter:grayscale(0%)}
      .tpl-prestige-team .pt-card h3{font-family:'Cormorant Garamond',serif;font-size:20px;font-weight:400;font-style:italic;color:#1a1a1a;margin:0 0 4px}
      .tpl-prestige-team .pt-card span{font-size:11px;letter-spacing:0.15em;text-transform:uppercase;color:#8b7355}
      @media(max-width:900px){.tpl-prestige-team .pt-grid{grid-template-columns:repeat(2,1fr)}}
      @media(max-width:480px){.tpl-prestige-team .pt-grid{grid-template-columns:1fr;max-width:320px;margin:0 auto}}

.tpl-prestige-pricing{background:#fff;padding:100px 40px;font-family:'Helvetica Neue',sans-serif}
      .tpl-prestige-pricing .pprc-inner{max-width:1100px;margin:0 auto}
      .tpl-prestige-pricing .pprc-header{text-align:center;margin-bottom:64px}
      .tpl-prestige-pricing .pprc-header h2{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.8rem,3vw,2.6rem);font-weight:400;font-style:italic;color:#1a1a1a;margin:0 0 12px}
      .tpl-prestige-pricing .pprc-header p{color:#8b7355;font-size:14px;letter-spacing:0.05em}
      .tpl-prestige-pricing .pprc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
      .tpl-prestige-pricing .pprc-plan{border:1px solid #ede8e1;padding:48px 36px;text-align:center;transition:all 0.4s;position:relative}
      .tpl-prestige-pricing .pprc-plan:hover{border-color:#c9a96e;transform:translateY(-6px);box-shadow:0 20px 60px rgba(0,0,0,0.06)}
      .tpl-prestige-pricing .pprc-plan.featured{border-color:#c9a96e;background:#faf8f5}
      .tpl-prestige-pricing .pprc-plan.featured::before{content:'Populaire';position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:#1a1a1a;color:#fff;font-size:10px;letter-spacing:0.15em;text-transform:uppercase;padding:6px 20px}
      .tpl-prestige-pricing .pprc-name{font-size:13px;letter-spacing:0.15em;text-transform:uppercase;color:#8b7355;margin-bottom:20px}
      .tpl-prestige-pricing .pprc-price{font-family:'Cormorant Garamond',serif;font-size:48px;font-weight:300;font-style:italic;color:#1a1a1a;margin-bottom:4px}
      .tpl-prestige-pricing .pprc-period{font-size:13px;color:#999;margin-bottom:32px;display:block}
      .tpl-prestige-pricing .pprc-line{width:40px;height:1px;background:#ede8e1;margin:0 auto 28px}
      .tpl-prestige-pricing .pprc-features{list-style:none;padding:0;margin:0 0 36px;text-align:left}
      .tpl-prestige-pricing .pprc-features li{padding:10px 0;border-bottom:1px solid #f5f0eb;font-size:14px;color:#555}
      .tpl-prestige-pricing .pprc-features li::before{content:'✓';color:#c9a96e;margin-right:12px;font-weight:600}
      .tpl-prestige-pricing .pprc-btn{display:inline-block;text-decoration:none;padding:14px 40px;font-size:12px;letter-spacing:0.15em;text-transform:uppercase;transition:all 0.3s;border:1px solid #1a1a1a;color:#1a1a1a;background:transparent}
      .tpl-prestige-pricing .pprc-plan.featured .pprc-btn{background:#1a1a1a;color:#fff}
      .tpl-prestige-pricing .pprc-btn:hover{background:#c9a96e;border-color:#c9a96e;color:#fff}
      @media(max-width:768px){.tpl-prestige-pricing .pprc-grid{grid-template-columns:1fr;max-width:400px;margin:0 auto}}

.tpl-prestige-cta{background:#faf8f5;padding:100px 40px;font-family:'Helvetica Neue',sans-serif;text-align:center}
      .tpl-prestige-cta .pc-inner{max-width:700px;margin:0 auto}
      .tpl-prestige-cta .pc-line{width:60px;height:1px;background:#c9a96e;margin:0 auto 32px}
      .tpl-prestige-cta h2{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;font-style:italic;color:#1a1a1a;margin:0 0 16px}
      .tpl-prestige-cta p{color:#666;font-size:16px;line-height:1.8;margin:0 0 40px}
      .tpl-prestige-cta .pc-btn{display:inline-block;text-decoration:none;color:#fff;background:#1a1a1a;padding:16px 56px;font-size:12px;letter-spacing:0.2em;text-transform:uppercase;transition:all 0.3s;border:1px solid #1a1a1a}
      .tpl-prestige-cta .pc-btn:hover{background:transparent;color:#1a1a1a}
      .tpl-prestige-cta .pc-ornament{color:#c9a96e;font-size:24px;margin-bottom:24px;display:block}

.tpl-contact-corporate{padding:80px 40px;background:#fff;font-family:'Inter',system-ui,sans-serif}
      .tpl-contact-corporate .cc-inner{max-width:1100px;margin:0 auto}
      .tpl-contact-corporate .cc-header{text-align:center;margin-bottom:56px}
      .tpl-contact-corporate .cc-header h2{font-size:38px;font-weight:800;color:#0f172a;margin:0 0 12px;letter-spacing:-0.5px}
      .tpl-contact-corporate .cc-header p{color:#64748b;font-size:17px;max-width:520px;margin:0 auto;line-height:1.6}
      .tpl-contact-corporate .cc-grid{display:grid;grid-template-columns:1fr 380px;gap:48px;align-items:start}
      .tpl-contact-corporate .cc-form{background:#f8fafc;border-radius:20px;padding:40px;border:1px solid #e2e8f0}
      .tpl-contact-corporate .cc-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
      .tpl-contact-corporate .cc-field{margin-bottom:16px}
      .tpl-contact-corporate .cc-field label{display:block;font-size:13px;font-weight:600;color:#334155;margin-bottom:6px}
      .tpl-contact-corporate input,.tpl-contact-corporate textarea,.tpl-contact-corporate select{width:100%;padding:13px 16px;border:1px solid #e2e8f0;border-radius:10px;font:inherit;font-size:14px;background:#fff;transition:border-color 0.2s;box-sizing:border-box}
      .tpl-contact-corporate input:focus,.tpl-contact-corporate textarea:focus{outline:none;border-color:#2563eb;box-shadow:0 0 0 3px rgba(37,99,235,0.08)}
      .tpl-contact-corporate .cc-btn{width:100%;background:#0f172a;color:#fff;border:none;padding:15px;border-radius:10px;font-weight:700;font-size:15px;cursor:pointer;transition:all 0.2s;letter-spacing:0.3px}
      .tpl-contact-corporate .cc-btn:hover{background:#1e293b;box-shadow:0 8px 24px rgba(15,23,42,0.15)}
      .tpl-contact-corporate .cc-sidebar{display:flex;flex-direction:column;gap:24px}
      .tpl-contact-corporate .cc-info-card{background:#f8fafc;border:1px solid #e2e8f0;border-radius:16px;padding:28px;transition:box-shadow 0.2s}
      .tpl-contact-corporate .cc-info-card:hover{box-shadow:0 4px 16px rgba(0,0,0,0.06)}
      .tpl-contact-corporate .cc-info-card h4{margin:0 0 4px;color:#0f172a;font-size:13px;text-transform:uppercase;letter-spacing:0.8px;font-weight:700}
      .tpl-contact-corporate .cc-info-card p{margin:0;color:#475569;font-size:15px;line-height:1.5}
      .tpl-contact-corporate .cc-info-card .cc-icon{width:40px;height:40px;background:#0f172a;color:#fff;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:16px;margin-bottom:14px}
      @media(max-width:768px){
        .tpl-contact-corporate{padding:48px 20px}
        .tpl-contact-corporate .cc-grid{grid-template-columns:1fr;gap:24px}
        .tpl-contact-corporate .cc-row{grid-template-columns:1fr}
        .tpl-contact-corporate .cc-header h2{font-size:28px}
      }

.tpl-contact-ecommerce{padding:88px 40px;background:#fff;font-family:'Inter',system-ui,sans-serif}
      .tpl-contact-ecommerce *{box-sizing:border-box}
      .tpl-contact-ecommerce .ec-inner{max-width:1080px;margin:0 auto}
      .tpl-contact-ecommerce .ec-header{text-align:center;margin-bottom:56px}
      .tpl-contact-ecommerce .ec-badge{display:inline-flex;align-items:center;gap:6px;background:#f8f8f8;color:#888;font-size:11px;font-weight:600;padding:7px 18px;border-radius:20px;margin-bottom:20px;letter-spacing:1px;text-transform:uppercase;border:1px solid #f0f0f0}
      .tpl-contact-ecommerce .ec-badge i{font-size:10px}
      .tpl-contact-ecommerce .ec-header h2{font-size:36px;font-weight:300;color:#1a1a1a;margin:0 0 14px;letter-spacing:-0.5px;line-height:1.2}
      .tpl-contact-ecommerce .ec-header p{color:#999;font-size:16px;max-width:480px;margin:0 auto;line-height:1.7;font-weight:400}
      .tpl-contact-ecommerce .ec-channels{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:#f0f0f0;border-radius:16px;overflow:hidden;margin-bottom:56px;border:1px solid #f0f0f0}
      .tpl-contact-ecommerce .ec-channel{background:#fff;padding:32px 28px;text-align:center;transition:background 0.25s}
      .tpl-contact-ecommerce .ec-channel:hover{background:#fafafa}
      .tpl-contact-ecommerce .ec-ch-icon{font-size:20px;color:#1a1a1a;margin-bottom:14px;opacity:0.7}
      .tpl-contact-ecommerce .ec-channel h4{margin:0 0 6px;font-size:13px;color:#aaa;font-weight:600;text-transform:uppercase;letter-spacing:0.8px}
      .tpl-contact-ecommerce .ec-channel p{margin:0;font-size:15px;color:#333;font-weight:500;line-height:1.4}
      .tpl-contact-ecommerce .ec-layout{display:grid;grid-template-columns:1fr 380px;gap:56px;align-items:start}
      .tpl-contact-ecommerce .ec-form{position:relative}
      .tpl-contact-ecommerce .ec-form::before{content:'';position:absolute;top:0;left:0;width:40px;height:2px;background:#1a1a1a}
      .tpl-contact-ecommerce .ec-form-title{font-size:15px;font-weight:600;color:#1a1a1a;margin:20px 0 28px;letter-spacing:-0.2px}
      .tpl-contact-ecommerce .ec-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
      .tpl-contact-ecommerce .ec-field{margin-bottom:16px}
      .tpl-contact-ecommerce .ec-field label{display:block;font-size:11px;font-weight:600;color:#aaa;margin-bottom:8px;text-transform:uppercase;letter-spacing:0.8px}
      .tpl-contact-ecommerce input,.tpl-contact-ecommerce textarea,.tpl-contact-ecommerce select{width:100%;padding:14px 0;border:none;border-bottom:1.5px solid #eee;border-radius:0;font:inherit;font-size:15px;background:transparent;box-sizing:border-box;transition:border-color 0.3s;color:#1a1a1a}
      .tpl-contact-ecommerce input:focus,.tpl-contact-ecommerce textarea:focus,.tpl-contact-ecommerce select:focus{outline:none;border-bottom-color:#1a1a1a}
      .tpl-contact-ecommerce input::placeholder,.tpl-contact-ecommerce textarea::placeholder{color:#ccc;font-weight:300}
      .tpl-contact-ecommerce select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 4px center}
      .tpl-contact-ecommerce .ec-btn{display:inline-flex;align-items:center;gap:8px;background:#1a1a1a;color:#fff;border:none;padding:14px 40px;font-weight:600;font-size:14px;cursor:pointer;transition:all 0.3s;margin-top:8px;letter-spacing:0.3px}
      .tpl-contact-ecommerce .ec-btn:hover{background:#333;transform:translateY(-1px)}
      .tpl-contact-ecommerce .ec-btn i{font-size:12px;transition:transform 0.3s}
      .tpl-contact-ecommerce .ec-btn:hover i{transform:translateX(3px)}
      .tpl-contact-ecommerce .ec-response{display:flex;align-items:center;gap:6px;color:#999;font-size:12px;font-weight:500;margin-top:16px}
      .tpl-contact-ecommerce .ec-response i{font-size:10px;color:#1a1a1a}
      .tpl-contact-ecommerce .ec-aside{padding-top:8px}
      .tpl-contact-ecommerce .ec-aside-title{font-size:11px;font-weight:600;color:#aaa;text-transform:uppercase;letter-spacing:0.8px;margin:0 0 24px;padding-bottom:16px;border-bottom:1px solid #f0f0f0}
      .tpl-contact-ecommerce .ec-help-list{display:flex;flex-direction:column;gap:0}
      .tpl-contact-ecommerce .ec-help-item{display:flex;align-items:flex-start;gap:16px;padding:18px 0;border-bottom:1px solid #f5f5f5;transition:all 0.2s;cursor:default}
      .tpl-contact-ecommerce .ec-help-item:last-child{border-bottom:none}
      .tpl-contact-ecommerce .ec-help-item:hover{padding-left:4px}
      .tpl-contact-ecommerce .ec-hi-num{font-size:11px;font-weight:700;color:#ccc;min-width:20px;padding-top:2px}
      .tpl-contact-ecommerce .ec-help-item h5{margin:0 0 3px;font-size:14px;color:#333;font-weight:600}
      .tpl-contact-ecommerce .ec-help-item p{margin:0;font-size:13px;color:#aaa;line-height:1.5;font-weight:400}
      .tpl-contact-ecommerce .ec-trust{display:flex;gap:24px;margin-top:32px;padding-top:24px;border-top:1px solid #f0f0f0}
      .tpl-contact-ecommerce .ec-trust-item{display:flex;align-items:center;gap:8px;font-size:12px;color:#999;font-weight:500}
      .tpl-contact-ecommerce .ec-trust-item i{font-size:14px;color:#1a1a1a;opacity:0.6}
      @media(max-width:900px){
        .tpl-contact-ecommerce{padding:60px 24px}
        .tpl-contact-ecommerce .ec-header h2{font-size:28px}
        .tpl-contact-ecommerce .ec-channels{grid-template-columns:1fr;border-radius:12px}
        .tpl-contact-ecommerce .ec-layout{grid-template-columns:1fr;gap:48px}
        .tpl-contact-ecommerce .ec-row{grid-template-columns:1fr}
        .tpl-contact-ecommerce .ec-trust{flex-direction:column;gap:12px}
      }

.tpl-contact-tech{padding:0;background:#fff;font-family:'Inter',system-ui,sans-serif;overflow:hidden}
      .tpl-contact-tech .ct-top{background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%);padding:72px 40px 120px;text-align:center;position:relative}
      .tpl-contact-tech .ct-top::after{content:'';position:absolute;bottom:-1px;left:0;right:0;height:80px;background:#f8fafc;clip-path:ellipse(55% 100% at 50% 100%)}
      .tpl-contact-tech .ct-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(99,102,241,0.15);color:#a5b4fc;font-size:11px;font-weight:700;padding:7px 18px;border-radius:24px;margin-bottom:20px;letter-spacing:1px;text-transform:uppercase}
      .tpl-contact-tech .ct-badge i{font-size:10px}
      .tpl-contact-tech .ct-top h2{font-size:38px;font-weight:800;color:#fff;margin:0 0 12px;letter-spacing:-0.5px}
      .tpl-contact-tech .ct-top p{color:rgba(255,255,255,0.6);font-size:16px;max-width:460px;margin:0 auto;line-height:1.6}
      .tpl-contact-tech .ct-body{max-width:1100px;margin:-60px auto 0;padding:0 40px 80px;position:relative;z-index:2}
      .tpl-contact-tech .ct-channels{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:48px}
      .tpl-contact-tech .ct-channel{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:28px 24px;text-align:center;transition:all 0.25s;box-shadow:0 4px 16px rgba(0,0,0,0.04);cursor:default}
      .tpl-contact-tech .ct-channel:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,0.08);border-color:transparent}
      .tpl-contact-tech .ct-ch-icon{width:52px;height:52px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:20px;margin:0 auto 16px}
      .tpl-contact-tech .ct-ch-support .ct-ch-icon{background:linear-gradient(135deg,#ede9fe,#ddd6fe);color:#7c3aed}
      .tpl-contact-tech .ct-ch-sales .ct-ch-icon{background:linear-gradient(135deg,#dbeafe,#bfdbfe);color:#2563eb}
      .tpl-contact-tech .ct-ch-doc .ct-ch-icon{background:linear-gradient(135deg,#d1fae5,#a7f3d0);color:#059669}
      .tpl-contact-tech .ct-channel h4{margin:0 0 4px;font-size:15px;color:#111827;font-weight:700}
      .tpl-contact-tech .ct-channel p{margin:0;font-size:13px;color:#6b7280;line-height:1.4}
      .tpl-contact-tech .ct-main{display:grid;grid-template-columns:1fr 360px;gap:40px;align-items:start}
      .tpl-contact-tech .ct-form-card{background:#fff;border:1px solid #e5e7eb;border-radius:20px;padding:40px;box-shadow:0 4px 16px rgba(0,0,0,0.04)}
      .tpl-contact-tech .ct-form-title{font-size:20px;font-weight:800;color:#111827;margin:0 0 4px}
      .tpl-contact-tech .ct-form-sub{font-size:13px;color:#9ca3af;margin:0 0 28px}
      .tpl-contact-tech .ct-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px}
      .tpl-contact-tech .ct-field{margin-bottom:14px}
      .tpl-contact-tech .ct-field label{display:block;font-size:12px;font-weight:700;color:#374151;margin-bottom:5px;text-transform:uppercase;letter-spacing:0.4px}
      .tpl-contact-tech input,.tpl-contact-tech textarea,.tpl-contact-tech select{width:100%;padding:12px 14px;border:1.5px solid #e5e7eb;border-radius:10px;font:inherit;font-size:14px;background:#fafafa;box-sizing:border-box;transition:all 0.2s}
      .tpl-contact-tech input:focus,.tpl-contact-tech textarea:focus,.tpl-contact-tech select:focus{outline:none;border-color:#6366f1;background:#fff;box-shadow:0 0 0 3px rgba(99,102,241,0.08)}
      .tpl-contact-tech .ct-btn{width:100%;background:linear-gradient(135deg,#6366f1 0%,#4f46e5 100%);color:#fff;border:none;padding:14px;border-radius:12px;font-weight:700;font-size:15px;cursor:pointer;transition:all 0.25s;margin-top:4px;box-shadow:0 4px 14px rgba(99,102,241,0.25)}
      .tpl-contact-tech .ct-btn:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(99,102,241,0.35)}
      .tpl-contact-tech .ct-aside{display:flex;flex-direction:column;gap:16px}
      .tpl-contact-tech .ct-info-card{background:#f8fafc;border:1px solid #e5e7eb;border-radius:14px;padding:20px 22px;cursor:default;transition:all 0.2s}
      .tpl-contact-tech .ct-info-card:hover{background:#f1f5f9}
      .tpl-contact-tech .ct-info-card h5{margin:0 0 4px;font-size:14px;color:#111827;font-weight:700;display:flex;align-items:center;gap:8px}
      .tpl-contact-tech .ct-info-card h5 i{font-size:12px;color:#6366f1;flex-shrink:0}
      .tpl-contact-tech .ct-info-card p{margin:0;font-size:13px;color:#6b7280;line-height:1.5}
      .tpl-contact-tech .ct-time-badge{display:inline-flex;align-items:center;gap:6px;background:#f0fdf4;color:#16a34a;font-size:12px;font-weight:700;padding:8px 16px;border-radius:8px;margin-top:8px;border:1px solid #bbf7d0}
      .tpl-contact-tech .ct-time-badge i{font-size:11px}
      @media(max-width:900px){
        .tpl-contact-tech .ct-top{padding:56px 24px 100px}
        .tpl-contact-tech .ct-body{padding:0 20px 60px}
        .tpl-contact-tech .ct-channels{grid-template-columns:1fr}
        .tpl-contact-tech .ct-main{grid-template-columns:1fr}
        .tpl-contact-tech .ct-row{grid-template-columns:1fr}
        .tpl-contact-tech .ct-top h2{font-size:28px}
        .tpl-contact-tech .ct-form-card{padding:28px 22px}
      }

.tpl-contact-landing{padding:0;background:#faf9f7;font-family:'Inter',system-ui,sans-serif;overflow:hidden}
      .tpl-contact-landing *{box-sizing:border-box}
      .tpl-contact-landing .cl-hero{position:relative;padding:80px 40px 48px;text-align:center;background:linear-gradient(165deg,#1a1a2e 0%,#16213e 50%,#0f3460 100%);overflow:hidden}
      .tpl-contact-landing .cl-hero::before{content:'';position:absolute;top:-40%;right:-20%;width:600px;height:600px;background:radial-gradient(circle,rgba(196,167,126,0.12) 0%,transparent 70%);pointer-events:none}
      .tpl-contact-landing .cl-hero::after{content:'';position:absolute;bottom:-40%;left:-15%;width:500px;height:500px;background:radial-gradient(circle,rgba(196,167,126,0.08) 0%,transparent 70%);pointer-events:none}
      .tpl-contact-landing .cl-badge{display:inline-flex;align-items:center;gap:7px;background:linear-gradient(135deg,rgba(196,167,126,0.2),rgba(196,167,126,0.08));border:1px solid rgba(196,167,126,0.3);color:#c4a77e;font-size:11px;font-weight:700;padding:8px 20px;border-radius:28px;margin-bottom:24px;letter-spacing:1.5px;text-transform:uppercase}
      .tpl-contact-landing .cl-badge i{font-size:10px}
      .tpl-contact-landing .cl-hero h2{font-size:42px;font-weight:300;color:#fff;margin:0 0 14px;letter-spacing:-0.3px;line-height:1.15}
      .tpl-contact-landing .cl-hero p{color:rgba(255,255,255,0.55);font-size:16px;max-width:480px;margin:0 auto;line-height:1.7}
      .tpl-contact-landing .cl-promises{display:flex;justify-content:center;gap:32px;padding:0 40px;margin-top:40px;position:relative;z-index:2}
      .tpl-contact-landing .cl-promise{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,0.7);font-size:13px;font-weight:500}
      .tpl-contact-landing .cl-promise i{color:#c4a77e;font-size:14px}
      .tpl-contact-landing .cl-content{max-width:1140px;margin:0 auto;padding:56px 40px 80px}
      .tpl-contact-landing .cl-grid{display:grid;grid-template-columns:1fr 420px;gap:48px;align-items:start}
      .tpl-contact-landing .cl-form-card{background:#fff;border-radius:24px;padding:44px;box-shadow:0 8px 40px rgba(0,0,0,0.06),0 1px 3px rgba(0,0,0,0.04)}
      .tpl-contact-landing .cl-form-head{display:flex;align-items:center;gap:14px;margin-bottom:32px}
      .tpl-contact-landing .cl-form-icon{width:48px;height:48px;border-radius:14px;background:linear-gradient(135deg,#1a1a2e,#16213e);color:#c4a77e;display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0}
      .tpl-contact-landing .cl-form-head div h3{font-size:18px;font-weight:800;color:#1a1a2e;margin:0 0 2px}
      .tpl-contact-landing .cl-form-head div p{font-size:13px;color:#999;margin:0}
      .tpl-contact-landing .cl-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px}
      .tpl-contact-landing .cl-field{margin-bottom:14px}
      .tpl-contact-landing .cl-field label{display:block;font-size:11px;font-weight:700;color:#1a1a2e;margin-bottom:6px;text-transform:uppercase;letter-spacing:0.6px}
      .tpl-contact-landing input,.tpl-contact-landing textarea,.tpl-contact-landing select{width:100%;padding:13px 16px;border:1.5px solid #eee;border-radius:12px;font:inherit;font-size:14px;background:#fcfcfc;box-sizing:border-box;transition:all 0.25s;color:#333}
      .tpl-contact-landing input:focus,.tpl-contact-landing textarea:focus,.tpl-contact-landing select:focus{outline:none;border-color:#c4a77e;background:#fff;box-shadow:0 0 0 4px rgba(196,167,126,0.08)}
      .tpl-contact-landing input::placeholder,.tpl-contact-landing textarea::placeholder{color:#bbb}
      .tpl-contact-landing .cl-btn{width:100%;background:linear-gradient(135deg,#1a1a2e 0%,#16213e 100%);color:#fff;border:none;padding:15px;border-radius:14px;font-weight:700;font-size:15px;cursor:pointer;transition:all 0.3s;margin-top:6px;letter-spacing:0.3px;position:relative;overflow:hidden}
      .tpl-contact-landing .cl-btn::after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg,rgba(196,167,126,0.15),transparent);opacity:0;transition:opacity 0.3s}
      .tpl-contact-landing .cl-btn:hover::after{opacity:1}
      .tpl-contact-landing .cl-btn:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(26,26,46,0.25)}
      .tpl-contact-landing .cl-response{display:inline-flex;align-items:center;gap:6px;color:#c4a77e;font-size:12px;font-weight:600;margin-top:14px;padding:0}
      .tpl-contact-landing .cl-response i{font-size:11px}
      .tpl-contact-landing .cl-sidebar{display:flex;flex-direction:column;gap:20px}
      .tpl-contact-landing .cl-contact-card{background:#fff;border-radius:20px;padding:28px;box-shadow:0 4px 20px rgba(0,0,0,0.04)}
      .tpl-contact-landing .cl-contact-card h4{font-size:14px;font-weight:800;color:#1a1a2e;margin:0 0 16px;text-transform:uppercase;letter-spacing:0.5px}
      .tpl-contact-landing .cl-contact-item{display:flex;align-items:center;gap:14px;padding:12px 0;border-bottom:1px solid #f3f3f3}
      .tpl-contact-landing .cl-contact-item:last-child{border-bottom:none;padding-bottom:0}
      .tpl-contact-landing .cl-ci-icon{width:40px;height:40px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:15px;flex-shrink:0}
      .tpl-contact-landing .cl-ci-email .cl-ci-icon{background:#f0eef8;color:#6c5ce7}
      .tpl-contact-landing .cl-ci-phone .cl-ci-icon{background:#e8f4fd;color:#0984e3}
      .tpl-contact-landing .cl-ci-hours .cl-ci-icon{background:#fef3e2;color:#e17055}
      .tpl-contact-landing .cl-contact-item .cl-ci-text span{display:block;font-size:11px;font-weight:700;color:#999;text-transform:uppercase;letter-spacing:0.4px}
      .tpl-contact-landing .cl-contact-item .cl-ci-text p{margin:2px 0 0;font-size:14px;color:#333;font-weight:500}
      .tpl-contact-landing .cl-info-list{display:flex;flex-direction:column;gap:12px}
      .tpl-contact-landing .cl-info-item{background:#fff;border-radius:16px;padding:22px 24px;box-shadow:0 2px 12px rgba(0,0,0,0.03);transition:all 0.2s;cursor:default}
      .tpl-contact-landing .cl-info-item:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,0.06)}
      .tpl-contact-landing .cl-info-item h5{margin:0 0 4px;font-size:14px;color:#1a1a2e;font-weight:700;display:flex;align-items:center;gap:10px}
      .tpl-contact-landing .cl-info-item h5 i{font-size:14px;color:#c4a77e}
      .tpl-contact-landing .cl-info-item p{margin:0;font-size:13px;color:#888;line-height:1.5}
      @media(max-width:960px){
        .tpl-contact-landing .cl-hero{padding:60px 24px 40px}
        .tpl-contact-landing .cl-hero h2{font-size:30px}
        .tpl-contact-landing .cl-promises{flex-direction:column;align-items:center;gap:12px}
        .tpl-contact-landing .cl-content{padding:40px 20px 60px}
        .tpl-contact-landing .cl-grid{grid-template-columns:1fr}
        .tpl-contact-landing .cl-row{grid-template-columns:1fr}
        .tpl-contact-landing .cl-form-card{padding:28px 22px}
      }

.tpl-contact-resto{padding:80px 40px;background:#1a1a1a;font-family:'Cormorant Garamond',Georgia,serif;color:#fff}
      .tpl-contact-resto .cr-inner{max-width:1060px;margin:0 auto}
      .tpl-contact-resto .cr-header{text-align:center;margin-bottom:56px}
      .tpl-contact-resto .cr-line{width:60px;height:1px;background:#c9a96e;margin:0 auto 24px}
      .tpl-contact-resto .cr-header h2{font-size:40px;font-weight:400;font-style:italic;color:#fff;margin:0 0 12px}
      .tpl-contact-resto .cr-header p{color:rgba(255,255,255,0.6);font-size:16px;font-family:'Helvetica Neue',sans-serif;max-width:500px;margin:0 auto}
      .tpl-contact-resto .cr-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
      .tpl-contact-resto .cr-infos{display:flex;flex-direction:column;gap:32px}
      .tpl-contact-resto .cr-info-item{display:flex;gap:20px;align-items:flex-start}
      .tpl-contact-resto .cr-info-icon{width:48px;height:48px;border:1px solid rgba(201,169,110,0.4);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#c9a96e;font-size:18px;flex-shrink:0}
      .tpl-contact-resto .cr-info-item h4{margin:0 0 4px;font-size:14px;text-transform:uppercase;letter-spacing:1.5px;color:#c9a96e;font-family:'Helvetica Neue',sans-serif;font-weight:600}
      .tpl-contact-resto .cr-info-item p{margin:0;color:rgba(255,255,255,0.7);font-size:15px;line-height:1.5;font-family:'Helvetica Neue',sans-serif}
      .tpl-contact-resto .cr-form{border:1px solid rgba(255,255,255,0.1);border-radius:16px;padding:36px;background:rgba(255,255,255,0.03)}
      .tpl-contact-resto .cr-form h3{font-size:22px;font-style:italic;color:#fff;margin:0 0 24px;font-weight:400}
      .tpl-contact-resto .cr-field{margin-bottom:16px}
      .tpl-contact-resto input,.tpl-contact-resto textarea{width:100%;padding:12px 16px;border:1px solid rgba(255,255,255,0.12);border-radius:8px;background:rgba(255,255,255,0.05);color:#fff;font:inherit;font-family:'Helvetica Neue',sans-serif;font-size:14px;box-sizing:border-box;transition:border-color 0.2s}
      .tpl-contact-resto input::placeholder,.tpl-contact-resto textarea::placeholder{color:rgba(255,255,255,0.3)}
      .tpl-contact-resto input:focus,.tpl-contact-resto textarea:focus{outline:none;border-color:#c9a96e}
      .tpl-contact-resto .cr-btn{width:100%;background:#c9a96e;color:#1a1a1a;border:none;padding:14px;font-weight:700;font-size:13px;letter-spacing:1px;text-transform:uppercase;font-family:'Helvetica Neue',sans-serif;cursor:pointer;transition:all 0.3s}
      .tpl-contact-resto .cr-btn:hover{background:#fff}
      @media(max-width:768px){
        .tpl-contact-resto{padding:48px 20px}
        .tpl-contact-resto .cr-grid{grid-template-columns:1fr;gap:40px}
        .tpl-contact-resto .cr-header h2{font-size:30px}
      }

.tpl-product-catalog { padding: 80px 24px; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); border-radius: 20px; container-type: inline-size; container-name: product-catalog; }
        .tpl-product-catalog .catalog-header { text-align: center; margin-bottom: 60px; }
        .tpl-product-catalog .catalog-title { font-size: 42px; font-weight: 900; color: #1a202c; margin: 0 0 16px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .tpl-product-catalog .catalog-subtitle { font-size: 20px; color: #718096; margin: 0; }
        .tpl-product-catalog .filters { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
        .tpl-product-catalog .filter-btn { background: white; border: 2px solid #e2e8f0; padding: 12px 28px; border-radius: 50px; font-weight: 600; color: #4a5568; cursor: pointer; transition: all 0.3s ease; }
        .tpl-product-catalog .filter-btn:hover { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border-color: #667eea; transform: translateY(-2px); }
        .tpl-product-catalog .products-showcase { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; max-width: 1400px; margin: 0 auto; }
        .tpl-product-catalog .showcase-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.1); transition: all 0.4s ease; position: relative; }
        .tpl-product-catalog .showcase-card:hover { transform: translateY(-12px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
        .tpl-product-catalog .showcase-card .badge { position: absolute; top: 16px; right: 16px; background: #f5576c; color: white; padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; z-index: 10; }
        .tpl-product-catalog .showcase-image { width: 100%; height: 320px; object-fit: cover; background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%); }
        .tpl-product-catalog .showcase-info { padding: 28px; }
        .tpl-product-catalog .showcase-category { font-size: 13px; color: #667eea; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
        .tpl-product-catalog .showcase-name { font-size: 22px; font-weight: 800; color: #2d3748; margin: 0 0 12px; line-height: 1.3; }
        .tpl-product-catalog .showcase-description { font-size: 14px; color: #718096; margin-bottom: 20px; line-height: 1.6; }
        .tpl-product-catalog .showcase-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
        .tpl-product-catalog .showcase-price { font-size: 28px; font-weight: 900; color: #1a202c; }
        .tpl-product-catalog .showcase-btn { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border: none; padding: 12px 32px; border-radius: 50px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; }
        @container product-catalog (max-width: 900px) {
          .tpl-product-catalog .products-showcase { grid-template-columns: repeat(2, 1fr); gap: 20px; }
          .tpl-product-catalog .catalog-title { font-size: 32px; }
        }
        @container product-catalog (max-width: 550px) {
          .tpl-product-catalog { padding: 40px 16px; }
          .tpl-product-catalog .products-showcase { grid-template-columns: 1fr; gap: 16px; }
          .tpl-product-catalog .catalog-title { font-size: 26px; }
          .tpl-product-catalog .catalog-subtitle { font-size: 15px; }
          .tpl-product-catalog .showcase-image { height: 220px; }
          .tpl-product-catalog .showcase-info { padding: 16px; }
          .tpl-product-catalog .showcase-name { font-size: 18px; }
          .tpl-product-catalog .showcase-price { font-size: 22px; }
          .tpl-product-catalog .showcase-btn { padding: 10px 20px; font-size: 14px; }
          .tpl-product-catalog .filters { gap: 8px; }
          .tpl-product-catalog .filter-btn { padding: 8px 16px; font-size: 13px; }
        }
        @media (max-width: 480px) {
          .tpl-product-catalog { padding: 40px 16px; }
          .tpl-product-catalog .products-showcase { grid-template-columns: 1fr !important; gap: 16px; }
          .tpl-product-catalog .catalog-title { font-size: 24px; }
          .tpl-product-catalog .showcase-image { height: 200px; }
        }

.tpl-product-catalog { padding: 80px 24px; background: #ffffff; container-type: inline-size; container-name: product-catalog; }
        .tpl-product-catalog .catalog-header { text-align: center; margin-bottom: 64px; }
        .tpl-product-catalog .catalog-title { font-size: 42px; font-weight: 300; color: #111; margin: 0 0 16px; letter-spacing: -0.02em; line-height: 1.1; }
        .tpl-product-catalog .catalog-subtitle { font-size: 14px; color: #888; margin: 0; letter-spacing: 3px; text-transform: uppercase; font-weight: 400; }
        .tpl-product-catalog .catalog-divider { width: 48px; height: 1px; background: #ddd; margin: 20px auto 0; }
        .tpl-product-catalog .products-showcase { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
        .tpl-product-catalog .pcard { display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: 32px; padding: 28px 0; border-bottom: 1px solid #eee; transition: background 0.3s ease; cursor: pointer; }
        .tpl-product-catalog .pcard:first-child { border-top: 1px solid #eee; }
        .tpl-product-catalog .pcard:hover { background: #fafafa; }
        .tpl-product-catalog .pcard-visual { width: 160px; height: 160px; overflow: hidden; border-radius: 4px; flex-shrink: 0; position: relative; }
        .tpl-product-catalog .pcard-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
        .tpl-product-catalog .pcard:hover .pcard-img { transform: scale(1.03); }
        .tpl-product-catalog .pcard-badge { position: absolute; top: 8px; left: 8px; font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; z-index: 2; }
        .tpl-product-catalog .pcard-badge.badge-subtle { background: #fff; color: #111; border: 1px solid #eee; }
        .tpl-product-catalog .pcard-badge.badge-accent { background: #111; color: #fff; }
        .tpl-product-catalog .pcard-badge.badge-dark { background: rgba(0,0,0,0.6); color: #fff; }
        .tpl-product-catalog .pcard-info { flex: 1; min-width: 0; }
        .tpl-product-catalog .pcard-category { font-size: 10px; color: #999; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
        .tpl-product-catalog .pcard-name { font-size: 18px; font-weight: 500; color: #111; margin: 0 0 8px; line-height: 1.3; }
        .tpl-product-catalog .pcard-desc { font-size: 13px; color: #777; margin: 0; line-height: 1.5; max-width: 420px; }
        .tpl-product-catalog .pcard-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
        .tpl-product-catalog .pcard-price { font-size: 20px; font-weight: 500; color: #111; letter-spacing: -0.02em; }
        .tpl-product-catalog .pcard-btn { background: none; color: #111; border: 1px solid #111; padding: 8px 20px; border-radius: 0; font-size: 11px; font-weight: 500; cursor: pointer; transition: all 0.25s ease; letter-spacing: 1px; text-transform: uppercase; }
        .tpl-product-catalog .pcard-btn:hover { background: #111; color: #fff; }
        .tpl-product-catalog .pcard-icon { display: none; }
        @container product-catalog (max-width: 600px) {
          .tpl-product-catalog .pcard { grid-template-columns: 100px 1fr; gap: 16px; padding: 20px 0; }
          .tpl-product-catalog .pcard-visual { width: 100px; height: 100px; }
          .tpl-product-catalog .pcard-actions { flex-direction: row; align-items: center; grid-column: 1 / -1; }
          .tpl-product-catalog .catalog-title { font-size: 30px; }
        }
        @container product-catalog (max-width: 400px) {
          .tpl-product-catalog { padding: 48px 16px; }
          .tpl-product-catalog .pcard { grid-template-columns: 80px 1fr; gap: 12px; }
          .tpl-product-catalog .pcard-visual { width: 80px; height: 80px; }
          .tpl-product-catalog .pcard-name { font-size: 15px; }
          .tpl-product-catalog .pcard-desc { display: none; }
        }
        @media (max-width: 480px) {
          .tpl-product-catalog .pcard { grid-template-columns: 80px 1fr !important; }
          .tpl-product-catalog .pcard-actions { flex-direction: row; grid-column: 1 / -1; }
        }

.tpl-lux-ecom-taupe-editorial-cards {
          background: #fff;
          border: 1px solid #decec0;
          border-radius: 16px;
          padding: 24px;
          color: #40342c;
        }
        .tpl-lux-ecom-taupe-editorial-cards h3 {
          margin: 0 0 16px;
          font-size: 1.85rem;
          font-family: 'Playfair Display', Georgia, serif;
        }
        .tpl-lux-ecom-taupe-editorial-cards .cards {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 12px;
        }
        .tpl-lux-ecom-taupe-editorial-cards .card {
          background: #f6f2ee;
          border: 1px solid #e0d4c7;
          border-radius: 14px;
          overflow: hidden;
        }
        .tpl-lux-ecom-taupe-editorial-cards .media {
          padding: 10px;
        }
        .tpl-lux-ecom-taupe-editorial-cards .media img {
          width: 100%;
          aspect-ratio: 3 / 4;
          object-fit: cover;
          border-radius: 42% 58% 58% 42% / 46% 44% 56% 54%;
          border: 1px solid #cfbfaf;
          background: #ebdfd3;
        }
        .tpl-lux-ecom-taupe-editorial-cards .copy {
          padding: 0 12px 12px;
        }
        .tpl-lux-ecom-taupe-editorial-cards .name {
          font-weight: 700;
          font-size: 14px;
          margin-bottom: 4px;
        }
        .tpl-lux-ecom-taupe-editorial-cards .meta {
          color: #756254;
          font-size: 12px;
          letter-spacing: 0.07em;
          text-transform: uppercase;
        }
        @media (max-width: 900px) {
          .tpl-lux-ecom-taupe-editorial-cards .cards { grid-template-columns: 1fr; }
        }

.tpl-lux-ecom-taupe-catalog-minimal { background:#fff; border:1px solid #decec0; border-radius:16px; padding:24px; color:#3f332b; }
        .tpl-lux-ecom-taupe-catalog-minimal h3 { margin:0; font-size:1.8rem; font-family:'Playfair Display', Georgia, serif; }
        .tpl-lux-ecom-taupe-catalog-minimal .sub { margin:8px 0 16px; color:#6f5d50; font-size:14px; }
        .tpl-lux-ecom-taupe-catalog-minimal .grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
        .tpl-lux-ecom-taupe-catalog-minimal .card { background:#f7f3ef; border:1px solid #e3d8cd; border-radius:12px; padding:10px; }
        .tpl-lux-ecom-taupe-catalog-minimal .card img { width:100%; aspect-ratio:4/5; object-fit:cover; border-radius:44% 56% 52% 48% / 44% 48% 52% 56%; border:1px solid #d4c5b6; }
        .tpl-lux-ecom-taupe-catalog-minimal .name { margin:10px 0 4px; font-size:13px; font-weight:700; }
        .tpl-lux-ecom-taupe-catalog-minimal .price { color:#786658; font-size:12px; letter-spacing:0.08em; text-transform:uppercase; }
        @media (max-width: 980px) { .tpl-lux-ecom-taupe-catalog-minimal .grid { grid-template-columns:1fr 1fr; } }
        @media (max-width: 620px) { .tpl-lux-ecom-taupe-catalog-minimal .grid { grid-template-columns:1fr; } }

.tpl-lux-ecom-taupe-arch-showcase {
          background: linear-gradient(180deg, #f3eeea 0%, #ffffff 100%);
          border: 1px solid #ddcfc1;
          border-radius: 16px;
          padding: 24px;
          color: #3f342c;
        }
        .tpl-lux-ecom-taupe-arch-showcase .head {
          display: flex;
          justify-content: space-between;
          gap: 12px;
          align-items: end;
          margin-bottom: 14px;
        }
        .tpl-lux-ecom-taupe-arch-showcase h3 {
          margin: 0;
          font-size: 1.8rem;
          font-family: 'Playfair Display', Georgia, serif;
        }
        .tpl-lux-ecom-taupe-arch-showcase .head p {
          margin: 0;
          color: #6f5c4f;
          font-size: 14px;
          max-width: 420px;
          text-align: right;
        }
        .tpl-lux-ecom-taupe-arch-showcase .row {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 12px;
          margin-bottom: 14px;
        }
        .tpl-lux-ecom-taupe-arch-showcase .shape {
          border: 1px solid #d8cabd;
          background: #ece4dc;
          overflow: hidden;
          min-height: 280px;
        }
        .tpl-lux-ecom-taupe-arch-showcase .shape.arch {
          border-radius: 140px 140px 16px 16px;
        }
        .tpl-lux-ecom-taupe-arch-showcase .shape.round {
          border-radius: 34% 66% 62% 38% / 46% 39% 61% 54%;
        }
        .tpl-lux-ecom-taupe-arch-showcase .shape.soft {
          border-radius: 24px;
        }
        .tpl-lux-ecom-taupe-arch-showcase .shape img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
        .tpl-lux-ecom-taupe-arch-showcase .cta {
          display: inline-block;
          text-decoration: none;
          border: 1px solid #5f4d40;
          border-radius: 999px;
          color: #5f4d40;
          padding: 10px 18px;
          font-size: 13px;
          font-weight: 700;
        }
        @media (max-width: 900px) {
          .tpl-lux-ecom-taupe-arch-showcase .head { flex-direction: column; align-items: start; }
          .tpl-lux-ecom-taupe-arch-showcase .head p { text-align: left; }
          .tpl-lux-ecom-taupe-arch-showcase .row { grid-template-columns: 1fr; }
          .tpl-lux-ecom-taupe-arch-showcase .shape { min-height: 240px; }
        }

.tpl-product-promo { padding: 80px 24px; background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%); border-radius: 20px; position: relative; overflow: hidden; container-type: inline-size; container-name: product-promo; }
        .tpl-product-promo::before { content: "🔥"; position: absolute; font-size: 300px; top: -100px; right: -50px; opacity: 0.1; }
        .tpl-product-promo .promo-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }
        .tpl-product-promo .promo-flash { display: inline-block; background: white; color: #ff0844; padding: 8px 24px; border-radius: 50px; font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
        .tpl-product-promo .promo-title { font-size: 48px; font-weight: 900; color: white; margin: 0 0 16px; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); }
        .tpl-product-promo .promo-subtitle { font-size: 22px; color: rgba(255, 255, 255, 0.95); margin: 0; }
        .tpl-product-promo .promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
        .tpl-product-promo .promo-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); transition: all 0.4s ease; }
        .tpl-product-promo .promo-card:hover { transform: translateY(-12px); }
        .tpl-product-promo .promo-image { width: 100%; height: 280px; object-fit: cover; position: relative; }
        .tpl-product-promo .discount-badge { position: absolute; top: 16px; right: 16px; background: #00b894; color: white; padding: 10px 20px; border-radius: 50px; font-size: 18px; font-weight: 900; }
        .tpl-product-promo .promo-info { padding: 28px; }
        .tpl-product-promo .promo-name { font-size: 22px; font-weight: 800; color: #2d3748; margin: 0 0 12px; }
        .tpl-product-promo .promo-description { font-size: 14px; color: #718096; margin-bottom: 20px; }
        .tpl-product-promo .promo-pricing { margin-bottom: 20px; }
        .tpl-product-promo .promo-old-price { font-size: 18px; color: #a0aec0; text-decoration: line-through; margin-right: 12px; }
        .tpl-product-promo .promo-new-price { font-size: 32px; font-weight: 900; color: #ff0844; }
        .tpl-product-promo .promo-btn { width: 100%; background: linear-gradient(135deg, #ff0844 0%, #ff6b6b 100%); color: white; border: none; padding: 16px; border-radius: 50px; font-weight: 800; font-size: 16px; cursor: pointer; text-transform: uppercase; }
        @container product-promo (max-width: 680px) { .tpl-product-promo .promo-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } .tpl-product-promo .promo-title { font-size: 32px; } }
        @container product-promo (max-width: 440px) { .tpl-product-promo .promo-grid { grid-template-columns: 1fr; gap: 16px; } .tpl-product-promo .promo-title { font-size: 24px; } .tpl-product-promo { padding: 40px 16px; } .tpl-product-promo .promo-image { height: 180px; } .tpl-product-promo .promo-subtitle { font-size: 16px; } .tpl-product-promo .promo-info { padding: 16px; } .tpl-product-promo .promo-name { font-size: 18px; } .tpl-product-promo .promo-new-price { font-size: 24px; } .tpl-product-promo .promo-old-price { font-size: 14px; } .tpl-product-promo .promo-btn { padding: 12px; font-size: 14px; } .tpl-product-promo .discount-badge { padding: 6px 14px; font-size: 14px; } }
        @media (max-width: 480px) { .tpl-product-promo .promo-grid { grid-template-columns: 1fr !important; } }

.tpl-product-promo { padding: 80px 24px; background: #fff; container-type: inline-size; container-name: product-promo; }
        .tpl-product-promo .promo-header { text-align: center; margin-bottom: 56px; }
        .tpl-product-promo .promo-title { font-size: 40px; font-weight: 300; color: #1a1a1a; margin: 0 0 12px; letter-spacing: -0.5px; }
        .tpl-product-promo .promo-subtitle { font-size: 15px; color: #888; margin: 0; letter-spacing: 2px; text-transform: uppercase; }
        .tpl-product-promo .promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
        .tpl-product-promo .procard { background: #fafaf9; border-radius: 12px; overflow: hidden; transition: transform 0.4s ease, box-shadow 0.4s ease; }
        .tpl-product-promo .procard:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.07); }
        .tpl-product-promo .procard-visual { position: relative; overflow: hidden; aspect-ratio: 3/4; }
        .tpl-product-promo .procard-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
        .tpl-product-promo .procard:hover .procard-img { transform: scale(1.04); }
        .tpl-product-promo .procard-badge { position: absolute; top: 16px; left: 16px; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 3px; z-index: 2; }
        .tpl-product-promo .procard-badge.badge-subtle { background: rgba(255,255,255,0.85); color: #333; backdrop-filter: blur(6px); }
        .tpl-product-promo .procard-badge.badge-accent { background: #1a1a1a; color: #fff; }
        .tpl-product-promo .procard-badge.badge-dark { background: rgba(0,0,0,0.55); color: #fff; backdrop-filter: blur(6px); }
        .tpl-product-promo .procard-discount { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.9); color: #1a1a1a; font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 3px; z-index: 2; letter-spacing: 0.5px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
        .tpl-product-promo .procard-icon { position: absolute; bottom: 16px; right: 16px; width: 34px; height: 34px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: #1a1a1a; z-index: 2; cursor: pointer; transition: transform 0.2s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
        .tpl-product-promo .procard-icon:hover { transform: scale(1.15); }
        .tpl-product-promo .procard-body { padding: 24px; }
        .tpl-product-promo .procard-name { font-size: 18px; font-weight: 500; color: #1a1a1a; margin: 0 0 8px; }
        .tpl-product-promo .procard-desc { font-size: 13px; color: #888; margin: 0 0 20px; line-height: 1.6; }
        .tpl-product-promo .procard-pricing { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; }
        .tpl-product-promo .procard-old { font-size: 14px; color: #aaa; text-decoration: line-through; }
        .tpl-product-promo .procard-new { font-size: 22px; font-weight: 600; color: #1a1a1a; letter-spacing: -0.3px; }
        .tpl-product-promo .procard-btn { background: #1a1a1a; color: #fff; border: none; padding: 10px 24px; border-radius: 6px; font-size: 13px; font-weight: 500; cursor: pointer; transition: opacity 0.3s ease; letter-spacing: 0.5px; width: 100%; }
        .tpl-product-promo .procard-btn:hover { opacity: 0.8; }
        @container product-promo (max-width: 680px) { .tpl-product-promo .promo-grid { grid-template-columns: repeat(2, 1fr); } .tpl-product-promo .promo-title { font-size: 32px; } }
        @container product-promo (max-width: 440px) { .tpl-product-promo .promo-grid { grid-template-columns: 1fr; } .tpl-product-promo { padding: 48px 16px; } .tpl-product-promo .promo-title { font-size: 26px; } .tpl-product-promo .procard-body { padding: 20px; } }
        @media (max-width: 480px) { .tpl-product-promo .promo-grid { grid-template-columns: 1fr !important; } }

.tpl-product-hero { 
          display: grid; 
          grid-template-columns: 1.2fr 1fr; 
          gap: 60px; 
          padding: 80px 40px; 
          background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
          border-radius: 20px;
          align-items: center;
          position: relative;
          overflow: hidden;
        }
        .tpl-product-hero::before {
          content: '';
          position: absolute;
          top: -50%;
          right: -20%;
          width: 600px;
          height: 600px;
          background: radial-gradient(circle, rgba(102, 126, 234, 0.15), transparent);
          border-radius: 50%;
        }
        .tpl-product-hero .content { position: relative; z-index: 2; }
        .tpl-product-hero .tagline { 
          display: inline-block;
          background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
          color: white;
          padding: 6px 16px;
          border-radius: 20px;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 1px;
          margin-bottom: 16px;
        }
        .tpl-product-hero .product-name { 
          font-size: 48px; 
          font-weight: 900; 
          color: white; 
          margin: 0 0 20px; 
          line-height: 1.2;
        }
        .tpl-product-hero .description { 
          font-size: 18px; 
          color: #cbd5e0; 
          line-height: 1.7; 
          margin: 0 0 32px; 
        }
        .tpl-product-hero .pricing { 
          display: flex; 
          align-items: center; 
          gap: 16px; 
          margin-bottom: 32px;
          flex-wrap: wrap;
        }
        .tpl-product-hero .price { 
          font-size: 42px; 
          font-weight: 900; 
          color: #667eea; 
        }
        .tpl-product-hero .old-price { 
          font-size: 24px; 
          color: #718096; 
          text-decoration: line-through; 
        }
        .tpl-product-hero .cta-button { 
          display: inline-block;
          background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
          color: white; 
          padding: 18px 48px; 
          border-radius: 50px; 
          font-size: 18px; 
          font-weight: 700; 
          text-decoration: none;
          transition: all 0.3s ease;
          border: none;
          cursor: pointer;
          box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }
        .tpl-product-hero .cta-button:hover { 
          transform: translateY(-2px); 
          box-shadow: 0 12px 28px rgba(102, 126, 234, 0.4); 
        }
        .tpl-product-hero .features { 
          margin-top: 32px; 
          display: flex; 
          flex-direction: column; 
          gap: 12px; 
        }
        .tpl-product-hero .feature-item { 
          color: #e2e8f0; 
          font-size: 16px; 
        }
        .tpl-product-hero .image-container { 
          position: relative; 
          z-index: 2; 
        }
        .tpl-product-hero .product-image { 
          width: 100%; 
          height: auto; 
          border-radius: 16px; 
          box-shadow: 0 20px 60px rgba(0,0,0,0.4);
          transform: rotate(2deg);
          transition: transform 0.3s ease;
        }
        .tpl-product-hero .product-image:hover { 
          transform: rotate(0deg) scale(1.05); 
        }
        @media (max-width: 968px) { 
          .tpl-product-hero { 
            grid-template-columns: 1fr; 
            gap: 40px; 
            padding: 60px 24px; 
          } 
          .tpl-product-hero .product-name { font-size: 36px; }
          .tpl-product-hero .price { font-size: 32px; }
          .tpl-product-hero .description { font-size: 16px; }
          .tpl-product-hero .cta-button { padding: 14px 36px; font-size: 16px; }
        }
        @media (max-width: 480px) {
          .tpl-product-hero { padding: 40px 16px; gap: 24px; }
          .tpl-product-hero .product-name { font-size: 28px; }
          .tpl-product-hero .price { font-size: 28px; }
          .tpl-product-hero .old-price { font-size: 18px; }
          .tpl-product-hero .description { font-size: 14px; }
          .tpl-product-hero .cta-button { padding: 12px 24px; font-size: 14px; width: 100%; text-align: center; }
          .tpl-product-hero .feature-item { font-size: 14px; }
        }

.tpl-product-grid { padding: 60px 24px; background: #f8f9fa; border-radius: 16px; container-type: inline-size; container-name: product-grid; }
        .tpl-product-grid .section-header { text-align: center; margin-bottom: 48px; }
        .tpl-product-grid .section-title { font-size: 36px; font-weight: 800; color: #1a202c; margin: 0 0 12px; }
        .tpl-product-grid .section-subtitle { font-size: 18px; color: #718096; margin: 0; }
        .tpl-product-grid .products-grid { 
          display: grid; 
          grid-template-columns: repeat(4, 1fr); 
          gap: 28px; 
          max-width: 1200px; 
          margin: 0 auto; 
        }
        .tpl-product-grid .product-card { 
          background: white; 
          border-radius: 12px; 
          overflow: hidden; 
          box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
          transition: all 0.3s ease;
          cursor: pointer;
        }
        .tpl-product-grid .product-card:hover { 
          transform: translateY(-8px); 
          box-shadow: 0 12px 24px rgba(0,0,0,0.15); 
        }
        .tpl-product-grid .product-image { 
          width: 100%; 
          height: 280px; 
          object-fit: cover; 
          background: #e2e8f0; 
        }
        .tpl-product-grid .product-info { padding: 24px; }
        .tpl-product-grid .product-name { 
          font-size: 20px; 
          font-weight: 700; 
          color: #2d3748; 
          margin: 0 0 12px; 
        }
        .tpl-product-grid .product-price { 
          font-size: 24px; 
          font-weight: 800; 
          color: #667eea; 
          margin: 0 0 16px; 
        }
        .tpl-product-grid .add-to-cart { 
          width: 100%; 
          background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
          color: white; 
          border: none; 
          border-radius: 8px; 
          padding: 12px 24px; 
          font-size: 16px; 
          font-weight: 600; 
          cursor: pointer; 
          transition: all 0.3s ease;
        }
        .tpl-product-grid .add-to-cart:hover { 
          transform: scale(1.02); 
          box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4); 
        }
        @container product-grid (max-width: 900px) {
          .tpl-product-grid .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
        }
        @container product-grid (max-width: 680px) {
          .tpl-product-grid .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
          .tpl-product-grid .section-title { font-size: 28px; }
          .tpl-product-grid .product-image { height: 200px; }
        }
        @container product-grid (max-width: 440px) {
          .tpl-product-grid { padding: 32px 16px; }
          .tpl-product-grid .products-grid { grid-template-columns: 1fr; gap: 16px; }
          .tpl-product-grid .section-title { font-size: 24px; }
          .tpl-product-grid .section-subtitle { font-size: 15px; }
          .tpl-product-grid .product-image { height: 200px; }
          .tpl-product-grid .product-info { padding: 16px; }
          .tpl-product-grid .product-name { font-size: 17px; }
          .tpl-product-grid .product-price { font-size: 20px; }
          .tpl-product-grid .add-to-cart { padding: 10px 16px; font-size: 14px; }
        }
        @media (max-width: 480px) {
          .tpl-product-grid { padding: 32px 16px; }
          .tpl-product-grid .products-grid { grid-template-columns: 1fr; gap: 16px; }
          .tpl-product-grid .section-title { font-size: 24px; }
          .tpl-product-grid .product-image { height: 200px; }
        }

.tpl-product-grid { padding: 72px 24px; background: #0a0a0a; container-type: inline-size; container-name: product-grid; }
        .tpl-product-grid .section-header { text-align: center; margin-bottom: 56px; }
        .tpl-product-grid .section-title { font-size: 38px; font-weight: 700; color: #fff; margin: 0 0 8px; letter-spacing: -0.03em; }
        .tpl-product-grid .section-subtitle { font-size: 15px; color: rgba(255,255,255,0.45); margin: 0; letter-spacing: 0.5px; }
        .tpl-product-grid .products-grid {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 16px;
          max-width: 1200px;
          margin: 0 auto;
        }
        .tpl-product-grid .product-card {
          position: relative;
          border-radius: 16px;
          overflow: hidden;
          aspect-ratio: 3/4;
          cursor: pointer;
          isolation: isolate;
        }
        .tpl-product-grid .product-image {
          width: 100%; height: 100%; object-fit: cover; display: block;
          transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
        }
        .tpl-product-grid .product-card:hover .product-image { transform: scale(1.08); }
        .tpl-product-grid .product-overlay {
          position: absolute; inset: 0; z-index: 2;
          background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 55%);
          display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
          transition: background 0.3s;
        }
        .tpl-product-grid .product-card:hover .product-overlay {
          background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
        }
        .tpl-product-grid .product-name {
          font-size: 17px; font-weight: 600; color: #fff; margin: 0 0 4px; line-height: 1.3;
        }
        .tpl-product-grid .product-price {
          font-size: 22px; font-weight: 700; color: #fff; margin: 0 0 14px; letter-spacing: -0.02em;
        }
        .tpl-product-grid .add-to-cart {
          background: rgba(255,255,255,0.15); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
          border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 10px;
          padding: 10px 0; font-size: 13px; font-weight: 600; cursor: pointer;
          transition: all 0.25s; text-align: center; width: 100%;
          opacity: 0; transform: translateY(8px);
        }
        .tpl-product-grid .product-card:hover .add-to-cart { opacity: 1; transform: translateY(0); }
        .tpl-product-grid .add-to-cart:hover { background: #fff; color: #0a0a0a; border-color: #fff; }
        @container product-grid (max-width: 900px) {
          .tpl-product-grid .products-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @container product-grid (max-width: 600px) {
          .tpl-product-grid .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
          .tpl-product-grid .section-title { font-size: 28px; }
          .tpl-product-grid .product-overlay { padding: 16px; }
          .tpl-product-grid .product-name { font-size: 14px; }
          .tpl-product-grid .product-price { font-size: 18px; }
          .tpl-product-grid .add-to-cart { opacity: 1; transform: none; font-size: 12px; padding: 8px 0; }
        }
        @container product-grid (max-width: 380px) {
          .tpl-product-grid { padding: 40px 12px; }
          .tpl-product-grid .products-grid { grid-template-columns: 1fr; }
          .tpl-product-grid .product-card { aspect-ratio: 4/5; }
        }
        @media (max-width: 480px) {
          .tpl-product-grid .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
          .tpl-product-grid .add-to-cart { opacity: 1; transform: none; }
        }

.tpl-product-categories { 
          padding: 60px 24px; 
          background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
          border-radius: 16px;
        }
        .tpl-product-categories .section-title { 
          text-align: center;
          font-size: 36px; 
          font-weight: 800; 
          color: #1a202c; 
          margin: 0 0 48px; 
        }
        .tpl-product-categories .categories-grid { 
          display: grid; 
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
          gap: 24px; 
          max-width: 1200px; 
          margin: 0 auto; 
        }
        .tpl-product-categories .category-card { 
          background: white; 
          border-radius: 16px; 
          padding: 40px 24px; 
          text-align: center;
          cursor: pointer;
          transition: all 0.3s ease;
          box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .tpl-product-categories .category-card:hover { 
          transform: translateY(-8px); 
          box-shadow: 0 12px 28px rgba(0,0,0,0.15); 
          background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .tpl-product-categories .category-card:hover .category-icon,
        .tpl-product-categories .category-card:hover .category-name {
          color: white;
        }
        .tpl-product-categories .category-icon { 
          font-size: 48px; 
          margin-bottom: 16px; 
          display: block;
          transition: all 0.3s ease;
        }
        .tpl-product-categories .category-name { 
          font-size: 18px; 
          font-weight: 700; 
          color: #2d3748; 
          margin: 0;
          transition: all 0.3s ease;
        }
        @media (max-width: 640px) { 
          .tpl-product-categories .categories-grid { 
            grid-template-columns: repeat(2, 1fr); 
            gap: 16px; 
          }
          .tpl-product-categories { padding: 32px 16px; }
          .tpl-product-categories .section-title { font-size: 24px; margin-bottom: 24px; }
          .tpl-product-categories .category-card { padding: 24px 16px; }
          .tpl-product-categories .category-icon { font-size: 36px; }
        }

.tpl-product-categories { padding: 80px 24px; background: #fafafa; container-type: inline-size; container-name: product-categories; }
        .tpl-product-categories .cat-header { text-align: center; margin-bottom: 56px; }
        .tpl-product-categories .cat-title { font-size: 40px; font-weight: 300; color: #1a1a1a; margin: 0 0 12px; letter-spacing: -0.5px; }
        .tpl-product-categories .cat-subtitle { font-size: 16px; color: #888; margin: 0; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; }
        .tpl-product-categories .categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
        .tpl-product-categories .category-card { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
        .tpl-product-categories .category-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%); transition: background 0.4s ease; }
        .tpl-product-categories .category-card:hover::after { background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%); }
        .tpl-product-categories .category-card:hover .cat-img { transform: scale(1.06); }
        .tpl-product-categories .cat-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
        .tpl-product-categories .cat-emoji { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 64px; background: linear-gradient(135deg, #f8f8f8, #eee); }
        .tpl-product-categories .cat-label { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 20px 24px; }
        .tpl-product-categories .category-name { font-size: 20px; font-weight: 600; color: #fff; margin: 0; letter-spacing: 0.5px; }
        @container product-categories (max-width: 700px) { .tpl-product-categories .categories-grid { grid-template-columns: repeat(2, 1fr); } .tpl-product-categories .cat-title { font-size: 30px; } }
        @container product-categories (max-width: 440px) { .tpl-product-categories .categories-grid { grid-template-columns: 1fr; } .tpl-product-categories { padding: 48px 16px; } .tpl-product-categories .cat-title { font-size: 26px; } .tpl-product-categories .category-name { font-size: 17px; } }
        @media (max-width: 480px) { .tpl-product-categories .categories-grid { grid-template-columns: 1fr !important; } }

.tpl-blog-hero-magazine{background:#fff;padding:0;overflow:hidden;font-family:'Inter',sans-serif}
      .tpl-blog-hero-magazine .bhm-inner{display:grid;grid-template-columns:1.2fr 0.8fr;min-height:520px}
      .tpl-blog-hero-magazine .bhm-media{position:relative;overflow:hidden}
      .tpl-blog-hero-magazine .bhm-media img{width:100%;height:100%;object-fit:cover}
      .tpl-blog-hero-magazine .bhm-content{display:flex;flex-direction:column;justify-content:center;padding:64px 48px;background:#fafafa}
      .tpl-blog-hero-magazine .bhm-badge{display:inline-block;background:#e74c3c;color:#fff;font-size:11px;letter-spacing:0.1em;text-transform:uppercase;padding:6px 16px;border-radius:2px;margin-bottom:20px;align-self:flex-start}
      .tpl-blog-hero-magazine h2{font-size:clamp(1.6rem,2.8vw,2.2rem);line-height:1.3;color:#1a1a1a;margin:0 0 16px;font-weight:700}
      .tpl-blog-hero-magazine .bhm-excerpt{color:#666;line-height:1.7;margin:0 0 24px;font-size:15px}
      .tpl-blog-hero-magazine .bhm-meta{font-size:13px;color:#999;margin-bottom:24px}
      .tpl-blog-hero-magazine .bhm-meta strong{color:#1a1a1a}
      .tpl-blog-hero-magazine .bhm-cta{display:inline-block;text-decoration:none;color:#fff;background:#1a1a1a;padding:14px 36px;font-size:13px;font-weight:600;transition:background 0.3s;align-self:flex-start;border-radius:4px}
      .tpl-blog-hero-magazine .bhm-cta:hover{background:#333}
      @media(max-width:768px){
        .tpl-blog-hero-magazine .bhm-inner{grid-template-columns:1fr}
        .tpl-blog-hero-magazine .bhm-media{height:300px}
        .tpl-blog-hero-magazine .bhm-content{padding:32px 24px}
      }

.tpl-blog-dynamic { 
          background: #ffffff; 
          padding: 60px 24px; 
          border-radius: 16px; 
        }
        .tpl-blog-dynamic .blog-title { 
          font-size: 36px; 
          font-weight: 900; 
          margin: 0 0 8px; 
          text-align: center;
          color: #1a202c;
        }
        .tpl-blog-dynamic .blog-subtitle {
          font-size: 14px;
          color: #64748b;
          text-align: center;
          margin: 0 0 48px;
        }
        @media (max-width: 768px) { 
          .tpl-blog-dynamic { padding: 32px 16px; }
          .tpl-blog-dynamic .blog-title { font-size: 24px; margin-bottom: 6px; }
        }

.tpl-blog-grid-cards{background:#f7f8fa;padding:80px 40px;font-family:'Inter',sans-serif}
      .tpl-blog-grid-cards .bgc-inner{max-width:1200px;margin:0 auto}
      .tpl-blog-grid-cards .bgc-title{text-align:center;font-size:clamp(1.6rem,2.5vw,2.2rem);font-weight:700;color:#1a1a1a;margin:0 0 48px}
      .tpl-blog-grid-cards .bgc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
      .tpl-blog-grid-cards .bgc-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 2px 12px rgba(0,0,0,0.06);transition:transform 0.3s,box-shadow 0.3s;cursor:pointer}
      .tpl-blog-grid-cards .bgc-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,0.1)}
      .tpl-blog-grid-cards .bgc-card .bgc-img{aspect-ratio:16/10;overflow:hidden}
      .tpl-blog-grid-cards .bgc-card .bgc-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s}
      .tpl-blog-grid-cards .bgc-card:hover .bgc-img img{transform:scale(1.05)}
      .tpl-blog-grid-cards .bgc-card .bgc-body{padding:20px 24px 24px}
      .tpl-blog-grid-cards .bgc-cat{display:inline-block;font-size:11px;letter-spacing:0.08em;text-transform:uppercase;color:#5a67d8;font-weight:600;margin-bottom:10px}
      .tpl-blog-grid-cards .bgc-card h3{font-size:17px;font-weight:600;color:#1a1a1a;margin:0 0 12px;line-height:1.4}
      .tpl-blog-grid-cards .bgc-meta{font-size:13px;color:#999;display:flex;gap:12px;align-items:center}
      .tpl-blog-grid-cards .bgc-meta span{display:flex;align-items:center;gap:4px}
      @media(max-width:900px){.tpl-blog-grid-cards .bgc-grid{grid-template-columns:repeat(2,1fr)}}
      @media(max-width:540px){.tpl-blog-grid-cards .bgc-grid{grid-template-columns:1fr}}

.tpl-blog-sidebar-layout{background:#fff;padding:64px 40px;font-family:'Inter',sans-serif}
      .tpl-blog-sidebar-layout .bsl-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 340px;gap:48px}
      .tpl-blog-sidebar-layout .bsl-cats{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:32px}
      .tpl-blog-sidebar-layout .bsl-cats span{padding:8px 18px;border-radius:20px;font-size:13px;cursor:pointer;transition:all 0.2s;border:1px solid #e2e8f0;color:#666}
      .tpl-blog-sidebar-layout .bsl-cats span:first-child{background:#1a1a1a;color:#fff;border-color:#1a1a1a}
      .tpl-blog-sidebar-layout .bsl-cats span:hover{border-color:#1a1a1a}
      .tpl-blog-sidebar-layout .bsl-main-card{border-radius:12px;overflow:hidden;box-shadow:0 4px 16px rgba(0,0,0,0.08)}
      .tpl-blog-sidebar-layout .bsl-main-card .bsl-main-img{aspect-ratio:16/9;overflow:hidden}
      .tpl-blog-sidebar-layout .bsl-main-card .bsl-main-img img{width:100%;height:100%;object-fit:cover}
      .tpl-blog-sidebar-layout .bsl-main-card .bsl-main-body{padding:28px 32px}
      .tpl-blog-sidebar-layout .bsl-main-card h2{font-size:22px;font-weight:700;color:#1a1a1a;margin:0 0 12px;line-height:1.3}
      .tpl-blog-sidebar-layout .bsl-main-card p{color:#666;line-height:1.7;margin:0 0 16px;font-size:15px}
      .tpl-blog-sidebar-layout .bsl-main-card .bsl-main-meta{font-size:13px;color:#999}
      .tpl-blog-sidebar-layout .bsl-main-card .bsl-main-meta strong{color:#1a1a1a}
      .tpl-blog-sidebar-layout .bsl-sidebar{display:flex;flex-direction:column;gap:24px}
      .tpl-blog-sidebar-layout .bsl-sidebar h3{font-size:16px;font-weight:700;color:#1a1a1a;margin:0;padding-bottom:12px;border-bottom:2px solid #1a1a1a}
      .tpl-blog-sidebar-layout .bsl-side-item{padding:16px 0;border-bottom:1px solid #eee;cursor:pointer;transition:color 0.2s}
      .tpl-blog-sidebar-layout .bsl-side-item:hover h4{color:#5a67d8}
      .tpl-blog-sidebar-layout .bsl-side-item h4{font-size:15px;font-weight:600;color:#1a1a1a;margin:0 0 4px;line-height:1.4}
      .tpl-blog-sidebar-layout .bsl-side-item span{font-size:12px;color:#999}
      .tpl-blog-sidebar-layout .bsl-newsletter{background:#f7f8fa;border-radius:12px;padding:28px;text-align:center}
      .tpl-blog-sidebar-layout .bsl-newsletter h4{font-size:16px;font-weight:700;margin:0 0 8px;color:#1a1a1a}
      .tpl-blog-sidebar-layout .bsl-newsletter p{font-size:13px;color:#999;margin:0 0 16px}
      .tpl-blog-sidebar-layout .bsl-newsletter input{width:100%;padding:12px 14px;border:1px solid #ddd;border-radius:8px;font:inherit;font-size:14px;margin-bottom:10px;box-sizing:border-box}
      .tpl-blog-sidebar-layout .bsl-newsletter button{width:100%;background:#1a1a1a;color:#fff;border:none;padding:12px;border-radius:8px;font-weight:600;font-size:14px;cursor:pointer}
      @media(max-width:900px){.tpl-blog-sidebar-layout .bsl-inner{grid-template-columns:1fr}}

.tpl-forum-discord {
          max-width: 1100px;
          margin: 0 auto;
          padding: 28px 20px;
          border: 1px solid #e2e8f0;
          border-radius: 14px;
          background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        }
        .tpl-forum-discord .forum-head {
          display: flex;
          justify-content: space-between;
          align-items: end;
          gap: 12px;
          flex-wrap: wrap;
          margin-bottom: 14px;
        }
        .tpl-forum-discord .forum-head h2 {
          margin: 0;
          font-size: 30px;
          line-height: 1.1;
          color: #0f172a;
        }
        .tpl-forum-discord .forum-head p {
          margin: 6px 0 0;
          font-size: 13px;
          color: #475569;
        }
        .tpl-forum-discord .forum-hint {
          font-size: 12px;
          color: #64748b;
          background: #f1f5f9;
          border: 1px solid #cbd5e1;
          border-radius: 999px;
          padding: 5px 10px;
        }
        .tpl-forum-discord .forum-host {
          min-height: 220px;
        }
        @media (max-width: 640px) {
          .tpl-forum-discord { padding: 18px 12px; }
          .tpl-forum-discord .forum-head h2 { font-size: 24px; }
        }

.tpl-blog-author-bio{background:#fff;padding:64px 40px;font-family:'Inter',sans-serif}
      .tpl-blog-author-bio .bab-inner{max-width:800px;margin:0 auto;display:flex;gap:40px;align-items:center;background:#f7f8fa;border-radius:16px;padding:40px}
      .tpl-blog-author-bio .bab-avatar{flex-shrink:0;width:140px;height:140px;border-radius:50%;overflow:hidden}
      .tpl-blog-author-bio .bab-avatar img{width:100%;height:100%;object-fit:cover}
      .tpl-blog-author-bio h3{font-size:22px;font-weight:700;color:#1a1a1a;margin:0 0 4px}
      .tpl-blog-author-bio .bab-role{font-size:14px;color:#5a67d8;font-weight:500;margin-bottom:12px}
      .tpl-blog-author-bio .bab-bio{color:#666;line-height:1.7;font-size:14px;margin:0 0 16px}
      .tpl-blog-author-bio .bab-stats{display:flex;gap:20px;margin-bottom:16px}
      .tpl-blog-author-bio .bab-stats span{font-size:13px;color:#999;padding:6px 14px;background:#fff;border-radius:20px}
      .tpl-blog-author-bio .bab-social{display:flex;gap:12px}
      .tpl-blog-author-bio .bab-social a{width:36px;height:36px;border-radius:50%;background:#1a1a1a;color:#fff;display:flex;align-items:center;justify-content:center;text-decoration:none;font-size:14px;transition:background 0.3s}
      .tpl-blog-author-bio .bab-social a:hover{background:#5a67d8}
      @media(max-width:600px){
        .tpl-blog-author-bio .bab-inner{flex-direction:column;text-align:center;padding:32px 24px}
        .tpl-blog-author-bio .bab-stats{justify-content:center}
        .tpl-blog-author-bio .bab-social{justify-content:center}
      }

.tpl-forum-categories{background:#f0f2f5;padding:64px 40px;font-family:'Inter',sans-serif}
      .tpl-forum-categories .fc-inner{max-width:900px;margin:0 auto}
      .tpl-forum-categories .fc-header{text-align:center;margin-bottom:40px}
      .tpl-forum-categories .fc-header h2{font-size:clamp(1.6rem,2.5vw,2.2rem);font-weight:700;color:#1a1a1a;margin:0 0 8px}
      .tpl-forum-categories .fc-header p{color:#666;font-size:15px}
      .tpl-forum-categories .fc-list{display:flex;flex-direction:column;gap:12px}
      .tpl-forum-categories .fc-item{background:#fff;border-radius:12px;padding:20px 24px;display:grid;grid-template-columns:48px 1fr auto;gap:16px;align-items:center;cursor:pointer;transition:box-shadow 0.3s;border:1px solid #e8eaed}
      .tpl-forum-categories .fc-item:hover{box-shadow:0 4px 16px rgba(0,0,0,0.08)}
      .tpl-forum-categories .fc-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:22px}
      .tpl-forum-categories .fc-info h4{margin:0 0 4px;font-size:16px;font-weight:600;color:#1a1a1a}
      .tpl-forum-categories .fc-info p{margin:0;font-size:13px;color:#888}
      .tpl-forum-categories .fc-stats{display:flex;gap:24px;font-size:13px;color:#999;text-align:center}
      .tpl-forum-categories .fc-stats div strong{display:block;font-size:18px;color:#1a1a1a;font-weight:700}
      @media(max-width:600px){
        .tpl-forum-categories .fc-item{grid-template-columns:40px 1fr;gap:12px}
        .tpl-forum-categories .fc-stats{display:none}
        .tpl-forum-categories{padding:40px 16px}
      }

.tpl-forum-thread-list{background:#fff;padding:48px 40px;font-family:'Inter',sans-serif}
      .tpl-forum-thread-list .ftl-inner{max-width:900px;margin:0 auto}
      .tpl-forum-thread-list .ftl-title{font-size:20px;font-weight:700;color:#1a1a1a;margin:0 0 24px;display:flex;justify-content:space-between;align-items:center}
      .tpl-forum-thread-list .ftl-new-btn{background:#5a67d8;color:#fff;border:none;padding:10px 20px;border-radius:8px;font-size:13px;font-weight:600;cursor:pointer}
      .tpl-forum-thread-list .ftl-list{display:flex;flex-direction:column;gap:2px}
      .tpl-forum-thread-list .ftl-item{display:grid;grid-template-columns:36px 1fr auto;gap:14px;padding:16px 12px;align-items:center;border-bottom:1px solid #f0f0f0;cursor:pointer;transition:background 0.2s;border-radius:8px}
      .tpl-forum-thread-list .ftl-item:hover{background:#f7f8fa}
      .tpl-forum-thread-list .ftl-item.pinned{background:#fffbeb}
      .tpl-forum-thread-list .ftl-avatar{font-size:24px;text-align:center}
      .tpl-forum-thread-list .ftl-item h4{font-size:15px;font-weight:600;color:#1a1a1a;margin:0 0 4px;line-height:1.3}
      .tpl-forum-thread-list .ftl-item .ftl-sub{font-size:12px;color:#999;display:flex;gap:8px;align-items:center;flex-wrap:wrap}
      .tpl-forum-thread-list .ftl-tag{display:inline-block;padding:2px 8px;border-radius:4px;font-size:11px;font-weight:600;background:#eef2ff;color:#5a67d8}
      .tpl-forum-thread-list .ftl-right{text-align:right;font-size:12px;color:#999;white-space:nowrap}
      .tpl-forum-thread-list .ftl-right strong{display:block;color:#1a1a1a;font-size:14px}
      @media(max-width:600px){
        .tpl-forum-thread-list .ftl-item{grid-template-columns:28px 1fr}
        .tpl-forum-thread-list .ftl-right{display:none}
        .tpl-forum-thread-list{padding:32px 16px}
      }

.tpl-product-featured { padding: 80px 24px; background: #f5f5f0; container-type: inline-size; container-name: product-featured; }
        .tpl-product-featured .feat-header { text-align: left; margin-bottom: 48px; max-width: 1200px; margin-left: auto; margin-right: auto; display: flex; justify-content: space-between; align-items: flex-end; }
        .tpl-product-featured .feat-header-text {}
        .tpl-product-featured .feat-title { font-size: 36px; font-weight: 300; color: #111; margin: 0 0 8px; letter-spacing: -0.02em; line-height: 1.1; }
        .tpl-product-featured .feat-subtitle { font-size: 13px; color: #888; margin: 0; letter-spacing: 2px; text-transform: uppercase; }
        .tpl-product-featured .feat-count { font-size: 12px; color: #aaa; letter-spacing: 1px; }
        .tpl-product-featured .feat-layout { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .tpl-product-featured .fcard-hero { grid-column: 1; grid-row: 1 / 3; position: relative; border-radius: 12px; overflow: hidden; min-height: 560px; cursor: pointer; }
        .tpl-product-featured .fcard-hero .fcard-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(.25,.46,.45,.94); }
        .tpl-product-featured .fcard-hero:hover .fcard-img { transform: scale(1.04); }
        .tpl-product-featured .fcard-hero .fcard-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; }
        .tpl-product-featured .fcard-hero .fcard-badge { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; margin-bottom: 12px; width: fit-content; }
        .tpl-product-featured .fcard-badge.badge-subtle { background: rgba(255,255,255,0.9); color: #111; }
        .tpl-product-featured .fcard-badge.badge-accent { background: #fff; color: #111; }
        .tpl-product-featured .fcard-badge.badge-dark { background: rgba(0,0,0,0.6); color: #fff; }
        .tpl-product-featured .fcard-hero .fcard-name { font-size: 28px; font-weight: 500; color: #fff; margin: 0 0 6px; line-height: 1.2; }
        .tpl-product-featured .fcard-hero .fcard-desc { font-size: 14px; color: rgba(255,255,255,0.75); margin: 0 0 16px; line-height: 1.5; max-width: 380px; }
        .tpl-product-featured .fcard-hero .fcard-bottom { display: flex; align-items: center; gap: 16px; }
        .tpl-product-featured .fcard-hero .fcard-price { font-size: 24px; font-weight: 600; color: #fff; }
        .tpl-product-featured .fcard-hero .fcard-btn { background: #fff; color: #111; border: none; padding: 10px 24px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.25s; letter-spacing: 0.5px; text-transform: uppercase; }
        .tpl-product-featured .fcard-hero .fcard-btn:hover { background: #111; color: #fff; }
        .tpl-product-featured .fcard-small { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; background: #fff; display: flex; gap: 0; min-height: 270px; }
        .tpl-product-featured .fcard-small .fcard-visual { width: 50%; overflow: hidden; }
        .tpl-product-featured .fcard-small .fcard-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
        .tpl-product-featured .fcard-small:hover .fcard-img { transform: scale(1.05); }
        .tpl-product-featured .fcard-small .fcard-body { width: 50%; display: flex; flex-direction: column; justify-content: center; padding: 28px; }
        .tpl-product-featured .fcard-small .fcard-badge { display: inline-block; font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-bottom: 12px; width: fit-content; }
        .tpl-product-featured .fcard-small .fcard-name { font-size: 17px; font-weight: 500; color: #111; margin: 0 0 6px; line-height: 1.3; }
        .tpl-product-featured .fcard-small .fcard-desc { font-size: 12px; color: #888; margin: 0 0 16px; line-height: 1.5; }
        .tpl-product-featured .fcard-small .fcard-bottom { display: flex; align-items: center; gap: 12px; }
        .tpl-product-featured .fcard-small .fcard-price { font-size: 18px; font-weight: 600; color: #111; }
        .tpl-product-featured .fcard-small .fcard-btn { background: #111; color: #fff; border: none; padding: 8px 18px; border-radius: 4px; font-size: 11px; font-weight: 500; cursor: pointer; transition: opacity 0.25s; letter-spacing: 0.5px; text-transform: uppercase; }
        .tpl-product-featured .fcard-small .fcard-btn:hover { opacity: 0.75; }
        .tpl-product-featured .fcard-icon { display: none; }
        @container product-featured (max-width: 700px) {
          .tpl-product-featured .feat-layout { grid-template-columns: 1fr; }
          .tpl-product-featured .fcard-hero { grid-row: auto; min-height: 400px; }
          .tpl-product-featured .fcard-hero .fcard-name { font-size: 22px; }
          .tpl-product-featured .feat-header { flex-direction: column; align-items: flex-start; gap: 8px; }
        }
        @container product-featured (max-width: 440px) {
          .tpl-product-featured { padding: 48px 16px; }
          .tpl-product-featured .fcard-hero { min-height: 320px; }
          .tpl-product-featured .fcard-small { flex-direction: column; }
          .tpl-product-featured .fcard-small .fcard-visual { width: 100%; height: 200px; }
          .tpl-product-featured .fcard-small .fcard-body { width: 100%; padding: 20px; }
          .tpl-product-featured .feat-title { font-size: 26px; }
        }
        @media (max-width: 480px) {
          .tpl-product-featured .feat-layout { grid-template-columns: 1fr !important; }
          .tpl-product-featured .fcard-small { flex-direction: column; }
          .tpl-product-featured .fcard-small .fcard-visual { width: 100%; height: 200px; }
          .tpl-product-featured .fcard-small .fcard-body { width: 100%; }
        }

.tpl-shop-sidebar {
          --sb-bg: #fafafa; --sb-accent: #1a1a2e; --sb-text: #1d2327; --sb-sidebar-bg: #ffffff;
          --sb-card-bg: #ffffff; --sb-card-r: 16px; --sb-sidebar-w: 260px;
          padding: 56px 32px; max-width: 1320px; margin: 0 auto;
          font-family: Inter, system-ui, -apple-system, sans-serif;
          background: var(--sb-bg); color: var(--sb-text);
        }
        .tpl-shop-sidebar .shop-header {
          text-align: center; margin-bottom: 48px;
        }
        .tpl-shop-sidebar .shop-title {
          font-size: 38px; font-weight: 800; color: var(--sb-text);
          margin: 0 0 10px; letter-spacing: -0.6px; line-height: 1.15;
        }
        .tpl-shop-sidebar .shop-subtitle {
          font-size: 15px; color: var(--sb-text); opacity: 0.55;
          margin: 0; font-weight: 400; letter-spacing: 0.2px;
        }
        .tpl-shop-sidebar .shop-hero-banner {
          display: none; padding: 56px 40px; text-align: center;
          border-radius: var(--sb-card-r); margin-bottom: 28px;
          animation: shopHeroIn .45s cubic-bezier(.4,0,.2,1);
          position: relative; overflow: hidden;
        }
        @keyframes shopHeroIn { from { opacity:0; transform:translateY(-12px) scale(.98); } to { opacity:1; transform:none; } }
        .tpl-shop-sidebar .shop-hero-banner h2 {
          margin: 0 0 8px; font-size: 30px; font-weight: 800;
          color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.35);
          position: relative; z-index: 1;
        }
        .tpl-shop-sidebar .shop-hero-banner p {
          margin: 0; font-size: 14px; color: rgba(255,255,255,0.88);
          position: relative; z-index: 1;
        }
        .tpl-shop-sidebar .shop-layout-grid {
          display: grid; grid-template-columns: var(--sb-sidebar-w) 1fr;
          gap: 32px; align-items: start;
        }

        /* ── Sidebar base ── */
        .tpl-shop-sidebar .shop-sidebar {
          position: sticky; top: 24px;
          background: var(--sb-sidebar-bg);
          border-radius: var(--sb-card-r); padding: 20px 16px;
          transition: all .3s ease;
        }
        .tpl-shop-sidebar .shop-sidebar-label {
          display: block; margin: 0 0 16px 6px;
          font-size: 11px; font-weight: 700; text-transform: uppercase;
          letter-spacing: 1.8px; color: var(--sb-text); opacity: 0.4;
        }
        .tpl-shop-sidebar .shop-sidebar-item {
          display: flex; align-items: center; gap: 12px;
          width: 100%; text-align: left; padding: 11px 14px;
          border: none; border-radius: 12px; background: transparent;
          cursor: pointer; transition: all .2s cubic-bezier(.4,0,.2,1);
          font-size: 13.5px; font-weight: 500; color: var(--sb-text); opacity: 0.7;
          margin-bottom: 2px; position: relative;
        }
        .tpl-shop-sidebar .shop-sidebar-item:hover {
          opacity: 1 !important; background: rgba(0,0,0,0.04) !important;
        }
        .tpl-shop-sidebar .shop-sidebar-active {
          background: var(--sb-accent) !important; color: #fff !important;
          opacity: 1 !important; font-weight: 600;
          box-shadow: 0 4px 14px rgba(0,0,0,0.12);
        }
        .tpl-shop-sidebar .shop-sidebar-active:hover {
          background: var(--sb-accent) !important; filter: brightness(1.1);
        }
        .tpl-shop-sidebar .shop-sidebar-active .shop-sidebar-chevron { color: rgba(255,255,255,0.5) !important; }
        .tpl-shop-sidebar .shop-sidebar-item img {
          width: 38px; height: 38px; object-fit: cover;
          border-radius: 10px; flex-shrink: 0;
          box-shadow: 0 1px 4px rgba(0,0,0,0.08);
        }
        .tpl-shop-sidebar .shop-sidebar-icon {
          width: 38px; height: 38px; border-radius: 10px;
          display: flex; align-items: center; justify-content: center;
          flex-shrink: 0; font-size: 15px; transition: all .2s;
        }
        .tpl-shop-sidebar .shop-sidebar-chevron {
          font-size: 9px; color: var(--sb-text); opacity: 0.25;
          margin-left: auto; transition: transform .2s, color .2s;
        }
        .tpl-shop-sidebar .shop-sidebar-item:hover .shop-sidebar-chevron { transform: translateX(2px); opacity: 0.5; }
        .tpl-shop-sidebar .shop-sidebar-count {
          font-size: 10px; font-weight: 700; padding: 2px 8px;
          border-radius: 20px; background: rgba(0,0,0,0.06);
          color: var(--sb-text); opacity: 0.5; margin-left: auto;
        }

        /* ── Style: elegant ── */
        .tpl-shop-sidebar[data-sidebar-style="elegant"] .shop-sidebar {
          border: none; box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.06);
        }
        .tpl-shop-sidebar[data-sidebar-style="elegant"] .shop-sidebar-icon {
          background: linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0.08));
          color: var(--sb-accent);
        }

        /* ── Style: minimal ── */
        .tpl-shop-sidebar[data-sidebar-style="minimal"] .shop-sidebar {
          background: transparent !important; padding: 0 !important;
          border: none; box-shadow: none;
        }
        .tpl-shop-sidebar[data-sidebar-style="minimal"] .shop-sidebar-item {
          border-radius: 8px; padding: 10px 12px;
        }
        .tpl-shop-sidebar[data-sidebar-style="minimal"] .shop-sidebar-icon {
          background: rgba(0,0,0,0.05); color: var(--sb-text); opacity: 0.6;
        }

        /* ── Style: bordered ── */
        .tpl-shop-sidebar[data-sidebar-style="bordered"] .shop-sidebar {
          border: 1.5px solid rgba(0,0,0,0.08); box-shadow: none;
        }
        .tpl-shop-sidebar[data-sidebar-style="bordered"] .shop-sidebar-item {
          border: 1px solid transparent; border-radius: 10px;
        }
        .tpl-shop-sidebar[data-sidebar-style="bordered"] .shop-sidebar-item:hover {
          border-color: rgba(0,0,0,0.08) !important;
        }
        .tpl-shop-sidebar[data-sidebar-style="bordered"] .shop-sidebar-active {
          border-color: var(--sb-accent) !important;
        }
        .tpl-shop-sidebar[data-sidebar-style="bordered"] .shop-sidebar-icon {
          background: transparent; border: 1.5px solid rgba(0,0,0,0.1); color: var(--sb-text); opacity: 0.6;
        }

        /* ── Style: dark ── */
        .tpl-shop-sidebar[data-sidebar-style="dark"] .shop-sidebar {
          background: #0f1117 !important; border: 1px solid rgba(255,255,255,0.06);
          box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        }
        .tpl-shop-sidebar[data-sidebar-style="dark"] .shop-sidebar-label { color: #fff !important; }
        .tpl-shop-sidebar[data-sidebar-style="dark"] .shop-sidebar-item { color: rgba(255,255,255,0.65) !important; }
        .tpl-shop-sidebar[data-sidebar-style="dark"] .shop-sidebar-item:hover { background: rgba(255,255,255,0.06) !important; color: #fff !important; }
        .tpl-shop-sidebar[data-sidebar-style="dark"] .shop-sidebar-active { background: var(--sb-accent) !important; color: #fff !important; }
        .tpl-shop-sidebar[data-sidebar-style="dark"] .shop-sidebar-icon {
          background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
        }
        .tpl-shop-sidebar[data-sidebar-style="dark"] .shop-sidebar-chevron { color: rgba(255,255,255,0.2) !important; }

        /* ── Product cards ── */
        .tpl-shop-sidebar .shop-main-content { min-height: 200px; }
        .tpl-shop-sidebar .shop-product-card {
          background: var(--sb-card-bg); border-radius: var(--sb-card-r);
          overflow: hidden; transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s;
          box-shadow: 0 1px 3px rgba(0,0,0,0.05); cursor: pointer;
        }
        .tpl-shop-sidebar .shop-product-card:hover {
          transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1);
        }
        .tpl-shop-sidebar .shop-product-card img {
          width: 100%; height: 220px; object-fit: cover; display: block;
        }
        .tpl-shop-sidebar .shop-product-card .shop-card-body {
          padding: 16px 18px 18px;
        }
        .tpl-shop-sidebar .shop-product-card .shop-card-name {
          margin: 0 0 4px; font-size: 14px; font-weight: 700;
          color: var(--sb-text); line-height: 1.3;
        }
        .tpl-shop-sidebar .shop-product-card .shop-card-cat {
          font-size: 11px; opacity: 0.45; margin-bottom: 8px;
          text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;
        }
        .tpl-shop-sidebar .shop-product-card .shop-card-price {
          font-size: 18px; font-weight: 800; color: var(--sb-text);
        }
        .tpl-shop-sidebar .shop-card-cart {
          margin-top: 12px; width: 100%; border: none;
          border-radius: 10px; padding: 10px;
          background: var(--sb-accent); color: #fff;
          font-weight: 600; font-size: 12.5px; cursor: pointer;
          transition: filter .2s, transform .15s;
          letter-spacing: 0.3px;
        }
        .tpl-shop-sidebar .shop-card-cart:hover { filter: brightness(1.15); transform: translateY(-1px); }
        .tpl-shop-sidebar .shop-card-cart:disabled { opacity: 0.4; cursor: not-allowed; transform: none; filter: none; }

        /* ── Responsive ── */
        @media (max-width: 768px) {
          .tpl-shop-sidebar { padding: 32px 16px !important; }
          .tpl-shop-sidebar .shop-title { font-size: 28px !important; }
          .tpl-shop-sidebar .shop-layout-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
          .tpl-shop-sidebar .shop-sidebar {
            position: static !important; display: flex; flex-wrap: wrap;
            gap: 6px; padding: 14px !important; border-radius: 14px !important;
          }
          .tpl-shop-sidebar .shop-sidebar-label { width: 100%; margin-bottom: 8px !important; }
          .tpl-shop-sidebar .shop-sidebar-item { width: auto !important; flex: none; padding: 8px 14px !important; margin-bottom: 0 !important; }
          .tpl-shop-sidebar .shop-sidebar-item img,
          .tpl-shop-sidebar .shop-sidebar-icon { width: 26px !important; height: 26px !important; font-size: 11px !important; }
          .tpl-shop-sidebar .shop-sidebar-chevron { display: none !important; }
        }

.siteo-inline-0-0 { margin: 0px 0px 0px 0px !important; }
.siteo-inline-0-1 { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 24px !important; padding: 16px 24px !important; background: #1a1a1a !important; border-radius: 0px !important; }
.siteo-inline-0-2 { font-family: Georgia, serif !important; font-size: 24px !important; color: #c8a96e !important; font-weight: bold !important; font-style: normal !important; text-transform: none !important; letter-spacing: 0px !important; }
.siteo-inline-0-3 { display: flex !important; gap: 28px !important; align-items: center !important; flex-wrap: wrap !important; letter-spacing: 0.04em !important; }
.siteo-inline-0-4 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-0-5 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-0-6 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-0-7 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-0-8 { display: flex !important; align-items: center !important; gap: 12px !important; }
.siteo-inline-0-9 { display: flex !important; gap: 8px !important; align-items: center !important; }
.siteo-inline-0-10 { border-radius: 8px !important; background-image: initial !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: rgb(200, 169, 110) !important; color: rgb(26, 26, 26) !important; font-size: 14px !important; white-space: nowrap !important; -webkit-text-fill-color: rgb(26, 26, 26) !important; }
.siteo-inline-0-11 { background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1200&q=80') !important; }
.siteo-inline-0-12 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-0-13 { margin-top: 12px !important; padding-top: 8px !important; border-top: 1px dashed #dbe4ee !important; }
.siteo-inline-0-14 { display: grid !important; grid-template-columns: minmax(120px,220px) 1fr !important; gap: 14px !important; align-items: center !important; margin: 12px 0 !important; }
.siteo-inline-0-15 { max-width: 100% !important; width: 100% !important; height: auto !important; border-radius: 8px !important; transform: translate(156px, -32px) !important; }
.siteo-inline-0-16 { margin: 0 !important; font-size: 15px !important; line-height: 1.6 !important; transform: translate(156px, -32px) !important; white-space: pre-line !important; }
.siteo-inline-0-17 { margin: 10px 0 !important; padding: 16px !important; border: 1px dashed #cbd5e1 !important; border-radius: 8px !important; color: #64748b !important; font-size: 13px !important; }
.siteo-inline-0-18 { margin-top: 12px !important; padding-top: 8px !important; border-top: 1px dashed #dbe4ee !important; }
.siteo-inline-0-19 { margin: 8px 0 !important; font-size: 15px !important; line-height: 1.6 !important; transform: translate(732px, -508px) !important; white-space: pre-line !important; }
.siteo-inline-0-20 { display: block !important; max-width: 100% !important; width: auto !important; height: auto !important; margin: 10px 0 !important; border-radius: 8px !important; width: 28% !important; transform: translate(663px, -932px) !important; }
.siteo-inline-0-21 { --resa-bg: #1a1a1a !important; --resa-accent: #c8a96e !important; }
.siteo-inline-0-22 { margin-right: 8px !important; }
.siteo-inline-0-23 { border: 0 !important; border-radius: 12px !important; }
.siteo-inline-0-24 { margin-top: 12px !important; padding-top: 8px !important; border-top: 1px dashed #dbe4ee !important; }
.siteo-inline-0-25 { display: grid !important; grid-template-columns: minmax(120px,220px) 1fr !important; gap: 14px !important; align-items: center !important; margin: 12px 0 !important; }
.siteo-inline-0-26 { padding: 16px !important; border: 1px dashed #cbd5e1 !important; border-radius: 8px !important; color: #64748b !important; font-size: 12px !important; }
.siteo-inline-0-27 { margin: 0 !important; font-size: 15px !important; line-height: 1.6 !important; white-space: pre-line !important; }
.siteo-inline-0-28 { color: #a4afb6 !important; background: linear-gradient(135deg, #ffffff 0%, #000000 100%) !important; font-size: 16px !important; text-align: left !important; }
.siteo-inline-0-29 { max-width: 650px !important; margin: 0 auto !important; padding: 40px !important; background: #ffffff !important; border-radius: 16px !important; box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important; border: 1px solid #e2e8f0 !important; }
.siteo-inline-0-30 { margin: 0 0 12px 0 !important; font-size: 28px !important; color: #0f172a !important; font-weight: 700 !important; letter-spacing: -0.02em !important; }
.siteo-inline-0-31 { margin: 0 0 32px 0 !important; color: #64748b !important; font-size: 15px !important; line-height: 1.6 !important; }
.siteo-inline-0-32 { margin-bottom: 24px !important; }
.siteo-inline-0-33 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-0-34 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-0-35 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-0-36 { margin-bottom: 24px !important; }
.siteo-inline-0-37 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-0-38 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-0-39 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-0-40 { margin-bottom: 24px !important; }
.siteo-inline-0-41 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-0-42 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-0-43 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-0-44 { margin-bottom: 24px !important; }
.siteo-inline-0-45 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-0-46 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-0-47 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-0-48 { margin-bottom: 24px !important; }
.siteo-inline-0-49 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-0-50 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-0-51 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-0-52 { margin-bottom: 24px !important; }
.siteo-inline-0-53 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-0-54 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-0-55 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-0-56 { margin-bottom: 24px !important; }
.siteo-inline-0-57 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-0-58 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; background: #f8fafc !important; }
.siteo-inline-0-59 { margin-bottom: 24px !important; }
.siteo-inline-0-60 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-0-61 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; font-family: inherit !important; transition: all 0.3s ease !important; background: #f8fafc !important; resize: vertical !important; }
.siteo-inline-0-62 { background: linear-gradient(135deg, #3221b0 0%, #3221b0dd 100%) !important; color: #ffffff !important; padding: 16px 40px !important; border: none !important; border-radius: 10px !important; cursor: pointer !important; font-size: 16px !important; font-weight: 600 !important; box-shadow: 0 4px 14px rgba(34, 113, 177, 0.3) !important; transition: all 0.3s ease !important; width: 100% !important; }
.siteo-inline-0-63 { margin-top: 12px !important; padding-top: 8px !important; border-top: 1px dashed #dbe4ee !important; }
.siteo-inline-0-64 { display: grid !important; grid-template-columns: minmax(120px,220px) 1fr !important; gap: 14px !important; align-items: center !important; margin: 12px 0 !important; }
.siteo-inline-0-65 { padding: 16px !important; border: 1px dashed #cbd5e1 !important; border-radius: 8px !important; color: #64748b !important; font-size: 12px !important; }
.siteo-inline-0-66 { margin: 0 !important; font-size: 15px !important; line-height: 1.6 !important; white-space: pre-line !important; }
.siteo-inline-0-67 { font-size: 16px !important; text-align: left !important; }
.siteo-inline-0-68 { background: #ffffff !important; color: #1d2327 !important; padding: 40px 24px 24px !important; }
.siteo-inline-0-69 { max-width: 900px !important; margin: 0 auto !important; }
.siteo-inline-0-70 { margin-bottom: 16px !important; }
.siteo-inline-0-71 { font-family: Georgia, serif !important; font-size: 22px !important; color: #c8a96e !important; }
.siteo-inline-0-72 { display: grid !important; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)) !important; gap: 32px !important; margin-bottom: 24px !important; }
.siteo-inline-0-73 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-0-74 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-0-75 { margin-bottom: 8px !important; }
.siteo-inline-0-76 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-0-77 { margin-bottom: 8px !important; }
.siteo-inline-0-78 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-0-79 { margin-bottom: 8px !important; }
.siteo-inline-0-80 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-0-81 { margin-bottom: 8px !important; }
.siteo-inline-0-82 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-0-83 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-0-84 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-0-85 { margin-bottom: 8px !important; }
.siteo-inline-0-86 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-0-87 { margin-bottom: 8px !important; }
.siteo-inline-0-88 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-0-89 { margin-bottom: 8px !important; }
.siteo-inline-0-90 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-0-91 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-0-92 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-0-93 { margin-bottom: 8px !important; }
.siteo-inline-0-94 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-0-95 { margin-bottom: 8px !important; }
.siteo-inline-0-96 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-0-97 { margin-bottom: 8px !important; }
.siteo-inline-0-98 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-0-99 { display: flex !important; gap: 12px !important; flex-wrap: wrap !important; margin-bottom: 16px !important; }
.siteo-inline-0-100 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-0-101 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-0-102 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-0-103 { text-align: center !important; padding-top: 20px !important; border-top: 1px solid #333 !important; opacity: .5 !important; font-size: 12px !important; }

.siteo-inline-1-0 { margin: 0px 0px 0px 0px !important; }
.siteo-inline-1-1 { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 24px !important; padding: 16px 24px !important; background: #1a1a1a !important; border-radius: 0px !important; }
.siteo-inline-1-2 { font-family: Georgia, serif !important; font-size: 24px !important; color: #c8a96e !important; font-weight: bold !important; font-style: normal !important; text-transform: none !important; letter-spacing: 0px !important; }
.siteo-inline-1-3 { display: flex !important; gap: 28px !important; align-items: center !important; flex-wrap: wrap !important; letter-spacing: 0.04em !important; }
.siteo-inline-1-4 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-1-5 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-1-6 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-1-7 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-1-8 { display: flex !important; align-items: center !important; gap: 12px !important; }
.siteo-inline-1-9 { display: flex !important; gap: 8px !important; align-items: center !important; }
.siteo-inline-1-10 { border-radius: 8px !important; background-image: initial !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: rgb(200, 169, 110) !important; color: rgb(26, 26, 26) !important; font-size: 14px !important; white-space: nowrap !important; -webkit-text-fill-color: rgb(26, 26, 26) !important; }
.siteo-inline-1-11 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-1-12 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-1-13 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-1-14 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-1-15 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-1-16 { text-decoration: none !important; color: inherit !important; }
.siteo-inline-1-17 { text-decoration: none !important; color: inherit !important; }
.siteo-inline-1-18 { text-decoration: none !important; color: inherit !important; }
.siteo-inline-1-19 { text-decoration: none !important; color: inherit !important; }
.siteo-inline-1-20 { text-decoration: none !important; color: inherit !important; }
.siteo-inline-1-21 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-1-22 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-1-23 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-1-24 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-1-25 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-1-26 { text-decoration: none !important; color: inherit !important; }
.siteo-inline-1-27 { text-decoration: none !important; color: inherit !important; }
.siteo-inline-1-28 { text-decoration: none !important; color: inherit !important; }
.siteo-inline-1-29 { text-decoration: none !important; color: inherit !important; }
.siteo-inline-1-30 { text-decoration: none !important; color: inherit !important; }
.siteo-inline-1-31 { border: 0 !important; border-radius: 12px !important; }
.siteo-inline-1-32 { font-size: 16px !important; text-align: left !important; }
.siteo-inline-1-33 { background: #ffffff !important; color: #1d2327 !important; padding: 40px 24px 24px !important; }
.siteo-inline-1-34 { max-width: 900px !important; margin: 0 auto !important; }
.siteo-inline-1-35 { margin-bottom: 16px !important; }
.siteo-inline-1-36 { font-family: Georgia, serif !important; font-size: 22px !important; color: #c8a96e !important; }
.siteo-inline-1-37 { display: grid !important; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)) !important; gap: 32px !important; margin-bottom: 24px !important; }
.siteo-inline-1-38 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-1-39 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-1-40 { margin-bottom: 8px !important; }
.siteo-inline-1-41 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-1-42 { margin-bottom: 8px !important; }
.siteo-inline-1-43 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-1-44 { margin-bottom: 8px !important; }
.siteo-inline-1-45 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-1-46 { margin-bottom: 8px !important; }
.siteo-inline-1-47 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-1-48 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-1-49 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-1-50 { margin-bottom: 8px !important; }
.siteo-inline-1-51 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-1-52 { margin-bottom: 8px !important; }
.siteo-inline-1-53 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-1-54 { margin-bottom: 8px !important; }
.siteo-inline-1-55 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-1-56 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-1-57 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-1-58 { margin-bottom: 8px !important; }
.siteo-inline-1-59 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-1-60 { margin-bottom: 8px !important; }
.siteo-inline-1-61 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-1-62 { margin-bottom: 8px !important; }
.siteo-inline-1-63 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-1-64 { display: flex !important; gap: 12px !important; flex-wrap: wrap !important; margin-bottom: 16px !important; }
.siteo-inline-1-65 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-1-66 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-1-67 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-1-68 { text-align: center !important; padding-top: 20px !important; border-top: 1px solid #333 !important; opacity: .5 !important; font-size: 12px !important; }

.siteo-inline-2-0 { margin: 0px 0px 0px 0px !important; }
.siteo-inline-2-1 { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 24px !important; padding: 16px 24px !important; background: #1a1a1a !important; border-radius: 0px !important; }
.siteo-inline-2-2 { font-family: Georgia, serif !important; font-size: 24px !important; color: #c8a96e !important; font-weight: bold !important; font-style: normal !important; text-transform: none !important; letter-spacing: 0px !important; }
.siteo-inline-2-3 { display: flex !important; gap: 28px !important; align-items: center !important; flex-wrap: wrap !important; letter-spacing: 0.04em !important; }
.siteo-inline-2-4 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-2-5 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-2-6 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-2-7 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-2-8 { display: flex !important; align-items: center !important; gap: 12px !important; }
.siteo-inline-2-9 { display: flex !important; gap: 8px !important; align-items: center !important; }
.siteo-inline-2-10 { border-radius: 8px !important; background-image: initial !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: rgb(200, 169, 110) !important; color: rgb(26, 26, 26) !important; font-size: 14px !important; white-space: nowrap !important; -webkit-text-fill-color: rgb(26, 26, 26) !important; }
.siteo-inline-2-11 { display: none !important; }
.siteo-inline-2-12 { display: none !important; }
.siteo-inline-2-13 { display: none !important; }
.siteo-inline-2-14 { display: none !important; }
.siteo-inline-2-15 { display: none !important; }
.siteo-inline-2-16 { display: none !important; }
.siteo-inline-2-17 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-2-18 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-2-19 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-2-20 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-2-21 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-2-22 { display: none !important; max-width: 1200px !important; margin: 24px auto 0 !important; }
.siteo-inline-2-23 { display: none !important; }
.siteo-inline-2-24 { display: none !important; }
.siteo-inline-2-25 { font-size: 16px !important; text-align: left !important; }
.siteo-inline-2-26 { background: #ffffff !important; color: #1d2327 !important; padding: 40px 24px 24px !important; }
.siteo-inline-2-27 { max-width: 900px !important; margin: 0 auto !important; }
.siteo-inline-2-28 { margin-bottom: 16px !important; }
.siteo-inline-2-29 { font-family: Georgia, serif !important; font-size: 22px !important; color: #c8a96e !important; }
.siteo-inline-2-30 { display: grid !important; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)) !important; gap: 32px !important; margin-bottom: 24px !important; }
.siteo-inline-2-31 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-2-32 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-2-33 { margin-bottom: 8px !important; }
.siteo-inline-2-34 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-2-35 { margin-bottom: 8px !important; }
.siteo-inline-2-36 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-2-37 { margin-bottom: 8px !important; }
.siteo-inline-2-38 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-2-39 { margin-bottom: 8px !important; }
.siteo-inline-2-40 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-2-41 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-2-42 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-2-43 { margin-bottom: 8px !important; }
.siteo-inline-2-44 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-2-45 { margin-bottom: 8px !important; }
.siteo-inline-2-46 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-2-47 { margin-bottom: 8px !important; }
.siteo-inline-2-48 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-2-49 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-2-50 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-2-51 { margin-bottom: 8px !important; }
.siteo-inline-2-52 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-2-53 { margin-bottom: 8px !important; }
.siteo-inline-2-54 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-2-55 { margin-bottom: 8px !important; }
.siteo-inline-2-56 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-2-57 { display: flex !important; gap: 12px !important; flex-wrap: wrap !important; margin-bottom: 16px !important; }
.siteo-inline-2-58 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-2-59 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-2-60 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-2-61 { text-align: center !important; padding-top: 20px !important; border-top: 1px solid #333 !important; opacity: .5 !important; font-size: 12px !important; }

.siteo-inline-3-0 { margin: 0px 0px 0px 0px !important; }
.siteo-inline-3-1 { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 24px !important; padding: 16px 24px !important; background: #1a1a1a !important; border-radius: 0px !important; }
.siteo-inline-3-2 { font-family: Georgia, serif !important; font-size: 24px !important; color: #c8a96e !important; font-weight: bold !important; font-style: normal !important; text-transform: none !important; letter-spacing: 0px !important; }
.siteo-inline-3-3 { display: flex !important; gap: 28px !important; align-items: center !important; flex-wrap: wrap !important; letter-spacing: 0.04em !important; }
.siteo-inline-3-4 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-3-5 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-3-6 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-3-7 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-3-8 { display: flex !important; align-items: center !important; gap: 12px !important; }
.siteo-inline-3-9 { display: flex !important; gap: 8px !important; align-items: center !important; }
.siteo-inline-3-10 { border-radius: 8px !important; background-image: initial !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: rgb(200, 169, 110) !important; color: rgb(26, 26, 26) !important; font-size: 14px !important; white-space: nowrap !important; -webkit-text-fill-color: rgb(26, 26, 26) !important; }
.siteo-inline-3-11 { background: #5a67d820 !important; }
.siteo-inline-3-12 { background: #5a67d820 !important; }
.siteo-inline-3-13 { font-size: 16px !important; text-align: left !important; }
.siteo-inline-3-14 { background: #ffffff !important; color: #1d2327 !important; padding: 40px 24px 24px !important; }
.siteo-inline-3-15 { max-width: 900px !important; margin: 0 auto !important; }
.siteo-inline-3-16 { margin-bottom: 16px !important; }
.siteo-inline-3-17 { font-family: Georgia, serif !important; font-size: 22px !important; color: #c8a96e !important; }
.siteo-inline-3-18 { display: grid !important; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)) !important; gap: 32px !important; margin-bottom: 24px !important; }
.siteo-inline-3-19 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-3-20 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-3-21 { margin-bottom: 8px !important; }
.siteo-inline-3-22 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-3-23 { margin-bottom: 8px !important; }
.siteo-inline-3-24 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-3-25 { margin-bottom: 8px !important; }
.siteo-inline-3-26 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-3-27 { margin-bottom: 8px !important; }
.siteo-inline-3-28 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-3-29 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-3-30 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-3-31 { margin-bottom: 8px !important; }
.siteo-inline-3-32 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-3-33 { margin-bottom: 8px !important; }
.siteo-inline-3-34 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-3-35 { margin-bottom: 8px !important; }
.siteo-inline-3-36 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-3-37 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-3-38 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-3-39 { margin-bottom: 8px !important; }
.siteo-inline-3-40 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-3-41 { margin-bottom: 8px !important; }
.siteo-inline-3-42 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-3-43 { margin-bottom: 8px !important; }
.siteo-inline-3-44 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-3-45 { display: flex !important; gap: 12px !important; flex-wrap: wrap !important; margin-bottom: 16px !important; }
.siteo-inline-3-46 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-3-47 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-3-48 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-3-49 { text-align: center !important; padding-top: 20px !important; border-top: 1px solid #333 !important; opacity: .5 !important; font-size: 12px !important; }

.siteo-inline-4-0 { margin: 0px 0px 0px 0px !important; }
.siteo-inline-4-1 { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 24px !important; padding: 16px 24px !important; background: #1a1a1a !important; border-radius: 0px !important; }
.siteo-inline-4-2 { font-family: Georgia, serif !important; font-size: 24px !important; color: #c8a96e !important; font-weight: bold !important; font-style: normal !important; text-transform: none !important; letter-spacing: 0px !important; }
.siteo-inline-4-3 { display: flex !important; gap: 28px !important; align-items: center !important; flex-wrap: wrap !important; letter-spacing: 0.04em !important; }
.siteo-inline-4-4 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-4-5 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-4-6 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-4-7 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-4-8 { display: flex !important; align-items: center !important; gap: 12px !important; }
.siteo-inline-4-9 { display: flex !important; gap: 8px !important; align-items: center !important; }
.siteo-inline-4-10 { border-radius: 8px !important; background-image: initial !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: rgb(200, 169, 110) !important; color: rgb(26, 26, 26) !important; font-size: 14px !important; white-space: nowrap !important; -webkit-text-fill-color: rgb(26, 26, 26) !important; }
.siteo-inline-4-11 { font-size: 16px !important; text-align: left !important; }
.siteo-inline-4-12 { background: #ffffff !important; color: #1d2327 !important; padding: 40px 24px 24px !important; }
.siteo-inline-4-13 { max-width: 900px !important; margin: 0 auto !important; }
.siteo-inline-4-14 { margin-bottom: 16px !important; }
.siteo-inline-4-15 { font-family: Georgia, serif !important; font-size: 22px !important; color: #c8a96e !important; }
.siteo-inline-4-16 { display: grid !important; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)) !important; gap: 32px !important; margin-bottom: 24px !important; }
.siteo-inline-4-17 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-4-18 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-4-19 { margin-bottom: 8px !important; }
.siteo-inline-4-20 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-4-21 { margin-bottom: 8px !important; }
.siteo-inline-4-22 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-4-23 { margin-bottom: 8px !important; }
.siteo-inline-4-24 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-4-25 { margin-bottom: 8px !important; }
.siteo-inline-4-26 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-4-27 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-4-28 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-4-29 { margin-bottom: 8px !important; }
.siteo-inline-4-30 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-4-31 { margin-bottom: 8px !important; }
.siteo-inline-4-32 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-4-33 { margin-bottom: 8px !important; }
.siteo-inline-4-34 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-4-35 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-4-36 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-4-37 { margin-bottom: 8px !important; }
.siteo-inline-4-38 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-4-39 { margin-bottom: 8px !important; }
.siteo-inline-4-40 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-4-41 { margin-bottom: 8px !important; }
.siteo-inline-4-42 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-4-43 { display: flex !important; gap: 12px !important; flex-wrap: wrap !important; margin-bottom: 16px !important; }
.siteo-inline-4-44 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-4-45 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-4-46 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-4-47 { text-align: center !important; padding-top: 20px !important; border-top: 1px solid #333 !important; opacity: .5 !important; font-size: 12px !important; }

.siteo-inline-5-0 { margin: 0px 0px 0px 0px !important; }
.siteo-inline-5-1 { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 24px !important; padding: 16px 24px !important; background: #1a1a1a !important; border-radius: 0px !important; }
.siteo-inline-5-2 { font-family: Georgia, serif !important; font-size: 24px !important; color: #c8a96e !important; font-weight: bold !important; font-style: normal !important; text-transform: none !important; letter-spacing: 0px !important; }
.siteo-inline-5-3 { display: flex !important; gap: 28px !important; align-items: center !important; flex-wrap: wrap !important; letter-spacing: 0.04em !important; }
.siteo-inline-5-4 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-5-5 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-5-6 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-5-7 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-5-8 { display: flex !important; align-items: center !important; gap: 12px !important; }
.siteo-inline-5-9 { display: flex !important; gap: 8px !important; align-items: center !important; }
.siteo-inline-5-10 { border-radius: 8px !important; background-image: initial !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: rgb(200, 169, 110) !important; color: rgb(26, 26, 26) !important; font-size: 14px !important; white-space: nowrap !important; -webkit-text-fill-color: rgb(26, 26, 26) !important; }
.siteo-inline-5-11 { color: #1d2327 !important; background: #ffffff !important; font-size: 16px !important; text-align: left !important; }
.siteo-inline-5-12 { max-width: 900px !important; margin: 0 auto !important; padding: 80px !important; background: #ffffff !important; border-radius: 0px !important; box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important; border: 1px solid #e2e8f0 !important; }
.siteo-inline-5-13 { margin: 0 0 12px 0 !important; font-size: 28px !important; color: #0f172a !important; font-weight: 700 !important; letter-spacing: -0.02em !important; }
.siteo-inline-5-14 { margin: 0 0 32px 0 !important; color: #64748b !important; font-size: 15px !important; line-height: 1.6 !important; }
.siteo-inline-5-15 { margin-bottom: 24px !important; }
.siteo-inline-5-16 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-17 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-18 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-19 { margin-bottom: 24px !important; }
.siteo-inline-5-20 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-21 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-22 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-23 { margin-bottom: 24px !important; }
.siteo-inline-5-24 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-25 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-26 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-27 { margin-bottom: 24px !important; }
.siteo-inline-5-28 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-29 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-30 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-31 { margin-bottom: 24px !important; }
.siteo-inline-5-32 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-33 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-34 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-35 { margin-bottom: 24px !important; }
.siteo-inline-5-36 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-37 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-38 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-39 { margin-bottom: 24px !important; }
.siteo-inline-5-40 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-41 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; font-family: inherit !important; transition: all 0.3s ease !important; background: #f8fafc !important; resize: vertical !important; }
.siteo-inline-5-42 { background: linear-gradient(135deg, #2271b1 0%, #2271b1dd 100%) !important; color: #ffffff !important; padding: 16px 40px !important; border: none !important; border-radius: 10px !important; cursor: pointer !important; font-size: 16px !important; font-weight: 600 !important; box-shadow: 0 4px 14px rgba(34, 113, 177, 0.3) !important; transition: all 0.3s ease !important; width: 100% !important; }
.siteo-inline-5-43 { max-width: 650px !important; margin: 0 auto !important; padding: 40px !important; background: #ffffff !important; border-radius: 16px !important; box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important; border: 1px solid #e2e8f0 !important; }
.siteo-inline-5-44 { margin: 0 0 12px 0 !important; font-size: 28px !important; color: #0f172a !important; font-weight: 700 !important; letter-spacing: -0.02em !important; }
.siteo-inline-5-45 { margin: 0 0 32px 0 !important; color: #64748b !important; font-size: 15px !important; line-height: 1.6 !important; }
.siteo-inline-5-46 { margin-bottom: 24px !important; }
.siteo-inline-5-47 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-48 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-49 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-50 { margin-bottom: 24px !important; }
.siteo-inline-5-51 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-52 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-53 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-54 { margin-bottom: 24px !important; }
.siteo-inline-5-55 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-56 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-57 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-58 { margin-bottom: 24px !important; }
.siteo-inline-5-59 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-60 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-61 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; background: #f8fafc !important; }
.siteo-inline-5-62 { margin-bottom: 24px !important; }
.siteo-inline-5-63 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-64 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-65 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-66 { margin-bottom: 24px !important; }
.siteo-inline-5-67 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-68 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-69 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-70 { margin-bottom: 24px !important; }
.siteo-inline-5-71 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-72 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; font-family: inherit !important; transition: all 0.3s ease !important; background: #f8fafc !important; resize: vertical !important; }
.siteo-inline-5-73 { background: linear-gradient(135deg, #2271b1 0%, #2271b1dd 100%) !important; color: #ffffff !important; padding: 16px 40px !important; border: none !important; border-radius: 10px !important; cursor: pointer !important; font-size: 16px !important; font-weight: 600 !important; box-shadow: 0 4px 14px rgba(34, 113, 177, 0.3) !important; transition: all 0.3s ease !important; width: 100% !important; }
.siteo-inline-5-74 { color: #1d2327 !important; background: #ffffff !important; font-size: 16px !important; text-align: left !important; }
.siteo-inline-5-75 { max-width: 800px !important; margin: 0 auto !important; padding: 64px !important; background: #ffffff !important; border-radius: 0px !important; box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important; border: 1px dashed #090a0b !important; }
.siteo-inline-5-76 { margin: 0 0 12px 0 !important; font-size: 28px !important; color: #0f172a !important; font-weight: 700 !important; letter-spacing: -0.02em !important; }
.siteo-inline-5-77 { margin: 0 0 32px 0 !important; color: #64748b !important; font-size: 15px !important; line-height: 1.6 !important; }
.siteo-inline-5-78 { margin-bottom: 24px !important; }
.siteo-inline-5-79 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-80 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-81 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 10px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-82 { margin-bottom: 24px !important; }
.siteo-inline-5-83 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-84 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-85 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 10px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-86 { margin-bottom: 24px !important; }
.siteo-inline-5-87 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-88 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 10px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-89 { margin-bottom: 24px !important; }
.siteo-inline-5-90 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-91 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-92 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 10px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-93 { margin-bottom: 24px !important; }
.siteo-inline-5-94 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-95 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-96 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 10px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-97 { margin-bottom: 24px !important; }
.siteo-inline-5-98 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-99 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-100 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 10px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-101 { margin-bottom: 24px !important; }
.siteo-inline-5-102 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-103 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-104 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 10px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-105 { margin-bottom: 24px !important; }
.siteo-inline-5-106 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-107 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-108 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 10px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-109 { margin-bottom: 24px !important; }
.siteo-inline-5-110 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-111 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 10px !important; font-size: 15px !important; font-family: inherit !important; transition: all 0.3s ease !important; background: #f8fafc !important; resize: vertical !important; }
.siteo-inline-5-112 { background: linear-gradient(135deg, #2e4d66 0%, #2e4d66dd 100%) !important; color: #ffffff !important; padding: 16px 40px !important; border: none !important; border-radius: 10px !important; cursor: pointer !important; font-size: 16px !important; font-weight: 600 !important; box-shadow: 0 4px 14px rgba(34, 113, 177, 0.3) !important; transition: all 0.3s ease !important; width: 100% !important; }
.siteo-inline-5-113 { max-width: 650px !important; margin: 0 auto !important; padding: 40px !important; background: #ffffff !important; border-radius: 16px !important; box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important; border: 1px solid #e2e8f0 !important; }
.siteo-inline-5-114 { margin: 0 0 12px 0 !important; font-size: 28px !important; color: #0f172a !important; font-weight: 700 !important; letter-spacing: -0.02em !important; }
.siteo-inline-5-115 { margin: 0 0 32px 0 !important; color: #64748b !important; font-size: 15px !important; line-height: 1.6 !important; }
.siteo-inline-5-116 { margin-bottom: 24px !important; }
.siteo-inline-5-117 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-118 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-119 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-120 { margin-bottom: 24px !important; }
.siteo-inline-5-121 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-122 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-123 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-124 { margin-bottom: 24px !important; }
.siteo-inline-5-125 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-126 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-127 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-128 { margin-bottom: 24px !important; }
.siteo-inline-5-129 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-130 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-131 { margin-bottom: 24px !important; }
.siteo-inline-5-132 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-133 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-134 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; background: #f8fafc !important; }
.siteo-inline-5-135 { margin-bottom: 24px !important; }
.siteo-inline-5-136 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-137 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; background: #f8fafc !important; }
.siteo-inline-5-138 { margin-bottom: 24px !important; }
.siteo-inline-5-139 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-140 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-141 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; font-family: inherit !important; transition: all 0.3s ease !important; background: #f8fafc !important; resize: vertical !important; }
.siteo-inline-5-142 { background: linear-gradient(135deg, #2271b1 0%, #2271b1dd 100%) !important; color: #ffffff !important; padding: 16px 40px !important; border: none !important; border-radius: 10px !important; cursor: pointer !important; font-size: 16px !important; font-weight: 600 !important; box-shadow: 0 4px 14px rgba(34, 113, 177, 0.3) !important; transition: all 0.3s ease !important; width: 100% !important; }
.siteo-inline-5-143 { max-width: 650px !important; margin: 0 auto !important; padding: 40px !important; background: #ffffff !important; border-radius: 16px !important; box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important; border: 1px solid #e2e8f0 !important; }
.siteo-inline-5-144 { margin: 0 0 12px 0 !important; font-size: 28px !important; color: #0f172a !important; font-weight: 700 !important; letter-spacing: -0.02em !important; }
.siteo-inline-5-145 { margin: 0 0 32px 0 !important; color: #64748b !important; font-size: 15px !important; line-height: 1.6 !important; }
.siteo-inline-5-146 { margin-bottom: 24px !important; }
.siteo-inline-5-147 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-148 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-149 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-150 { margin-bottom: 24px !important; }
.siteo-inline-5-151 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-152 { color: #dc2626 !important; font-size: 16px !important; }
.siteo-inline-5-153 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-154 { margin-bottom: 24px !important; }
.siteo-inline-5-155 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-156 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; background: #f8fafc !important; }
.siteo-inline-5-157 { margin-bottom: 24px !important; }
.siteo-inline-5-158 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; letter-spacing: 0.01em !important; }
.siteo-inline-5-159 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-160 { background: linear-gradient(135deg, #2271b1 0%, #2271b1dd 100%) !important; color: #ffffff !important; padding: 16px 40px !important; border: none !important; border-radius: 10px !important; cursor: pointer !important; font-size: 16px !important; font-weight: 600 !important; box-shadow: 0 4px 14px rgba(34, 113, 177, 0.3) !important; transition: all 0.3s ease !important; width: 100% !important; }
.siteo-inline-5-161 { max-width: 650px !important; margin: 0 auto !important; padding: 40px !important; background: #ffffff !important; border-radius: 16px !important; box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important; border: 1px solid #e2e8f0 !important; }
.siteo-inline-5-162 { margin: 0 0 12px 0 !important; font-size: 28px !important; color: #0f172a !important; font-weight: 700 !important; letter-spacing: -0.02em !important; }
.siteo-inline-5-163 { margin: 0 0 32px 0 !important; color: #64748b !important; font-size: 15px !important; line-height: 1.6 !important; }
.siteo-inline-5-164 { margin-bottom: 24px !important; }
.siteo-inline-5-165 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; }
.siteo-inline-5-166 { color: #dc2626 !important; }
.siteo-inline-5-167 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-168 { margin-bottom: 24px !important; }
.siteo-inline-5-169 { display: block !important; font-weight: 600 !important; margin-bottom: 10px !important; color: #1e293b !important; font-size: 14px !important; }
.siteo-inline-5-170 { color: #dc2626 !important; }
.siteo-inline-5-171 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-172 { border-top: 1px solid #e2e8f0 !important; padding-top: 14px !important; }
.siteo-inline-5-173 { margin-bottom: 16px !important; }
.siteo-inline-5-174 { display: block !important; font-weight: 600 !important; margin-bottom: 8px !important; font-size: 14px !important; color: #1e293b !important; }
.siteo-inline-5-175 { color: #dc2626 !important; }
.siteo-inline-5-176 { display: grid !important; gap: 6px !important; }
.siteo-inline-5-177 { display: flex !important; align-items: center !important; gap: 8px !important; font-size: 13px !important; color: #334155 !important; cursor: pointer !important; }
.siteo-inline-5-178 { display: flex !important; align-items: center !important; gap: 8px !important; font-size: 13px !important; color: #334155 !important; cursor: pointer !important; }
.siteo-inline-5-179 { display: flex !important; align-items: center !important; gap: 8px !important; font-size: 13px !important; color: #334155 !important; cursor: pointer !important; }
.siteo-inline-5-180 { display: flex !important; align-items: center !important; gap: 8px !important; font-size: 13px !important; color: #334155 !important; cursor: pointer !important; }
.siteo-inline-5-181 { margin-bottom: 16px !important; }
.siteo-inline-5-182 { display: block !important; font-weight: 600 !important; margin-bottom: 8px !important; font-size: 14px !important; color: #1e293b !important; }
.siteo-inline-5-183 { color: #dc2626 !important; }
.siteo-inline-5-184 { display: flex !important; gap: 8px !important; flex-wrap: wrap !important; }
.siteo-inline-5-185 { display: flex !important; align-items: center !important; gap: 4px !important; padding: 6px 8px !important; border: 1px solid #cbd5e1 !important; border-radius: 6px !important; cursor: pointer !important; }
.siteo-inline-5-186 { display: flex !important; align-items: center !important; gap: 4px !important; padding: 6px 8px !important; border: 1px solid #cbd5e1 !important; border-radius: 6px !important; cursor: pointer !important; }
.siteo-inline-5-187 { display: flex !important; align-items: center !important; gap: 4px !important; padding: 6px 8px !important; border: 1px solid #cbd5e1 !important; border-radius: 6px !important; cursor: pointer !important; }
.siteo-inline-5-188 { display: flex !important; align-items: center !important; gap: 4px !important; padding: 6px 8px !important; border: 1px solid #cbd5e1 !important; border-radius: 6px !important; cursor: pointer !important; }
.siteo-inline-5-189 { display: flex !important; align-items: center !important; gap: 4px !important; padding: 6px 8px !important; border: 1px solid #cbd5e1 !important; border-radius: 6px !important; cursor: pointer !important; }
.siteo-inline-5-190 { margin-bottom: 16px !important; }
.siteo-inline-5-191 { display: block !important; font-weight: 600 !important; margin-bottom: 8px !important; font-size: 14px !important; color: #1e293b !important; }
.siteo-inline-5-192 { width: 100% !important; padding: 10px 12px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; background: #f8fafc !important; }
.siteo-inline-5-193 { background: linear-gradient(135deg, #2271b1 0%, #2271b1dd 100%) !important; color: #ffffff !important; padding: 16px 40px !important; border: none !important; border-radius: 10px !important; cursor: pointer !important; font-size: 16px !important; font-weight: 600 !important; box-shadow: 0 4px 14px rgba(34, 113, 177, 0.3) !important; transition: all 0.3s ease !important; width: 100% !important; }
.siteo-inline-5-194 { color: #261c21 !important; background: #ffffff !important; font-size: 21px !important; font-family: 'Roboto', Arial, sans-serif !important; text-align: center !important; }
.siteo-inline-5-195 { max-width: 650px !important; margin: 0 auto !important; padding: 40px !important; background: #ffffff !important; border-radius: 16px !important; box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important; border: 1px solid #e2e8f0 !important; }
.siteo-inline-5-196 { margin: 0 0 12px 0 !important; font-size: 28px !important; color: #0f172a !important; font-weight: 700 !important; letter-spacing: -0.02em !important; }
.siteo-inline-5-197 { margin: 0 0 32px 0 !important; color: #64748b !important; font-size: 15px !important; line-height: 1.6 !important; }
.siteo-inline-5-198 { display: flex !important; gap: 8px !important; flex-wrap: wrap !important; margin-bottom: 14px !important; }
.siteo-inline-5-199 { margin: 0 0 10px 0 !important; font-size: 14px !important; color: #0f172a !important; }
.siteo-inline-5-200 { margin-bottom: 12px !important; }
.siteo-inline-5-201 { display: block !important; font-weight: 600 !important; margin-bottom: 6px !important; font-size: 13px !important; color: #1e293b !important; }
.siteo-inline-5-202 { color: #dc2626 !important; }
.siteo-inline-5-203 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-204 { margin-bottom: 12px !important; }
.siteo-inline-5-205 { display: block !important; font-weight: 600 !important; margin-bottom: 6px !important; font-size: 13px !important; color: #1e293b !important; }
.siteo-inline-5-206 { color: #dc2626 !important; }
.siteo-inline-5-207 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-208 { margin-bottom: 12px !important; }
.siteo-inline-5-209 { display: block !important; font-weight: 600 !important; margin-bottom: 6px !important; font-size: 13px !important; color: #1e293b !important; }
.siteo-inline-5-210 { color: #dc2626 !important; }
.siteo-inline-5-211 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-212 { margin: 0 0 10px 0 !important; font-size: 14px !important; color: #0f172a !important; }
.siteo-inline-5-213 { margin-bottom: 12px !important; }
.siteo-inline-5-214 { display: block !important; font-weight: 600 !important; margin-bottom: 6px !important; font-size: 13px !important; color: #1e293b !important; }
.siteo-inline-5-215 { color: #dc2626 !important; }
.siteo-inline-5-216 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; transition: all 0.3s ease !important; background: #f8fafc !important; }
.siteo-inline-5-217 { margin-bottom: 12px !important; }
.siteo-inline-5-218 { display: block !important; font-weight: 600 !important; margin-bottom: 6px !important; font-size: 13px !important; color: #1e293b !important; }
.siteo-inline-5-219 { color: #dc2626 !important; }
.siteo-inline-5-220 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; background: #f8fafc !important; }
.siteo-inline-5-221 { margin-bottom: 12px !important; }
.siteo-inline-5-222 { display: block !important; font-weight: 600 !important; margin-bottom: 6px !important; font-size: 13px !important; color: #1e293b !important; }
.siteo-inline-5-223 { color: #dc2626 !important; }
.siteo-inline-5-224 { width: 100% !important; padding: 14px 18px !important; border: 2px solid #e2e8f0 !important; border-radius: 8px !important; font-size: 15px !important; font-family: inherit !important; transition: all 0.3s ease !important; background: #f8fafc !important; resize: vertical !important; }
.siteo-inline-5-225 { margin: 0 0 10px 0 !important; font-size: 14px !important; color: #0f172a !important; }
.siteo-inline-5-226 { margin-bottom: 12px !important; }
.siteo-inline-5-227 { display: block !important; font-weight: 600 !important; margin-bottom: 6px !important; font-size: 13px !important; color: #1e293b !important; }
.siteo-inline-5-228 { color: #dc2626 !important; }
.siteo-inline-5-229 { display: flex !important; align-items: center !important; gap: 8px !important; cursor: pointer !important; }
.siteo-inline-5-230 { width: 18px !important; height: 18px !important; }
.siteo-inline-5-231 { font-size: 14px !important; color: #334155 !important; }
.siteo-inline-5-232 { margin-bottom: 12px !important; }
.siteo-inline-5-233 { display: block !important; font-weight: 600 !important; margin-bottom: 6px !important; font-size: 13px !important; color: #1e293b !important; }
.siteo-inline-5-234 { color: #dc2626 !important; }
.siteo-inline-5-235 { display: flex !important; align-items: center !important; gap: 8px !important; cursor: pointer !important; }
.siteo-inline-5-236 { width: 18px !important; height: 18px !important; }
.siteo-inline-5-237 { font-size: 14px !important; color: #334155 !important; }
.siteo-inline-5-238 { display: flex !important; gap: 8px !important; }
.siteo-inline-5-239 { background: linear-gradient(135deg, #b0216d 0%, #b0216ddd 100%) !important; color: #ffffff !important; padding: 16px 40px !important; border: none !important; border-radius: 10px !important; cursor: pointer !important; font-size: 16px !important; font-weight: 600 !important; box-shadow: 0 4px 14px rgba(34, 113, 177, 0.3) !important; transition: all 0.3s ease !important; width: 100% !important; }
.siteo-inline-5-240 { font-size: 16px !important; text-align: left !important; }
.siteo-inline-5-241 { background: #ffffff !important; color: #1d2327 !important; padding: 40px 24px 24px !important; }
.siteo-inline-5-242 { max-width: 900px !important; margin: 0 auto !important; }
.siteo-inline-5-243 { margin-bottom: 16px !important; }
.siteo-inline-5-244 { font-family: Georgia, serif !important; font-size: 22px !important; color: #c8a96e !important; }
.siteo-inline-5-245 { display: grid !important; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)) !important; gap: 32px !important; margin-bottom: 24px !important; }
.siteo-inline-5-246 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-5-247 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-5-248 { margin-bottom: 8px !important; }
.siteo-inline-5-249 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-5-250 { margin-bottom: 8px !important; }
.siteo-inline-5-251 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-5-252 { margin-bottom: 8px !important; }
.siteo-inline-5-253 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-5-254 { margin-bottom: 8px !important; }
.siteo-inline-5-255 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-5-256 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-5-257 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-5-258 { margin-bottom: 8px !important; }
.siteo-inline-5-259 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-5-260 { margin-bottom: 8px !important; }
.siteo-inline-5-261 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-5-262 { margin-bottom: 8px !important; }
.siteo-inline-5-263 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-5-264 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-5-265 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-5-266 { margin-bottom: 8px !important; }
.siteo-inline-5-267 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-5-268 { margin-bottom: 8px !important; }
.siteo-inline-5-269 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-5-270 { margin-bottom: 8px !important; }
.siteo-inline-5-271 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-5-272 { display: flex !important; gap: 12px !important; flex-wrap: wrap !important; margin-bottom: 16px !important; }
.siteo-inline-5-273 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-5-274 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-5-275 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-5-276 { text-align: center !important; padding-top: 20px !important; border-top: 1px solid #333 !important; opacity: .5 !important; font-size: 12px !important; }

.siteo-inline-6-0 { margin: 0px 0px 0px 0px !important; }
.siteo-inline-6-1 { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 24px !important; padding: 16px 24px !important; background: #1a1a1a !important; border-radius: 0px !important; }
.siteo-inline-6-2 { font-family: Georgia, serif !important; font-size: 24px !important; color: #c8a96e !important; font-weight: bold !important; font-style: normal !important; text-transform: none !important; letter-spacing: 0px !important; }
.siteo-inline-6-3 { display: flex !important; gap: 28px !important; align-items: center !important; flex-wrap: wrap !important; letter-spacing: 0.04em !important; }
.siteo-inline-6-4 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-6-5 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-6-6 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-6-7 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-6-8 { display: flex !important; align-items: center !important; gap: 12px !important; }
.siteo-inline-6-9 { display: flex !important; gap: 8px !important; align-items: center !important; }
.siteo-inline-6-10 { border-radius: 8px !important; background-image: initial !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: rgb(200, 169, 110) !important; color: rgb(26, 26, 26) !important; font-size: 14px !important; white-space: nowrap !important; -webkit-text-fill-color: rgb(26, 26, 26) !important; }
.siteo-inline-6-11 { display: none !important; }
.siteo-inline-6-12 { display: none !important; }
.siteo-inline-6-13 { display: none !important; }
.siteo-inline-6-14 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-6-15 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-6-16 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-6-17 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-6-18 { text-decoration: none !important; color: inherit !important; display: block !important; }
.siteo-inline-6-19 { display: none !important; max-width: 1200px !important; margin: 24px auto 0 !important; }
.siteo-inline-6-20 { display: none !important; }
.siteo-inline-6-21 { --sb-bg: #fafafa !important; --sb-accent: #1a1a2e !important; --sb-text: #1d2327 !important; --sb-sidebar-bg: #ffffff !important; --sb-card-bg: #ffffff !important; --sb-card-r: 16px !important; --sb-sidebar-w: 260px !important; }
.siteo-inline-6-22 { font-weight: 600 !important; flex: 1 !important; }
.siteo-inline-6-23 { font-weight: 600 !important; flex: 1 !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
.siteo-inline-6-24 { font-weight: 600 !important; flex: 1 !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
.siteo-inline-6-25 { font-weight: 600 !important; flex: 1 !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
.siteo-inline-6-26 { font-weight: 600 !important; flex: 1 !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
.siteo-inline-6-27 { font-weight: 600 !important; flex: 1 !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
.siteo-inline-6-28 { text-align: center !important; padding: 48px !important; color: var(--sb-text) !important; opacity: 0.4 !important; font-size: 13px !important; }
.siteo-inline-6-29 { margin-right: 8px !important; font-size: 18px !important; }
.siteo-inline-6-30 { font-size: 16px !important; text-align: left !important; }
.siteo-inline-6-31 { background: #ffffff !important; color: #1d2327 !important; padding: 40px 24px 24px !important; }
.siteo-inline-6-32 { max-width: 900px !important; margin: 0 auto !important; }
.siteo-inline-6-33 { margin-bottom: 16px !important; }
.siteo-inline-6-34 { font-family: Georgia, serif !important; font-size: 22px !important; color: #c8a96e !important; }
.siteo-inline-6-35 { display: grid !important; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)) !important; gap: 32px !important; margin-bottom: 24px !important; }
.siteo-inline-6-36 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-6-37 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-6-38 { margin-bottom: 8px !important; }
.siteo-inline-6-39 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-6-40 { margin-bottom: 8px !important; }
.siteo-inline-6-41 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-6-42 { margin-bottom: 8px !important; }
.siteo-inline-6-43 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-6-44 { margin-bottom: 8px !important; }
.siteo-inline-6-45 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-6-46 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-6-47 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-6-48 { margin-bottom: 8px !important; }
.siteo-inline-6-49 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-6-50 { margin-bottom: 8px !important; }
.siteo-inline-6-51 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-6-52 { margin-bottom: 8px !important; }
.siteo-inline-6-53 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-6-54 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-6-55 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-6-56 { margin-bottom: 8px !important; }
.siteo-inline-6-57 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-6-58 { margin-bottom: 8px !important; }
.siteo-inline-6-59 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-6-60 { margin-bottom: 8px !important; }
.siteo-inline-6-61 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-6-62 { display: flex !important; gap: 12px !important; flex-wrap: wrap !important; margin-bottom: 16px !important; }
.siteo-inline-6-63 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-6-64 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-6-65 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-6-66 { text-align: center !important; padding-top: 20px !important; border-top: 1px solid #333 !important; opacity: .5 !important; font-size: 12px !important; }

.siteo-inline-7-0 { margin: 0px 0px 0px 0px !important; }
.siteo-inline-7-1 { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 24px !important; padding: 16px 24px !important; background: #1a1a1a !important; border-radius: 0px !important; }
.siteo-inline-7-2 { font-family: Georgia, serif !important; font-size: 24px !important; color: #c8a96e !important; font-weight: bold !important; font-style: normal !important; text-transform: none !important; letter-spacing: 0px !important; }
.siteo-inline-7-3 { display: flex !important; gap: 28px !important; align-items: center !important; flex-wrap: wrap !important; letter-spacing: 0.04em !important; }
.siteo-inline-7-4 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-7-5 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-7-6 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-7-7 { color: #d4d4d4 !important; text-decoration: none !important; padding: 8px 12px !important; border-radius: 4px !important; transition: all 0.2s !important; font-weight: 500 !important; }
.siteo-inline-7-8 { display: flex !important; align-items: center !important; gap: 12px !important; }
.siteo-inline-7-9 { display: flex !important; gap: 8px !important; align-items: center !important; }
.siteo-inline-7-10 { border-radius: 8px !important; background-image: initial !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: rgb(200, 169, 110) !important; color: rgb(26, 26, 26) !important; font-size: 14px !important; white-space: nowrap !important; -webkit-text-fill-color: rgb(26, 26, 26) !important; }
.siteo-inline-7-11 { display: none !important; }
.siteo-inline-7-12 { font-size: 16px !important; text-align: left !important; }
.siteo-inline-7-13 { background: #ffffff !important; color: #1d2327 !important; padding: 40px 24px 24px !important; }
.siteo-inline-7-14 { max-width: 900px !important; margin: 0 auto !important; }
.siteo-inline-7-15 { margin-bottom: 16px !important; }
.siteo-inline-7-16 { font-family: Georgia, serif !important; font-size: 22px !important; color: #c8a96e !important; }
.siteo-inline-7-17 { display: grid !important; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)) !important; gap: 32px !important; margin-bottom: 24px !important; }
.siteo-inline-7-18 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-7-19 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-7-20 { margin-bottom: 8px !important; }
.siteo-inline-7-21 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-7-22 { margin-bottom: 8px !important; }
.siteo-inline-7-23 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-7-24 { margin-bottom: 8px !important; }
.siteo-inline-7-25 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-7-26 { margin-bottom: 8px !important; }
.siteo-inline-7-27 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-7-28 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-7-29 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-7-30 { margin-bottom: 8px !important; }
.siteo-inline-7-31 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-7-32 { margin-bottom: 8px !important; }
.siteo-inline-7-33 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-7-34 { margin-bottom: 8px !important; }
.siteo-inline-7-35 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-7-36 { font-size: 18px !important; font-family: Georgia,serif !important; margin: 0 0 12px 0 !important; color: #c8a96e !important; }
.siteo-inline-7-37 { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.siteo-inline-7-38 { margin-bottom: 8px !important; }
.siteo-inline-7-39 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-7-40 { margin-bottom: 8px !important; }
.siteo-inline-7-41 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-7-42 { margin-bottom: 8px !important; }
.siteo-inline-7-43 { color: #1d2327 !important; opacity: .75 !important; text-decoration: none !important; font-size: 14px !important; }
.siteo-inline-7-44 { display: flex !important; gap: 12px !important; flex-wrap: wrap !important; margin-bottom: 16px !important; }
.siteo-inline-7-45 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-7-46 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-7-47 { color: #1d2327 !important; opacity: .65 !important; text-decoration: none !important; font-size: 18px !important; }
.siteo-inline-7-48 { text-align: center !important; padding-top: 20px !important; border-top: 1px solid #333 !important; opacity: .5 !important; font-size: 12px !important; }