:root{
  --bg:#ffffff;
  --text:#0b0c10;
  --muted:#5f6773;
  --line:rgba(16,24,40,.12);
  --soft:rgba(16,24,40,.06);
  --accent:#e60023;
  --radius:16px;
  --shadow: 0 20px 60px rgba(16,24,40,.10);
  --container: min(1180px, 92vw);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
  background: var(--bg);
  color: var(--text);
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ width: var(--container); margin:0 auto; }
.muted{ color: var(--muted); }

/* Topbar */
.topbar{
  background:#f6f7f9;
  border-bottom:1px solid var(--line);
  font-size:12px;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 0;
  position:relative;
}
.topbar-link{
  border:0;
  background:transparent;
  padding:6px 8px;
  color:#27303f;
  cursor:pointer;
}
.topbar-link:hover{ color:#000; }
.topbar-left{ position:relative; }
.topbar-right{ display:flex; gap:6px; flex-wrap:wrap; }

.region-pop{
  position:absolute;
  top:36px;
  left:0;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow: var(--shadow);
  overflow:hidden;
  display:none;
  min-width:220px;
  z-index:80;
}
.region-pop a{
  display:block;
  padding:10px 12px;
  font-size:12px;
  color:#27303f;
}
.region-pop a:hover{ background: var(--soft); }
.chev{ opacity:.7; margin-left:2px; }

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:70;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:grid;
  grid-template-columns: 180px 1fr auto;
  align-items:center;
  gap:16px;
  padding:14px 0;
}
.brand-logo{ height:28px; width:auto; }

.nav{
  display:flex;
  gap:12px;
  justify-content:center;
  white-space:nowrap;
}
.nav-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  padding:10px 10px;
  color:#1a2232;
  border-radius:10px;
}
.nav-link:hover{ background: var(--soft); }
.nav-btn{
  border:0;
  background:transparent;
  cursor:pointer;
}

.nav-dd{ position:relative; }

.dropdown{
  position:absolute;
  left:0;
  top:44px;
  min-width: 340px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding:12px;
  display:none;
  z-index:75;
}
.dropdown-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:6px;
}
.dd-link{
  padding:10px 10px;
  border-radius:12px;
  font-size:13px;
  color:#1a2232;
}
.dd-link:hover{ background: var(--soft); }

.actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}
.icon-btn{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  border:1px solid transparent;
  cursor:pointer;
  transition: .18s ease;
  user-select:none;
}
.btn-outline{
  border-color: var(--line);
  background:#fff;
  color:#1a2232;
}
.btn-outline:hover{ background: var(--soft); }
.btn-accent{
  background: var(--accent);
  color:#fff;
}
.btn-accent:hover{ opacity:.92; }

/* Mobile */
.burger{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px;
  height:2px;
  background:#111827;
  margin:4px auto;
}
.mobile{
  display:none;
  border-top:1px solid var(--line);
  padding:12px 0;
  background:#fff;
}
.mobile.is-open{ display:block; }
.mobile a{
  display:block;
  padding:12px 4vw;
  font-size:14px;
  color:#1a2232;
}
.mobile a:hover{ background: var(--soft); }

/* Main */
.main{ flex:1 0 auto; min-height:0; }

/* Hero */
.hero{
  padding:44px 0 24px 0;
  background: radial-gradient(900px 500px at 70% 0%, rgba(230,0,35,.10), transparent 55%),
              radial-gradient(800px 500px at 10% 10%, rgba(255,43,74,.06), transparent 60%);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:center;
}
.hero-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:#f6f7f9;
  border:1px solid var(--line);
  font-size:12px;
  color:#1a2232;
}
.hero h1{ font-size:40px; margin:12px 0 10px 0; line-height:1.1; }
.hero p{ margin:0 0 14px 0; color:var(--muted); line-height:1.7; }
.hero-ctas{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }
.hero-img{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}
.badges{ display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; }
.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:#1a2232;
}

/* Sections */
.section{ padding:30px 0; }
.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}
.section-title h2{ margin:0; font-size:18px; }
.section-title p{ margin:0; color:var(--muted); font-size:13px; }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  padding:16px;
}
.card h3{ margin:6px 0 6px 0; font-size:16px; }
.card p{ margin:0; color:var(--muted); line-height:1.65; font-size:14px; }
.mini{ font-size:12px; color:var(--muted); }

