:root{
  --bg:#07090d;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --line:rgba(255,255,255,.10);
  --text:#f3f6ff;
  --muted:rgba(243,246,255,.72);
  --accent:#ffd34d;
  --accent2:#8ab4ff;
  --r:22px;
  --shadow:0 30px 90px rgba(0,0,0,.55);
  --font:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Arial,sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body.wk-body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 520px at 12% 8%, rgba(255,211,77,.10), transparent 60%),
    radial-gradient(900px 520px at 88% 12%, rgba(138,180,255,.10), transparent 60%),
    linear-gradient(180deg, #05070b, #07090d);
}

/* Layout */
.wk-shell{display:grid; grid-template-columns: 320px 1fr; min-height:100vh;}
.wk-no-sidebar .wk-shell{grid-template-columns: 1fr;}
.wk-no-sidebar .wk-sidebar{display:none;}
.wk-sidebar{
  position:sticky; top:0; height:100vh;
  display:flex; flex-direction:column;
  padding:18px;
  border-right:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  backdrop-filter: blur(10px);
}
.wk-main{min-width:0;}
.wk-content{padding:26px 22px; max-width:1200px; margin:0 auto; width:100%;}

/* Brand / logo */
.custom-logo{max-height:none !important; object-fit:contain; display:block;}
.wk-brand-fallback{font-weight:900; letter-spacing:.2px; font-size:18px; color:var(--text); text-decoration:none;}
.wk-brand, .wk-brand a{color:var(--text); text-decoration:none;}
.wk-brand img, .custom-logo-link img{object-fit:contain; display:block;}
.wk-brand .custom-logo-link{display:block;}
.wk-sidebar-top{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px;}
.wk-sidebar-top-widget{flex:1; min-width:0;}

/* Sidebar nav */
.wk-nav{margin-top:10px;}
.wk-nav-list{list-style:none; padding:0; margin:0; display:grid; gap:8px;}
.wk-nav-list a{
  display:flex; align-items:center; gap:10px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  text-decoration:none;
  color:var(--text);
}
.wk-nav-list a:hover{background:rgba(255,255,255,.06);}
.wk-nav-list .current-menu-item > a,
.wk-nav-list .current_page_item > a{border-color:rgba(255,211,77,.35); box-shadow:0 0 0 3px rgba(255,211,77,.08) inset;}

/* Widgets */
.wk-sidebar-widgets{margin-top:14px; display:grid; gap:12px;}
.wk-widget{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:14px;
}
.wk-widget-title{margin:0 0 10px; font-size:14px; color:var(--muted); letter-spacing:.3px;}
.wk-widget a{color:var(--accent2);}

/* Bottom */
.wk-sidebar-bottom{margin-top:auto; padding-top:14px; display:grid; gap:10px;}
.wk-search{display:flex; gap:10px;}
.wk-input{
  flex:1;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.25);
  color:var(--text);
  padding:10px 12px;
  outline:none;
}
.wk-btn{
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 12px;
  cursor:pointer;
}
.wk-mini-row{display:flex; gap:8px; align-items:center; flex-wrap:wrap;}
.wk-mini{color:var(--muted); text-decoration:none; font-size:13px;}
.wk-mini strong{color:var(--text);}
.wk-mini-dot{color:rgba(243,246,255,.35)}

