/* design-tokens.css */
:root {
  --luotwo-obsidian: #0B0D0F;
  --luotwo-carbon: #141618;
  --luotwo-steel: #1E2023;
  --luotwo-shadow: #292B2E;
  --luotwo-flash: #F2F3F5;
  --luotwo-silver: #B0B4BA;
  --luotwo-titanium: #6B6F76;
  --luotwo-oxide: #3D4045;
  --luotwo-signal-orange: #F2490E;
  --luotwo-signal-orange-dark: #D63E0A;
  --luotwo-volt-green: #A4F909;
  --luotwo-alert-red: #E31B3B;
  --luotwo-sky-blue: #0099FF;
  --luotwo-font-heading: 'Clash Display', 'Outfit', 'Manrope', sans-serif;
  --luotwo-font-body: 'Satoshi', 'Plus Jakarta Sans', system-ui, sans-serif;
  --luotwo-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --luotwo-radius-sm: 2px;
  --luotwo-radius: 4px;
  --luotwo-radius-lg: 8px;
  --luotwo-shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --luotwo-shadow-md: 0 4px 12px rgba(0,0,0,0.5);
  --luotwo-shadow-lg: 0 8px 30px rgba(0,0,0,0.6);
  --luotwo-shadow-orange: 0 4px 20px rgba(242,73,14,0.3);
  --wd-primary-color: var(--luotwo-signal-orange);
  --wd-alternative-color: var(--luotwo-steel);
  --wd-link-color: var(--luotwo-sky-blue);
  --wd-link-color-hover: var(--luotwo-signal-orange);
  --wd-title-color: var(--luotwo-flash);
  --wd-text-color: var(--luotwo-silver);
  --wd-text-color-muted: var(--luotwo-titanium);
  --wd-border-color: var(--luotwo-shadow);
}

/* global.css */
/* ===== LUOTWO Global — WoodMart Override ===== */

/* Kill WoodMart preloader */
.wd-preloader{display:none!important}
html body{overflow:auto!important;max-height:none!important}

/* Header — force above content with solid bg */
.luotwo-theme .whb-header{position:relative!important;z-index:1000!important;min-height:90px!important;background-color:rgba(11,13,15,0.95)!important;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid var(--luotwo-shadow)}
.luotwo-theme .whb-main-header{position:relative!important}
.luotwo-theme .whb-general-header{background-color:rgba(11,13,15,0.95)!important}

.luotwo-theme { background-color: var(--luotwo-obsidian); color: var(--luotwo-silver); }
.luotwo-theme .website-wrapper { background-color: var(--luotwo-obsidian); }

/* Fonts */
.luotwo-theme h1,.luotwo-theme h2,.luotwo-theme h3,.luotwo-theme h4,.luotwo-theme h5,.luotwo-theme h6,
.luotwo-theme .wd-entities-title,.luotwo-theme .title {
  font-family: var(--luotwo-font-heading) !important; font-weight: 600; letter-spacing: -0.01em; color: var(--luotwo-flash);
}
.luotwo-theme body,.luotwo-theme p,.luotwo-theme .wd-text-content,.luotwo-theme .woocommerce {
  font-family: var(--luotwo-font-body) !important;
}
.luotwo-theme code,.luotwo-theme pre,.luotwo-theme .specs-table { font-family: var(--luotwo-font-mono) !important; }

/* Nav */
.luotwo-theme .wd-nav-main > li > a { font-family: var(--luotwo-font-body); font-weight: 500; color: var(--luotwo-silver) !important; }
.luotwo-theme .wd-nav-main > li > a:hover { color: var(--luotwo-signal-orange) !important; }
.luotwo-theme .wd-nav-main > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
  background: var(--luotwo-signal-orange); transition: all 0.3s ease; transform: translateX(-50%);
}
.luotwo-theme .wd-nav-main > li > a:hover::after { width: 100%; }

/* Buttons */
.luotwo-theme .btn,.luotwo-theme button,.luotwo-theme .button,.luotwo-theme .wd-btn,.luotwo-theme .single_add_to_cart_button {
  font-family: var(--luotwo-font-body) !important; font-weight: 500 !important;
  border-radius: var(--luotwo-radius) !important; transition: all 0.25s cubic-bezier(0.16,1,0.3,1) !important;
}
.luotwo-theme .btn.btn-color-primary,.luotwo-theme .single_add_to_cart_button {
  background-color: var(--luotwo-signal-orange) !important; border-color: var(--luotwo-signal-orange) !important; color: #FFF !important;
}
.luotwo-theme .btn.btn-color-primary:hover,.luotwo-theme .single_add_to_cart_button:hover {
  background-color: var(--luotwo-signal-orange-dark) !important; box-shadow: var(--luotwo-shadow-orange) !important; transform: translateY(-1px);
}