.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.product-card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
}
.product-card .thumb{ background:#fff; padding:16px; border-bottom:1px solid var(--line); min-height:250px; display:flex; align-items:center; justify-content:center; }
.product-card .body{ padding:14px 14px 16px 14px; }
.product-card h3{ margin:0 0 6px 0; font-size:16px; }
.product-card p{ margin:0 0 12px 0; color:var(--muted); line-height:1.6; font-size:14px; }
.product-card .thumb img{ width:100%; height:220px; object-fit:contain; object-position:center; }
.meta{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px; }
.chip{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:#1a2232;
}
.divider{ border-top:1px solid var(--line); margin:18px 0; }

/* Product detail */
.product-page{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:18px;
  padding:34px 0;
}
.product-image{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.gallery{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:8px;
  margin-top:12px;
}
.gallery img{
  border:1px solid var(--line);
  border-radius:10px;
  padding:2px;
  cursor:pointer;
}
.product-info{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.product-info h1{ margin:0 0 8px 0; font-size:26px; }
.tagline{ margin:0 0 14px 0; color:var(--muted); }
.specs{ margin-top:14px; border-top:1px solid var(--line); padding-top:12px; }
.specs pre{
  margin:0;
  white-space:pre-wrap;
  font-family:inherit;
  color:#111827;
  line-height:1.7;
  font-size:14px;
}

/* Search overlay */
.search-overlay{
  position:fixed;
  inset:0;
  background: rgba(17,24,39,.45);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:90;
  padding:18px;
}
.search-box{
  width:min(760px, 96vw);
  background:#fff;
  border-radius:18px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  padding:16px;
}
.search-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}
.search-title{ font-weight:800; }
.search-form{ display:flex; gap:10px; }
.search-input{
  flex:1;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  outline:none;
  font-size:14px;
}
.search-input:focus{ border-color: rgba(230,0,35,.35); }

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:34px 0;
  background:#f6f7f9;
  margin-top:0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap:18px;
}
.footer-logo{ height:24px; width:auto; margin-bottom:10px; }
.ftitle{ font-weight:800; margin-bottom:10px; }
.fcol a{ display:block; color:#27303f; margin:8px 0; font-size:14px; }
.fcol a:hover{ color:#000; }

/* Admin shared */
.admin-wrap{ padding:32px 0; }
.table{
  width:100%;
  border-collapse:collapse;
  border:1px solid var(--line);
  border-radius: 12px;
  overflow:hidden;
  background:#fff;
}
.table th,.table td{
  padding:12px 12px;
  border-bottom:1px solid var(--line);
  font-size:14px;
  text-align:left;
  vertical-align:top;
}
.table th{ background:#f6f7f9; color:#111827; }
.input, textarea, select{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  outline:none;
  font-size:14px;
  background:#fff;
}
textarea{ min-height:110px; resize:vertical; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
.form-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }

/* Responsive */
@media (max-width: 1080px){
  .nav{ display:none; }
  .burger{ display:inline-block; }
  .mobile{ display:none; }
  .hero-grid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .product-page{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 560px){
  .product-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .search-form{ flex-direction:column; }
}

.banner-wrap{padding-top:24px}
.banner-slider{position:relative;border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow);background:#fff}
.banner-slide{display:none;position:relative}
.banner-slide.active{display:block}
.banner-media img{width:100%;height:min(66vw,520px);object-fit:cover}
.banner-media-link{display:block;cursor:pointer}
.banner-media-link:focus-visible{outline:2px solid #fff;outline-offset:-6px}
.banner-slide{overflow:hidden}
.banner-overlay{position:absolute;inset:0;display:flex;align-items:center;padding:24px;background:linear-gradient(90deg,rgba(0,0,0,.42),rgba(0,0,0,.08) 55%,rgba(0,0,0,0));color:#fff}
.banner-overlay .hero-card{max-width:520px;background:rgba(255,255,255,.12);backdrop-filter:blur(8px);border-color:rgba(255,255,255,.18);color:#fff}
.banner-overlay .hero-card p,.banner-overlay .kicker{color:#f4f4f4}
.banner-arrow,.carousel-arrow{position:absolute;top:50%;transform:translateY(-50%);width:42px;height:42px;border-radius:999px;border:1px solid var(--line);background:rgba(255,255,255,.9);cursor:pointer;z-index:3}
.banner-arrow.prev,.carousel-arrow.prev{left:12px}.banner-arrow.next,.carousel-arrow.next{right:12px}
.banner-dots{position:absolute;left:0;right:0;bottom:14px;display:flex;justify-content:center;gap:8px;z-index:3}
.banner-dot{width:10px;height:10px;border-radius:999px;border:0;background:rgba(255,255,255,.55);cursor:pointer}.banner-dot.active{background:#fff}
.product-carousel{position:relative}.product-track{display:flex;gap:14px;overflow-x:auto;overflow-y:hidden;scroll-behavior:smooth;padding:2px 54px 2px 2px;-ms-overflow-style:none;scrollbar-width:none}.product-track::-webkit-scrollbar{display:none}.carousel-item{min-width:320px;max-width:320px;flex:0 0 320px}.product-carousel .carousel-arrow{top:42%}
.news-cover{border-radius:12px;overflow:hidden;margin:-16px -16px 12px -16px;background:#fff;border-bottom:1px solid var(--line)}.news-cover img{width:100%;height:220px;object-fit:cover}
.media-grid{grid-template-columns:repeat(4,1fr)}.media-card .thumb{aspect-ratio:1/1;overflow:hidden;border-radius:12px;background:#f7f8fa}.media-card .thumb img{width:100%;height:100%;object-fit:cover}
.lightbox{display:none;position:fixed;inset:0;background:rgba(0,0,0,.88);z-index:120;align-items:center;justify-content:center;padding:20px}.lightbox-stage{width:100%;height:100%;display:flex;align-items:center;justify-content:center;overflow:hidden}.lightbox-stage img{max-width:90vw;max-height:88vh;cursor:grab;user-select:none;touch-action:none}.lightbox-close{position:absolute;top:18px;right:18px;width:46px;height:46px;border-radius:999px;border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.08);color:#fff;font-size:22px;cursor:pointer}
@media (max-width: 1080px){.media-grid{grid-template-columns:repeat(2,1fr)} .banner-media img{height:46vw} .banner-overlay{padding:16px} .carousel-item{min-width:280px;max-width:280px;flex-basis:280px}}
@media (max-width: 560px){.media-grid{grid-template-columns:1fr} .banner-media img{height:58vw} .banner-overlay .hero-card{max-width:none} .product-track{padding-right:8px} .carousel-item{min-width:85vw;max-width:85vw;flex-basis:85vw}}

/* ===== VEITT product upgrade ===== */
.veitt-product-detail .veitt-product-layout{
    align-items:start !important;
}
.veitt-product-detail .veitt-product-left{
    position: sticky;
    top: 96px;
}
.veitt-product-detail .veitt-product-right{
    min-height: auto;
}
.veitt-product-detail .product-image img{
    display:block;
    width:100%;
    height:auto;
}
.veitt-product-detail .gallery img{
    transition: all .2s ease;
}
.veitt-product-detail .gallery img:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15,23,42,.10);
}
.veitt-specs-block{
    margin-top: 4px;
}
.veitt-specs-toggle{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border:1px solid rgba(15,23,42,.08);
    border-radius:16px;
    background:#fff;
    padding:14px 16px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}
.veitt-specs-content{
    margin-top:10px;
    border:1px solid rgba(15,23,42,.08);
    border-radius:16px;
    background:#fff;
    padding:0 16px 14px;
}
@media (max-width: 960px){
    .veitt-product-detail .veitt-product-layout{
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    .veitt-product-detail .veitt-product-left{
        position: static;
        top: auto;
    }
    .veitt-product-detail .veitt-product-right{
        padding:22px 20px !important;
        border-radius:20px !important;
    }
}

/* ===== VEITT specs button polish ===== */
.veitt-specs-block{
    margin-top: 8px;
}
.veitt-specs-toggle{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    border:1px solid rgba(15,23,42,.10);
    border-radius:18px;
    background:linear-gradient(180deg,#ffffff 0%, #fafafa 100%);
    padding:16px 18px;
    font-size:16px;
    font-weight:700;
    color:#0f172a;
    cursor:pointer;
    transition:all .2s ease;
    box-shadow:0 4px 14px rgba(15,23,42,.04);
}
.veitt-specs-toggle:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 24px rgba(15,23,42,.08);
    border-color:rgba(15,23,42,.16);
}
.veitt-specs-toggle:focus{
    outline:none;
    box-shadow:0 0 0 3px rgba(230,0,35,.10);
}
.veitt-specs-toggle .veitt-specs-arrow{
    width:28px;
    height:28px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#f8fafc;
    border:1px solid rgba(15,23,42,.08);
    font-size:18px;
    font-weight:700;
    line-height:1;
    flex:0 0 28px;
}
.veitt-specs-content{
    margin-top:12px;
    border:1px solid rgba(15,23,42,.08);
    border-radius:18px;
    background:#fff;
    padding:2px 18px 16px;
    box-shadow:0 8px 24px rgba(15,23,42,.04);
}
@media (max-width: 768px){
    .veitt-specs-toggle{
        padding:14px 16px;
        font-size:15px;
        border-radius:16px;
    }
    .veitt-specs-toggle .veitt-specs-arrow{
        width:26px;
        height:26px;
        font-size:17px;
    }
    .veitt-specs-content{
        border-radius:16px;
        padding:2px 14px 14px;
    }
}

/* ===== VEITT product v2 ===== */
.veitt-product-detail-v2{
    padding-top: 18px;
}
.veitt-product-detail-v2 .veitt-product-layout{
    gap: 40px !important;
}
.veitt-product-detail-v2 .veitt-product-left{
    top: 110px !important;
}
.veitt-product-detail-v2 .product-image{
    background: linear-gradient(180deg,#ffffff 0%, #fbfbfc 100%) !important;
    border-radius: 30px !important;
    padding: 34px !important;
    box-shadow: 0 24px 60px rgba(15,23,42,.08) !important;
    border: 1px solid rgba(15,23,42,.06) !important;
}
.veitt-product-detail-v2 .product-image img{
    border-radius: 22px !important;
}
.veitt-product-detail-v2 .gallery{
    margin-top: 18px !important;
    gap: 12px !important;
}
.veitt-product-detail-v2 .gallery img{
    width: 86px !important;
    height: 86px !important;
    border-radius: 18px !important;
    padding: 5px !important;
    background: #fff !important;
    border: 1px solid rgba(15,23,42,.08) !important;
    box-shadow: 0 6px 18px rgba(15,23,42,.04);
}
.veitt-product-detail-v2 .veitt-product-right{
    border-radius: 30px !important;
    padding: 36px 40px !important;
    box-shadow: 0 24px 60px rgba(15,23,42,.06) !important;
    border: 1px solid rgba(15,23,42,.06) !important;
}
.veitt-product-detail-v2 .veitt-product-title{
    color:#0f172a;
}
.veitt-product-detail-v2 .veitt-product-subtitle{
    max-width: 95%;
}
.veitt-product-detail-v2 .veitt-product-meta .chip{
    padding: 10px 14px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    background:#fff !important;
    border:1px solid rgba(15,23,42,.08) !important;
    box-shadow: 0 4px 12px rgba(15,23,42,.03);
}
.veitt-product-detail-v2 .veitt-product-price{
    text-shadow: 0 4px 18px rgba(230,0,35,.10);
}
.veitt-product-detail-v2 hr{
    margin: 24px 0 !important;
    border-top: 1px solid rgba(15,23,42,.07) !important;
}
.veitt-product-detail-v2 .veitt-section-title{
    color:#0f172a;
}
.veitt-product-detail-v2 .veitt-copy{
    color:#334155;
}
@media (max-width: 1200px){
    .veitt-product-detail-v2 .veitt-product-title{
        font-size: 34px !important;
    }
    .veitt-product-detail-v2 .veitt-product-price{
        font-size: var(--veitt-price-size, 40px) !important;
    }
}
@media (max-width: 960px){
    .veitt-product-detail-v2{
        padding-top: 8px;
    }
    .veitt-product-detail-v2 .veitt-product-layout{
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .veitt-product-detail-v2 .veitt-product-left{
        position: static !important;
        top: auto !important;
    }
    .veitt-product-detail-v2 .product-image{
        padding: 20px !important;
        border-radius: 22px !important;
    }
    .veitt-product-detail-v2 .veitt-product-right{
        padding: 24px 22px !important;
        border-radius: 22px !important;
    }
    .veitt-product-detail-v2 .veitt-product-title{
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    .veitt-product-detail-v2 .veitt-product-subtitle{
        font-size: 16px !important;
    }
    .veitt-product-detail-v2 .veitt-product-price{
        font-size: var(--veitt-price-size, 34px) !important;
        margin: 16px 0 18px !important;
    }
    .veitt-product-detail-v2 .gallery img{
        width: 72px !important;
        height: 72px !important;
        border-radius: 14px !important;
    }
}

/* ===== VEITT polish fix ===== */
.veitt-product-detail-v2 .veitt-product-title{
    font-size: 30px !important;
    line-height: 1.28 !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    max-width: 92% !important;
    word-break: break-word;
}
.veitt-product-detail-v2 .veitt-product-subtitle{
    font-size: 16px !important;
    line-height: 1.9 !important;
    margin-bottom: 16px !important;
    color: #475569 !important;
}
.veitt-product-detail-v2 .veitt-product-price{
    font-size: var(--veitt-price-size, 30px) !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    margin: 14px 0 18px !important;
    color: var(--veitt-price-color, #e60023) !important;
}
.veitt-product-detail-v2 .veitt-product-meta{
    margin: 10px 0 12px !important;
}
.veitt-product-detail-v2 .veitt-product-meta .chip{
    padding: 8px 12px !important;
    font-size: 13px !important;
    border-radius: 999px !important;
}
.veitt-product-detail-v2 .veitt-section-title{
    font-size: 18px !important;
    margin-bottom: 10px !important;
}
.veitt-product-detail-v2 .veitt-copy{
    font-size: 15px !important;
    line-height: 1.95 !important;
}

/* 技术参数按钮改得更像正式官网 */
.veitt-specs-toggle{
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 18px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(15,23,42,.08) !important;
    background: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    box-shadow: none !important;
    transition: all .2s ease !important;
}
.veitt-specs-toggle:hover{
    border-color: rgba(15,23,42,.16) !important;
    background: #fafafa !important;
    transform: none !important;
    box-shadow: none !important;
}
.veitt-specs-toggle .veitt-specs-arrow{
    width: 24px !important;
    height: 24px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8fafc !important;
    border: 1px solid rgba(15,23,42,.08) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}
.veitt-specs-content{
    margin-top: 10px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(15,23,42,.08) !important;
    background: #fff !important;
    box-shadow: none !important;
    padding: 4px 16px 14px !important;
}

@media (max-width: 960px){
    .veitt-product-detail-v2 .veitt-product-title{
        font-size: 24px !important;
        line-height: 1.3 !important;
        max-width: 100% !important;
    }
    .veitt-product-detail-v2 .veitt-product-subtitle{
        font-size: 15px !important;
    }
    .veitt-product-detail-v2 .veitt-product-price{
        font-size: var(--veitt-price-size, 26px) !important;
    }
    .veitt-specs-toggle{
        font-size: 14px !important;
        padding: 12px 14px !important;
    }
}

/* ===== VEITT lightbox ===== */
.veitt-lightbox[hidden]{
    display:none !important;
}
.veitt-lightbox{
    position:fixed;
    inset:0;
    z-index:9999;
}
.veitt-lightbox-backdrop{
    position:absolute;
    inset:0;
    background:rgba(15,23,42,.72);
    backdrop-filter:blur(2px);
}
.veitt-lightbox-dialog{
    position:relative;
    z-index:2;
    width:min(92vw, 1200px);
    height:min(88vh, 900px);
    margin:4vh auto 0;
    display:flex;
    align-items:center;
    justify-content:center;
}
.veitt-lightbox-stage{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.veitt-lightbox-stage img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,.28);
    background:#fff;
}
.veitt-lightbox-close{
    position:absolute;
    top:0;
    right:0;
    transform:translate(20px,-20px);
    width:48px;
    height:48px;
    border:none;
    border-radius:999px;
    background:#fff;
    color:#0f172a;
    font-size:30px;
    line-height:1;
    cursor:pointer;
    box-shadow:0 8px 24px rgba(15,23,42,.18);
}
.veitt-lightbox-close:hover{
    background:#f8fafc;
}
@media (max-width: 768px){
    .veitt-lightbox-dialog{
        width:min(96vw, 1200px);
        height:min(82vh, 900px);
        margin:8vh auto 0;
    }
    .veitt-lightbox-close{
        width:42px;
        height:42px;
        font-size:26px;
        transform:translate(6px,-14px);
    }
}

/* ===== VEITT lightbox zoom/pinch ===== */
.veitt-lightbox-stage{
    overflow: hidden;
}
.veitt-lightbox-stage img{
    transform-origin: center center;
    transition: transform .06s linear;
    cursor: zoom-in;
    touch-action: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* ===== VEITT thumbs slider ===== */
.veitt-thumb-wrap{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:16px;
}
.veitt-thumb-track{
    display:flex !important;
    flex-wrap:nowrap !important;
    gap:10px;
    overflow:hidden;
    scroll-behavior:smooth;
    width:100%;
}
.veitt-thumb-track::-webkit-scrollbar{
    display:none;
}
.veitt-thumb-arrow{
    -webkit-appearance:none;
    appearance:none;
    border:1px solid rgba(15,23,42,.08);
    background:#fff;
    color:#0f172a;
    width:38px;
    height:38px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    line-height:1;
    cursor:pointer;
    flex:0 0 38px;
    box-shadow:0 4px 14px rgba(15,23,42,.05);
}
.veitt-thumb-arrow:hover{
    background:#fafafa;
    border-color:rgba(15,23,42,.14);
}
.veitt-thumb-track img{
    flex:0 0 auto;
}
@media (max-width: 768px){
    .veitt-thumb-wrap{
        gap:8px;
    }
    .veitt-thumb-arrow{
        width:34px;
        height:34px;
        font-size:20px;
        flex:0 0 34px;
    }
}

.veitt-thumb-wrap{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:16px;
}
.veitt-thumb-track{
    display:flex !important;
    flex-wrap:nowrap !important;
    gap:10px;
    overflow:hidden;
    scroll-behavior:smooth;
    width:100%;
}
.veitt-thumb-track::-webkit-scrollbar{
    display:none;
}
.veitt-thumb-arrow{
    -webkit-appearance:none;
    appearance:none;
    border:1px solid rgba(15,23,42,.08);
    background:#fff;
    color:#0f172a;
    width:38px;
    height:38px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    line-height:1;
    cursor:pointer;
    flex:0 0 38px;
    box-shadow:0 4px 14px rgba(15,23,42,.05);
}
.veitt-thumb-arrow:hover{
    background:#fafafa;
    border-color:rgba(15,23,42,.14);
}
.veitt-lightbox[hidden]{
    display:none !important;
}
.veitt-lightbox{
    position:fixed;
    inset:0;
    z-index:9999;
}
.veitt-lightbox-backdrop{
    position:absolute;
    inset:0;
    background:rgba(15,23,42,.72);
    backdrop-filter:blur(2px);
}
.veitt-lightbox-dialog{
    position:relative;
    z-index:2;
    width:min(92vw, 1200px);
    height:min(88vh, 900px);
    margin:4vh auto 0;
    display:flex;
    align-items:center;
    justify-content:center;
}
.veitt-lightbox-stage{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.veitt-lightbox-stage img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,.28);
    background:#fff;
    cursor:zoom-in;
}
.veitt-lightbox-close{
    position:absolute;
    top:0;
    right:0;
    transform:translate(20px,-20px);
    width:48px;
    height:48px;
    border:none;
    border-radius:999px;
    background:#fff;
    color:#0f172a;
    font-size:30px;
    line-height:1;
    cursor:pointer;
    box-shadow:0 8px 24px rgba(15,23,42,.18);
}
.veitt-specs-toggle{
    -webkit-appearance:none !important;
    appearance:none !important;
    border:1px solid rgba(15,23,42,.08) !important;
    background:#fff !important;
    outline:none !important;
    box-shadow:0 2px 10px rgba(15,23,42,.04) !important;
    border-radius:999px !important;
    padding:12px 16px !important;
    min-height:44px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:10px !important;
    width:auto !important;
    color:#0f172a !important;
    font-size:14px !important;
    font-weight:700 !important;
    cursor:pointer !important;
}
.veitt-specs-toggle .veitt-specs-arrow{
    width:22px !important;
    height:22px !important;
    min-width:22px !important;
    border-radius:999px !important;
    border:1px solid rgba(15,23,42,.08) !important;
    background:#f8fafc !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-size:14px !important;
    font-weight:700 !important;
}
.veitt-specs-content{
    margin-top:12px !important;
    border:1px solid rgba(15,23,42,.08) !important;
    border-radius:18px !important;
    background:#fff !important;
    box-shadow:0 6px 20px rgba(15,23,42,.04) !important;
    padding:4px 16px 14px !important;
}

/* ===== VEITT lightbox zoom ===== */
.veitt-lightbox-stage{
    overflow:hidden;
}
.veitt-lightbox-stage img{
    transform-origin:center center;
    transition:transform .06s linear;
    cursor:zoom-in;
    touch-action:none;
    user-select:none;
    -webkit-user-drag:none;
}

/* 默认价格颜色：允许后台与变体动态覆盖 */
.veitt-product-price{
    color: var(--veitt-price-color, #5d21e7) !important;
    font-size: var(--veitt-price-size, 26px) !important;
}


.card-link-overlay{position:absolute;inset:0;z-index:3;border-radius:inherit}
.product-card-linkable,.news-card-linkable,.category-card-linkable{position:relative;transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease}
.product-card-linkable:hover,.news-card-linkable:hover,.category-card-linkable:hover{transform:translateY(-2px);box-shadow:var(--shadow);border-color:rgba(16,24,40,.18)}
.product-card-linkable .thumb,.product-card-linkable .body,.news-card-linkable > *:not(.card-link-overlay),.category-card-linkable > *:not(.card-link-overlay){position:relative;z-index:2}
.product-card-linkable .chip,.news-card-linkable .mini{pointer-events:none}
.product-card-linkable h3,.news-card-linkable h3,.category-card-linkable h3{transition:color .18s ease}
.product-card-linkable:hover h3,.news-card-linkable:hover h3,.category-card-linkable:hover h3{color:#e60023}
.veitt-variant-block{margin:20px 0 4px}
.veitt-variant-title{font-size:13px;font-weight:700;color:#475569;margin-bottom:10px}
.veitt-variant-picker{display:flex;gap:10px;flex-wrap:wrap}
.veitt-variant-btn{display:inline-flex;align-items:center;gap:10px;padding:10px 14px;border-radius:999px;border:1px solid rgba(15,23,42,.10);background:#fff;color:#0f172a;cursor:pointer;transition:all .2s ease;box-shadow:0 4px 12px rgba(15,23,42,.03)}
.veitt-variant-btn .swatch{width:16px;height:16px;border-radius:999px;background:var(--veitt-variant-color);border:1px solid rgba(15,23,42,.12);flex:0 0 16px}
.veitt-variant-btn .text-wrap{display:flex;flex-direction:column;align-items:flex-start;line-height:1.1}
.veitt-variant-btn .label{font-size:14px;font-weight:700}
.veitt-variant-btn .sub{font-size:12px;color:#64748b;margin-top:4px}
.veitt-variant-btn:hover{border-color:rgba(15,23,42,.28);transform:translateY(-1px)}
.veitt-variant-btn.active{border-color:#111827;background:#f8fafc;box-shadow:0 8px 20px rgba(15,23,42,.08)}
.veitt-thumb-wrap{display:flex;align-items:center;gap:10px;margin-top:18px}
.veitt-thumb-track{display:flex;gap:12px;overflow-x:auto;scroll-behavior:smooth;padding-bottom:4px}
.veitt-thumb-track::-webkit-scrollbar{height:8px}
.veitt-thumb-track::-webkit-scrollbar-thumb{background:rgba(16,24,40,.18);border-radius:999px}
.veitt-thumb-arrow{width:40px;height:40px;flex:0 0 40px;border-radius:999px;border:1px solid rgba(15,23,42,.10);background:#fff;cursor:pointer;font-size:24px;line-height:1;color:#0f172a;box-shadow:0 8px 18px rgba(15,23,42,.04)}
.veitt-thumb-arrow:hover{border-color:rgba(15,23,42,.24)}
.veitt-lightbox{position:fixed;inset:0;z-index:200;display:none}
.veitt-lightbox-backdrop{position:absolute;inset:0;background:rgba(2,6,23,.76)}
.veitt-lightbox-dialog{position:relative;z-index:2;width:100%;height:100%;display:flex;align-items:center;justify-content:center;padding:30px}
.veitt-lightbox-stage{width:100%;height:100%;display:flex;align-items:center;justify-content:center;overflow:hidden}
.veitt-lightbox-stage img{max-width:90vw;max-height:86vh;cursor:grab;user-select:none;touch-action:none}
.veitt-lightbox-close{position:absolute;top:18px;right:18px;width:46px;height:46px;border-radius:999px;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.08);color:#fff;font-size:26px;cursor:pointer;z-index:3}
@media (max-width: 960px){
  .veitt-variant-picker{gap:8px}
  .veitt-variant-btn{padding:9px 12px}
}


/* ===== VEITT AI FIX ===== */
.card-link,
.product-card-link{
  display:block;
  color:inherit;
  text-decoration:none;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card-link:hover,
.product-card-link:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(15,23,42,.08);
  border-color:rgba(15,23,42,.18);
}
.category-card h3,
.news-card h3,
.product-card-link h3{ color:#0f172a; }
.category-card p,
.news-card p,
.product-card-link p{ margin-bottom:0; }
.apple-carousel .carousel-arrow{
  width:48px;
  height:48px;
  background:rgba(255,255,255,.96);
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}
.apple-carousel .product-track{
  padding-bottom:2px;
}
.veitt-variant-picker{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:18px 0 8px;
}
.veitt-variant-btn{
  appearance:none;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  border-radius:18px;
  min-height:52px;
  padding:10px 14px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  transition:all .2s ease;
  box-shadow:0 1px 2px rgba(15,23,42,.02);
}
.veitt-variant-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(15,23,42,.28);
  box-shadow:0 10px 24px rgba(15,23,42,.06);
}
.veitt-variant-btn.active{
  border-color:#111827;
  box-shadow:0 0 0 2px rgba(17,24,39,.06), 0 14px 28px rgba(15,23,42,.08);
}
.veitt-variant-swatch,
.veitt-variant-btn .swatch{
  width:18px;
  height:18px;
  border-radius:999px;
  flex:0 0 18px;
  background:var(--veitt-variant-color,#f3f4f6);
  border:1px solid rgba(15,23,42,.14);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.55);
}
.veitt-variant-copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:2px;
  text-align:left;
}
.veitt-variant-btn .label{
  font-size:14px;
  font-weight:700;
  line-height:1.2;
  color:#0f172a;
}
.veitt-variant-copy .sub{
  font-size:12px;
  color:#64748b;
  line-height:1.2;
}
@media (max-width: 560px){
  .veitt-variant-btn{ width:100%; justify-content:flex-start; }
}


/* 2026-03-07 card media rollback: restore original tall product-card image presentation */
.product-card .thumb{
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  display: block !important;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.product-card .thumb img{
  display: block;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: initial !important;
  object-position: center center !important;
}
.product-grid .product-card .thumb,
.product-grid .product-card-linkable .thumb,
#featuredProducts .product-card .thumb,
#featuredProducts .product-card-linkable .thumb{
  aspect-ratio: auto !important;
}


/* 2026-03-07 final price dynamic fix */
#veittPriceText,
#veittProductPrice,
.veitt-product-price{
  color: var(--veitt-price-color, #5d21e7) !important;
  font-size: var(--veitt-price-size, 26px) !important;
}