/* Header (COD-style top bar) */
.wk-header{
  position:sticky; top:0; z-index:20;
  border-bottom:1px solid var(--line);
  background:rgba(7,9,13,.78);
  backdrop-filter: blur(12px);
}
.wk-header-inner{
  max-width:1200px;
  margin:0 auto;
  padding:14px 18px;
  display:flex; align-items:center; gap:14px;
}
.wk-burger{display:none}
.wk-header-logo a{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text);}
.wk-header-nav{flex:1; min-width:0;}
.wk-header-menu{list-style:none; padding:0; margin:0; display:flex; gap:4px; flex-wrap:wrap; justify-content:center;}
.wk-header-menu > li{position:relative;}
.wk-header-menu > li > a{
  color:rgba(243,246,255,.86);
  text-decoration:none;
  font-weight:700;
  letter-spacing:.2px;
  padding:9px 14px;
  border-radius:999px;
  display:flex; align-items:center; gap:6px;
  white-space:nowrap;
}
.wk-header-menu > li > a:hover{background:rgba(255,255,255,.06); color:var(--text);}
.wk-header-menu .current-menu-item > a,
.wk-header-menu .current_page_item > a{background:rgba(255,211,77,.10); color:var(--text); border:1px solid rgba(255,211,77,.25);}
/* Dropdown arrow indicator */
.wk-header-menu > li.menu-item-has-children > a::after{
  content:'';
  display:inline-block;
  width:0; height:0;
  border-left:4px solid transparent;
  border-right:4px solid transparent;
  border-top:5px solid currentColor;
  opacity:.6;
  transition:transform .18s;
}
.wk-header-menu > li.menu-item-has-children:hover > a::after,
.wk-header-menu > li.menu-item-has-children.wk-open > a::after{
  transform:rotate(180deg);
}
/* Sub-menu dropdown panel */
.wk-header-menu .sub-menu{
  list-style:none; margin:0; padding:8px;
  position:absolute; top:calc(100% + 8px); left:0;
  min-width:220px;
  background:rgba(18,21,28,.96);
  backdrop-filter:blur(20px);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 16px 48px rgba(0,0,0,.6);
  z-index:100;
  opacity:0; visibility:hidden;
  transform:translateY(-6px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s;
  pointer-events:none;
}
/* Invisible bridge covers the 8px gap so hover isn't lost moving to the dropdown */
.wk-header-menu > li.menu-item-has-children::after{
  content:''; position:absolute;
  top:100%; left:0;
  width:100%; height:12px;
}
.wk-header-menu > li:hover > .sub-menu,
.wk-header-menu > li.wk-open > .sub-menu{
  opacity:1; visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}
.wk-header-menu .sub-menu li{position:relative;}
.wk-header-menu .sub-menu a{
  display:block;
  padding:10px 14px;
  border-radius:12px;
  color:rgba(243,246,255,.80);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  white-space:nowrap;
  transition:background .12s, color .12s;
}
.wk-header-menu .sub-menu a:hover{
  background:rgba(255,255,255,.07);
  color:var(--text);
}
.wk-header-menu .sub-menu .current-menu-item > a{
  color:var(--accent);
  background:rgba(255,211,77,.08);
}
/* Nested sub-sub-menus */
.wk-header-menu .sub-menu .sub-menu{
  top:0; left:calc(100% + 6px);
}

.wk-header-actions{display:flex; gap:10px; align-items:center;}
.wk-pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  text-decoration:none;
  font-weight:700;
}
.wk-pill-strong{border-color:rgba(255,211,77,.35); background:rgba(255,211,77,.10);}

/* Hero (front page) */
.wk-hero{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  border:1px solid var(--line);
  min-height:360px;
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
}
.wk-hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(255,211,77,.18), transparent 60%),
    linear-gradient(90deg, rgba(7,9,13,.92), rgba(7,9,13,.55), rgba(7,9,13,.85));
}
.wk-hero-inner{
  position:relative;
  padding:34px 26px;
  max-width:760px;
}
.wk-hero-badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,211,77,.35);
  background:rgba(255,211,77,.10);
  letter-spacing:.28em;
  font-weight:900;
  font-size:12px;
}
.wk-hero-title{margin:14px 0 8px; font-size:44px; letter-spacing:.2px; line-height:1.05;}
.wk-hero-sub{margin:0 0 18px; color:var(--muted); font-size:16px; line-height:1.6;}
.wk-hero-ctas{display:flex; gap:12px; flex-wrap:wrap;}
.wk-cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,211,77,.35);
  background:rgba(255,211,77,.12);
  color:var(--text);
  text-decoration:none;
  font-weight:900;
}
.wk-cta-ghost{
  border-color:var(--line);
  background:rgba(255,255,255,.04);
}

/* Content cards */
.wk-section{margin-top:18px;}
.wk-section-head{margin:18px 0 12px;}
.wk-panel{
  border:1px solid var(--line);
  border-radius:var(--r);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:var(--shadow);
  padding:20px;
}
.wk-pagehead{margin-bottom:16px;}
.wk-h1{margin:0 0 10px; font-size:28px; letter-spacing:.2px;}
.wk-h2{margin:0; font-size:18px;}
.wk-h3{margin:0 0 10px; font-size:16px;}

.wk-muted{color:var(--muted);}