/* Product card */
.luotwo-theme .product-grid-item {
  background-color: var(--luotwo-carbon); border: 1px solid var(--luotwo-shadow);
  border-radius: var(--luotwo-radius-lg); transition: all 0.3s cubic-bezier(0.16,1,0.3,1); overflow: hidden;
}
.luotwo-theme .product-grid-item:hover { transform: translateY(-6px); box-shadow: var(--luotwo-shadow-lg); border-color: var(--luotwo-signal-orange); }
.luotwo-theme .product-grid-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--luotwo-signal-orange); transition: width 0.3s ease;
}
.luotwo-theme .product-grid-item:hover::after { width: 100%; }

/* Selection */
.luotwo-theme ::selection { background: var(--luotwo-signal-orange); color: #FFF; }

/* Scrollbar */
.luotwo-theme ::-webkit-scrollbar { width: 6px; }
.luotwo-theme ::-webkit-scrollbar-track { background: var(--luotwo-obsidian); }
.luotwo-theme ::-webkit-scrollbar-thumb { background: var(--luotwo-shadow); border-radius: 3px; }
.luotwo-theme ::-webkit-scrollbar-thumb:hover { background: var(--luotwo-signal-orange); }

/* Focus */
.luotwo-theme *:focus-visible { outline: 2px solid var(--luotwo-signal-orange); outline-offset: 2px; border-radius: 2px; }
/* hero.css */
/* LUOTWO Hero — Light Professional Theme */
.luotwo-hero{position:relative;min-height:100vh;display:flex;align-items:center;background:#FFF;overflow:hidden}
.luotwo-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(242,73,14,0.03) 0%,transparent 50%,rgba(0,102,204,0.02) 100%);z-index:0}
.luotwo-hero-content{position:relative;z-index:1;display:grid;grid-template-columns:1.2fr 0.8fr;gap:80px;align-items:center;max-width:1200px;margin:0 auto;padding:40px 24px}
.luotwo-hero-text{padding-top:40px}
.luotwo-hero-badge{display:inline-flex;align-items:center;gap:8px;padding:6px 16px;border-radius:9999px;border:1.5px solid rgba(242,73,14,0.25);background:rgba(242,73,14,0.04);margin-bottom:24px;font-family:var(--luotwo-font-body);font-size:13px;font-weight:600;color:var(--luotwo-signal-orange);letter-spacing:0.06em;text-transform:uppercase}
.luotwo-hero-badge-dot{width:7px;height:7px;border-radius:50%;background:var(--luotwo-signal-orange);animation:luotwo-pulse-dot 2s ease-in-out infinite}
@keyframes luotwo-pulse-dot{0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.3;transform:scale(1.8)}}
.luotwo-hero-headline{font-family:var(--luotwo-font-heading);font-size:clamp(2.8rem,5vw,4.8rem);font-weight:700;line-height:1.08;color:var(--luotwo-carbon);margin:0 0 20px}
.luotwo-hero-headline .luotwo-accent{color:var(--luotwo-signal-orange)}
.luotwo-hero-desc{font-family:var(--luotwo-font-body);font-size:18px;color:var(--luotwo-silver);max-width:500px;line-height:1.7;margin-bottom:36px}
.luotwo-hero-cta{display:flex;gap:16px;align-items:center;flex-wrap:wrap}
.luotwo-hero-metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;margin-top:64px;padding-top:32px;border-top:1px solid var(--luotwo-shadow)}
.luotwo-hero-metric-value{font-family:var(--luotwo-font-heading);font-size:32px;font-weight:700;color:var(--luotwo-carbon);margin-bottom:4px}
.luotwo-hero-metric-label{font-size:13px;color:var(--luotwo-titanium);text-transform:uppercase;letter-spacing:0.05em}
.luotwo-hero-image{display:flex;align-items:center;justify-content:center;position:relative}
.luotwo-hero-image img{max-width:100%;height:auto;max-height:70vh;object-fit:contain;filter:drop-shadow(0 20px 40px rgba(0,0,0,0.1));animation:luotwo-product-float 6s ease-in-out infinite}
@keyframes luotwo-product-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
.luotwo-hero-waves{position:absolute;inset:0;pointer-events:none;display:flex;align-items:center;justify-content:center}
.luotwo-hero-wave-ring{position:absolute;border-radius:50%;border:1.5px solid rgba(242,73,14,0.15);animation:luotwo-wave-expand 3s ease-out infinite}
.luotwo-hero-wave-ring:nth-child(1){animation-delay:0s}.luotwo-hero-wave-ring:nth-child(2){animation-delay:0.6s}.luotwo-hero-wave-ring:nth-child(3){animation-delay:1.2s}.luotwo-hero-wave-ring:nth-child(4){animation-delay:1.8s}.luotwo-hero-wave-ring:nth-child(5){animation-delay:2.4s}
@keyframes luotwo-wave-expand{0%{width:80px;height:80px;opacity:0.5}100%{width:500px;height:500px;opacity:0}}
.luotwo-scenario-grid{display:grid!important;grid-template-columns:repeat(4,1fr)!important;gap:20px!important;margin-top:32px!important}
.luotwo-scenario-card{background:#FFF;border:1px solid var(--luotwo-shadow);border-radius:var(--luotwo-radius-lg);padding:32px 24px;text-align:center;cursor:pointer;transition:all 0.3s cubic-bezier(0.16,1,0.3,1);box-shadow:var(--luotwo-shadow-card)}
.luotwo-scenario-card:hover,.luotwo-scenario-card.active{border-color:var(--luotwo-signal-orange)!important;transform:translateY(-4px);box-shadow:var(--luotwo-shadow-hover)}
.luotwo-scenario-card h3{font-family:var(--luotwo-font-heading);font-size:18px;font-weight:700;color:var(--luotwo-carbon);margin:0 0 6px}
.luotwo-scenario-card p{color:var(--luotwo-titanium);font-size:13px;margin:0 0 10px}
@media(max-width:1024px){.luotwo-hero-content{grid-template-columns:1fr!important;gap:40px!important;text-align:center!important}.luotwo-hero-desc{margin:0 auto 24px!important}.luotwo-hero-cta{justify-content:center!important}.luotwo-hero-image img{max-height:35vh!important}.luotwo-scenario-grid{grid-template-columns:repeat(2,1fr)!important;gap:12px!important}}
@media(max-width:768px){.luotwo-hero{min-height:auto!important;padding:80px 0 32px!important}.luotwo-hero-image img{max-height:28vh!important}.luotwo-hero-cta{flex-direction:column!important;align-items:center!important}.luotwo-hero-cta .luotwo-btn{width:100%!important;justify-content:center!important}.luotwo-hero-metrics{gap:16px!important;margin-top:32px!important;padding-top:20px!important}.luotwo-hero-metric-value{font-size:24px!important}.luotwo-hero-metric-label{font-size:10px!important}}
@media(max-width:480px){.luotwo-hero-headline{font-size:2rem!important}.luotwo-hero-badge{font-size:11px!important}.luotwo-hero-metric-value{font-size:20px!important}.luotwo-scenario-grid{grid-template-columns:1fr!important;gap:8px!important}}
/* cta.css */
.luotwo-cta-section{position:relative;min-height:60vh;display:flex;align-items:center;justify-content:center;background:var(--luotwo-obsidian);overflow:hidden}
.luotwo-cta-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(242,73,14,0.07) 1px,transparent 1px),linear-gradient(90deg,rgba(242,73,14,0.07) 1px,transparent 1px);background-size:50px 50px;animation:luotwo-grid-move 20s linear infinite}
@keyframes luotwo-grid-move{0%{background-position:0 0}100%{background-position:50px 50px}}
.luotwo-cta-lines{position:absolute;inset:0;overflow:hidden}
.luotwo-cta-line{position:absolute;width:100%;height:2px;background:linear-gradient(90deg,transparent 0%,var(--luotwo-signal-orange) 20%,#FFD700 50%,var(--luotwo-signal-orange) 80%,transparent 100%);animation:luotwo-line-move 4s linear infinite}
.luotwo-cta-line:nth-child(odd){animation-direction:reverse;animation-delay:2s}
.luotwo-cta-line:nth-child(1){top:10%}.luotwo-cta-line:nth-child(2){top:30%}.luotwo-cta-line:nth-child(3){top:50%}.luotwo-cta-line:nth-child(4){top:70%}.luotwo-cta-line:nth-child(5){top:90%}
@keyframes luotwo-line-move{0%{transform:translateX(-100%)}100%{transform:translateX(100%)}}
.luotwo-cta-gradient-text{background:linear-gradient(45deg,var(--luotwo-signal-orange),#FFB347,#FFD700);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;animation:luotwo-gradient-shift 3s ease-in-out infinite alternate}
@keyframes luotwo-gradient-shift{0%{filter:hue-rotate(0deg)}100%{filter:hue-rotate(30deg)}}
/* buttons.css */
.luotwo-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;font-family:var(--luotwo-font-body);font-weight:500;font-size:14px;line-height:1;border-radius:var(--luotwo-radius);padding:10px 20px;cursor:pointer;transition:all 0.25s cubic-bezier(0.16,1,0.3,1);border:1px solid transparent;white-space:nowrap;text-decoration:none!important}
.luotwo-btn-primary{background:var(--luotwo-signal-orange);color:#FFF;border-color:var(--luotwo-signal-orange)}
.luotwo-btn-primary:hover{background:var(--luotwo-signal-orange-dark);box-shadow:var(--luotwo-shadow-orange);transform:translateY(-1px);color:#FFF}
.luotwo-btn-outline{background:transparent;color:var(--luotwo-silver);border-color:var(--luotwo-shadow)}
.luotwo-btn-outline:hover{border-color:var(--luotwo-signal-orange);color:var(--luotwo-signal-orange)}
.luotwo-btn-ghost{background:transparent;color:var(--luotwo-silver);border-color:transparent}
.luotwo-btn-ghost:hover{background:var(--luotwo-carbon);color:var(--luotwo-flash)}
.luotwo-btn-sm{padding:6px 12px;font-size:12px}.luotwo-btn-lg{padding:14px 28px;font-size:16px}.luotwo-btn-block{width:100%}
/* badges.css */
.luotwo-badge{display:inline-flex;align-items:center;gap:4px;font-family:var(--luotwo-font-body);font-size:12px;font-weight:500;line-height:1;padding:4px 10px;border-radius:var(--luotwo-radius);border:1px solid transparent;white-space:nowrap}
.luotwo-badge-default{background:var(--luotwo-signal-orange);color:#FFF;border-color:var(--luotwo-signal-orange)}
.luotwo-badge-secondary{background:var(--luotwo-steel);color:var(--luotwo-silver)}
.luotwo-badge-outline{background:transparent;color:var(--luotwo-titanium);border-color:var(--luotwo-shadow)}
.luotwo-badge-destructive{background:var(--luotwo-alert-red);color:#FFF}
.luotwo-badge-pill{height:20px;min-width:20px;padding:0 5px;border-radius:9999px;font-family:var(--luotwo-font-mono);font-size:11px;justify-content:center}
.luotwo-feature-tag{display:inline-block;font-family:var(--luotwo-font-mono);font-size:11px;font-weight:500;color:var(--luotwo-signal-orange);background:rgba(242,73,14,0.1);padding:2px 8px;border-radius:2px;border:1px solid rgba(242,73,14,0.2)}
/* tables.css */
.luotwo-table{width:100%;border-collapse:collapse;font-family:var(--luotwo-font-body);font-size:14px}
.luotwo-table thead th{background:var(--luotwo-carbon);color:var(--luotwo-flash);padding:16px;font-family:var(--luotwo-font-heading);font-weight:600;font-size:16px;text-align:left;border-bottom:2px solid var(--luotwo-shadow)}
.luotwo-table tbody td{padding:14px 16px;color:var(--luotwo-silver);border-bottom:1px solid var(--luotwo-shadow)}
.luotwo-table tbody tr:hover td{background:rgba(242,73,14,0.04)}
.luotwo-table td.luotwo-highlight,.luotwo-table th.luotwo-highlight{border-left:2px solid var(--luotwo-signal-orange)!important;border-right:2px solid var(--luotwo-signal-orange)!important;background:rgba(242,73,14,0.08)!important;font-weight:600;color:var(--luotwo-flash)!important}
.luotwo-table-wrapper{overflow-x:auto;border-radius:var(--luotwo-radius-lg);border:1px solid var(--luotwo-shadow)}
.luotwo-table-wrapper table{min-width:600px}
/* tabs.css */
.luotwo-tabs{margin:48px 0}
.luotwo-tabs-list{display:flex;border-bottom:1px solid var(--luotwo-shadow);gap:0;overflow-x:auto}
.luotwo-tab-trigger{padding:12px 24px;font-family:var(--luotwo-font-body);font-size:14px;font-weight:500;color:var(--luotwo-titanium);background:none;border:none;border-bottom:2px solid transparent;cursor:pointer;transition:all 0.2s;white-space:nowrap}
.luotwo-tab-trigger:hover{color:var(--luotwo-silver)}
.luotwo-tab-trigger.active{color:var(--luotwo-signal-orange);border-bottom-color:var(--luotwo-signal-orange)}
.luotwo-tab-content{padding:24px 0;display:none}
.luotwo-tab-content.active{display:block;animation:luotwo-fade-in 0.25s ease}
@keyframes luotwo-fade-in{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
.luotwo-theme .wc-tabs-wrapper .wc-tabs li a{color:var(--luotwo-titanium);font-weight:500}
.luotwo-theme .wc-tabs-wrapper .wc-tabs li.active a{color:var(--luotwo-signal-orange);border-bottom-color:var(--luotwo-signal-orange)}
/* accordion.css */
.luotwo-accordion{border:1px solid var(--luotwo-shadow);border-radius:var(--luotwo-radius-lg);overflow:hidden}
.luotwo-accordion-item{border-bottom:1px solid var(--luotwo-shadow)}.luotwo-accordion-item:last-child{border-bottom:none}
.luotwo-accordion-trigger{width:100%;display:flex;justify-content:space-between;align-items:center;padding:20px 24px;background:var(--luotwo-carbon);color:var(--luotwo-flash);font-family:var(--luotwo-font-heading);font-size:16px;font-weight:500;border:none;cursor:pointer;transition:all 0.2s;text-align:left}
.luotwo-accordion-trigger:hover{background:var(--luotwo-steel)}
.luotwo-accordion-trigger::after{content:'\25BE';font-size:12px;transition:transform 0.2s ease;color:var(--luotwo-titanium)}
.luotwo-accordion-trigger.active{color:var(--luotwo-signal-orange)}
.luotwo-accordion-trigger.active::after{transform:rotate(180deg);color:var(--luotwo-signal-orange)}
.luotwo-accordion-content{max-height:0;overflow:hidden;transition:max-height 0.35s ease,padding 0.35s ease}
.luotwo-accordion-content.open{max-height:2000px;padding:20px 24px}
.luotwo-accordion-content-inner{color:var(--luotwo-silver);font-size:15px;line-height:1.7}
/* states.css */
.luotwo-skeleton{background:linear-gradient(90deg,var(--luotwo-carbon) 25%,var(--luotwo-steel) 50%,var(--luotwo-carbon) 75%);background-size:200% 100%;animation:luotwo-skeleton-pulse 1.5s ease-in-out infinite;border-radius:var(--luotwo-radius)}
@keyframes luotwo-skeleton-pulse{0%{background-position:200% 0}100%{background-position:-200% 0}}
.luotwo-empty-state{text-align:center;padding:80px 24px}
.luotwo-empty-state-icon{font-size:48px;margin-bottom:16px;opacity:0.3}
.luotwo-empty-state-title{font-family:var(--luotwo-font-heading);font-size:20px;color:var(--luotwo-silver);margin-bottom:8px}
.luotwo-empty-state-desc{color:var(--luotwo-titanium);font-size:14px;margin-bottom:24px}
.luotwo-error-state{text-align:center;padding:80px 24px;border:1px solid var(--luotwo-alert-red);border-radius:var(--luotwo-radius-lg);background:rgba(227,27,59,0.05)}
.luotwo-error-state-title{font-family:var(--luotwo-font-heading);font-size:20px;color:var(--luotwo-alert-red)}
.luotwo-success-state{text-align:center;padding:80px 24px;border:1px solid var(--luotwo-volt-green);border-radius:var(--luotwo-radius-lg);background:rgba(164,249,9,0.05)}
.luotwo-toast-error{position:fixed;top:80px;right:24px;z-index:9999;background:var(--luotwo-alert-red);color:#FFF;padding:12px 20px;border-radius:var(--luotwo-radius);font-size:13px;animation:luotwo-shake 0.3s ease;box-shadow:var(--luotwo-shadow-md)}
@keyframes luotwo-shake{0%,100%{transform:translateX(0)}25%{transform:translateX(-8px)}75%{transform:translateX(8px)}}
/* cursors.css */
.luotwo-theme{cursor:url('../cursors/default.svg') 16 16,crosshair}
.luotwo-theme a,.luotwo-theme .wd-nav-main>li>a{cursor:url('../cursors/pointer.svg') 8 3,pointer}
.luotwo-theme button,.luotwo-theme .btn,.luotwo-theme .button,.luotwo-theme .single_add_to_cart_button,.luotwo-theme input[type="submit"]{cursor:url('../cursors/button.svg') 16 16,pointer}
.luotwo-theme .product-image img,.luotwo-theme .zoomImg{cursor:url('../cursors/zoom.svg') 16 16,zoom-in}
.luotwo-theme input[type="text"],.luotwo-theme input[type="email"],.luotwo-theme input[type="search"],.luotwo-theme textarea{cursor:url('../cursors/text.svg') 16 16,text}