.wk-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:10px;
}
.wk-card{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.03);
  overflow:hidden;
}
.wk-card-link{display:block; padding:16px; color:inherit; text-decoration:none;}
.wk-meta{color:var(--muted); font-size:12px; margin-bottom:10px;}
.wk-excerpt{color:var(--muted); line-height:1.6;}
.wk-prose{line-height:1.75; color:rgba(243,246,255,.90);}
.wk-prose a{color:var(--accent2);}
.wk-prose .wp-block-button__link,
.wk-prose .wp-block-button__link:hover{color:inherit !important;}
.wk-prose img{max-width:100%; height:auto; border-radius:16px; border:1px solid var(--line);}

/* Pagination */
.wk-pagination{margin-top:18px;}
.wk-pagination .page-numbers{
  color:var(--text);
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:12px;
  text-decoration:none;
  margin-right:6px;
  background:rgba(255,255,255,.03);
}
.wk-pagination .current{background:rgba(255,255,255,.08);}

/* Footer */
.wk-footer-widgets{border-top:1px solid var(--line); padding:40px 0 32px; margin-top:26px;}
.wk-footer-widgets-inner{max-width:1200px; margin:0 auto; padding:0 22px; width:100%;}
.wk-footer-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:32px;}
.wk-footer-col{min-width:0;}
.wk-footer-widget-title{font-size:13px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); margin:0 0 12px;}
.wk-footer-widget{color:var(--muted); font-size:14px;}
.wk-footer-widget a{color:var(--muted); text-decoration:none;}
.wk-footer-widget a:hover{color:var(--text);}
@media(max-width:640px){.wk-footer-grid{grid-template-columns:1fr;}}
.wk-footer{border-top:1px solid var(--line); padding:18px 0; margin-top:0;}
.wk-footer-inner{
  max-width:1200px; margin:0 auto; padding:0 18px;
  display:flex; justify-content:center; gap:12px; flex-wrap:wrap;
  color:var(--muted);
}
.wk-footer-menu{list-style:none; padding:0; margin:0; display:flex; gap:12px; flex-wrap:wrap;}
.wk-footer-menu a{color:var(--muted); text-decoration:none;}
.wk-footer-menu a:hover{color:var(--text);}

/* WooCommerce */
.woocommerce .products{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px;}
.woocommerce ul.products li.product{
  width:auto !important;
  margin:0 !important;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.03);
  overflow:hidden;
  padding:12px;
}
.woocommerce ul.products li.product a{color:inherit; text-decoration:none;}
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit{
  border-radius:14px !important;
  border:1px solid var(--line) !important;
  background:rgba(255,255,255,.06) !important;
  color:var(--text) !important;
  padding:12px 14px !important;
  font-weight:700 !important;
  cursor:pointer !important;
  text-decoration:none !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover{
  background:rgba(255,255,255,.12) !important;
}
.woocommerce a.button.alt, .woocommerce button.button.alt,
.woocommerce #place_order{
  border-color:rgba(255,211,77,.35) !important;
  background:rgba(255,211,77,.12) !important;
  color:var(--text) !important;
}
.woocommerce .quantity .qty{
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.25);
  color:var(--text);
  padding:8px 10px;
}
/* Notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error{
  border-radius:14px;
  border-left:4px solid var(--accent) !important;
  background:rgba(255,211,77,.08) !important;
  color:var(--text) !important;
  padding:14px 16px !important;
  margin-bottom:16px !important;
  list-style:none !important;
}
.woocommerce-error{border-left-color:#f87171 !important; background:rgba(248,113,113,.08) !important;}
.woocommerce-info{border-left-color:var(--accent2) !important; background:rgba(138,180,255,.08) !important;}
.woocommerce-message a.button, .woocommerce-info a.button{margin-left:12px;}
/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb{
  color:var(--muted); font-size:13px; margin-bottom:18px;
}
.woocommerce .woocommerce-breadcrumb a{color:var(--muted); text-decoration:none;}
.woocommerce .woocommerce-breadcrumb a:hover{color:var(--text);}
/* Sale badge */
.woocommerce span.onsale{
  background:var(--accent) !important;
  color:#07090d !important;
  border-radius:999px !important;
  font-weight:900 !important;
  font-size:11px !important;
  padding:4px 10px !important;
  min-height:unset !important;
  min-width:unset !important;
  line-height:1.4 !important;
}
/* Price & ratings */
.woocommerce .price{color:var(--accent); font-weight:700; font-size:18px;}
.woocommerce ins .amount{text-decoration:none;}
.woocommerce del .amount{color:var(--muted); font-size:14px;}
.woocommerce .star-rating span::before{color:var(--accent);}
.woocommerce .star-rating{color:rgba(255,211,77,.3);}
/* Single product */
.woocommerce div.product .woocommerce-tabs ul.tabs{
  border-bottom:1px solid var(--line);
  padding:0; margin:0 0 18px; list-style:none;
  display:flex; gap:4px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li{
  border-radius:14px 14px 0 0;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  margin-bottom:-1px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a{
  color:var(--muted); padding:10px 16px; display:block; text-decoration:none; font-weight:700;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active{
  background:rgba(255,255,255,.07); border-bottom-color:transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{color:var(--text);}
.woocommerce div.product .woocommerce-tabs .panel{
  border:1px solid var(--line); border-radius:0 14px 14px 14px;
  background:rgba(255,255,255,.03); padding:18px;
}
/* Cart table */
.woocommerce table.shop_table{
  width:100%; border-collapse:collapse; border:1px solid var(--line); border-radius:14px; overflow:hidden;
}
.woocommerce table.shop_table th{
  background:rgba(255,255,255,.05); padding:12px 16px;
  text-align:left; font-size:13px; color:var(--muted); text-transform:uppercase; letter-spacing:.06em;
  border-bottom:1px solid var(--line);
}
.woocommerce table.shop_table td{
  padding:14px 16px; border-bottom:1px solid var(--line); vertical-align:middle;
}
.woocommerce table.shop_table tr:last-child td{border-bottom:none;}
.woocommerce .cart-collaterals, .woocommerce-cart .cart-collaterals{
  margin-top:24px;
}
.woocommerce .cart_totals{
  border:1px solid var(--line); border-radius:18px;
  background:rgba(255,255,255,.03); padding:20px;
  max-width:420px; margin-left:auto;
}
.woocommerce .cart_totals table th, .woocommerce .cart_totals table td{
  padding:10px 12px; border-bottom:1px solid var(--line);
}
/* Checkout */
.woocommerce form .form-row label{
  display:block; font-size:13px; color:var(--muted); margin-bottom:6px; font-weight:600;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select{
  width:100%; border-radius:12px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.25);
  color:var(--text);
  padding:10px 12px;
  outline:none;
  font-family:var(--font);
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus{
  border-color:rgba(255,211,77,.4);
}
.woocommerce #order_review_heading, .woocommerce h3{
  font-size:16px; margin:0 0 12px; font-weight:700;
}
.woocommerce #payment{
  border-radius:18px; border:1px solid var(--line);
  background:rgba(255,255,255,.03); padding:18px; margin-top:16px;
}
.woocommerce #payment .payment_methods{
  list-style:none; margin:0 0 14px; padding:0;
}
.woocommerce #payment .payment_methods li{
  padding:10px 0; border-bottom:1px solid var(--line);
}
/* My Account */
.woocommerce-account .woocommerce-MyAccount-navigation{
  border:1px solid var(--line); border-radius:18px;
  background:rgba(255,255,255,.03); padding:14px; margin-bottom:18px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul{
  list-style:none; margin:0; padding:0; display:grid; gap:4px;
}
.woocommerce-account .woocommerce-MyAccount-navigation a{
  display:block; padding:10px 12px; border-radius:12px;
  color:var(--muted); text-decoration:none; font-weight:600;
}
.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a{
  background:rgba(255,255,255,.06); color:var(--text);
}

/* Mobile sidebar overlay */
@media (max-width: 980px){
  .wk-shell{grid-template-columns:1fr;}
  .wk-sidebar{
    position:fixed; inset:0 auto 0 0;
    width:320px; max-width:86vw;
    transform:translateX(-105%);
    transition:transform .22s ease;
    z-index:40;
  }
  .wk-burger{
    display:inline-flex; align-items:center; justify-content:center;
    width:44px; height:44px; border-radius:14px;
    border:1px solid var(--line); background:rgba(255,255,255,.04);
    color:var(--text); cursor:pointer;
  }
  .wk-close{
    display:inline-flex;
    width:42px; height:42px; border-radius:14px;
    border:1px solid var(--line); background:rgba(255,255,255,.04);
    color:var(--text); cursor:pointer;
  }
  .wk-sidebar-open .wk-sidebar{transform:translateX(0);}
  .wk-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .woocommerce .products{grid-template-columns:repeat(2,minmax(0,1fr));}
  .wk-hero-title{font-size:36px;}
}
@media (max-width: 560px){
  .wk-grid{grid-template-columns:1fr;}
  .woocommerce .products{grid-template-columns:1fr;}
}
